Spaces:
Running
Running
File size: 1,296 Bytes
ed37502 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | # Content Engine Configuration
comfyui:
url: "http://127.0.0.1:8188"
# Maximum jobs to queue locally before routing to cloud
max_local_queue_depth: 3
# Minimum free VRAM (GB) required to accept a local job
min_vram_gb: 2.0
paths:
output_dir: "D:/AI automation/output"
data_dir: "D:/AI automation/data"
# ComfyUI model paths (from extra_model_paths.yaml)
lora_dir: "D:/ComfyUI/Models/Lora"
checkpoint_dir: "D:/ComfyUI/Models/StableDiffusion"
database:
# SQLite for v1, switch to postgresql:// for v2
url: "sqlite+aiosqlite:///D:/AI automation/data/catalog.db"
jobs_url: "sqlite+aiosqlite:///D:/AI automation/data/jobs.db"
generation:
# Default generation parameters
default_checkpoint: "realisticVisionV51_v51VAE.safetensors"
default_steps: 28
default_cfg: 7.0
default_sampler: "dpmpp_2m"
default_scheduler: "karras"
default_width: 832
default_height: 1216
scheduling:
# Posts per day per character
posts_per_day: 3
# Peak posting hours (UTC)
peak_hours: [10, 14, 20]
# SFW to NSFW ratio for scheduling
sfw_ratio: 0.4
cloud_providers: []
# Uncomment and configure when ready (Phase 4)
# - name: replicate
# api_key: "${REPLICATE_API_KEY}"
# priority: 1
# - name: runpod
# api_key: "${RUNPOD_API_KEY}"
# priority: 2
|