22 lines
330 B
YAML
22 lines
330 B
YAML
# 配置文件
|
|
app:
|
|
secret_key: ${APP_SECRET_KEY}
|
|
debug: false
|
|
host: 0.0.0.0
|
|
port: 8000
|
|
|
|
database:
|
|
type: sqlite
|
|
url: sqlite:///./chat.db
|
|
|
|
llm:
|
|
provider: deepseek
|
|
api_key: ${DEEPSEEK_API_KEY}
|
|
api_url: https://api.deepseek.com/v1
|
|
|
|
tools:
|
|
enable_cache: true
|
|
cache_ttl: 300
|
|
max_workers: 4
|
|
max_iterations: 10
|