30 lines
408 B
YAML
30 lines
408 B
YAML
# 配置文件
|
|
app:
|
|
secret_key: ${APP_SECRET_KEY}
|
|
debug: true
|
|
host: 0.0.0.0
|
|
port: 8000
|
|
|
|
database:
|
|
type: sqlite
|
|
url: sqlite:///./chat.db
|
|
|
|
workspace:
|
|
root: ./workspaces
|
|
auto_create: true
|
|
|
|
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
|
|
|
|
|
|
logging:
|
|
level: INFO
|