- 新增 AICoreClient 客户端 - 添加 document_parser_client.go - 知识库服务集成 AI-Core 解析 - 配置中添加 ai_core_service_addr Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
583 B
YAML
27 lines
583 B
YAML
# 本地开发配置
|
|
port: "8082"
|
|
jwt_secret: "dev-secret-key"
|
|
|
|
# 数据库配置
|
|
database_host: "localhost"
|
|
database_port: "6036"
|
|
database_user: "root"
|
|
database_password: "root"
|
|
database_name: "x_agents"
|
|
|
|
# AI 服务配置
|
|
python_service_url: "http://localhost:8081"
|
|
ai_core_service_addr: "localhost:50051"
|
|
|
|
# 文件上传配置 (local 或 minio)
|
|
upload_mode: "local"
|
|
upload_local_path: "resource/files"
|
|
server_base_url: "http://localhost:8082"
|
|
|
|
# MinIO 配置
|
|
minio_endpoint: "localhost:9000"
|
|
minio_access_key: ""
|
|
minio_secret_key: ""
|
|
minio_bucket: "x-agents"
|
|
minio_use_ssl: false
|