channel.constants.js 2.8 KB

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