@lobehub/chat 0.156.1 → 0.157.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/Dockerfile +4 -1
  3. package/package.json +3 -2
  4. package/src/config/modelProviders/anthropic.ts +3 -0
  5. package/src/config/modelProviders/google.ts +3 -0
  6. package/src/config/modelProviders/groq.ts +5 -1
  7. package/src/config/modelProviders/minimax.ts +10 -7
  8. package/src/config/modelProviders/mistral.ts +1 -0
  9. package/src/config/modelProviders/moonshot.ts +3 -0
  10. package/src/config/modelProviders/zhipu.ts +2 -6
  11. package/src/config/server/provider.ts +1 -1
  12. package/src/database/client/core/db.ts +32 -0
  13. package/src/database/client/core/schemas.ts +9 -0
  14. package/src/database/client/models/__tests__/message.test.ts +2 -2
  15. package/src/database/client/schemas/message.ts +8 -1
  16. package/src/features/AgentSetting/store/action.ts +15 -6
  17. package/src/features/Conversation/Actions/Tool.tsx +16 -0
  18. package/src/features/Conversation/Actions/index.ts +2 -2
  19. package/src/features/Conversation/Messages/Assistant/ToolCalls/index.tsx +78 -0
  20. package/src/features/Conversation/Messages/Assistant/ToolCalls/style.ts +25 -0
  21. package/src/features/Conversation/Messages/Assistant/index.tsx +47 -0
  22. package/src/features/Conversation/Messages/Default.tsx +4 -1
  23. package/src/features/Conversation/{Plugins → Messages/Tool}/Inspector/index.tsx +34 -35
  24. package/src/features/Conversation/Messages/Tool/index.tsx +44 -0
  25. package/src/features/Conversation/Messages/index.ts +3 -2
  26. package/src/features/Conversation/Plugins/Render/StandaloneType/Iframe.tsx +1 -1
  27. package/src/features/Conversation/components/SkeletonList.tsx +2 -2
  28. package/src/features/Conversation/index.tsx +2 -3
  29. package/src/libs/agent-runtime/BaseAI.ts +2 -9
  30. package/src/libs/agent-runtime/anthropic/index.test.ts +195 -0
  31. package/src/libs/agent-runtime/anthropic/index.ts +71 -15
  32. package/src/libs/agent-runtime/azureOpenai/index.ts +12 -13
  33. package/src/libs/agent-runtime/bedrock/index.ts +24 -18
  34. package/src/libs/agent-runtime/google/index.test.ts +154 -0
  35. package/src/libs/agent-runtime/google/index.ts +91 -10
  36. package/src/libs/agent-runtime/groq/index.test.ts +41 -72
  37. package/src/libs/agent-runtime/groq/index.ts +7 -0
  38. package/src/libs/agent-runtime/minimax/index.test.ts +2 -2
  39. package/src/libs/agent-runtime/minimax/index.ts +14 -37
  40. package/src/libs/agent-runtime/mistral/index.test.ts +0 -53
  41. package/src/libs/agent-runtime/mistral/index.ts +1 -0
  42. package/src/libs/agent-runtime/moonshot/index.test.ts +1 -71
  43. package/src/libs/agent-runtime/ollama/index.test.ts +197 -0
  44. package/src/libs/agent-runtime/ollama/index.ts +3 -3
  45. package/src/libs/agent-runtime/openai/index.test.ts +0 -53
  46. package/src/libs/agent-runtime/openrouter/index.test.ts +1 -53
  47. package/src/libs/agent-runtime/perplexity/index.test.ts +0 -71
  48. package/src/libs/agent-runtime/perplexity/index.ts +2 -3
  49. package/src/libs/agent-runtime/togetherai/__snapshots__/index.test.ts.snap +886 -0
  50. package/src/libs/agent-runtime/togetherai/fixtures/models.json +8111 -0
  51. package/src/libs/agent-runtime/togetherai/index.test.ts +16 -54
  52. package/src/libs/agent-runtime/types/chat.ts +19 -3
  53. package/src/libs/agent-runtime/utils/anthropicHelpers.test.ts +120 -1
  54. package/src/libs/agent-runtime/utils/anthropicHelpers.ts +67 -4
  55. package/src/libs/agent-runtime/utils/debugStream.test.ts +70 -0
  56. package/src/libs/agent-runtime/utils/debugStream.ts +39 -9
  57. package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.test.ts +521 -0
  58. package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +76 -5
  59. package/src/libs/agent-runtime/utils/response.ts +12 -0
  60. package/src/libs/agent-runtime/utils/streams/anthropic.test.ts +197 -0
  61. package/src/libs/agent-runtime/utils/streams/anthropic.ts +91 -0
  62. package/src/libs/agent-runtime/utils/streams/bedrock/claude.ts +21 -0
  63. package/src/libs/agent-runtime/utils/streams/bedrock/common.ts +32 -0
  64. package/src/libs/agent-runtime/utils/streams/bedrock/index.ts +3 -0
  65. package/src/libs/agent-runtime/utils/streams/bedrock/llama.test.ts +196 -0
  66. package/src/libs/agent-runtime/utils/streams/bedrock/llama.ts +51 -0
  67. package/src/libs/agent-runtime/utils/streams/google-ai.test.ts +97 -0
  68. package/src/libs/agent-runtime/utils/streams/google-ai.ts +68 -0
  69. package/src/libs/agent-runtime/utils/streams/index.ts +7 -0
  70. package/src/libs/agent-runtime/utils/streams/minimax.ts +39 -0
  71. package/src/libs/agent-runtime/utils/streams/ollama.test.ts +77 -0
  72. package/src/libs/agent-runtime/utils/streams/ollama.ts +38 -0
  73. package/src/libs/agent-runtime/utils/streams/openai.test.ts +263 -0
  74. package/src/libs/agent-runtime/utils/streams/openai.ts +79 -0
  75. package/src/libs/agent-runtime/utils/streams/protocol.ts +100 -0
  76. package/src/libs/agent-runtime/zeroone/index.test.ts +1 -53
  77. package/src/libs/agent-runtime/zhipu/index.test.ts +1 -1
  78. package/src/libs/agent-runtime/zhipu/index.ts +3 -2
  79. package/src/locales/default/plugin.ts +3 -4
  80. package/src/migrations/FromV4ToV5/fixtures/from-v1-to-v5-output.json +245 -0
  81. package/src/migrations/FromV4ToV5/fixtures/function-input-v4.json +96 -0
  82. package/src/migrations/FromV4ToV5/fixtures/function-output-v5.json +120 -0
  83. package/src/migrations/FromV4ToV5/index.ts +58 -0
  84. package/src/migrations/FromV4ToV5/migrations.test.ts +49 -0
  85. package/src/migrations/FromV4ToV5/types/v4.ts +21 -0
  86. package/src/migrations/FromV4ToV5/types/v5.ts +27 -0
  87. package/src/migrations/index.ts +8 -1
  88. package/src/services/__tests__/chat.test.ts +10 -20
  89. package/src/services/chat.ts +78 -65
  90. package/src/store/chat/slices/enchance/action.ts +15 -10
  91. package/src/store/chat/slices/message/action.test.ts +36 -86
  92. package/src/store/chat/slices/message/action.ts +70 -79
  93. package/src/store/chat/slices/message/reducer.ts +18 -1
  94. package/src/store/chat/slices/message/selectors.test.ts +38 -68
  95. package/src/store/chat/slices/message/selectors.ts +1 -22
  96. package/src/store/chat/slices/plugin/action.test.ts +147 -203
  97. package/src/store/chat/slices/plugin/action.ts +96 -82
  98. package/src/store/chat/slices/share/action.test.ts +3 -3
  99. package/src/store/chat/slices/share/action.ts +1 -1
  100. package/src/store/chat/slices/topic/action.ts +7 -2
  101. package/src/store/tool/selectors/tool.ts +6 -24
  102. package/src/store/tool/slices/builtin/action.test.ts +90 -0
  103. package/src/types/llm.ts +1 -1
  104. package/src/types/message/index.ts +9 -4
  105. package/src/types/message/tools.ts +57 -0
  106. package/src/types/openai/chat.ts +6 -0
  107. package/src/utils/fetch.test.ts +245 -1
  108. package/src/utils/fetch.ts +120 -44
  109. package/src/utils/toolCall.ts +21 -0
  110. package/src/features/Conversation/Messages/Assistant.tsx +0 -26
  111. package/src/features/Conversation/Messages/Function.tsx +0 -35
  112. package/src/libs/agent-runtime/ollama/stream.ts +0 -31
  113. /package/src/features/Conversation/{Plugins → Messages/Tool}/Inspector/PluginResultJSON.tsx +0 -0
  114. /package/src/features/Conversation/{Plugins → Messages/Tool}/Inspector/Settings.tsx +0 -0
  115. /package/src/features/Conversation/{Plugins → Messages/Tool}/Inspector/style.ts +0 -0
