reels-af
Automate viral reel/tik-tok videos via AI multi-agent system. ~$0.1/reel.
File Explorer
- ci.yml
- architecture.png
- hero.png
- run_arxiv_batch.py
- run_arxiv_one.py
- run_batch.sh
- run_batch_parallel.py
- run_random3.py
- __init__.py
- accent.py
- compose.py
- critic.py
- extract.py
- hunters.py
- judge.py
- narrator.py
- visual.py
- __init__.py
- beats.py
- cards.py
- font_metrics.py
- safe_zone.py
- __init__.py
- images.py
- stitch.py
- subtitles.py
- tts.py
- video.py
- __init__.py
- app.py
- cli.py
- models.py
- sdk_patches.py
- conftest.py
- test_byo_endpoint.py
- test_gates_and_patches.py
- test_provider_config.py
- test_provider_wiring.py
- test_render_helpers.py
- util.py
- .dockerignore
- .env.example
- .gitignore
- docker-compose.yml
- Dockerfile
- LICENSE
- main.py
- pyproject.toml
- README.md
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
openai
View Details ▼
openai
CLI tool providing access to the OpenAI API.
openai api models.list
List models:
openai api completions.create --model {{ada}} --prompt "{{Hello world}}"
Create a completion:
openai api chat_completions.create --model {{gpt-3.5-turbo}} --message {{user "Hello world"}}
Create a chat completion:
uv sync
View Details ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
apt install
View Details ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
