channel.constants.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. export const CHANNEL_OPTIONS = [
  2. { value: 1, color: 'green', label: 'OpenAI' },
  3. {
  4. value: 2,
  5. color: 'light-blue',
  6. label: 'Midjourney Proxy'
  7. },
  8. {
  9. value: 5,
  10. color: 'blue',
  11. label: 'Midjourney Proxy Plus'
  12. },
  13. {
  14. value: 36,
  15. color: 'purple',
  16. label: 'Suno API'
  17. },
  18. { value: 4, color: 'grey', label: 'Ollama' },
  19. {
  20. value: 14,
  21. color: 'indigo',
  22. label: 'Anthropic Claude'
  23. },
  24. {
  25. value: 33,
  26. color: 'indigo',
  27. label: 'AWS Claude'
  28. },
  29. { value: 41, color: 'blue', label: 'Vertex AI' },
  30. {
  31. value: 3,
  32. color: 'teal',
  33. label: 'Azure OpenAI'
  34. },
  35. {
  36. value: 34,
  37. color: 'purple',
  38. label: 'Cohere'
  39. },
  40. { value: 39, color: 'grey', label: 'Cloudflare' },
  41. { value: 43, color: 'blue', label: 'DeepSeek' },
  42. {
  43. value: 15,
  44. color: 'blue',
  45. label: '百度文心千帆'
  46. },
  47. {
  48. value: 46,
  49. color: 'blue',
  50. label: '百度文心千帆V2'
  51. },
  52. {
  53. value: 17,
  54. color: 'orange',
  55. label: '阿里通义千问'
  56. },
  57. {
  58. value: 18,
  59. color: 'blue',
  60. label: '讯飞星火认知'
  61. },
  62. {
  63. value: 16,
  64. color: 'violet',
  65. label: '智谱 ChatGLM'
  66. },
  67. {
  68. value: 26,
  69. color: 'purple',
  70. label: '智谱 GLM-4V'
  71. },
  72. {
  73. value: 24,
  74. color: 'orange',
  75. label: 'Google Gemini'
  76. },
  77. {
  78. value: 11,
  79. color: 'orange',
  80. label: 'Google PaLM2'
  81. },
  82. {
  83. value: 45,
  84. color: 'blue',
  85. label: '字节火山方舟、豆包、DeepSeek通用'
  86. },
  87. { value: 25, color: 'green', label: 'Moonshot' },
  88. { value: 19, color: 'blue', label: '360 智脑' },
  89. { value: 23, color: 'teal', label: '腾讯混元' },
  90. { value: 31, color: 'green', label: '零一万物' },
  91. { value: 35, color: 'green', label: 'MiniMax' },
  92. { value: 37, color: 'teal', label: 'Dify' },
  93. { value: 38, color: 'blue', label: 'Jina' },
  94. { value: 40, color: 'purple', label: 'SiliconCloud' },
  95. { value: 42, color: 'blue', label: 'Mistral AI' },
  96. { value: 8, color: 'pink', label: '自定义渠道' },
  97. {
  98. value: 22,
  99. color: 'blue',
  100. label: '知识库:FastGPT'
  101. },
  102. {
  103. value: 21,
  104. color: 'purple',
  105. label: '知识库:AI Proxy'
  106. },
  107. {
  108. value: 44,
  109. color: 'purple',
  110. label: '嵌入模型:MokaAI M3E'
  111. }
  112. ];