# Tencent Cloud credentials
# Replace with your own credentials from Tencent Cloud console
# https://console.cloud.tencent.com/cam/capi
# AppID (Project ID)
TENCENT_APPID=your_tencent_appid
# SecretID
TENCENT_SECRET_ID=your_tencent_secret_id
# SecretKey
TENCENT_SECRET_KEY=your_tencent_secret_key
# OpenAI Configuration
# OpenAI API Key - required for LLM integration
OPENAI_API_KEY=your_openai_api_key
# OpenAI Organization ID (optional)
# OPENAI_ORG_ID=your_org_id
# OpenAI Base URL (optional) - can be used for API proxies or alternative endpoints
# OPENAI_BASE_URL=https://api.openai.com/v1
# Maximum number of conversation turns to keep in context (optional, default: 10)
# OPENAI_MAX_TURNS=10
# Other environment variables
RUST_LOG=info # Log level (debug, info, warn, error)