Instructions to use autotools/ai_video_studio with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use autotools/ai_video_studio with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: llama cli -hf autotools/ai_video_studio:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: llama cli -hf autotools/ai_video_studio:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf autotools/ai_video_studio:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf autotools/ai_video_studio:Q4_K_M
Use Docker
docker model run hf.co/autotools/ai_video_studio:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use autotools/ai_video_studio with Ollama:
ollama run hf.co/autotools/ai_video_studio:Q4_K_M
- Unsloth Studio
How to use autotools/ai_video_studio with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for autotools/ai_video_studio to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for autotools/ai_video_studio to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for autotools/ai_video_studio to start chatting
- Atomic Chat new
- Docker Model Runner
How to use autotools/ai_video_studio with Docker Model Runner:
docker model run hf.co/autotools/ai_video_studio:Q4_K_M
- Lemonade
How to use autotools/ai_video_studio with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull autotools/ai_video_studio:Q4_K_M
Run and chat with the model
lemonade run user.ai_video_studio-Q4_K_M
List all available models
lemonade list
ai_video_studio / runtime /omnivoice-python /omnivoice-source /examples /config /train_config_finetune.json
| { | |
| "llm_name_or_path": "Qwen/Qwen3-0.6B", | |
| "audio_vocab_size": 1025, | |
| "audio_mask_id": 1024, | |
| "num_audio_codebook": 8, | |
| "audio_codebook_weights": [8, 8, 6, 6, 4, 4, 2, 2], | |
| "drop_cond_ratio": 0.1, | |
| "prompt_ratio_range": [0.0, 0.3], | |
| "mask_ratio_range": [0.0, 1.0], | |
| "language_ratio": 0.8, | |
| "use_pinyin_ratio": 0.0, | |
| "instruct_ratio": 0.0, | |
| "only_instruct_ratio": 0.0, | |
| "resume_from_checkpoint": null, | |
| "init_from_checkpoint": "k2-fsa/OmniVoice", | |
| "learning_rate": 1e-5, | |
| "weight_decay": 0.01, | |
| "max_grad_norm": 1.0, | |
| "steps": 5000, | |
| "seed": 42, | |
| "warmup_type": "ratio", | |
| "warmup_ratio": 0.01, | |
| "warmup_steps": 0, | |
| "batch_tokens": 8192, | |
| "gradient_accumulation_steps": 1, | |
| "num_workers": 2, | |
| "mixed_precision": "bf16", | |
| "allow_tf32": true, | |
| "logging_steps": 50, | |
| "eval_steps": 500, | |
| "save_steps": 500, | |
| "keep_last_n_checkpoints": -1 | |
| } | |