docker pull manimcommunity/manim:stable
In the Generative AI Age your ability to generate prompts is your ability to generate results.
Claude 3.5 Sonnet and o1 series models are recommended for meta prompting.
Replace {{user-input}}
with your own input to generate prompts.
Use mp_*.txt
as example user-input
s to see how to generate high quality prompts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import os | |
# Take a sysroot directory and turn all the abolute symlinks and turn them into | |
# relative ones such that the sysroot is usable within another system. | |
if len(sys.argv) != 2: | |
print("Usage is " + sys.argv[0] + "<directory>") | |
sys.exit(1) |