@@ -0,0 +1,886 @@
1
+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
+
3
+ exports[`LobeTogetherAI > models > should get models 1`] = `
4
+ [
5
+ {
6
+ "description": "This model is a 75/25 merge of Chronos (13B) and Nous Hermes (13B) models resulting in having a great ability to produce evocative storywriting and follow a narrative.",
7
+ "displayName": "Chronos Hermes (13B)",
8
+ "enabled": false,
9
+ "functionCall": false,
10
+ "id": "Austism/chronos-hermes-13b",
11
+ "maxOutput": 2048,
12
+ "tokens": 2048,
13
+ "vision": false,
14
+ },
15
+ {
16
+ "description": "MythoLogic-L2 and Huginn merge using a highly experimental tensor type merge technique. The main difference with MythoMix is that I allowed more of Huginn to intermingle with the single tensors located at the front and end of a model",
17
+ "displayName": "MythoMax-L2 (13B)",
18
+ "enabled": false,
19
+ "functionCall": false,
20
+ "id": "Gryphe/MythoMax-L2-13b",
21
+ "maxOutput": 4096,
22
+ "tokens": 4096,
23
+ "vision": false,
24
+ },
25
+ {
26
+ "description": "first Nous collection of dataset and models made by fine-tuning mostly on data created by Nous in-house",
27
+ "displayName": "Nous Capybara v1.9 (7B)",
28
+ "enabled": false,
29
+ "functionCall": false,
30
+ "id": "NousResearch/Nous-Capybara-7B-V1p9",
31
+ "maxOutput": 8192,
32
+ "tokens": 8192,
33
+ "vision": false,
34
+ },
35
+ {
36
+ "description": "Nous Hermes 2 on Mistral 7B DPO is the new flagship 7B Hermes! This model was DPO'd from Teknium/OpenHermes-2.5-Mistral-7B and has improved across the board on all benchmarks tested - AGIEval, BigBench Reasoning, GPT4All, and TruthfulQA.",
37
+ "displayName": "Nous Hermes 2 - Mistral DPO (7B)",
38
+ "enabled": false,
39
+ "functionCall": false,
40
+ "id": "NousResearch/Nous-Hermes-2-Mistral-7B-DPO",
41
+ "maxOutput": 32768,
42
+ "tokens": 32768,
43
+ "vision": false,
44
+ },
45
+ {
46
+ "description": "Nous Hermes 2 Mixtral 7bx8 DPO is the new flagship Nous Research model trained over the Mixtral 7bx8 MoE LLM. The model was trained on over 1,000,000 entries of primarily GPT-4 generated data, as well as other high quality data from open datasets across the AI landscape, achieving state of the art performance on a variety of tasks.",
47
+ "displayName": "Nous Hermes 2 - Mixtral 8x7B-DPO ",
48
+ "enabled": true,
49
+ "functionCall": false,
50
+ "id": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
51
+ "maxOutput": 32768,
52
+ "tokens": 32768,
53
+ "vision": false,
54
+ },
55
+ {
56
+ "description": "Nous Hermes 2 Mixtral 7bx8 SFT is the new flagship Nous Research model trained over the Mixtral 7bx8 MoE LLM. The model was trained on over 1,000,000 entries of primarily GPT-4 generated data, as well as other high quality data from open datasets across the AI landscape, achieving state of the art performance on a variety of tasks.",
57
+ "displayName": "Nous Hermes 2 - Mixtral 8x7B-SFT",
58
+ "enabled": false,
59
+ "functionCall": false,
60
+ "id": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-SFT",
61
+ "maxOutput": 32768,
62
+ "tokens": 32768,
63
+ "vision": false,
64
+ },
65
+ {
66
+ "description": "Nous Hermes 2 - Yi-34B is a state of the art Yi Fine-tune",
67
+ "displayName": "Nous Hermes-2 Yi (34B)",
68
+ "enabled": true,
69
+ "functionCall": false,
70
+ "id": "NousResearch/Nous-Hermes-2-Yi-34B",
71
+ "maxOutput": 4096,
72
+ "tokens": 4096,
73
+ "vision": false,
74
+ },
75
+ {
76
+ "description": "Nous-Hermes-Llama2-13b is a state-of-the-art language model fine-tuned on over 300,000 instructions.",
77
+ "displayName": "Nous Hermes Llama-2 (13B)",
78
+ "enabled": false,
79
+ "functionCall": false,
80
+ "id": "NousResearch/Nous-Hermes-Llama2-13b",
81
+ "maxOutput": 4096,
82
+ "tokens": 4096,
83
+ "vision": false,
84
+ },
85
+ {
86
+ "description": "Nous-Hermes-Llama2-7b is a state-of-the-art language model fine-tuned on over 300,000 instructions.",
87
+ "displayName": "Nous Hermes LLaMA-2 (7B)",
88
+ "enabled": false,
89
+ "functionCall": false,
90
+ "id": "NousResearch/Nous-Hermes-llama-2-7b",
91
+ "maxOutput": 4096,
92
+ "tokens": 4096,
93
+ "vision": false,
94
+ },
95
+ {
96
+ "description": "An OpenOrca dataset fine-tune on top of Mistral 7B by the OpenOrca team.",
97
+ "displayName": "OpenOrca Mistral (7B) 8K",
98
+ "enabled": false,
99
+ "functionCall": false,
100
+ "id": "Open-Orca/Mistral-7B-OpenOrca",
101
+ "maxOutput": 8192,
102
+ "tokens": 8192,
103
+ "vision": false,
104
+ },
105
+ {
106
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
107
+ "displayName": "Qwen 1.5 Chat (0.5B)",
108
+ "enabled": false,
109
+ "functionCall": false,
110
+ "id": "Qwen/Qwen1.5-0.5B-Chat",
111
+ "maxOutput": 32768,
112
+ "tokens": 32768,
113
+ "vision": false,
114
+ },
115
+ {
116
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
117
+ "displayName": "Qwen 1.5 Chat (1.8B)",
118
+ "enabled": false,
119
+ "functionCall": false,
120
+ "id": "Qwen/Qwen1.5-1.8B-Chat",
121
+ "maxOutput": 32768,
122
+ "tokens": 32768,
123
+ "vision": false,
124
+ },
125
+ {
126
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
127
+ "displayName": "Qwen 1.5 Chat (110B)",
128
+ "enabled": false,
129
+ "functionCall": false,
130
+ "id": "Qwen/Qwen1.5-110B-Chat",
131
+ "maxOutput": 32768,
132
+ "tokens": 32768,
133
+ "vision": false,
134
+ },
135
+ {
136
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
137
+ "displayName": "Qwen 1.5 Chat (14B)",
138
+ "enabled": true,
139
+ "functionCall": false,
140
+ "id": "Qwen/Qwen1.5-14B-Chat",
141
+ "maxOutput": 32768,
142
+ "tokens": 32768,
143
+ "vision": false,
144
+ },
145
+ {
146
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
147
+ "displayName": "Qwen 1.5 Chat (32B)",
148
+ "enabled": false,
149
+ "functionCall": false,
150
+ "id": "Qwen/Qwen1.5-32B-Chat",
151
+ "maxOutput": 32768,
152
+ "tokens": 32768,
153
+ "vision": false,
154
+ },
155
+ {
156
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
157
+ "displayName": "Qwen 1.5 Chat (4B)",
158
+ "enabled": false,
159
+ "functionCall": false,
160
+ "id": "Qwen/Qwen1.5-4B-Chat",
161
+ "maxOutput": 32768,
162
+ "tokens": 32768,
163
+ "vision": false,
164
+ },
165
+ {
166
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
167
+ "displayName": "Qwen 1.5 Chat (72B)",
168
+ "enabled": true,
169
+ "functionCall": false,
170
+ "id": "Qwen/Qwen1.5-72B-Chat",
171
+ "maxOutput": 32768,
172
+ "tokens": 32768,
173
+ "vision": false,
174
+ },
175
+ {
176
+ "description": "Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language model pretrained on a large amount of data. In comparison with the previous released Qwen.",
177
+ "displayName": "Qwen 1.5 Chat (7B)",
178
+ "enabled": true,
179
+ "functionCall": false,
180
+ "id": "Qwen/Qwen1.5-7B-Chat",
181
+ "maxOutput": 32768,
182
+ "tokens": 32768,
183
+ "vision": false,
184
+ },
185
+ {
186
+ "description": "Arctic is a dense-MoE Hybrid transformer architecture pre-trained from scratch by the Snowflake AI Research Team.",
187
+ "displayName": "Snowflake Arctic Instruct",
188
+ "enabled": false,
189
+ "functionCall": false,
190
+ "id": "Snowflake/snowflake-arctic-instruct",
191
+ "maxOutput": 4096,
192
+ "tokens": 4096,
193
+ "vision": false,
194
+ },
195
+ {
196
+ "description": "Re:MythoMax (ReMM) is a recreation trial of the original MythoMax-L2-B13 with updated models. This merge use SLERP [TESTING] to merge ReML and Huginn v1.2.",
197
+ "displayName": "ReMM SLERP L2 (13B)",
198
+ "enabled": false,
199
+ "functionCall": false,
200
+ "id": "Undi95/ReMM-SLERP-L2-13B",
201
+ "maxOutput": 4096,
202
+ "tokens": 4096,
203
+ "vision": false,
204
+ },
205
+ {
206
+ "description": "A merge of models built by Undi95 with the new task_arithmetic merge method from mergekit.",
207
+ "displayName": "Toppy M (7B)",
208
+ "enabled": false,
209
+ "functionCall": false,
210
+ "id": "Undi95/Toppy-M-7B",
211
+ "maxOutput": 4096,
212
+ "tokens": 4096,
213
+ "vision": false,
214
+ },
215
+ {
216
+ "description": "This model achieves a substantial and comprehensive improvement on coding, mathematical reasoning and open-domain conversation capacities",
217
+ "displayName": "WizardLM v1.2 (13B)",
218
+ "enabled": false,
219
+ "functionCall": false,
220
+ "id": "WizardLM/WizardLM-13B-V1.2",
221
+ "maxOutput": 4096,
222
+ "tokens": 4096,
223
+ "vision": false,
224
+ },
225
+ {
226
+ "description": "The OLMo models are trained on the Dolma dataset",
227
+ "displayName": "OLMo Instruct (7B)",
228
+ "enabled": false,
229
+ "functionCall": false,
230
+ "id": "allenai/OLMo-7B-Instruct",
231
+ "maxOutput": 2048,
232
+ "tokens": 2048,
233
+ "vision": false,
234
+ },
235
+ {
236
+ "description": "Code Llama is a family of large language models for code based on Llama 2 providing infilling capabilities, support for large input contexts, and zero-shot instruction following ability for programming tasks.",
237
+ "displayName": "Code Llama Instruct (13B)",
238
+ "enabled": false,
239
+ "functionCall": false,
240
+ "id": "codellama/CodeLlama-13b-Instruct-hf",
241
+ "maxOutput": 16384,
242
+ "tokens": 16384,
243
+ "vision": false,
244
+ },
245
+ {
246
+ "description": "Code Llama is a family of large language models for code based on Llama 2 providing infilling capabilities, support for large input contexts, and zero-shot instruction following ability for programming tasks.",
247
+ "displayName": "Code Llama Instruct (34B)",
248
+ "enabled": false,
249
+ "functionCall": false,
250
+ "id": "codellama/CodeLlama-34b-Instruct-hf",
251
+ "maxOutput": 16384,
252
+ "tokens": 16384,
253
+ "vision": false,
254
+ },
255
+ {
256
+ "description": "Code Llama is a family of large language models for code based on Llama 2 providing infilling capabilities, support for large input contexts, and zero-shot instruction following ability for programming tasks.",
257
+ "displayName": "Code Llama Instruct (70B)",
258
+ "enabled": false,
259
+ "functionCall": false,
260
+ "id": "codellama/CodeLlama-70b-Instruct-hf",
261
+ "maxOutput": 4096,
262
+ "tokens": 4096,
263
+ "vision": false,
264
+ },
265
+ {
266
+ "description": "Code Llama is a family of large language models for code based on Llama 2 providing infilling capabilities, support for large input contexts, and zero-shot instruction following ability for programming tasks.",
267
+ "displayName": "Code Llama Instruct (7B)",
268
+ "enabled": false,
269
+ "functionCall": false,
270
+ "id": "codellama/CodeLlama-7b-Instruct-hf",
271
+ "maxOutput": 16384,
272
+ "tokens": 16384,
273
+ "vision": false,
274
+ },
275
+ {
276
+ "description": "This Dolphin is really good at coding, I trained with a lot of coding data. It is very obedient but it is not DPO tuned - so you still might need to encourage it in the system prompt as I show in the below examples.",
277
+ "displayName": "Dolphin 2.5 Mixtral 8x7b",
278
+ "enabled": false,
279
+ "functionCall": false,
280
+ "id": "cognitivecomputations/dolphin-2.5-mixtral-8x7b",
281
+ "maxOutput": 32768,
282
+ "tokens": 32768,
283
+ "vision": false,
284
+ },
285
+ {
286
+ "description": "DBRX Instruct is a mixture-of-experts (MoE) large language model trained from scratch by Databricks. DBRX Instruct specializes in few-turn interactions.",
287
+ "displayName": "DBRX Instruct",
288
+ "enabled": false,
289
+ "functionCall": false,
290
+ "id": "databricks/dbrx-instruct",
291
+ "maxOutput": 32768,
292
+ "tokens": 32768,
293
+ "vision": false,
294
+ },
295
+ {
296
+ "description": "Deepseek Coder is composed of a series of code language models, each trained from scratch on 2T tokens, with a composition of 87% code and 13% natural language in both English and Chinese.",
297
+ "displayName": "Deepseek Coder Instruct (33B)",
298
+ "enabled": true,
299
+ "functionCall": false,
300
+ "id": "deepseek-ai/deepseek-coder-33b-instruct",
301
+ "maxOutput": 16384,
302
+ "tokens": 16384,
303
+ "vision": false,
304
+ },
305
+ {
306
+ "description": "trained from scratch on a vast dataset of 2 trillion tokens in both English and Chinese",
307
+ "displayName": "DeepSeek LLM Chat (67B)",
308
+ "enabled": false,
309
+ "functionCall": false,
310
+ "id": "deepseek-ai/deepseek-llm-67b-chat",
311
+ "maxOutput": 4096,
312
+ "tokens": 4096,
313
+ "vision": false,
314
+ },
315
+ {
316
+ "description": "An instruction fine-tuned LLaMA-2 (70B) model by merging Platypus2 (70B) by garage-bAInd and LLaMA-2 Instruct v2 (70B) by upstage.",
317
+ "displayName": "Platypus2 Instruct (70B)",
318
+ "enabled": false,
319
+ "functionCall": false,
320
+ "id": "garage-bAInd/Platypus2-70B-instruct",
321
+ "maxOutput": 4096,
322
+ "tokens": 4096,
323
+ "vision": false,
324
+ },
325
+ {
326
+ "description": "Gemma is a family of lightweight, state-of-the-art open models from Google, built from the same research and technology used to create the Gemini models.",
327
+ "displayName": "Gemma Instruct (2B)",
328
+ "enabled": true,
329
+ "functionCall": false,
330
+ "id": "google/gemma-2b-it",
331
+ "maxOutput": 8192,
332
+ "tokens": 8192,
333
+ "vision": false,
334
+ },
335
+ {
336
+ "description": "Gemma is a family of lightweight, state-of-the-art open models from Google, built from the same research and technology used to create the Gemini models.",
337
+ "displayName": "Gemma Instruct (7B)",
338
+ "enabled": true,
339
+ "functionCall": false,
340
+ "id": "google/gemma-7b-it",
341
+ "maxOutput": 8192,
342
+ "tokens": 8192,
343
+ "vision": false,
344
+ },
345
+ {
346
+ "description": "Vicuna is a chat assistant trained by fine-tuning Llama 2 on user-shared conversations collected from ShareGPT.",
347
+ "displayName": "Vicuna v1.5 (13B)",
348
+ "enabled": false,
349
+ "functionCall": false,
350
+ "id": "lmsys/vicuna-13b-v1.5",
351
+ "maxOutput": 4096,
352
+ "tokens": 4096,
353
+ "vision": false,
354
+ },
355
+ {
356
+ "description": "Vicuna is a chat assistant trained by fine-tuning Llama 2 on user-shared conversations collected from ShareGPT.",
357
+ "displayName": "Vicuna v1.5 (7B)",
358
+ "enabled": false,
359
+ "functionCall": false,
360
+ "id": "lmsys/vicuna-7b-v1.5",
361
+ "maxOutput": 4096,
362
+ "tokens": 4096,
363
+ "vision": false,
364
+ },
365
+ {
366
+ "description": "Llama 2-chat leverages publicly available instruction datasets and over 1 million human annotations. Available in three sizes: 7B, 13B and 70B parameters",
367
+ "displayName": "LLaMA-2 Chat (13B)",
368
+ "enabled": true,
369
+ "functionCall": false,
370
+ "id": "meta-llama/Llama-2-13b-chat-hf",
371
+ "maxOutput": 4096,
372
+ "tokens": 4096,
373
+ "vision": false,
374
+ },
375
+ {
376
+ "description": "Llama 2-chat leverages publicly available instruction datasets and over 1 million human annotations. Available in three sizes: 7B, 13B and 70B parameters",
377
+ "displayName": "LLaMA-2 Chat (70B)",
378
+ "enabled": false,
379
+ "functionCall": false,
380
+ "id": "meta-llama/Llama-2-70b-chat-hf",
381
+ "maxOutput": 4096,
382
+ "tokens": 4096,
383
+ "vision": false,
384
+ },
385
+ {
386
+ "description": "Llama 2-chat leverages publicly available instruction datasets and over 1 million human annotations. Available in three sizes: 7B, 13B and 70B parameters",
387
+ "displayName": "LLaMA-2 Chat (7B)",
388
+ "enabled": false,
389
+ "functionCall": false,
390
+ "id": "meta-llama/Llama-2-7b-chat-hf",
391
+ "maxOutput": 4096,
392
+ "tokens": 4096,
393
+ "vision": false,
394
+ },
395
+ {
396
+ "description": "Llama 3 is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align with human preferences for helpfulness and safety.",
397
+ "displayName": "Meta Llama 3 70B Instruct",
398
+ "enabled": false,
399
+ "functionCall": false,
400
+ "id": "meta-llama/Llama-3-70b-chat-hf",
401
+ "maxOutput": 8192,
402
+ "tokens": 8192,
403
+ "vision": false,
404
+ },
405
+ {
406
+ "description": "Llama 3 is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align with human preferences for helpfulness and safety.",
407
+ "displayName": "Meta Llama 3 8B Instruct",
408
+ "enabled": false,
409
+ "functionCall": false,
410
+ "id": "meta-llama/Llama-3-8b-chat-hf",
411
+ "maxOutput": 8192,
412
+ "tokens": 8192,
413
+ "vision": false,
414
+ },
415
+ {
416
+ "description": "WizardLM-2 8x22B is Wizard's most advanced model, demonstrates highly competitive performance compared to those leading proprietary works and consistently outperforms all the existing state-of-the-art opensource models.",
417
+ "displayName": "WizardLM-2 (8x22B)",
418
+ "enabled": false,
419
+ "functionCall": false,
420
+ "id": "microsoft/WizardLM-2-8x22B",
421
+ "maxOutput": 65536,
422
+ "tokens": 65536,
423
+ "vision": false,
424
+ },
425
+ {
426
+ "description": "instruct fine-tuned version of Mistral-7B-v0.1",
427
+ "displayName": "Mistral (7B) Instruct",
428
+ "enabled": false,
429
+ "functionCall": false,
430
+ "id": "mistralai/Mistral-7B-Instruct-v0.1",
431
+ "maxOutput": 4096,
432
+ "tokens": 4096,
433
+ "vision": false,
434
+ },
435
+ {
436
+ "description": "The Mistral-7B-Instruct-v0.2 Large Language Model (LLM) is an improved instruct fine-tuned version of Mistral-7B-Instruct-v0.1.",
437
+ "displayName": "Mistral (7B) Instruct v0.2",
438
+ "enabled": false,
439
+ "functionCall": false,
440
+ "id": "mistralai/Mistral-7B-Instruct-v0.2",
441
+ "maxOutput": 32768,
442
+ "tokens": 32768,
443
+ "vision": false,
444
+ },
445
+ {
446
+ "description": "The Mixtral-8x22B-Instruct-v0.1 Large Language Model (LLM) is an instruct fine-tuned version of the Mixtral-8x22B-v0.1.",
447
+ "displayName": "Mixtral-8x22B Instruct v0.1",
448
+ "enabled": false,
449
+ "functionCall": false,
450
+ "id": "mistralai/Mixtral-8x22B-Instruct-v0.1",
451
+ "maxOutput": 65536,
452
+ "tokens": 65536,
453
+ "vision": false,
454
+ },
455
+ {
456
+ "description": "The Mixtral-8x7B Large Language Model (LLM) is a pretrained generative Sparse Mixture of Experts.",
457
+ "displayName": "Mixtral-8x7B Instruct v0.1",
458
+ "enabled": true,
459
+ "functionCall": false,
460
+ "id": "mistralai/Mixtral-8x7B-Instruct-v0.1",
461
+ "maxOutput": 32768,
462
+ "tokens": 32768,
463
+ "vision": false,
464
+ },
465
+ {
466
+ "description": "A merge of OpenChat 3.5 was trained with C-RLFT on a collection of publicly available high-quality instruction data, with a custom processing pipeline.",
467
+ "displayName": "OpenChat 3.5",
468
+ "enabled": false,
469
+ "functionCall": false,
470
+ "id": "openchat/openchat-3.5-1210",
471
+ "maxOutput": 8192,
472
+ "tokens": 8192,
473
+ "vision": false,
474
+ },
475
+ {
476
+ "description": "A state-of-the-art model by Snorkel AI, DPO fine-tuned on Mistral-7B",
477
+ "displayName": "Snorkel Mistral PairRM DPO (7B)",
478
+ "enabled": false,
479
+ "functionCall": false,
480
+ "id": "snorkelai/Snorkel-Mistral-PairRM-DPO",
481
+ "maxOutput": 32768,
482
+ "tokens": 32768,
483
+ "vision": false,
484
+ },
485
+ {
486
+ "description": "State of the art Mistral Fine-tuned on extensive public datasets",
487
+ "displayName": "OpenHermes-2-Mistral (7B)",
488
+ "enabled": false,
489
+ "functionCall": false,
490
+ "id": "teknium/OpenHermes-2-Mistral-7B",
491
+ "maxOutput": 8192,
492
+ "tokens": 8192,
493
+ "vision": false,
494
+ },
495
+ {
496
+ "description": "Continuation of OpenHermes 2 Mistral model trained on additional code datasets",
497
+ "displayName": "OpenHermes-2.5-Mistral (7B)",
498
+ "enabled": false,
499
+ "functionCall": false,
500
+ "id": "teknium/OpenHermes-2p5-Mistral-7B",
501
+ "maxOutput": 8192,
502
+ "tokens": 8192,
503
+ "vision": false,
504
+ },
505
+ {
506
+ "description": "Extending LLaMA-2 to 32K context, built with Meta's Position Interpolation and Together AI's data recipe and system optimizations, instruction tuned by Together",
507
+ "displayName": "LLaMA-2-7B-32K-Instruct (7B)",
508
+ "enabled": false,
509
+ "functionCall": false,
510
+ "id": "togethercomputer/Llama-2-7B-32K-Instruct",
511
+ "maxOutput": 32768,
512
+ "tokens": 32768,
513
+ "vision": false,
514
+ },
515
+ {
516
+ "description": "Chat model fine-tuned using data from Dolly 2.0 and Open Assistant over the RedPajama-INCITE-Base-7B-v1 base model.",
517
+ "displayName": "RedPajama-INCITE Chat (7B)",
518
+ "enabled": false,
519
+ "functionCall": false,
520
+ "id": "togethercomputer/RedPajama-INCITE-7B-Chat",
521
+ "maxOutput": 2048,
522
+ "tokens": 2048,
523
+ "vision": false,
524
+ },
525
+ {
526
+ "description": "Chat model fine-tuned using data from Dolly 2.0 and Open Assistant over the RedPajama-INCITE-Base-3B-v1 base model.",
527
+ "displayName": "RedPajama-INCITE Chat (3B)",
528
+ "enabled": false,
529
+ "functionCall": false,
530
+ "id": "togethercomputer/RedPajama-INCITE-Chat-3B-v1",
531
+ "maxOutput": 2048,
532
+ "tokens": 2048,
533
+ "vision": false,
534
+ },
535
+ {
536
+ "description": "A hybrid architecture composed of multi-head, grouped-query attention and gated convolutions arranged in Hyena blocks, different from traditional decoder-only Transformers",
537
+ "displayName": "StripedHyena Nous (7B)",
538
+ "enabled": false,
539
+ "functionCall": false,
540
+ "id": "togethercomputer/StripedHyena-Nous-7B",
541
+ "maxOutput": 32768,
542
+ "tokens": 32768,
543
+ "vision": false,
544
+ },
545
+ {
546
+ "description": "Fine-tuned from the LLaMA 7B model on 52K instruction-following demonstrations. ",
547
+ "displayName": "Alpaca (7B)",
548
+ "enabled": false,
549
+ "functionCall": false,
550
+ "id": "togethercomputer/alpaca-7b",
551
+ "maxOutput": 2048,
552
+ "tokens": 2048,
553
+ "vision": false,
554
+ },
555
+ {
556
+ "description": "Built on the Llama2 architecture, SOLAR-10.7B incorporates the innovative Upstage Depth Up-Scaling",
557
+ "displayName": "Upstage SOLAR Instruct v1 (11B)",
558
+ "enabled": false,
559
+ "functionCall": false,
560
+ "id": "upstage/SOLAR-10.7B-Instruct-v1.0",
561
+ "maxOutput": 4096,
562
+ "tokens": 4096,
563
+ "vision": false,
564
+ },
565
+ {
566
+ "description": "The Yi series models are large language models trained from scratch by developers at 01.AI",
567
+ "displayName": "01-ai Yi Chat (34B)",
568
+ "enabled": true,
569
+ "functionCall": false,
570
+ "id": "zero-one-ai/Yi-34B-Chat",
571
+ "maxOutput": 4096,
572
+ "tokens": 4096,
573
+ "vision": false,
574
+ },
575
+ {
576
+ "description": "Llama 3 is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align with human preferences for helpfulness and safety.",
577
+ "displayName": "Llama3 8B Chat HF INT4",
578
+ "enabled": false,
579
+ "functionCall": false,
580
+ "id": "togethercomputer/Llama-3-8b-chat-hf-int4",
581
+ "maxOutput": 8192,
582
+ "tokens": 8192,
583
+ "vision": false,
584
+ },
585
+ {
586
+ "description": "Llama 3 is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align with human preferences for helpfulness and safety.",
587
+ "displayName": "Togethercomputer Llama3 8B Instruct Int8",
588
+ "enabled": false,
589
+ "functionCall": false,
590
+ "id": "togethercomputer/Llama-3-8b-chat-hf-int8",
591
+ "maxOutput": 8192,
592
+ "tokens": 8192,
593
+ "vision": false,
594
+ },
595
+ {
596
+ "description": "Chat model based on EleutherAI’s Pythia-7B model, and is fine-tuned with data focusing on dialog-style interactions.",
597
+ "displayName": "Pythia-Chat-Base (7B)",
598
+ "enabled": false,
599
+ "functionCall": false,
600
+ "id": "togethercomputer/Pythia-Chat-Base-7B-v0.16",
601
+ "maxOutput": 2048,
602
+ "tokens": 2048,
603
+ "vision": false,
604
+ },
605
+ {
606
+ "description": "Chat model for dialogue generation finetuned on ShareGPT-Vicuna, Camel-AI, GPTeacher, Guanaco, Baize and some generated datasets.",
607
+ "displayName": "MPT-Chat (30B)",
608
+ "enabled": false,
609
+ "functionCall": false,
610
+ "id": "togethercomputer/mpt-30b-chat",
611
+ "maxOutput": 2048,
612
+ "tokens": 2048,
613
+ "vision": false,
614
+ },
615
+ {
616
+ "description": "Chatbot trained by fine-tuning LLaMA on dialogue data gathered from the web.",
617
+ "displayName": "Koala (7B)",
618
+ "enabled": false,
619
+ "functionCall": false,
620
+ "id": "togethercomputer/Koala-7B",
621
+ "maxOutput": 2048,
622
+ "tokens": 2048,
623
+ "vision": false,
624
+ },
625
+ {
626
+ "description": "An instruction-following LLM based on pythia-12b, and trained on ~15k instruction/response fine tuning records generated by Databricks employees.",
627
+ "displayName": "Dolly v2 (12B)",
628
+ "enabled": false,
629
+ "functionCall": false,
630
+ "id": "databricks/dolly-v2-12b",
631
+ "maxOutput": 2048,
632
+ "tokens": 2048,
633
+ "vision": false,
634
+ },
635
+ {
636
+ "description": "An instruction-following LLM based on pythia-3b, and trained on ~15k instruction/response fine tuning records generated by Databricks employees.",
637
+ "displayName": "Dolly v2 (3B)",
638
+ "enabled": false,
639
+ "functionCall": false,
640
+ "id": "databricks/dolly-v2-3b",
641
+ "maxOutput": 2048,
642
+ "tokens": 2048,
643
+ "vision": false,
644
+ },
645
+ {
646
+ "description": "Instruction-following language model built on LLaMA. Expanding upon the initial 52K dataset from the Alpaca model, an additional 534,530 focused on multi-lingual tasks.",
647
+ "displayName": "Guanaco (65B) ",
648
+ "enabled": false,
649
+ "functionCall": false,
650
+ "id": "togethercomputer/guanaco-65b",
651
+ "maxOutput": 2048,
652
+ "tokens": 2048,
653
+ "vision": false,
654
+ },
655
+ {
656
+ "description": "Chatbot trained by fine-tuning Flan-t5-xl on user-shared conversations collected from ShareGPT.",
657
+ "displayName": "Vicuna-FastChat-T5 (3B)",
658
+ "enabled": false,
659
+ "functionCall": false,
660
+ "id": "lmsys/fastchat-t5-3b-v1.0",
661
+ "maxOutput": 512,
662
+ "tokens": 512,
663
+ "vision": false,
664
+ },
665
+ {
666
+ "description": "Chat-based and open-source assistant. The vision of the project is to make a large language model that can run on a single high-end consumer GPU. ",
667
+ "displayName": "Open-Assistant StableLM SFT-7 (7B)",
668
+ "enabled": false,
669
+ "functionCall": false,
670
+ "id": "OpenAssistant/stablelm-7b-sft-v7-epoch-3",
671
+ "maxOutput": 4096,
672
+ "tokens": 4096,
673
+ "vision": true,
674
+ },
675
+ {
676
+ "description": "Chat model for dialogue generation finetuned on ShareGPT-Vicuna, Camel-AI, GPTeacher, Guanaco, Baize and some generated datasets.",
677
+ "displayName": "MPT-Chat (7B)",
678
+ "enabled": false,
679
+ "functionCall": false,
680
+ "id": "togethercomputer/mpt-7b-chat",
681
+ "maxOutput": 2048,
682
+ "tokens": 2048,
683
+ "vision": false,
684
+ },
685
+ {
686
+ "description": "Chat-based and open-source assistant. The vision of the project is to make a large language model that can run on a single high-end consumer GPU. ",
687
+ "displayName": "Open-Assistant Pythia SFT-4 (12B)",
688
+ "enabled": false,
689
+ "functionCall": false,
690
+ "id": "OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5",
691
+ "maxOutput": 2048,
692
+ "tokens": 2048,
693
+ "vision": true,
694
+ },
695
+ {
696
+ "description": "Chatbot trained by fine-tuning LLaMA on user-shared conversations collected from ShareGPT. Auto-regressive model, based on the transformer architecture.",
697
+ "displayName": "Vicuna v1.3 (7B)",
698
+ "enabled": false,
699
+ "functionCall": false,
700
+ "id": "lmsys/vicuna-7b-v1.3",
701
+ "maxOutput": 2048,
702
+ "tokens": 2048,
703
+ "vision": false,
704
+ },
705
+ {
706
+ "description": "Nous-Hermes-Llama2-70b is a state-of-the-art language model fine-tuned on over 300,000 instructions.",
707
+ "displayName": "Nous Hermes LLaMA-2 (70B)",
708
+ "enabled": false,
709
+ "functionCall": false,
710
+ "id": "NousResearch/Nous-Hermes-Llama2-70b",
711
+ "maxOutput": 4096,
712
+ "tokens": 4096,
713
+ "vision": false,
714
+ },
715
+ {
716
+ "description": "Vicuna is a chat assistant trained by fine-tuning Llama 2 on user-shared conversations collected from ShareGPT.",
717
+ "displayName": "Vicuna v1.5 16K (13B)",
718
+ "enabled": false,
719
+ "functionCall": false,
720
+ "id": "lmsys/vicuna-13b-v1.5-16k",
721
+ "maxOutput": 16384,
722
+ "tokens": 16384,
723
+ "vision": false,
724
+ },
725
+ {
726
+ "description": "Chat model fine-tuned from EleutherAI’s GPT-NeoX with over 40 million instructions on carbon reduced compute.",
727
+ "displayName": "GPT-NeoXT-Chat-Base (20B)",
728
+ "enabled": false,
729
+ "functionCall": false,
730
+ "id": "togethercomputer/GPT-NeoXT-Chat-Base-20B",
731
+ "maxOutput": 2048,
732
+ "tokens": 2048,
733
+ "vision": false,
734
+ },
735
+ {
736
+ "description": "A fine-tuned version of Mistral-7B to act as a helpful assistant.",
737
+ "displayName": "Zephyr-7B-ß",
738
+ "enabled": false,
739
+ "functionCall": false,
740
+ "id": "HuggingFaceH4/zephyr-7b-beta",
741
+ "maxOutput": 32768,
742
+ "tokens": 32768,
743
+ "vision": false,
744
+ },
745
+ {
746
+ "description": "Code Llama is a family of large language models for code based on Llama 2 providing infilling capabilities, support for large input contexts, and zero-shot instruction following ability for programming tasks.",
747
+ "displayName": "Code Llama Instruct (7B)",
748
+ "enabled": false,
749
+ "functionCall": false,
750
+ "id": "togethercomputer/CodeLlama-7b-Instruct",
751
+ "maxOutput": 16384,
752
+ "tokens": 16384,
753
+ "vision": false,
754
+ },
755
+ {
756
+ "description": "Instruction-following language model built on LLaMA. Expanding upon the initial 52K dataset from the Alpaca model, an additional 534,530 focused on multi-lingual tasks.",
757
+ "displayName": "Guanaco (13B) ",
758
+ "enabled": false,
759
+ "functionCall": false,
760
+ "id": "togethercomputer/guanaco-13b",
761
+ "maxOutput": 2048,
762
+ "tokens": 2048,
763
+ "vision": false,
764
+ },
765
+ {
766
+ "description": "Llama 2-chat leverages publicly available instruction datasets and over 1 million human annotations. Available in three sizes: 7B, 13B and 70B parameters",
767
+ "displayName": "LLaMA-2 Chat (70B)",
768
+ "enabled": false,
769
+ "functionCall": false,
770
+ "id": "togethercomputer/llama-2-70b-chat",
771
+ "maxOutput": 4096,
772
+ "tokens": 4096,
773
+ "vision": false,
774
+ },
775
+ {
776
+ "description": "Code Llama is a family of large language models for code based on Llama 2 providing infilling capabilities, support for large input contexts, and zero-shot instruction following ability for programming tasks.",
777
+ "displayName": "Code Llama Instruct (34B)",
778
+ "enabled": false,
779
+ "functionCall": false,
780
+ "id": "togethercomputer/CodeLlama-34b-Instruct",
781
+ "maxOutput": 16384,
782
+ "tokens": 16384,
783
+ "vision": false,
784
+ },
785
+ {
786
+ "description": "Code Llama is a family of large language models for code based on Llama 2 providing infilling capabilities, support for large input contexts, and zero-shot instruction following ability for programming tasks.",
787
+ "displayName": "Code Llama Instruct (13B)",
788
+ "enabled": false,
789
+ "functionCall": false,
790
+ "id": "togethercomputer/CodeLlama-13b-Instruct",
791
+ "maxOutput": 16384,
792
+ "tokens": 16384,
793
+ "vision": false,
794
+ },
795
+ {
796
+ "description": "Llama 2-chat leverages publicly available instruction datasets and over 1 million human annotations. Available in three sizes: 7B, 13B and 70B parameters",
797
+ "displayName": "LLaMA-2 Chat (13B)",
798
+ "enabled": false,
799
+ "functionCall": false,
800
+ "id": "togethercomputer/llama-2-13b-chat",
801
+ "maxOutput": 4096,
802
+ "tokens": 4096,
803
+ "vision": false,
804
+ },
805
+ {
806
+ "description": "Chatbot trained by fine-tuning LLaMA on user-shared conversations collected from ShareGPT. Auto-regressive model, based on the transformer architecture.",
807
+ "displayName": "Vicuna v1.3 (13B)",
808
+ "enabled": false,
809
+ "functionCall": false,
810
+ "id": "lmsys/vicuna-13b-v1.3",
811
+ "maxOutput": 2048,
812
+ "tokens": 2048,
813
+ "vision": false,
814
+ },
815
+ {
816
+ "description": "Fine-tuned from StarCoder to act as a helpful coding assistant. As an alpha release is only intended for educational or research purpopses.",
817
+ "displayName": "StarCoderChat Alpha (16B)",
818
+ "enabled": false,
819
+ "functionCall": false,
820
+ "id": "HuggingFaceH4/starchat-alpha",
821
+ "maxOutput": 8192,
822
+ "tokens": 8192,
823
+ "vision": false,
824
+ },
825
+ {
826
+ "description": "An instruction-following LLM based on pythia-7b, and trained on ~15k instruction/response fine tuning records generated by Databricks employees.",
827
+ "displayName": "Dolly v2 (7B)",
828
+ "enabled": false,
829
+ "functionCall": false,
830
+ "id": "databricks/dolly-v2-7b",
831
+ "maxOutput": 2048,
832
+ "tokens": 2048,
833
+ "vision": false,
834
+ },
835
+ {
836
+ "description": "Instruction-following language model built on LLaMA. Expanding upon the initial 52K dataset from the Alpaca model, an additional 534,530 focused on multi-lingual tasks.",
837
+ "displayName": "Guanaco (33B) ",
838
+ "enabled": false,
839
+ "functionCall": false,
840
+ "id": "togethercomputer/guanaco-33b",
841
+ "maxOutput": 2048,
842
+ "tokens": 2048,
843
+ "vision": false,
844
+ },
845
+ {
846
+ "description": "Chatbot trained by fine-tuning LLaMA on dialogue data gathered from the web.",
847
+ "displayName": "Koala (13B)",
848
+ "enabled": false,
849
+ "functionCall": false,
850
+ "id": "togethercomputer/Koala-13B",
851
+ "maxOutput": 2048,
852
+ "tokens": 2048,
853
+ "vision": false,
854
+ },
855
+ {
856
+ "description": "Llama 2-chat leverages publicly available instruction datasets and over 1 million human annotations. Available in three sizes: 7B, 13B and 70B parameters",
857
+ "displayName": "LLaMA-2 Chat (7B)",
858
+ "enabled": false,
859
+ "functionCall": false,
860
+ "id": "togethercomputer/llama-2-7b-chat",
861
+ "maxOutput": 4096,
862
+ "tokens": 4096,
863
+ "vision": false,
864
+ },
865
+ {
866
+ "description": "Built on the Llama2 architecture, SOLAR-10.7B incorporates the innovative Upstage Depth Up-Scaling",
867
+ "displayName": "Upstage SOLAR Instruct v1 (11B)-Int4",
868
+ "enabled": false,
869
+ "functionCall": false,
870
+ "id": "togethercomputer/SOLAR-10.7B-Instruct-v1.0-int4",
871
+ "maxOutput": 4096,
872
+ "tokens": 4096,
873
+ "vision": false,
874
+ },
875
+ {
876
+ "description": "Instruction-following language model built on LLaMA. Expanding upon the initial 52K dataset from the Alpaca model, an additional 534,530 focused on multi-lingual tasks. ",
877
+ "displayName": "Guanaco (7B) ",
878
+ "enabled": false,
879
+ "functionCall": false,
880
+ "id": "togethercomputer/guanaco-7b",
881
+ "maxOutput": 2048,
882
+ "tokens": 2048,
883
+ "vision": false,
884
+ },
885
+ ]
886
+ `;