| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # 应用配置
- app:
- name: shudao-chat-py
- host: 0.0.0.0
- port: 22001
- debug: true
- # MySQL数据库配置
- database:
- user: root
- password: "88888888"
- host: 172.16.29.101
- port: 21000
- database: shudao
- pool_size: 100
- max_overflow: 10
- pool_recycle: 3600
- # DeepSeek配置
- deepseek:
- api_key: sk-28625cb3738844e190cee62b2bcb25bf
- api_url: https://api.deepseek.com
- # 阿里大模型配置
- qwen3:
- api_url: http://172.16.35.50:8001
- model: Qwen3-30B-A3B-Instruct-2507
- # 意图识别模型配置(8115)
- intent:
- api_url: http://172.16.35.50:8115
- model: Qwen2.5-1.5B-Instruct
- # YOLO API配置
- yolo:
- base_url: http://172.16.35.50:18080
- # 搜索API配置
- search:
- api_url: http://127.0.0.1:24000/api/search
- heartbeat_url: http://127.0.0.1:24000/api/health
- # Dify Workflow配置
- dify:
- workflow_url: http://172.16.35.50:8000/v1/workflows/run
- workflow_id: 4wfh1PPDderMtCeb
- auth_token: app-55CyO4lmDv1VeXK4QmFpt4ng
- # 基础URL配置
- base_url: https://aqai.shudaodsj.com:22001
- # Token验证API配置
- auth:
- api_url: http://127.0.0.1:28004/api/auth/verify
- # OSS配置
- oss:
- access_key_id: fnyfi2f368pbic74d8ll
- access_key_secret: jgqwk7sirqlz2602x2k7yx2eor0vii19wah6ywlv
- bucket: gdsc-ai-aqzs
- endpoint: http://172.16.17.52:8060
- parse_encrypt_key: jgqwk7sirqlz2602
|