32 lines
862 B
Plaintext
32 lines
862 B
Plaintext
# Smart Support -- Docker Compose environment variables
|
|
# Copy to .env and fill in your values
|
|
|
|
# PostgreSQL password (used by both postgres and backend services)
|
|
POSTGRES_PASSWORD=dev_password
|
|
|
|
# LLM provider: anthropic | openai | azure_openai | google
|
|
LLM_PROVIDER=anthropic
|
|
LLM_MODEL=claude-sonnet-4-6
|
|
|
|
# API keys (provide the one matching LLM_PROVIDER)
|
|
ANTHROPIC_API_KEY=
|
|
OPENAI_API_KEY=
|
|
GOOGLE_API_KEY=
|
|
|
|
# Azure OpenAI (required when LLM_PROVIDER=azure_openai)
|
|
AZURE_OPENAI_API_KEY=
|
|
AZURE_OPENAI_ENDPOINT=
|
|
AZURE_OPENAI_DEPLOYMENT=
|
|
AZURE_OPENAI_API_VERSION=2024-12-01-preview
|
|
|
|
# Optional: webhook URL for escalation notifications
|
|
WEBHOOK_URL=
|
|
|
|
# Session and interrupt TTL in minutes
|
|
SESSION_TTL_MINUTES=30
|
|
INTERRUPT_TTL_MINUTES=30
|
|
|
|
# Optional: load a named agent template instead of agents.yaml
|
|
# Available templates: ecommerce, saas, generic
|
|
TEMPLATE_NAME=
|