config.js 266 B

12345678910
  1. // 全局配置
  2. // 网关地址(所有智能体共用)
  3. export const GATEWAY_URL = 'http://127.0.0.1:9999'
  4. // 智能体列表
  5. // desc: 中文描述(下拉显示);id: 智能体 ID
  6. export const AGENTS = [
  7. { desc: 'Demo 智能体', id: 'DemoAgentAGUI' }
  8. ]