52 lines
2.2 KiB
YAML
52 lines
2.2 KiB
YAML
# Pixelle-Video Configuration
|
|
# Copy this file to config.yaml and fill in your settings
|
|
# ⚠️ Never commit config.yaml to Git!
|
|
|
|
project_name: Pixelle-Video
|
|
|
|
# ==================== LLM Configuration ====================
|
|
# Supports any OpenAI SDK compatible API
|
|
llm:
|
|
api_key: ""
|
|
base_url: ""
|
|
model: ""
|
|
|
|
# Popular presets:
|
|
# Qwen Max: base_url: "https://dashscope.aliyuncs.com/compatible-mode/v1" model: "qwen-max"
|
|
# OpenAI GPT-4o: base_url: "https://api.openai.com/v1" model: "gpt-4o"
|
|
# DeepSeek: base_url: "https://api.deepseek.com" model: "deepseek-chat"
|
|
# Ollama (Local): base_url: "http://localhost:11434/v1" model: "llama3.2"
|
|
|
|
# ==================== ComfyUI Configuration ====================
|
|
comfyui:
|
|
# Global ComfyUI settings
|
|
comfyui_url: http://127.0.0.1:8188 # ComfyUI server URL (required for selfhost workflows)
|
|
# Note for Docker users: Use host.docker.internal:8188 (Mac/Windows) or host IP address (Linux)
|
|
runninghub_api_key: "" # RunningHub API key (required for runninghub workflows)
|
|
|
|
# TTS-specific configuration
|
|
tts:
|
|
default_workflow: selfhost/tts_edge.json # TTS workflow to use
|
|
|
|
# Image-specific configuration
|
|
image:
|
|
# Required: Default workflow to use (no fallback)
|
|
# Options: runninghub/image_flux.json (recommended, no local setup)
|
|
# selfhost/image_flux.json (requires local ComfyUI)
|
|
default_workflow: runninghub/image_flux.json
|
|
|
|
# Image prompt prefix (optional)
|
|
prompt_prefix: "Minimalist black-and-white matchstick figure style illustration, clean lines, simple sketch style"
|
|
|
|
# ==================== Template Configuration ====================
|
|
# Configure default template for video generation
|
|
template:
|
|
# Default frame template to use when not explicitly specified
|
|
# Determines video aspect ratio and layout style
|
|
# Options:
|
|
# - 1080x1920 (vertical/portrait): default.html, modern.html, elegant.html, etc.
|
|
# - 1080x1080 (square): minimal_framed.html, magazine_cover.html, etc.
|
|
# - 1920x1080 (horizontal/landscape): film.html, full.html, etc.
|
|
# See templates/ directory for all available templates
|
|
default_template: "1080x1920/default.html"
|