channel.constants.js 1.5 KB

12345678910111213141516171819202122232425
  1. export const CHANNEL_OPTIONS = [
  2. { key: 1, text: 'OpenAI', value: 1, color: 'green' },
  3. { key: 14, text: 'Anthropic Claude', value: 14, color: 'black' },
  4. { key: 3, text: 'Azure OpenAI', value: 3, color: 'olive' },
  5. { key: 11, text: 'Google PaLM2', value: 11, color: 'orange' },
  6. { key: 15, text: '百度文心千帆', value: 15, color: 'blue' },
  7. { key: 17, text: '阿里通义千问', value: 17, color: 'orange' },
  8. { key: 18, text: '讯飞星火认知', value: 18, color: 'blue' },
  9. { key: 16, text: '智谱 ChatGLM', value: 16, color: 'violet' },
  10. { key: 19, text: '360 智脑', value: 19, color: 'blue' },
  11. { key: 23, text: '腾讯混元', value: 23, color: 'teal' },
  12. { key: 8, text: '自定义渠道', value: 8, color: 'pink' },
  13. { key: 22, text: '知识库:FastGPT', value: 22, color: 'blue' },
  14. { key: 21, text: '知识库:AI Proxy', value: 21, color: 'purple' },
  15. { key: 20, text: '代理:OpenRouter', value: 20, color: 'black' },
  16. { key: 2, text: '代理:API2D', value: 2, color: 'blue' },
  17. { key: 5, text: '代理:OpenAI-SB', value: 5, color: 'brown' },
  18. { key: 7, text: '代理:OhMyGPT', value: 7, color: 'purple' },
  19. { key: 10, text: '代理:AI Proxy', value: 10, color: 'purple' },
  20. { key: 4, text: '代理:CloseAI', value: 4, color: 'teal' },
  21. { key: 6, text: '代理:OpenAI Max', value: 6, color: 'violet' },
  22. { key: 9, text: '代理:AI.LS', value: 9, color: 'yellow' },
  23. { key: 12, text: '代理:API2GPT', value: 12, color: 'blue' },
  24. { key: 13, text: '代理:AIGC2D', value: 13, color: 'purple' }
  25. ];