Build and Push / build (release) Successful in 50s
- Add delegate_to_biographer to household registry delegation map - Was returning raw tools which caused Ollama "invalid message content type: nil" - Add Qdrant host/port to .env.example 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
759 B
Bash
39 lines
759 B
Bash
# Application Configuration
|
|
APP_NAME="OpenAI-Compatible API"
|
|
APP_VERSION="0.1.0"
|
|
ENVIRONMENT=development
|
|
DEBUG=false
|
|
|
|
# API Configuration
|
|
API_HOST=0.0.0.0
|
|
API_PORT=8000
|
|
API_PREFIX=/v1
|
|
|
|
# Ollama Configuration
|
|
OLLAMA_HOST=http://your-ollama-host:11434
|
|
OLLAMA_DEFAULT_MODEL=mistral-nemo:latest
|
|
OLLAMA_TIMEOUT=120
|
|
|
|
# SearXNG Configuration
|
|
SEARXNG_HOST=http://searxng:8087
|
|
SEARXNG_TIMEOUT=30
|
|
|
|
# Redis Configuration
|
|
REDIS_HOST=redis-shared
|
|
REDIS_PORT=6379
|
|
REDIS_MEMORY_DB=1
|
|
REDIS_BENCHMARK_DB=6
|
|
REDIS_TIMEOUT=5
|
|
|
|
# Qdrant Configuraton
|
|
QDRANT_HOST=qdrant
|
|
QDRANT_PORT=6333
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
ENABLE_BENCHMARKS=true
|
|
# Note: Log format is auto-selected based on ENVIRONMENT (console for dev, json for production)
|
|
|
|
# CORS (comma-separated list)
|
|
CORS_ORIGINS=["*"]
|