- Add comprehensive documentation in botbook/ with 12 chapters - Add botapp/ Tauri desktop application - Add botdevice/ IoT device support - Add botlib/ shared library crate - Add botmodels/ Python ML models service - Add botplugin/ browser extension - Add botserver/ reorganized server code - Add bottemplates/ bot templates - Add bottest/ integration tests - Add botui/ web UI server - Add CI/CD workflows in .forgejo/workflows/ - Add AGENTS.md and PROD.md documentation - Add dependency management scripts (DEPENDENCIES.sh/ps1) - Remove legacy src/ structure and migrations - Clean up temporary and backup files
38 lines
789 B
Text
38 lines
789 B
Text
# Server Configuration
|
|
ENV=development
|
|
HOST=0.0.0.0
|
|
PORT=8085
|
|
LOG_LEVEL=INFO
|
|
|
|
# Security - IMPORTANT: Change this in production!
|
|
API_KEY=change-me-in-production
|
|
|
|
# Model Paths
|
|
# These can be local paths or model identifiers for HuggingFace Hub
|
|
IMAGE_MODEL_PATH=./models/stable-diffusion-v1-5
|
|
VIDEO_MODEL_PATH=./models/zeroscope-v2
|
|
SPEECH_MODEL_PATH=./models/tts
|
|
VISION_MODEL_PATH=./models/blip2
|
|
WHISPER_MODEL_PATH=./models/whisper
|
|
|
|
# Device Configuration
|
|
# Options: cuda, cpu, mps (for Apple Silicon)
|
|
DEVICE=cuda
|
|
|
|
# Image Generation Defaults
|
|
IMAGE_STEPS=4
|
|
IMAGE_WIDTH=512
|
|
IMAGE_HEIGHT=512
|
|
IMAGE_GPU_LAYERS=20
|
|
IMAGE_BATCH_SIZE=1
|
|
|
|
# Video Generation Defaults
|
|
VIDEO_FRAMES=24
|
|
VIDEO_FPS=8
|
|
VIDEO_WIDTH=320
|
|
VIDEO_HEIGHT=576
|
|
VIDEO_GPU_LAYERS=15
|
|
VIDEO_BATCH_SIZE=1
|
|
|
|
# Storage
|
|
OUTPUT_DIR=./outputs
|