# Dubbo AI Chat Service 配置文件 dubbo: # 应用配置 application: name: ai-chat-service version: 1.0.0 # 注册中心配置 registries: nacos: protocol: nacos address: 127.0.0.1:8848 timeout: 5s # 协议配置 protocols: triple: name: tri port: 20008 # AI Chat Service 端口 # Provider 配置 provider: registry-ids: nacos protocol-ids: triple services: # AI Chat Service 服务定义 AIChatService: interface: "github.com/topfans/backend/pkg/proto/ai_chat.AIChatService" # Consumer 配置 consumer: registry-ids: nacos # 超时配置 timeout: 60s