@lobehub/chat 1.77.16 → 1.77.17

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 (100) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/changelog/v1.json +9 -0
  3. package/docker-compose/local/docker-compose.yml +2 -1
  4. package/locales/ar/components.json +4 -0
  5. package/locales/ar/modelProvider.json +1 -0
  6. package/locales/ar/models.json +8 -5
  7. package/locales/bg-BG/components.json +4 -0
  8. package/locales/bg-BG/modelProvider.json +1 -0
  9. package/locales/bg-BG/models.json +8 -5
  10. package/locales/de-DE/components.json +4 -0
  11. package/locales/de-DE/modelProvider.json +1 -0
  12. package/locales/de-DE/models.json +8 -5
  13. package/locales/en-US/components.json +4 -0
  14. package/locales/en-US/modelProvider.json +1 -0
  15. package/locales/en-US/models.json +8 -5
  16. package/locales/es-ES/components.json +4 -0
  17. package/locales/es-ES/modelProvider.json +1 -0
  18. package/locales/es-ES/models.json +7 -4
  19. package/locales/fa-IR/components.json +4 -0
  20. package/locales/fa-IR/modelProvider.json +1 -0
  21. package/locales/fa-IR/models.json +7 -4
  22. package/locales/fr-FR/components.json +4 -0
  23. package/locales/fr-FR/modelProvider.json +1 -0
  24. package/locales/fr-FR/models.json +8 -5
  25. package/locales/it-IT/components.json +4 -0
  26. package/locales/it-IT/modelProvider.json +1 -0
  27. package/locales/it-IT/models.json +7 -4
  28. package/locales/ja-JP/components.json +4 -0
  29. package/locales/ja-JP/modelProvider.json +1 -0
  30. package/locales/ja-JP/models.json +8 -5
  31. package/locales/ko-KR/components.json +4 -0
  32. package/locales/ko-KR/modelProvider.json +1 -0
  33. package/locales/ko-KR/models.json +8 -5
  34. package/locales/nl-NL/components.json +4 -0
  35. package/locales/nl-NL/modelProvider.json +1 -0
  36. package/locales/nl-NL/models.json +8 -5
  37. package/locales/pl-PL/components.json +4 -0
  38. package/locales/pl-PL/modelProvider.json +1 -0
  39. package/locales/pl-PL/models.json +8 -5
  40. package/locales/pt-BR/components.json +4 -0
  41. package/locales/pt-BR/modelProvider.json +1 -0
  42. package/locales/pt-BR/models.json +7 -4
  43. package/locales/ru-RU/components.json +4 -0
  44. package/locales/ru-RU/modelProvider.json +1 -0
  45. package/locales/ru-RU/models.json +7 -4
  46. package/locales/tr-TR/components.json +4 -0
  47. package/locales/tr-TR/modelProvider.json +1 -0
  48. package/locales/tr-TR/models.json +8 -5
  49. package/locales/vi-VN/components.json +4 -0
  50. package/locales/vi-VN/modelProvider.json +1 -0
  51. package/locales/vi-VN/models.json +8 -5
  52. package/locales/zh-CN/components.json +4 -0
  53. package/locales/zh-CN/modelProvider.json +1 -0
  54. package/locales/zh-CN/models.json +9 -6
  55. package/locales/zh-TW/components.json +4 -0
  56. package/locales/zh-TW/modelProvider.json +1 -0
  57. package/locales/zh-TW/models.json +7 -4
  58. package/package.json +1 -1
  59. package/src/app/(backend)/webapi/models/[provider]/pull/route.ts +34 -0
  60. package/src/app/(backend)/webapi/{chat/models → models}/[provider]/route.ts +1 -2
  61. package/src/app/[variants]/(main)/settings/llm/ProviderList/Ollama/index.tsx +0 -7
  62. package/src/app/[variants]/(main)/settings/provider/(detail)/ollama/CheckError.tsx +1 -1
  63. package/src/components/FormAction/index.tsx +1 -1
  64. package/src/database/models/__tests__/aiProvider.test.ts +100 -0
  65. package/src/database/models/aiProvider.ts +11 -1
  66. package/src/features/Conversation/Error/OllamaBizError/InvalidOllamaModel.tsx +43 -0
  67. package/src/features/Conversation/Error/OllamaDesktopSetupGuide/index.tsx +61 -0
  68. package/src/features/Conversation/Error/index.tsx +7 -0
  69. package/src/features/DevPanel/SystemInspector/ServerConfig.tsx +18 -2
  70. package/src/features/DevPanel/SystemInspector/index.tsx +25 -6
  71. package/src/features/OllamaModelDownloader/index.tsx +149 -0
  72. package/src/libs/agent-runtime/AgentRuntime.ts +6 -0
  73. package/src/libs/agent-runtime/BaseAI.ts +7 -0
  74. package/src/libs/agent-runtime/ollama/index.ts +84 -2
  75. package/src/libs/agent-runtime/openrouter/__snapshots__/index.test.ts.snap +24 -3263
  76. package/src/libs/agent-runtime/openrouter/fixtures/frontendModels.json +25 -0
  77. package/src/libs/agent-runtime/openrouter/fixtures/models.json +0 -3353
  78. package/src/libs/agent-runtime/openrouter/index.test.ts +56 -1
  79. package/src/libs/agent-runtime/openrouter/index.ts +9 -4
  80. package/src/libs/agent-runtime/types/index.ts +1 -0
  81. package/src/libs/agent-runtime/types/model.ts +44 -0
  82. package/src/libs/agent-runtime/utils/streams/index.ts +1 -0
  83. package/src/libs/agent-runtime/utils/streams/model.ts +110 -0
  84. package/src/locales/default/components.ts +4 -0
  85. package/src/locales/default/modelProvider.ts +1 -0
  86. package/src/services/__tests__/models.test.ts +21 -0
  87. package/src/services/_url.ts +4 -1
  88. package/src/services/chat.ts +1 -1
  89. package/src/services/models.ts +153 -7
  90. package/src/store/aiInfra/slices/aiModel/action.ts +1 -1
  91. package/src/store/aiInfra/slices/aiProvider/action.ts +2 -1
  92. package/src/store/user/slices/modelList/action.test.ts +2 -2
  93. package/src/store/user/slices/modelList/action.ts +1 -1
  94. package/src/app/[variants]/(main)/settings/llm/ProviderList/Ollama/Checker.tsx +0 -73
  95. package/src/app/[variants]/(main)/settings/provider/(detail)/ollama/OllamaModelDownloader/index.tsx +0 -127
  96. package/src/features/Conversation/Error/OllamaBizError/InvalidOllamaModel/index.tsx +0 -154
  97. package/src/features/Conversation/Error/OllamaBizError/InvalidOllamaModel/useDownloadMonitor.ts +0 -29
  98. package/src/services/__tests__/ollama.test.ts +0 -28
  99. package/src/services/ollama.ts +0 -83
  100. /package/src/{app/[variants]/(main)/settings/provider/(detail)/ollama → features}/OllamaModelDownloader/useDownloadMonitor.ts +0 -0
@@ -13,3358 +13,5 @@
13
13
  "is_moderated": false
14
14
  },
15
15
  "per_request_limits": null
16
- },
17
- {
18
- "id": "mattshumer/reflection-70b",
19
- "name": "Reflection 70B",
20
- "created": 1725580800,
21
- "description": "Reflection Llama-3.1 70B is trained with a new technique called Reflection-Tuning that teaches a LLM to detect mistakes in its reasoning and correct course.\n\nThe model was trained on synthetic data.",
22
- "context_length": 131072,
23
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
24
- "pricing": {
25
- "prompt": "0.00000035",
26
- "completion": "0.0000004",
27
- "image": "0",
28
- "request": "0"
29
- },
30
- "top_provider": {
31
- "context_length": 8192,
32
- "max_completion_tokens": null,
33
- "is_moderated": false
34
- },
35
- "per_request_limits": null
36
- },
37
- {
38
- "id": "cohere/command-r-03-2024",
39
- "name": "Cohere: Command R (03-2024)",
40
- "created": 1725062400,
41
- "description": "Command-R is a 35B parameter model that performs conversational language tasks at a higher quality, more reliably, and with a longer context than previous models. It can be used for complex workflows like code generation, retrieval augmented generation (RAG), tool use, and agents.\n\nRead the launch post [here](https://txt.cohere.com/command-r/).\n\nUse of this model is subject to Cohere's [Acceptable Use Policy](https://docs.cohere.com/docs/c4ai-acceptable-use-policy).",
42
- "context_length": 128000,
43
- "architecture": { "modality": "text->text", "tokenizer": "Cohere", "instruct_type": null },
44
- "pricing": { "prompt": "0.0000005", "completion": "0.0000015", "image": "0", "request": "0" },
45
- "top_provider": {
46
- "context_length": 128000,
47
- "max_completion_tokens": 4000,
48
- "is_moderated": false
49
- },
50
- "per_request_limits": null
51
- },
52
- {
53
- "id": "cohere/command-r-plus-04-2024",
54
- "name": "Cohere: Command R+ (04-2024)",
55
- "created": 1725062400,
56
- "description": "Command R+ is a new, 104B-parameter LLM from Cohere. It's useful for roleplay, general consumer usecases, and Retrieval Augmented Generation (RAG).\n\nIt offers multilingual support for ten key languages to facilitate global business operations. See benchmarks and the launch post [here](https://txt.cohere.com/command-r-plus-microsoft-azure/).\n\nUse of this model is subject to Cohere's [Acceptable Use Policy](https://docs.cohere.com/docs/c4ai-acceptable-use-policy).",
57
- "context_length": 128000,
58
- "architecture": { "modality": "text->text", "tokenizer": "Cohere", "instruct_type": null },
59
- "pricing": { "prompt": "0.000003", "completion": "0.000015", "image": "0", "request": "0" },
60
- "top_provider": {
61
- "context_length": 128000,
62
- "max_completion_tokens": 4000,
63
- "is_moderated": false
64
- },
65
- "per_request_limits": null
66
- },
67
- {
68
- "id": "cohere/command-r-plus-08-2024",
69
- "name": "Cohere: Command R+ (08-2024)",
70
- "created": 1724976000,
71
- "description": "command-r-plus-08-2024 is an update of the [Command R+](/models/cohere/command-r-plus) with roughly 50% higher throughput and 25% lower latencies as compared to the previous Command R+ version, while keeping the hardware footprint the same.\n\nRead the launch post [here](https://docs.cohere.com/changelog/command-gets-refreshed).\n\nUse of this model is subject to Cohere's [Acceptable Use Policy](https://docs.cohere.com/docs/c4ai-acceptable-use-policy).",
72
- "context_length": 128000,
73
- "architecture": { "modality": "text->text", "tokenizer": "Cohere", "instruct_type": null },
74
- "pricing": { "prompt": "0.0000025", "completion": "0.00001", "image": "0", "request": "0" },
75
- "top_provider": {
76
- "context_length": 128000,
77
- "max_completion_tokens": 4000,
78
- "is_moderated": false
79
- },
80
- "per_request_limits": null
81
- },
82
- {
83
- "id": "cohere/command-r-08-2024",
84
- "name": "Cohere: Command R (08-2024)",
85
- "created": 1724976000,
86
- "description": "command-r-08-2024 is an update of the [Command R](/models/cohere/command-r) with improved performance for multilingual retrieval-augmented generation (RAG) and tool use. More broadly, it is better at math, code and reasoning and is competitive with the previous version of the larger Command R+ model.\n\nRead the launch post [here](https://docs.cohere.com/changelog/command-gets-refreshed).\n\nUse of this model is subject to Cohere's [Acceptable Use Policy](https://docs.cohere.com/docs/c4ai-acceptable-use-policy).",
87
- "context_length": 128000,
88
- "architecture": { "modality": "text->text", "tokenizer": "Cohere", "instruct_type": null },
89
- "pricing": {
90
- "prompt": "0.00000015",
91
- "completion": "0.0000006",
92
- "image": "0",
93
- "request": "0"
94
- },
95
- "top_provider": {
96
- "context_length": 128000,
97
- "max_completion_tokens": 4000,
98
- "is_moderated": false
99
- },
100
- "per_request_limits": null
101
- },
102
- {
103
- "id": "google/gemini-flash-8b-1.5-exp",
104
- "name": "Google: Gemini Flash 8B 1.5 Experimental",
105
- "created": 1724803200,
106
- "description": "Gemini 1.5 Flash 8B Experimental is an experimental, 8B parameter version of the [Gemini 1.5 Flash](/models/google/gemini-flash-1.5) model.\n\nUsage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.dev/terms).\n\n#multimodal\n\nNote: This model is experimental and not suited for production use-cases. It may be removed or redirected to another model in the future.",
107
- "context_length": 4000000,
108
- "architecture": {
109
- "modality": "text+image->text",
110
- "tokenizer": "Gemini",
111
- "instruct_type": null
112
- },
113
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
114
- "top_provider": {
115
- "context_length": 4000000,
116
- "max_completion_tokens": 32768,
117
- "is_moderated": false
118
- },
119
- "per_request_limits": null
120
- },
121
- {
122
- "id": "google/gemini-flash-1.5-exp",
123
- "name": "Google: Gemini Flash 1.5 Experimental",
124
- "created": 1724803200,
125
- "description": "Gemini 1.5 Flash Experimental is an experimental version of the [Gemini 1.5 Flash](/models/google/gemini-flash-1.5) model.\n\nUsage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.dev/terms).\n\n#multimodal\n\nNote: This model is experimental and not suited for production use-cases. It may be removed or redirected to another model in the future.",
126
- "context_length": 4000000,
127
- "architecture": {
128
- "modality": "text+image->text",
129
- "tokenizer": "Gemini",
130
- "instruct_type": null
131
- },
132
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
133
- "top_provider": {
134
- "context_length": 4000000,
135
- "max_completion_tokens": 32768,
136
- "is_moderated": false
137
- },
138
- "per_request_limits": null
139
- },
140
- {
141
- "id": "sao10k/l3.1-euryale-70b",
142
- "name": "Llama 3.1 Euryale 70B v2.2",
143
- "created": 1724803200,
144
- "description": "Euryale L3.1 70B v2.2 is a model focused on creative roleplay from [Sao10k](https://ko-fi.com/sao10k). It is the successor of [Euryale L3 70B v2.1](/models/sao10k/l3-euryale-70b).",
145
- "context_length": 8192,
146
- "architecture": {
147
- "modality": "text->text",
148
- "tokenizer": "Llama3",
149
- "instruct_type": "llama3"
150
- },
151
- "pricing": { "prompt": "0.0000015", "completion": "0.0000015", "image": "0", "request": "0" },
152
- "top_provider": {
153
- "context_length": 16000,
154
- "max_completion_tokens": null,
155
- "is_moderated": false
156
- },
157
- "per_request_limits": null
158
- },
159
- {
160
- "id": "ai21/jamba-1-5-large",
161
- "name": "AI21: Jamba 1.5 Large",
162
- "created": 1724371200,
163
- "description": "Jamba 1.5 Large is part of AI21's new family of open models, offering superior speed, efficiency, and quality.\n\nIt features a 256K effective context window, the longest among open models, enabling improved performance on tasks like document summarization and analysis.\n\nBuilt on a novel SSM-Transformer architecture, it outperforms larger models like Llama 3.1 70B on benchmarks while maintaining resource efficiency.\n\nRead their [announcement](https://www.ai21.com/blog/announcing-jamba-model-family) to learn more.",
164
- "context_length": 256000,
165
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": null },
166
- "pricing": { "prompt": "0.000002", "completion": "0.000008", "image": "0", "request": "0" },
167
- "top_provider": {
168
- "context_length": 256000,
169
- "max_completion_tokens": 4096,
170
- "is_moderated": false
171
- },
172
- "per_request_limits": null
173
- },
174
- {
175
- "id": "ai21/jamba-1-5-mini",
176
- "name": "AI21: Jamba 1.5 Mini",
177
- "created": 1724371200,
178
- "description": "Jamba 1.5 Mini is the world's first production-grade Mamba-based model, combining SSM and Transformer architectures for a 256K context window and high efficiency.\n\nIt works with 9 languages and can handle various writing and analysis tasks as well as or better than similar small models.\n\nThis model uses less computer memory and works faster with longer texts than previous designs.\n\nRead their [announcement](https://www.ai21.com/blog/announcing-jamba-model-family) to learn more.",
179
- "context_length": 256000,
180
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": null },
181
- "pricing": { "prompt": "0.0000002", "completion": "0.0000004", "image": "0", "request": "0" },
182
- "top_provider": {
183
- "context_length": 256000,
184
- "max_completion_tokens": 4096,
185
- "is_moderated": false
186
- },
187
- "per_request_limits": null
188
- },
189
- {
190
- "id": "microsoft/phi-3.5-mini-128k-instruct",
191
- "name": "Phi-3.5 Mini 128K Instruct",
192
- "created": 1724198400,
193
- "description": "Phi-3.5 models are lightweight, state-of-the-art open models. These models were trained with Phi-3 datasets that include both synthetic data and the filtered, publicly available websites data, with a focus on high quality and reasoning-dense properties. Phi-3.5 Mini uses 3.8B parameters, and is a dense decoder-only transformer model using the same tokenizer as [Phi-3 Mini](/models/microsoft/phi-3-mini-128k-instruct).\n\nThe models underwent a rigorous enhancement process, incorporating both supervised fine-tuning, proximal policy optimization, and direct preference optimization to ensure precise instruction adherence and robust safety measures. When assessed against benchmarks that test common sense, language understanding, math, code, long context and logical reasoning, Phi-3.5 models showcased robust and state-of-the-art performance among models with less than 13 billion parameters.",
194
- "context_length": 128000,
195
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": "phi3" },
196
- "pricing": { "prompt": "0.0000001", "completion": "0.0000001", "image": "0", "request": "0" },
197
- "top_provider": {
198
- "context_length": 128000,
199
- "max_completion_tokens": null,
200
- "is_moderated": false
201
- },
202
- "per_request_limits": null
203
- },
204
- {
205
- "id": "nousresearch/hermes-3-llama-3.1-70b",
206
- "name": "Nous: Hermes 3 70B Instruct",
207
- "created": 1723939200,
208
- "description": "Hermes 3 is a generalist language model with many improvements over [Hermes 2](/models/nousresearch/nous-hermes-2-mistral-7b-dpo), including advanced agentic capabilities, much better roleplaying, reasoning, multi-turn conversation, long context coherence, and improvements across the board.\n\nHermes 3 70B is a competitive, if not superior finetune of the [Llama-3.1 70B foundation model](/models/meta-llama/llama-3.1-70b-instruct), focused on aligning LLMs to the user, with powerful steering capabilities and control given to the end user.\n\nThe Hermes 3 series builds and expands on the Hermes 2 set of capabilities, including more powerful and reliable function calling and structured output capabilities, generalist assistant capabilities, and improved code generation skills.",
209
- "context_length": 131072,
210
- "architecture": {
211
- "modality": "text->text",
212
- "tokenizer": "Llama3",
213
- "instruct_type": "chatml"
214
- },
215
- "pricing": { "prompt": "0.0000004", "completion": "0.0000004", "image": "0", "request": "0" },
216
- "top_provider": {
217
- "context_length": 12288,
218
- "max_completion_tokens": null,
219
- "is_moderated": false
220
- },
221
- "per_request_limits": null
222
- },
223
- {
224
- "id": "nousresearch/hermes-3-llama-3.1-405b",
225
- "name": "Nous: Hermes 3 405B Instruct",
226
- "created": 1723766400,
227
- "description": "Hermes 3 is a generalist language model with many improvements over Hermes 2, including advanced agentic capabilities, much better roleplaying, reasoning, multi-turn conversation, long context coherence, and improvements across the board.\n\nHermes 3 405B is a frontier-level, full-parameter finetune of the Llama-3.1 405B foundation model, focused on aligning LLMs to the user, with powerful steering capabilities and control given to the end user.\n\nThe Hermes 3 series builds and expands on the Hermes 2 set of capabilities, including more powerful and reliable function calling and structured output capabilities, generalist assistant capabilities, and improved code generation skills.\n\nHermes 3 is competitive, if not superior, to Llama-3.1 Instruct models at general capabilities, with varying strengths and weaknesses attributable between the two.",
228
- "context_length": 131072,
229
- "architecture": {
230
- "modality": "text->text",
231
- "tokenizer": "Llama3",
232
- "instruct_type": "chatml"
233
- },
234
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
235
- "top_provider": {
236
- "context_length": 18000,
237
- "max_completion_tokens": null,
238
- "is_moderated": false
239
- },
240
- "per_request_limits": null
241
- },
242
- {
243
- "id": "nousresearch/hermes-3-llama-3.1-405b:extended",
244
- "name": "Nous: Hermes 3 405B Instruct (extended)",
245
- "created": 1723766400,
246
- "description": "Hermes 3 is a generalist language model with many improvements over Hermes 2, including advanced agentic capabilities, much better roleplaying, reasoning, multi-turn conversation, long context coherence, and improvements across the board.\n\nHermes 3 405B is a frontier-level, full-parameter finetune of the Llama-3.1 405B foundation model, focused on aligning LLMs to the user, with powerful steering capabilities and control given to the end user.\n\nThe Hermes 3 series builds and expands on the Hermes 2 set of capabilities, including more powerful and reliable function calling and structured output capabilities, generalist assistant capabilities, and improved code generation skills.\n\nHermes 3 is competitive, if not superior, to Llama-3.1 Instruct models at general capabilities, with varying strengths and weaknesses attributable between the two.\n\n_These are extended-context endpoints for [Hermes 3 405B Instruct](/models/nousresearch/hermes-3-llama-3.1-405b). They may have higher prices._",
247
- "context_length": 128000,
248
- "architecture": {
249
- "modality": "text->text",
250
- "tokenizer": "Llama3",
251
- "instruct_type": "chatml"
252
- },
253
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
254
- "top_provider": {
255
- "context_length": 128000,
256
- "max_completion_tokens": null,
257
- "is_moderated": false
258
- },
259
- "per_request_limits": null
260
- },
261
- {
262
- "id": "perplexity/llama-3.1-sonar-huge-128k-online",
263
- "name": "Perplexity: Llama 3.1 Sonar 405B Online",
264
- "created": 1723593600,
265
- "description": "Llama 3.1 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance. The model is built upon the Llama 3.1 405B and has internet access.",
266
- "context_length": 127072,
267
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
268
- "pricing": {
269
- "prompt": "0.000005",
270
- "completion": "0.000005",
271
- "image": "0",
272
- "request": "0.005"
273
- },
274
- "top_provider": {
275
- "context_length": 127072,
276
- "max_completion_tokens": null,
277
- "is_moderated": false
278
- },
279
- "per_request_limits": null
280
- },
281
- {
282
- "id": "openai/chatgpt-4o-latest",
283
- "name": "OpenAI: ChatGPT-4o",
284
- "created": 1723593600,
285
- "description": "Dynamic model continuously updated to the current version of [GPT-4o](/models/openai/gpt-4o) in ChatGPT. Intended for research and evaluation.\n\nNote: This model is experimental and not suited for production use-cases. It may be removed or redirected to another model in the future.",
286
- "context_length": 128000,
287
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
288
- "pricing": {
289
- "prompt": "0.000005",
290
- "completion": "0.000015",
291
- "image": "0.007225",
292
- "request": "0"
293
- },
294
- "top_provider": {
295
- "context_length": 128000,
296
- "max_completion_tokens": 16384,
297
- "is_moderated": true
298
- },
299
- "per_request_limits": null
300
- },
301
- {
302
- "id": "sao10k/l3-lunaris-8b",
303
- "name": "Llama 3 8B Lunaris",
304
- "created": 1723507200,
305
- "description": "Lunaris 8B is a versatile generalist and roleplaying model based on Llama 3. It's a strategic merge of multiple models, designed to balance creativity with improved logic and general knowledge.\n\nCreated by [Sao10k](https://huggingface.co/Sao10k), this model aims to offer an improved experience over Stheno v3.2, with enhanced creativity and logical reasoning.\n\nFor best results, use with Llama 3 Instruct context template, temperature 1.4, and min_p 0.1.",
306
- "context_length": 8192,
307
- "architecture": {
308
- "modality": "text->text",
309
- "tokenizer": "Llama3",
310
- "instruct_type": "llama3"
311
- },
312
- "pricing": { "prompt": "0.000002", "completion": "0.000002", "image": "0", "request": "0" },
313
- "top_provider": {
314
- "context_length": 8192,
315
- "max_completion_tokens": null,
316
- "is_moderated": false
317
- },
318
- "per_request_limits": null
319
- },
320
- {
321
- "id": "aetherwiing/mn-starcannon-12b",
322
- "name": "Mistral Nemo 12B Starcannon",
323
- "created": 1723507200,
324
- "description": "Starcannon 12B is a creative roleplay and story writing model, using [nothingiisreal/mn-celeste-12b](https://openrouter.ai/models/nothingiisreal/mn-celeste-12b) as a base and [intervitens/mini-magnum-12b-v1.1](https://huggingface.co/intervitens/mini-magnum-12b-v1.1) merged in using the [TIES](https://arxiv.org/abs/2306.01708) method.\n\nAlthough more similar to Magnum overall, the model remains very creative, with a pleasant writing style. It is recommended for people wanting more variety than Magnum, and yet more verbose prose than Celeste.",
325
- "context_length": 12000,
326
- "architecture": {
327
- "modality": "text->text",
328
- "tokenizer": "Mistral",
329
- "instruct_type": "chatml"
330
- },
331
- "pricing": { "prompt": "0.000002", "completion": "0.000002", "image": "0", "request": "0" },
332
- "top_provider": {
333
- "context_length": 12000,
334
- "max_completion_tokens": null,
335
- "is_moderated": false
336
- },
337
- "per_request_limits": null
338
- },
339
- {
340
- "id": "openai/gpt-4o-2024-08-06",
341
- "name": "OpenAI: GPT-4o (2024-08-06)",
342
- "created": 1722902400,
343
- "description": "The 2024-08-06 version of GPT-4o offers improved performance in structured outputs, with the ability to supply a JSON schema in the respone_format. Read more [here](https://openai.com/index/introducing-structured-outputs-in-the-api/).\n\nGPT-4o (\"o\" for \"omni\") is OpenAI's latest AI model, supporting both text and image inputs with text outputs. It maintains the intelligence level of [GPT-4 Turbo](/models/openai/gpt-4-turbo) while being twice as fast and 50% more cost-effective. GPT-4o also offers improved performance in processing non-English languages and enhanced visual capabilities.\n\nFor benchmarking against other models, it was briefly called [\"im-also-a-good-gpt2-chatbot\"](https://twitter.com/LiamFedus/status/1790064963966370209)",
344
- "context_length": 128000,
345
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
346
- "pricing": {
347
- "prompt": "0.0000025",
348
- "completion": "0.00001",
349
- "image": "0.0036125",
350
- "request": "0"
351
- },
352
- "top_provider": {
353
- "context_length": 128000,
354
- "max_completion_tokens": 16384,
355
- "is_moderated": true
356
- },
357
- "per_request_limits": null
358
- },
359
- {
360
- "id": "meta-llama/llama-3.1-405b",
361
- "name": "Meta: Llama 3.1 405B (base)",
362
- "created": 1722556800,
363
- "description": "Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flavors. This is the base 405B pre-trained version.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
364
- "context_length": 131072,
365
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": "none" },
366
- "pricing": { "prompt": "0.000002", "completion": "0.000002", "image": "0", "request": "0" },
367
- "top_provider": {
368
- "context_length": 32768,
369
- "max_completion_tokens": null,
370
- "is_moderated": false
371
- },
372
- "per_request_limits": null
373
- },
374
- {
375
- "id": "nothingiisreal/mn-celeste-12b",
376
- "name": "Mistral Nemo 12B Celeste",
377
- "created": 1722556800,
378
- "description": "A specialized story writing and roleplaying model based on Mistral's NeMo 12B Instruct. Fine-tuned on curated datasets including Reddit Writing Prompts and Opus Instruct 25K.\n\nThis model excels at creative writing, offering improved NSFW capabilities, with smarter and more active narration. It demonstrates remarkable versatility in both SFW and NSFW scenarios, with strong Out of Character (OOC) steering capabilities, allowing fine-tuned control over narrative direction and character behavior.\n\nCheck out the model's [HuggingFace page](https://huggingface.co/nothingiisreal/MN-12B-Celeste-V1.9) for details on what parameters and prompts work best!",
379
- "context_length": 32000,
380
- "architecture": {
381
- "modality": "text->text",
382
- "tokenizer": "Mistral",
383
- "instruct_type": "chatml"
384
- },
385
- "pricing": { "prompt": "0.0000015", "completion": "0.0000015", "image": "0", "request": "0" },
386
- "top_provider": {
387
- "context_length": 32000,
388
- "max_completion_tokens": null,
389
- "is_moderated": false
390
- },
391
- "per_request_limits": null
392
- },
393
- {
394
- "id": "google/gemini-pro-1.5-exp",
395
- "name": "Google: Gemini Pro 1.5 Experimental",
396
- "created": 1722470400,
397
- "description": "Gemini 1.5 Pro (0827) is an experimental version of the [Gemini 1.5 Pro](/models/google/gemini-pro-1.5) model.\n\nUsage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.dev/terms).\n\n#multimodal\n\nNote: This model is experimental and not suited for production use-cases. It may be removed or redirected to another model in the future.",
398
- "context_length": 4000000,
399
- "architecture": {
400
- "modality": "text+image->text",
401
- "tokenizer": "Gemini",
402
- "instruct_type": null
403
- },
404
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
405
- "top_provider": {
406
- "context_length": 4000000,
407
- "max_completion_tokens": 32768,
408
- "is_moderated": false
409
- },
410
- "per_request_limits": null
411
- },
412
- {
413
- "id": "perplexity/llama-3.1-sonar-large-128k-online",
414
- "name": "Perplexity: Llama 3.1 Sonar 70B Online",
415
- "created": 1722470400,
416
- "description": "Llama 3.1 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is the online version of the [offline chat model](/models/perplexity/llama-3.1-sonar-large-128k-chat). It is focused on delivering helpful, up-to-date, and factual responses. #online",
417
- "context_length": 127072,
418
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
419
- "pricing": {
420
- "prompt": "0.000001",
421
- "completion": "0.000001",
422
- "image": "0",
423
- "request": "0.005"
424
- },
425
- "top_provider": {
426
- "context_length": 127072,
427
- "max_completion_tokens": null,
428
- "is_moderated": false
429
- },
430
- "per_request_limits": null
431
- },
432
- {
433
- "id": "perplexity/llama-3.1-sonar-large-128k-chat",
434
- "name": "Perplexity: Llama 3.1 Sonar 70B",
435
- "created": 1722470400,
436
- "description": "Llama 3.1 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is a normal offline LLM, but the [online version](/models/perplexity/llama-3.1-sonar-large-128k-online) of this model has Internet access.",
437
- "context_length": 131072,
438
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
439
- "pricing": { "prompt": "0.000001", "completion": "0.000001", "image": "0", "request": "0" },
440
- "top_provider": {
441
- "context_length": 131072,
442
- "max_completion_tokens": null,
443
- "is_moderated": false
444
- },
445
- "per_request_limits": null
446
- },
447
- {
448
- "id": "perplexity/llama-3.1-sonar-small-128k-online",
449
- "name": "Perplexity: Llama 3.1 Sonar 8B Online",
450
- "created": 1722470400,
451
- "description": "Llama 3.1 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is the online version of the [offline chat model](/models/perplexity/llama-3.1-sonar-small-128k-chat). It is focused on delivering helpful, up-to-date, and factual responses. #online",
452
- "context_length": 127072,
453
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
454
- "pricing": {
455
- "prompt": "0.0000002",
456
- "completion": "0.0000002",
457
- "image": "0",
458
- "request": "0.005"
459
- },
460
- "top_provider": {
461
- "context_length": 127072,
462
- "max_completion_tokens": null,
463
- "is_moderated": false
464
- },
465
- "per_request_limits": null
466
- },
467
- {
468
- "id": "perplexity/llama-3.1-sonar-small-128k-chat",
469
- "name": "Perplexity: Llama 3.1 Sonar 8B",
470
- "created": 1722470400,
471
- "description": "Llama 3.1 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is a normal offline LLM, but the [online version](/models/perplexity/llama-3.1-sonar-small-128k-online) of this model has Internet access.",
472
- "context_length": 131072,
473
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
474
- "pricing": { "prompt": "0.0000002", "completion": "0.0000002", "image": "0", "request": "0" },
475
- "top_provider": {
476
- "context_length": 131072,
477
- "max_completion_tokens": null,
478
- "is_moderated": false
479
- },
480
- "per_request_limits": null
481
- },
482
- {
483
- "id": "meta-llama/llama-3.1-70b-instruct",
484
- "name": "Meta: Llama 3.1 70B Instruct",
485
- "created": 1721692800,
486
- "description": "Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flavors. This 70B instruct-tuned version is optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
487
- "context_length": 131072,
488
- "architecture": {
489
- "modality": "text->text",
490
- "tokenizer": "Llama3",
491
- "instruct_type": "llama3"
492
- },
493
- "pricing": { "prompt": "0.0000003", "completion": "0.0000003", "image": "0", "request": "0" },
494
- "top_provider": {
495
- "context_length": 131072,
496
- "max_completion_tokens": null,
497
- "is_moderated": false
498
- },
499
- "per_request_limits": null
500
- },
501
- {
502
- "id": "meta-llama/llama-3.1-8b-instruct:free",
503
- "name": "Meta: Llama 3.1 8B Instruct (free)",
504
- "created": 1721692800,
505
- "description": "Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flavors. This 8B instruct-tuned version is fast and efficient.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).\n\n_These are free, rate-limited endpoints for [Llama 3.1 8B Instruct](/models/meta-llama/llama-3.1-8b-instruct). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
506
- "context_length": 131072,
507
- "architecture": {
508
- "modality": "text->text",
509
- "tokenizer": "Llama3",
510
- "instruct_type": "llama3"
511
- },
512
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
513
- "top_provider": {
514
- "context_length": 8192,
515
- "max_completion_tokens": 4096,
516
- "is_moderated": false
517
- },
518
- "per_request_limits": null
519
- },
520
- {
521
- "id": "meta-llama/llama-3.1-8b-instruct",
522
- "name": "Meta: Llama 3.1 8B Instruct",
523
- "created": 1721692800,
524
- "description": "Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flavors. This 8B instruct-tuned version is fast and efficient.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
525
- "context_length": 131072,
526
- "architecture": {
527
- "modality": "text->text",
528
- "tokenizer": "Llama3",
529
- "instruct_type": "llama3"
530
- },
531
- "pricing": {
532
- "prompt": "0.000000055",
533
- "completion": "0.000000055",
534
- "image": "0",
535
- "request": "0"
536
- },
537
- "top_provider": {
538
- "context_length": 100000,
539
- "max_completion_tokens": null,
540
- "is_moderated": false
541
- },
542
- "per_request_limits": null
543
- },
544
- {
545
- "id": "meta-llama/llama-3.1-405b-instruct",
546
- "name": "Meta: Llama 3.1 405B Instruct",
547
- "created": 1721692800,
548
- "description": "The highly anticipated 400B class of Llama3 is here! Clocking in at 128k context with impressive eval scores, the Meta AI team continues to push the frontier of open-source LLMs.\n\nMeta's latest class of model (Llama 3.1) launched with a variety of sizes & flavors. This 405B instruct-tuned version is optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
549
- "context_length": 131072,
550
- "architecture": {
551
- "modality": "text->text",
552
- "tokenizer": "Llama3",
553
- "instruct_type": "llama3"
554
- },
555
- "pricing": {
556
- "prompt": "0.00000179",
557
- "completion": "0.00000179",
558
- "image": "0",
559
- "request": "0"
560
- },
561
- "top_provider": {
562
- "context_length": 32000,
563
- "max_completion_tokens": null,
564
- "is_moderated": false
565
- },
566
- "per_request_limits": null
567
- },
568
- {
569
- "id": "cognitivecomputations/dolphin-llama-3-70b",
570
- "name": "Dolphin Llama 3 70B 🐬",
571
- "created": 1721347200,
572
- "description": "Dolphin 2.9 is designed for instruction following, conversational, and coding. This model is a fine-tune of [Llama 3 70B](/models/meta-llama/llama-3-70b-instruct). It demonstrates improvements in instruction, conversation, coding, and function calling abilities, when compared to the original.\n\nUncensored and is stripped of alignment and bias, it requires an external alignment layer for ethical use. Users are cautioned to use this highly compliant model responsibly, as detailed in a blog post about uncensored models at [erichartford.com/uncensored-models](https://erichartford.com/uncensored-models).\n\nUsage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
573
- "context_length": 8192,
574
- "architecture": {
575
- "modality": "text->text",
576
- "tokenizer": "Llama3",
577
- "instruct_type": "chatml"
578
- },
579
- "pricing": {
580
- "prompt": "0.00000035",
581
- "completion": "0.0000004",
582
- "image": "0",
583
- "request": "0"
584
- },
585
- "top_provider": {
586
- "context_length": 8192,
587
- "max_completion_tokens": null,
588
- "is_moderated": false
589
- },
590
- "per_request_limits": null
591
- },
592
- {
593
- "id": "mistralai/codestral-mamba",
594
- "name": "Mistral: Codestral Mamba",
595
- "created": 1721347200,
596
- "description": "A 7.3B parameter Mamba-based model designed for code and reasoning tasks.\n\n- Linear time inference, allowing for theoretically infinite sequence lengths\n- 256k token context window\n- Optimized for quick responses, especially beneficial for code productivity\n- Performs comparably to state-of-the-art transformer models in code and reasoning tasks\n- Available under the Apache 2.0 license for free use, modification, and distribution",
597
- "context_length": 256000,
598
- "architecture": {
599
- "modality": "text->text",
600
- "tokenizer": "Mistral",
601
- "instruct_type": "mistral"
602
- },
603
- "pricing": {
604
- "prompt": "0.00000025",
605
- "completion": "0.00000025",
606
- "image": "0",
607
- "request": "0"
608
- },
609
- "top_provider": {
610
- "context_length": 256000,
611
- "max_completion_tokens": null,
612
- "is_moderated": false
613
- },
614
- "per_request_limits": null
615
- },
616
- {
617
- "id": "mistralai/mistral-nemo",
618
- "name": "Mistral: Mistral Nemo",
619
- "created": 1721347200,
620
- "description": "A 12B parameter model with a 128k token context length built by Mistral in collaboration with NVIDIA.\n\nThe model is multilingual, supporting English, French, German, Spanish, Italian, Portuguese, Chinese, Japanese, Korean, Arabic, and Hindi.\n\nIt supports function calling and is released under the Apache 2.0 license.",
621
- "context_length": 128000,
622
- "architecture": {
623
- "modality": "text->text",
624
- "tokenizer": "Mistral",
625
- "instruct_type": "mistral"
626
- },
627
- "pricing": {
628
- "prompt": "0.00000013",
629
- "completion": "0.00000013",
630
- "image": "0",
631
- "request": "0"
632
- },
633
- "top_provider": {
634
- "context_length": 128000,
635
- "max_completion_tokens": null,
636
- "is_moderated": false
637
- },
638
- "per_request_limits": null
639
- },
640
- {
641
- "id": "openai/gpt-4o-mini-2024-07-18",
642
- "name": "OpenAI: GPT-4o-mini (2024-07-18)",
643
- "created": 1721260800,
644
- "description": "GPT-4o mini is OpenAI's newest model after [GPT-4 Omni](/models/openai/gpt-4o), supporting both text and image inputs with text outputs.\n\nAs their most advanced small model, it is many multiples more affordable than other recent frontier models, and more than 60% cheaper than [GPT-3.5 Turbo](/models/openai/gpt-3.5-turbo). It maintains SOTA intelligence, while being significantly more cost-effective.\n\nGPT-4o mini achieves an 82% score on MMLU and presently ranks higher than GPT-4 on chat preferences [common leaderboards](https://arena.lmsys.org/).\n\nCheck out the [launch announcement](https://openai.com/index/gpt-4o-mini-advancing-cost-efficient-intelligence/) to learn more.",
645
- "context_length": 128000,
646
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
647
- "pricing": {
648
- "prompt": "0.00000015",
649
- "completion": "0.0000006",
650
- "image": "0.007225",
651
- "request": "0"
652
- },
653
- "top_provider": {
654
- "context_length": 128000,
655
- "max_completion_tokens": 16384,
656
- "is_moderated": true
657
- },
658
- "per_request_limits": null
659
- },
660
- {
661
- "id": "openai/gpt-4o-mini",
662
- "name": "OpenAI: GPT-4o-mini",
663
- "created": 1721260800,
664
- "description": "GPT-4o mini is OpenAI's newest model after [GPT-4 Omni](/models/openai/gpt-4o), supporting both text and image inputs with text outputs.\n\nAs their most advanced small model, it is many multiples more affordable than other recent frontier models, and more than 60% cheaper than [GPT-3.5 Turbo](/models/openai/gpt-3.5-turbo). It maintains SOTA intelligence, while being significantly more cost-effective.\n\nGPT-4o mini achieves an 82% score on MMLU and presently ranks higher than GPT-4 on chat preferences [common leaderboards](https://arena.lmsys.org/).\n\nCheck out the [launch announcement](https://openai.com/index/gpt-4o-mini-advancing-cost-efficient-intelligence/) to learn more.",
665
- "context_length": 128000,
666
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
667
- "pricing": {
668
- "prompt": "0.00000015",
669
- "completion": "0.0000006",
670
- "image": "0.007225",
671
- "request": "0"
672
- },
673
- "top_provider": {
674
- "context_length": 128000,
675
- "max_completion_tokens": 16384,
676
- "is_moderated": true
677
- },
678
- "per_request_limits": null
679
- },
680
- {
681
- "id": "qwen/qwen-2-7b-instruct:free",
682
- "name": "Qwen 2 7B Instruct (free)",
683
- "created": 1721088000,
684
- "description": "Qwen2 7B is a transformer-based model that excels in language understanding, multilingual capabilities, coding, mathematics, and reasoning.\n\nIt features SwiGLU activation, attention QKV bias, and group query attention. It is pretrained on extensive data with supervised finetuning and direct preference optimization.\n\nFor more details, see this [blog post](https://qwenlm.github.io/blog/qwen2/) and [GitHub repo](https://github.com/QwenLM/Qwen2).\n\nUsage of this model is subject to [Tongyi Qianwen LICENSE AGREEMENT](https://huggingface.co/Qwen/Qwen1.5-110B-Chat/blob/main/LICENSE).\n\n_These are free, rate-limited endpoints for [Qwen 2 7B Instruct](/models/qwen/qwen-2-7b-instruct). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
685
- "context_length": 32768,
686
- "architecture": { "modality": "text->text", "tokenizer": "Qwen", "instruct_type": "chatml" },
687
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
688
- "top_provider": {
689
- "context_length": 8192,
690
- "max_completion_tokens": 4096,
691
- "is_moderated": false
692
- },
693
- "per_request_limits": null
694
- },
695
- {
696
- "id": "qwen/qwen-2-7b-instruct",
697
- "name": "Qwen 2 7B Instruct",
698
- "created": 1721088000,
699
- "description": "Qwen2 7B is a transformer-based model that excels in language understanding, multilingual capabilities, coding, mathematics, and reasoning.\n\nIt features SwiGLU activation, attention QKV bias, and group query attention. It is pretrained on extensive data with supervised finetuning and direct preference optimization.\n\nFor more details, see this [blog post](https://qwenlm.github.io/blog/qwen2/) and [GitHub repo](https://github.com/QwenLM/Qwen2).\n\nUsage of this model is subject to [Tongyi Qianwen LICENSE AGREEMENT](https://huggingface.co/Qwen/Qwen1.5-110B-Chat/blob/main/LICENSE).",
700
- "context_length": 32768,
701
- "architecture": { "modality": "text->text", "tokenizer": "Qwen", "instruct_type": "chatml" },
702
- "pricing": {
703
- "prompt": "0.000000055",
704
- "completion": "0.000000055",
705
- "image": "0",
706
- "request": "0"
707
- },
708
- "top_provider": {
709
- "context_length": 32768,
710
- "max_completion_tokens": null,
711
- "is_moderated": false
712
- },
713
- "per_request_limits": null
714
- },
715
- {
716
- "id": "google/gemma-2-27b-it",
717
- "name": "Google: Gemma 2 27B",
718
- "created": 1720828800,
719
- "description": "Gemma 2 27B by Google is an open model built from the same research and technology used to create the [Gemini models](/models?q=gemini).\n\nGemma models are well-suited for a variety of text generation tasks, including question answering, summarization, and reasoning.\n\nSee the [launch announcement](https://blog.google/technology/developers/google-gemma-2/) for more details. Usage of Gemma is subject to Google's [Gemma Terms of Use](https://ai.google.dev/gemma/terms).",
720
- "context_length": 8192,
721
- "architecture": { "modality": "text->text", "tokenizer": "Gemini", "instruct_type": "gemma" },
722
- "pricing": {
723
- "prompt": "0.00000027",
724
- "completion": "0.00000027",
725
- "image": "0",
726
- "request": "0"
727
- },
728
- "top_provider": {
729
- "context_length": 4096,
730
- "max_completion_tokens": null,
731
- "is_moderated": false
732
- },
733
- "per_request_limits": null
734
- },
735
- {
736
- "id": "alpindale/magnum-72b",
737
- "name": "Magnum 72B",
738
- "created": 1720656000,
739
- "description": "From the maker of [Goliath](https://openrouter.ai/models/alpindale/goliath-120b), Magnum 72B is the first in a new family of models designed to achieve the prose quality of the Claude 3 models, notably Opus & Sonnet.\n\nThe model is based on [Qwen2 72B](https://openrouter.ai/models/qwen/qwen-2-72b-instruct) and trained with 55 million tokens of highly curated roleplay (RP) data.",
740
- "context_length": 16384,
741
- "architecture": { "modality": "text->text", "tokenizer": "Qwen", "instruct_type": "chatml" },
742
- "pricing": {
743
- "prompt": "0.00000375",
744
- "completion": "0.0000045",
745
- "image": "0",
746
- "request": "0"
747
- },
748
- "top_provider": {
749
- "context_length": 16384,
750
- "max_completion_tokens": 1024,
751
- "is_moderated": false
752
- },
753
- "per_request_limits": null
754
- },
755
- {
756
- "id": "nousresearch/hermes-2-theta-llama-3-8b",
757
- "name": "Nous: Hermes 2 Theta 8B",
758
- "created": 1720656000,
759
- "description": "An experimental merge model based on Llama 3, exhibiting a very distinctive style of writing. It combines the the best of [Meta's Llama 3 8B](https://openrouter.ai/models/meta-llama/llama-3-8b-instruct) and Nous Research's [Hermes 2 Pro](https://openrouter.ai/models/nousresearch/hermes-2-pro-llama-3-8b).\n\nHermes-2 Θ (theta) was specifically designed with a few capabilities in mind: executing function calls, generating JSON output, and most remarkably, demonstrating metacognitive abilities (contemplating the nature of thought and recognizing the diversity of cognitive processes among individuals).",
760
- "context_length": 16384,
761
- "architecture": {
762
- "modality": "text->text",
763
- "tokenizer": "Llama3",
764
- "instruct_type": "chatml"
765
- },
766
- "pricing": {
767
- "prompt": "0.0000001875",
768
- "completion": "0.000001125",
769
- "image": "0",
770
- "request": "0"
771
- },
772
- "top_provider": {
773
- "context_length": 16384,
774
- "max_completion_tokens": 2048,
775
- "is_moderated": false
776
- },
777
- "per_request_limits": null
778
- },
779
- {
780
- "id": "google/gemma-2-9b-it:free",
781
- "name": "Google: Gemma 2 9B (free)",
782
- "created": 1719532800,
783
- "description": "Gemma 2 9B by Google is an advanced, open-source language model that sets a new standard for efficiency and performance in its size class.\n\nDesigned for a wide variety of tasks, it empowers developers and researchers to build innovative applications, while maintaining accessibility, safety, and cost-effectiveness.\n\nSee the [launch announcement](https://blog.google/technology/developers/google-gemma-2/) for more details. Usage of Gemma is subject to Google's [Gemma Terms of Use](https://ai.google.dev/gemma/terms).\n\n_These are free, rate-limited endpoints for [Gemma 2 9B](/models/google/gemma-2-9b-it). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
784
- "context_length": 8192,
785
- "architecture": { "modality": "text->text", "tokenizer": "Gemini", "instruct_type": "gemma" },
786
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
787
- "top_provider": {
788
- "context_length": 4096,
789
- "max_completion_tokens": 2048,
790
- "is_moderated": false
791
- },
792
- "per_request_limits": null
793
- },
794
- {
795
- "id": "google/gemma-2-9b-it",
796
- "name": "Google: Gemma 2 9B",
797
- "created": 1719532800,
798
- "description": "Gemma 2 9B by Google is an advanced, open-source language model that sets a new standard for efficiency and performance in its size class.\n\nDesigned for a wide variety of tasks, it empowers developers and researchers to build innovative applications, while maintaining accessibility, safety, and cost-effectiveness.\n\nSee the [launch announcement](https://blog.google/technology/developers/google-gemma-2/) for more details. Usage of Gemma is subject to Google's [Gemma Terms of Use](https://ai.google.dev/gemma/terms).",
799
- "context_length": 8192,
800
- "architecture": { "modality": "text->text", "tokenizer": "Gemini", "instruct_type": "gemma" },
801
- "pricing": {
802
- "prompt": "0.00000006",
803
- "completion": "0.00000006",
804
- "image": "0",
805
- "request": "0"
806
- },
807
- "top_provider": {
808
- "context_length": 4096,
809
- "max_completion_tokens": null,
810
- "is_moderated": false
811
- },
812
- "per_request_limits": null
813
- },
814
- {
815
- "id": "sao10k/l3-stheno-8b",
816
- "name": "Llama 3 Stheno 8B v3.3 32K",
817
- "created": 1719446400,
818
- "description": "Stheno 8B 32K is a creative writing/roleplay model from [Sao10k](https://ko-fi.com/sao10k). It was trained at 8K context, then expanded to 32K context.\n\nCompared to older Stheno version, this model is trained on:\n- 2x the amount of creative writing samples\n- Cleaned up roleplaying samples\n- Fewer low quality samples",
819
- "context_length": 32000,
820
- "architecture": {
821
- "modality": "text->text",
822
- "tokenizer": "Llama3",
823
- "instruct_type": "llama3"
824
- },
825
- "pricing": {
826
- "prompt": "0.00000025",
827
- "completion": "0.0000015",
828
- "image": "0",
829
- "request": "0"
830
- },
831
- "top_provider": {
832
- "context_length": 32000,
833
- "max_completion_tokens": null,
834
- "is_moderated": false
835
- },
836
- "per_request_limits": null
837
- },
838
- {
839
- "id": "ai21/jamba-instruct",
840
- "name": "AI21: Jamba Instruct",
841
- "created": 1719273600,
842
- "description": "The Jamba-Instruct model, introduced by AI21 Labs, is an instruction-tuned variant of their hybrid SSM-Transformer Jamba model, specifically optimized for enterprise applications.\n\n- 256K Context Window: It can process extensive information, equivalent to a 400-page novel, which is beneficial for tasks involving large documents such as financial reports or legal documents\n- Safety and Accuracy: Jamba-Instruct is designed with enhanced safety features to ensure secure deployment in enterprise environments, reducing the risk and cost of implementation\n\nRead their [announcement](https://www.ai21.com/blog/announcing-jamba) to learn more.\n\nJamba has a knowledge cutoff of February 2024.",
843
- "context_length": 256000,
844
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": null },
845
- "pricing": { "prompt": "0.0000005", "completion": "0.0000007", "image": "0", "request": "0" },
846
- "top_provider": {
847
- "context_length": 256000,
848
- "max_completion_tokens": 4096,
849
- "is_moderated": false
850
- },
851
- "per_request_limits": null
852
- },
853
- {
854
- "id": "anthropic/claude-3.5-sonnet",
855
- "name": "Anthropic: Claude 3.5 Sonnet",
856
- "created": 1718841600,
857
- "description": "Claude 3.5 Sonnet delivers better-than-Opus capabilities, faster-than-Sonnet speeds, at the same Sonnet prices. Sonnet is particularly good at:\n\n- Coding: Autonomously writes, edits, and runs code with reasoning and troubleshooting\n- Data science: Augments human data science expertise; navigates unstructured data while using multiple tools for insights\n- Visual processing: excelling at interpreting charts, graphs, and images, accurately transcribing text to derive insights beyond just the text alone\n- Agentic tasks: exceptional tool use, making it great at agentic tasks (i.e. complex, multi-step problem solving tasks that require engaging with other systems)\n\n#multimodal",
858
- "context_length": 200000,
859
- "architecture": {
860
- "modality": "text+image->text",
861
- "tokenizer": "Claude",
862
- "instruct_type": null
863
- },
864
- "pricing": {
865
- "prompt": "0.000003",
866
- "completion": "0.000015",
867
- "image": "0.0048",
868
- "request": "0"
869
- },
870
- "top_provider": {
871
- "context_length": 200000,
872
- "max_completion_tokens": 8192,
873
- "is_moderated": true
874
- },
875
- "per_request_limits": null
876
- },
877
- {
878
- "id": "anthropic/claude-3.5-sonnet:beta",
879
- "name": "Anthropic: Claude 3.5 Sonnet (self-moderated)",
880
- "created": 1718841600,
881
- "description": "Claude 3.5 Sonnet delivers better-than-Opus capabilities, faster-than-Sonnet speeds, at the same Sonnet prices. Sonnet is particularly good at:\n\n- Coding: Autonomously writes, edits, and runs code with reasoning and troubleshooting\n- Data science: Augments human data science expertise; navigates unstructured data while using multiple tools for insights\n- Visual processing: excelling at interpreting charts, graphs, and images, accurately transcribing text to derive insights beyond just the text alone\n- Agentic tasks: exceptional tool use, making it great at agentic tasks (i.e. complex, multi-step problem solving tasks that require engaging with other systems)\n\n#multimodal\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-3.5-sonnet) variant._",
882
- "context_length": 200000,
883
- "architecture": {
884
- "modality": "text+image->text",
885
- "tokenizer": "Claude",
886
- "instruct_type": null
887
- },
888
- "pricing": {
889
- "prompt": "0.000003",
890
- "completion": "0.000015",
891
- "image": "0.0048",
892
- "request": "0"
893
- },
894
- "top_provider": {
895
- "context_length": 200000,
896
- "max_completion_tokens": 8192,
897
- "is_moderated": false
898
- },
899
- "per_request_limits": null
900
- },
901
- {
902
- "id": "sao10k/l3-euryale-70b",
903
- "name": "Llama 3 Euryale 70B v2.1",
904
- "created": 1718668800,
905
- "description": "Euryale 70B v2.1 is a model focused on creative roleplay from [Sao10k](https://ko-fi.com/sao10k).\n\n- Better prompt adherence.\n- Better anatomy / spatial awareness.\n- Adapts much better to unique and custom formatting / reply formats.\n- Very creative, lots of unique swipes.\n- Is not restrictive during roleplays.",
906
- "context_length": 8192,
907
- "architecture": {
908
- "modality": "text->text",
909
- "tokenizer": "Llama3",
910
- "instruct_type": "llama3"
911
- },
912
- "pricing": {
913
- "prompt": "0.00000035",
914
- "completion": "0.0000004",
915
- "image": "0",
916
- "request": "0"
917
- },
918
- "top_provider": {
919
- "context_length": 8192,
920
- "max_completion_tokens": null,
921
- "is_moderated": false
922
- },
923
- "per_request_limits": null
924
- },
925
- {
926
- "id": "microsoft/phi-3-medium-4k-instruct",
927
- "name": "Phi-3 Medium 4K Instruct",
928
- "created": 1718409600,
929
- "description": "Phi-3 4K Medium is a powerful 14-billion parameter model designed for advanced language understanding, reasoning, and instruction following. Optimized through supervised fine-tuning and preference adjustments, it excels in tasks involving common sense, mathematics, logical reasoning, and code processing.\n\nAt time of release, Phi-3 Medium demonstrated state-of-the-art performance among lightweight models. In the MMLU-Pro eval, the model even comes close to a Llama3 70B level of performance.\n\nFor 128k context length, try [Phi-3 Medium 128K](/models/microsoft/phi-3-medium-128k-instruct).",
930
- "context_length": 4000,
931
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": "phi3" },
932
- "pricing": {
933
- "prompt": "0.00000014",
934
- "completion": "0.00000014",
935
- "image": "0",
936
- "request": "0"
937
- },
938
- "top_provider": {
939
- "context_length": 4000,
940
- "max_completion_tokens": null,
941
- "is_moderated": false
942
- },
943
- "per_request_limits": null
944
- },
945
- {
946
- "id": "cognitivecomputations/dolphin-mixtral-8x22b",
947
- "name": "Dolphin 2.9.2 Mixtral 8x22B 🐬",
948
- "created": 1717804800,
949
- "description": "Dolphin 2.9 is designed for instruction following, conversational, and coding. This model is a finetune of [Mixtral 8x22B Instruct](/models/mistralai/mixtral-8x22b-instruct). It features a 64k context length and was fine-tuned with a 16k sequence length using ChatML templates.\n\nThis model is a successor to [Dolphin Mixtral 8x7B](/models/cognitivecomputations/dolphin-mixtral-8x7b).\n\nThe model is uncensored and is stripped of alignment and bias. It requires an external alignment layer for ethical use. Users are cautioned to use this highly compliant model responsibly, as detailed in a blog post about uncensored models at [erichartford.com/uncensored-models](https://erichartford.com/uncensored-models).\n\n#moe #uncensored",
950
- "context_length": 65536,
951
- "architecture": {
952
- "modality": "text->text",
953
- "tokenizer": "Mistral",
954
- "instruct_type": "chatml"
955
- },
956
- "pricing": { "prompt": "0.0000009", "completion": "0.0000009", "image": "0", "request": "0" },
957
- "top_provider": {
958
- "context_length": 16000,
959
- "max_completion_tokens": null,
960
- "is_moderated": false
961
- },
962
- "per_request_limits": null
963
- },
964
- {
965
- "id": "qwen/qwen-2-72b-instruct",
966
- "name": "Qwen 2 72B Instruct",
967
- "created": 1717718400,
968
- "description": "Qwen2 72B is a transformer-based model that excels in language understanding, multilingual capabilities, coding, mathematics, and reasoning.\n\nIt features SwiGLU activation, attention QKV bias, and group query attention. It is pretrained on extensive data with supervised finetuning and direct preference optimization.\n\nFor more details, see this [blog post](https://qwenlm.github.io/blog/qwen2/) and [GitHub repo](https://github.com/QwenLM/Qwen2).\n\nUsage of this model is subject to [Tongyi Qianwen LICENSE AGREEMENT](https://huggingface.co/Qwen/Qwen1.5-110B-Chat/blob/main/LICENSE).",
969
- "context_length": 32768,
970
- "architecture": { "modality": "text->text", "tokenizer": "Qwen", "instruct_type": "chatml" },
971
- "pricing": {
972
- "prompt": "0.00000035",
973
- "completion": "0.0000004",
974
- "image": "0",
975
- "request": "0"
976
- },
977
- "top_provider": {
978
- "context_length": 32768,
979
- "max_completion_tokens": null,
980
- "is_moderated": false
981
- },
982
- "per_request_limits": null
983
- },
984
- {
985
- "id": "openchat/openchat-8b",
986
- "name": "OpenChat 3.6 8B",
987
- "created": 1717200000,
988
- "description": "OpenChat 8B is a library of open-source language models, fine-tuned with \"C-RLFT (Conditioned Reinforcement Learning Fine-Tuning)\" - a strategy inspired by offline reinforcement learning. It has been trained on mixed-quality data without preference labels.\n\nIt outperforms many similarly sized models including [Llama 3 8B Instruct](/models/meta-llama/llama-3-8b-instruct) and various fine-tuned models. It excels in general conversation, coding assistance, and mathematical reasoning.\n\n- For OpenChat fine-tuned on Mistral 7B, check out [OpenChat 7B](/models/openchat/openchat-7b).\n- For OpenChat fine-tuned on Llama 8B, check out [OpenChat 8B](/models/openchat/openchat-8b).\n\n#open-source",
989
- "context_length": 8192,
990
- "architecture": {
991
- "modality": "text->text",
992
- "tokenizer": "Llama3",
993
- "instruct_type": "openchat"
994
- },
995
- "pricing": {
996
- "prompt": "0.000000055",
997
- "completion": "0.000000055",
998
- "image": "0",
999
- "request": "0"
1000
- },
1001
- "top_provider": {
1002
- "context_length": 8192,
1003
- "max_completion_tokens": null,
1004
- "is_moderated": false
1005
- },
1006
- "per_request_limits": null
1007
- },
1008
- {
1009
- "id": "nousresearch/hermes-2-pro-llama-3-8b",
1010
- "name": "NousResearch: Hermes 2 Pro - Llama-3 8B",
1011
- "created": 1716768000,
1012
- "description": "Hermes 2 Pro is an upgraded, retrained version of Nous Hermes 2, consisting of an updated and cleaned version of the OpenHermes 2.5 Dataset, as well as a newly introduced Function Calling and JSON Mode dataset developed in-house.",
1013
- "context_length": 8192,
1014
- "architecture": {
1015
- "modality": "text->text",
1016
- "tokenizer": "Llama3",
1017
- "instruct_type": "chatml"
1018
- },
1019
- "pricing": {
1020
- "prompt": "0.00000014",
1021
- "completion": "0.00000014",
1022
- "image": "0",
1023
- "request": "0"
1024
- },
1025
- "top_provider": {
1026
- "context_length": 8192,
1027
- "max_completion_tokens": null,
1028
- "is_moderated": false
1029
- },
1030
- "per_request_limits": null
1031
- },
1032
- {
1033
- "id": "mistralai/mistral-7b-instruct-v0.3",
1034
- "name": "Mistral: Mistral 7B Instruct v0.3",
1035
- "created": 1716768000,
1036
- "description": "A high-performing, industry-standard 7.3B parameter model, with optimizations for speed and context length.\n\nAn improved version of [Mistral 7B Instruct v0.2](/models/mistralai/mistral-7b-instruct-v0.2), with the following changes:\n\n- Extended vocabulary to 32768\n- Supports v3 Tokenizer\n- Supports function calling\n\nNOTE: Support for function calling depends on the provider.",
1037
- "context_length": 32768,
1038
- "architecture": {
1039
- "modality": "text->text",
1040
- "tokenizer": "Mistral",
1041
- "instruct_type": "mistral"
1042
- },
1043
- "pricing": {
1044
- "prompt": "0.000000055",
1045
- "completion": "0.000000055",
1046
- "image": "0",
1047
- "request": "0"
1048
- },
1049
- "top_provider": {
1050
- "context_length": 32768,
1051
- "max_completion_tokens": null,
1052
- "is_moderated": false
1053
- },
1054
- "per_request_limits": null
1055
- },
1056
- {
1057
- "id": "mistralai/mistral-7b-instruct:free",
1058
- "name": "Mistral: Mistral 7B Instruct (free)",
1059
- "created": 1716768000,
1060
- "description": "A high-performing, industry-standard 7.3B parameter model, with optimizations for speed and context length.\n\n*Mistral 7B Instruct has multiple version variants, and this is intended to be the latest version.*\n\n_These are free, rate-limited endpoints for [Mistral 7B Instruct](/models/mistralai/mistral-7b-instruct). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
1061
- "context_length": 32768,
1062
- "architecture": {
1063
- "modality": "text->text",
1064
- "tokenizer": "Mistral",
1065
- "instruct_type": "mistral"
1066
- },
1067
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
1068
- "top_provider": {
1069
- "context_length": 8192,
1070
- "max_completion_tokens": 4096,
1071
- "is_moderated": false
1072
- },
1073
- "per_request_limits": null
1074
- },
1075
- {
1076
- "id": "mistralai/mistral-7b-instruct",
1077
- "name": "Mistral: Mistral 7B Instruct",
1078
- "created": 1716768000,
1079
- "description": "A high-performing, industry-standard 7.3B parameter model, with optimizations for speed and context length.\n\n*Mistral 7B Instruct has multiple version variants, and this is intended to be the latest version.*",
1080
- "context_length": 32768,
1081
- "architecture": {
1082
- "modality": "text->text",
1083
- "tokenizer": "Mistral",
1084
- "instruct_type": "mistral"
1085
- },
1086
- "pricing": {
1087
- "prompt": "0.000000055",
1088
- "completion": "0.000000055",
1089
- "image": "0",
1090
- "request": "0"
1091
- },
1092
- "top_provider": {
1093
- "context_length": 32768,
1094
- "max_completion_tokens": null,
1095
- "is_moderated": false
1096
- },
1097
- "per_request_limits": null
1098
- },
1099
- {
1100
- "id": "mistralai/mistral-7b-instruct:nitro",
1101
- "name": "Mistral: Mistral 7B Instruct (nitro)",
1102
- "created": 1716768000,
1103
- "description": "A high-performing, industry-standard 7.3B parameter model, with optimizations for speed and context length.\n\n*Mistral 7B Instruct has multiple version variants, and this is intended to be the latest version.*\n\n_These are higher-throughput endpoints for [Mistral 7B Instruct](/models/mistralai/mistral-7b-instruct). They may have higher prices._",
1104
- "context_length": 32768,
1105
- "architecture": {
1106
- "modality": "text->text",
1107
- "tokenizer": "Mistral",
1108
- "instruct_type": "mistral"
1109
- },
1110
- "pricing": {
1111
- "prompt": "0.00000007",
1112
- "completion": "0.00000007",
1113
- "image": "0",
1114
- "request": "0"
1115
- },
1116
- "top_provider": {
1117
- "context_length": 32768,
1118
- "max_completion_tokens": null,
1119
- "is_moderated": false
1120
- },
1121
- "per_request_limits": null
1122
- },
1123
- {
1124
- "id": "microsoft/phi-3-mini-128k-instruct:free",
1125
- "name": "Phi-3 Mini 128K Instruct (free)",
1126
- "created": 1716681600,
1127
- "description": "Phi-3 Mini is a powerful 3.8B parameter model designed for advanced language understanding, reasoning, and instruction following. Optimized through supervised fine-tuning and preference adjustments, it excels in tasks involving common sense, mathematics, logical reasoning, and code processing.\n\nAt time of release, Phi-3 Medium demonstrated state-of-the-art performance among lightweight models. This model is static, trained on an offline dataset with an October 2023 cutoff date.\n\n_These are free, rate-limited endpoints for [Phi-3 Mini 128K Instruct](/models/microsoft/phi-3-mini-128k-instruct). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
1128
- "context_length": 128000,
1129
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": "phi3" },
1130
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
1131
- "top_provider": {
1132
- "context_length": 8192,
1133
- "max_completion_tokens": 4096,
1134
- "is_moderated": false
1135
- },
1136
- "per_request_limits": null
1137
- },
1138
- {
1139
- "id": "microsoft/phi-3-mini-128k-instruct",
1140
- "name": "Phi-3 Mini 128K Instruct",
1141
- "created": 1716681600,
1142
- "description": "Phi-3 Mini is a powerful 3.8B parameter model designed for advanced language understanding, reasoning, and instruction following. Optimized through supervised fine-tuning and preference adjustments, it excels in tasks involving common sense, mathematics, logical reasoning, and code processing.\n\nAt time of release, Phi-3 Medium demonstrated state-of-the-art performance among lightweight models. This model is static, trained on an offline dataset with an October 2023 cutoff date.",
1143
- "context_length": 128000,
1144
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": "phi3" },
1145
- "pricing": { "prompt": "0.0000001", "completion": "0.0000001", "image": "0", "request": "0" },
1146
- "top_provider": {
1147
- "context_length": 128000,
1148
- "max_completion_tokens": null,
1149
- "is_moderated": false
1150
- },
1151
- "per_request_limits": null
1152
- },
1153
- {
1154
- "id": "microsoft/phi-3-medium-128k-instruct:free",
1155
- "name": "Phi-3 Medium 128K Instruct (free)",
1156
- "created": 1716508800,
1157
- "description": "Phi-3 128K Medium is a powerful 14-billion parameter model designed for advanced language understanding, reasoning, and instruction following. Optimized through supervised fine-tuning and preference adjustments, it excels in tasks involving common sense, mathematics, logical reasoning, and code processing.\n\nAt time of release, Phi-3 Medium demonstrated state-of-the-art performance among lightweight models. In the MMLU-Pro eval, the model even comes close to a Llama3 70B level of performance.\n\nFor 4k context length, try [Phi-3 Medium 4K](/models/microsoft/phi-3-medium-4k-instruct).\n\n_These are free, rate-limited endpoints for [Phi-3 Medium 128K Instruct](/models/microsoft/phi-3-medium-128k-instruct). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
1158
- "context_length": 128000,
1159
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": "phi3" },
1160
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
1161
- "top_provider": {
1162
- "context_length": 8192,
1163
- "max_completion_tokens": 4096,
1164
- "is_moderated": false
1165
- },
1166
- "per_request_limits": null
1167
- },
1168
- {
1169
- "id": "microsoft/phi-3-medium-128k-instruct",
1170
- "name": "Phi-3 Medium 128K Instruct",
1171
- "created": 1716508800,
1172
- "description": "Phi-3 128K Medium is a powerful 14-billion parameter model designed for advanced language understanding, reasoning, and instruction following. Optimized through supervised fine-tuning and preference adjustments, it excels in tasks involving common sense, mathematics, logical reasoning, and code processing.\n\nAt time of release, Phi-3 Medium demonstrated state-of-the-art performance among lightweight models. In the MMLU-Pro eval, the model even comes close to a Llama3 70B level of performance.\n\nFor 4k context length, try [Phi-3 Medium 4K](/models/microsoft/phi-3-medium-4k-instruct).",
1173
- "context_length": 128000,
1174
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": "phi3" },
1175
- "pricing": { "prompt": "0.000001", "completion": "0.000001", "image": "0", "request": "0" },
1176
- "top_provider": {
1177
- "context_length": 128000,
1178
- "max_completion_tokens": null,
1179
- "is_moderated": false
1180
- },
1181
- "per_request_limits": null
1182
- },
1183
- {
1184
- "id": "neversleep/llama-3-lumimaid-70b",
1185
- "name": "Llama 3 Lumimaid 70B",
1186
- "created": 1715817600,
1187
- "description": "The NeverSleep team is back, with a Llama 3 70B finetune trained on their curated roleplay data. Striking a balance between eRP and RP, Lumimaid was designed to be serious, yet uncensored when necessary.\n\nTo enhance it's overall intelligence and chat capability, roughly 40% of the training data was not roleplay. This provides a breadth of knowledge to access, while still keeping roleplay as the primary strength.\n\nUsage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
1188
- "context_length": 8192,
1189
- "architecture": {
1190
- "modality": "text->text",
1191
- "tokenizer": "Llama3",
1192
- "instruct_type": "llama3"
1193
- },
1194
- "pricing": {
1195
- "prompt": "0.000003375",
1196
- "completion": "0.0000045",
1197
- "image": "0",
1198
- "request": "0"
1199
- },
1200
- "top_provider": {
1201
- "context_length": 8192,
1202
- "max_completion_tokens": 2048,
1203
- "is_moderated": false
1204
- },
1205
- "per_request_limits": null
1206
- },
1207
- {
1208
- "id": "google/gemini-flash-1.5",
1209
- "name": "Google: Gemini Flash 1.5",
1210
- "created": 1715644800,
1211
- "description": "Gemini 1.5 Flash is a foundation model that performs well at a variety of multimodal tasks such as visual understanding, classification, summarization, and creating content from image, audio and video. It's adept at processing visual and text inputs such as photographs, documents, infographics, and screenshots.\n\nGemini 1.5 Flash is designed for high-volume, high-frequency tasks where cost and latency matter. On most common tasks, Flash achieves comparable quality to other Gemini Pro models at a significantly reduced cost. Flash is well-suited for applications like chat assistants and on-demand content generation where speed and scale matter.\n\nUsage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.dev/terms).\n\n#multimodal",
1212
- "context_length": 4000000,
1213
- "architecture": {
1214
- "modality": "text+image->text",
1215
- "tokenizer": "Gemini",
1216
- "instruct_type": null
1217
- },
1218
- "pricing": {
1219
- "prompt": "0.0000000375",
1220
- "completion": "0.00000015",
1221
- "image": "0.00004",
1222
- "request": "0"
1223
- },
1224
- "top_provider": {
1225
- "context_length": 4000000,
1226
- "max_completion_tokens": 32768,
1227
- "is_moderated": false
1228
- },
1229
- "per_request_limits": null
1230
- },
1231
- {
1232
- "id": "deepseek/deepseek-coder",
1233
- "name": "DeepSeek-Coder-V2",
1234
- "created": 1715644800,
1235
- "description": "DeepSeek-Coder-V2, an open-source Mixture-of-Experts (MoE) code language model. It is further pre-trained from an intermediate checkpoint of DeepSeek-V2 with additional 6 trillion tokens.\n\nThe original V1 model was trained from scratch on 2T tokens, with a composition of 87% code and 13% natural language in both English and Chinese. It was pre-trained on project-level code corpus by employing a extra fill-in-the-blank task.",
1236
- "context_length": 128000,
1237
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": null },
1238
- "pricing": {
1239
- "prompt": "0.00000014",
1240
- "completion": "0.00000028",
1241
- "image": "0",
1242
- "request": "0"
1243
- },
1244
- "top_provider": {
1245
- "context_length": 128000,
1246
- "max_completion_tokens": 4096,
1247
- "is_moderated": false
1248
- },
1249
- "per_request_limits": null
1250
- },
1251
- {
1252
- "id": "deepseek/deepseek-chat",
1253
- "name": "DeepSeek-V2 Chat",
1254
- "created": 1715644800,
1255
- "description": "DeepSeek-V2 Chat is a conversational finetune of DeepSeek-V2, a Mixture-of-Experts (MoE) language model. It comprises 236B total parameters, of which 21B are activated for each token.\n\nCompared with DeepSeek 67B, DeepSeek-V2 achieves stronger performance, and meanwhile saves 42.5% of training costs, reduces the KV cache by 93.3%, and boosts the maximum generation throughput to 5.76 times.\n\nDeepSeek-V2 achieves remarkable performance on both standard benchmarks and open-ended generation evaluations.",
1256
- "context_length": 128000,
1257
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": null },
1258
- "pricing": {
1259
- "prompt": "0.00000014",
1260
- "completion": "0.00000028",
1261
- "image": "0",
1262
- "request": "0"
1263
- },
1264
- "top_provider": {
1265
- "context_length": 128000,
1266
- "max_completion_tokens": 4096,
1267
- "is_moderated": false
1268
- },
1269
- "per_request_limits": null
1270
- },
1271
- {
1272
- "id": "perplexity/llama-3-sonar-large-32k-online",
1273
- "name": "Perplexity: Llama3 Sonar 70B Online",
1274
- "created": 1715644800,
1275
- "description": "Llama3 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is the online version of the [offline chat model](/models/perplexity/llama-3-sonar-large-32k-chat). It is focused on delivering helpful, up-to-date, and factual responses. #online",
1276
- "context_length": 28000,
1277
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
1278
- "pricing": {
1279
- "prompt": "0.000001",
1280
- "completion": "0.000001",
1281
- "image": "0",
1282
- "request": "0.005"
1283
- },
1284
- "top_provider": {
1285
- "context_length": 28000,
1286
- "max_completion_tokens": null,
1287
- "is_moderated": false
1288
- },
1289
- "per_request_limits": null
1290
- },
1291
- {
1292
- "id": "perplexity/llama-3-sonar-large-32k-chat",
1293
- "name": "Perplexity: Llama3 Sonar 70B",
1294
- "created": 1715644800,
1295
- "description": "Llama3 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is a normal offline LLM, but the [online version](/models/perplexity/llama-3-sonar-large-32k-online) of this model has Internet access.",
1296
- "context_length": 32768,
1297
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
1298
- "pricing": { "prompt": "0.000001", "completion": "0.000001", "image": "0", "request": "0" },
1299
- "top_provider": {
1300
- "context_length": 32768,
1301
- "max_completion_tokens": null,
1302
- "is_moderated": false
1303
- },
1304
- "per_request_limits": null
1305
- },
1306
- {
1307
- "id": "perplexity/llama-3-sonar-small-32k-online",
1308
- "name": "Perplexity: Llama3 Sonar 8B Online",
1309
- "created": 1715644800,
1310
- "description": "Llama3 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is the online version of the [offline chat model](/models/perplexity/llama-3-sonar-small-32k-chat). It is focused on delivering helpful, up-to-date, and factual responses. #online",
1311
- "context_length": 28000,
1312
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
1313
- "pricing": {
1314
- "prompt": "0.0000002",
1315
- "completion": "0.0000002",
1316
- "image": "0",
1317
- "request": "0.005"
1318
- },
1319
- "top_provider": {
1320
- "context_length": 28000,
1321
- "max_completion_tokens": null,
1322
- "is_moderated": false
1323
- },
1324
- "per_request_limits": null
1325
- },
1326
- {
1327
- "id": "perplexity/llama-3-sonar-small-32k-chat",
1328
- "name": "Perplexity: Llama3 Sonar 8B",
1329
- "created": 1715644800,
1330
- "description": "Llama3 Sonar is Perplexity's latest model family. It surpasses their earlier Sonar models in cost-efficiency, speed, and performance.\n\nThis is a normal offline LLM, but the [online version](/models/perplexity/llama-3-sonar-small-32k-online) of this model has Internet access.",
1331
- "context_length": 32768,
1332
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": null },
1333
- "pricing": { "prompt": "0.0000002", "completion": "0.0000002", "image": "0", "request": "0" },
1334
- "top_provider": {
1335
- "context_length": 32768,
1336
- "max_completion_tokens": null,
1337
- "is_moderated": false
1338
- },
1339
- "per_request_limits": null
1340
- },
1341
- {
1342
- "id": "meta-llama/llama-guard-2-8b",
1343
- "name": "Meta: LlamaGuard 2 8B",
1344
- "created": 1715558400,
1345
- "description": "This safeguard model has 8B parameters and is based on the Llama 3 family. Just like is predecessor, [LlamaGuard 1](https://huggingface.co/meta-llama/LlamaGuard-7b), it can do both prompt and response classification.\n\nLlamaGuard 2 acts as a normal LLM would, generating text that indicates whether the given input/output is safe/unsafe. If deemed unsafe, it will also share the content categories violated.\n\nFor best results, please use raw prompt input or the `/completions` endpoint, instead of the chat API.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
1346
- "context_length": 8192,
1347
- "architecture": { "modality": "text->text", "tokenizer": "Llama3", "instruct_type": "none" },
1348
- "pricing": {
1349
- "prompt": "0.00000018",
1350
- "completion": "0.00000018",
1351
- "image": "0",
1352
- "request": "0"
1353
- },
1354
- "top_provider": {
1355
- "context_length": 8192,
1356
- "max_completion_tokens": null,
1357
- "is_moderated": false
1358
- },
1359
- "per_request_limits": null
1360
- },
1361
- {
1362
- "id": "openai/gpt-4o-2024-05-13",
1363
- "name": "OpenAI: GPT-4o (2024-05-13)",
1364
- "created": 1715558400,
1365
- "description": "GPT-4o (\"o\" for \"omni\") is OpenAI's latest AI model, supporting both text and image inputs with text outputs. It maintains the intelligence level of [GPT-4 Turbo](/models/openai/gpt-4-turbo) while being twice as fast and 50% more cost-effective. GPT-4o also offers improved performance in processing non-English languages and enhanced visual capabilities.\n\nFor benchmarking against other models, it was briefly called [\"im-also-a-good-gpt2-chatbot\"](https://twitter.com/LiamFedus/status/1790064963966370209)",
1366
- "context_length": 128000,
1367
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
1368
- "pricing": {
1369
- "prompt": "0.000005",
1370
- "completion": "0.000015",
1371
- "image": "0.007225",
1372
- "request": "0"
1373
- },
1374
- "top_provider": {
1375
- "context_length": 128000,
1376
- "max_completion_tokens": 4096,
1377
- "is_moderated": true
1378
- },
1379
- "per_request_limits": null
1380
- },
1381
- {
1382
- "id": "openai/gpt-4o",
1383
- "name": "OpenAI: GPT-4o",
1384
- "created": 1715558400,
1385
- "description": "GPT-4o (\"o\" for \"omni\") is OpenAI's latest AI model, supporting both text and image inputs with text outputs. It maintains the intelligence level of [GPT-4 Turbo](/models/openai/gpt-4-turbo) while being twice as fast and 50% more cost-effective. GPT-4o also offers improved performance in processing non-English languages and enhanced visual capabilities.\n\nFor benchmarking against other models, it was briefly called [\"im-also-a-good-gpt2-chatbot\"](https://twitter.com/LiamFedus/status/1790064963966370209)",
1386
- "context_length": 128000,
1387
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
1388
- "pricing": {
1389
- "prompt": "0.000005",
1390
- "completion": "0.000015",
1391
- "image": "0.007225",
1392
- "request": "0"
1393
- },
1394
- "top_provider": {
1395
- "context_length": 128000,
1396
- "max_completion_tokens": 4096,
1397
- "is_moderated": true
1398
- },
1399
- "per_request_limits": null
1400
- },
1401
- {
1402
- "id": "openai/gpt-4o:extended",
1403
- "name": "OpenAI: GPT-4o (extended)",
1404
- "created": 1715558400,
1405
- "description": "GPT-4o Extended is an experimental variant of GPT-4o with an extended max output tokens. This model supports only text input to text output.\n\n_These are extended-context endpoints for [GPT-4o](/models/openai/gpt-4o). They may have higher prices._",
1406
- "context_length": 128000,
1407
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
1408
- "pricing": {
1409
- "prompt": "0.000006",
1410
- "completion": "0.000018",
1411
- "image": "0.007225",
1412
- "request": "0"
1413
- },
1414
- "top_provider": {
1415
- "context_length": 128000,
1416
- "max_completion_tokens": 64000,
1417
- "is_moderated": false
1418
- },
1419
- "per_request_limits": null
1420
- },
1421
- {
1422
- "id": "qwen/qwen-72b-chat",
1423
- "name": "Qwen 1.5 72B Chat",
1424
- "created": 1715212800,
1425
- "description": "Qwen1.5 72B 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, the improvements include:\n\n- Significant performance improvement in human preference for chat models\n- Multilingual support of both base and chat models\n- Stable support of 32K context length for models of all sizes\n\nFor more details, see this [blog post](https://qwenlm.github.io/blog/qwen1.5/) and [GitHub repo](https://github.com/QwenLM/Qwen1.5).\n\nUsage of this model is subject to [Tongyi Qianwen LICENSE AGREEMENT](https://huggingface.co/Qwen/Qwen1.5-110B-Chat/blob/main/LICENSE).",
1426
- "context_length": 32768,
1427
- "architecture": { "modality": "text->text", "tokenizer": "Qwen", "instruct_type": "chatml" },
1428
- "pricing": {
1429
- "prompt": "0.00000081",
1430
- "completion": "0.00000081",
1431
- "image": "0",
1432
- "request": "0"
1433
- },
1434
- "top_provider": {
1435
- "context_length": 32768,
1436
- "max_completion_tokens": null,
1437
- "is_moderated": false
1438
- },
1439
- "per_request_limits": null
1440
- },
1441
- {
1442
- "id": "qwen/qwen-110b-chat",
1443
- "name": "Qwen 1.5 110B Chat",
1444
- "created": 1715212800,
1445
- "description": "Qwen1.5 110B 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, the improvements include:\n\n- Significant performance improvement in human preference for chat models\n- Multilingual support of both base and chat models\n- Stable support of 32K context length for models of all sizes\n\nFor more details, see this [blog post](https://qwenlm.github.io/blog/qwen1.5/) and [GitHub repo](https://github.com/QwenLM/Qwen1.5).\n\nUsage of this model is subject to [Tongyi Qianwen LICENSE AGREEMENT](https://huggingface.co/Qwen/Qwen1.5-110B-Chat/blob/main/LICENSE).",
1446
- "context_length": 32768,
1447
- "architecture": { "modality": "text->text", "tokenizer": "Qwen", "instruct_type": "chatml" },
1448
- "pricing": {
1449
- "prompt": "0.00000162",
1450
- "completion": "0.00000162",
1451
- "image": "0",
1452
- "request": "0"
1453
- },
1454
- "top_provider": {
1455
- "context_length": 32768,
1456
- "max_completion_tokens": null,
1457
- "is_moderated": false
1458
- },
1459
- "per_request_limits": null
1460
- },
1461
- {
1462
- "id": "neversleep/llama-3-lumimaid-8b",
1463
- "name": "Llama 3 Lumimaid 8B",
1464
- "created": 1714780800,
1465
- "description": "The NeverSleep team is back, with a Llama 3 8B finetune trained on their curated roleplay data. Striking a balance between eRP and RP, Lumimaid was designed to be serious, yet uncensored when necessary.\n\nTo enhance it's overall intelligence and chat capability, roughly 40% of the training data was not roleplay. This provides a breadth of knowledge to access, while still keeping roleplay as the primary strength.\n\nUsage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
1466
- "context_length": 24576,
1467
- "architecture": {
1468
- "modality": "text->text",
1469
- "tokenizer": "Llama3",
1470
- "instruct_type": "llama3"
1471
- },
1472
- "pricing": {
1473
- "prompt": "0.0000001875",
1474
- "completion": "0.000001125",
1475
- "image": "0",
1476
- "request": "0"
1477
- },
1478
- "top_provider": {
1479
- "context_length": 8192,
1480
- "max_completion_tokens": null,
1481
- "is_moderated": false
1482
- },
1483
- "per_request_limits": null
1484
- },
1485
- {
1486
- "id": "neversleep/llama-3-lumimaid-8b:extended",
1487
- "name": "Llama 3 Lumimaid 8B (extended)",
1488
- "created": 1714780800,
1489
- "description": "The NeverSleep team is back, with a Llama 3 8B finetune trained on their curated roleplay data. Striking a balance between eRP and RP, Lumimaid was designed to be serious, yet uncensored when necessary.\n\nTo enhance it's overall intelligence and chat capability, roughly 40% of the training data was not roleplay. This provides a breadth of knowledge to access, while still keeping roleplay as the primary strength.\n\nUsage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).\n\n_These are extended-context endpoints for [Llama 3 Lumimaid 8B](/models/neversleep/llama-3-lumimaid-8b). They may have higher prices._",
1490
- "context_length": 24576,
1491
- "architecture": {
1492
- "modality": "text->text",
1493
- "tokenizer": "Llama3",
1494
- "instruct_type": "llama3"
1495
- },
1496
- "pricing": {
1497
- "prompt": "0.0000001875",
1498
- "completion": "0.000001125",
1499
- "image": "0",
1500
- "request": "0"
1501
- },
1502
- "top_provider": {
1503
- "context_length": 24576,
1504
- "max_completion_tokens": 2048,
1505
- "is_moderated": false
1506
- },
1507
- "per_request_limits": null
1508
- },
1509
- {
1510
- "id": "sao10k/fimbulvetr-11b-v2",
1511
- "name": "Fimbulvetr 11B v2",
1512
- "created": 1713657600,
1513
- "description": "Creative writing model, routed with permission. It's fast, it keeps the conversation going, and it stays in character.\n\nIf you submit a raw prompt, you can use Alpaca or Vicuna formats.",
1514
- "context_length": 8192,
1515
- "architecture": {
1516
- "modality": "text->text",
1517
- "tokenizer": "Llama2",
1518
- "instruct_type": "alpaca"
1519
- },
1520
- "pricing": {
1521
- "prompt": "0.000000375",
1522
- "completion": "0.0000015",
1523
- "image": "0",
1524
- "request": "0"
1525
- },
1526
- "top_provider": {
1527
- "context_length": 8192,
1528
- "max_completion_tokens": 2048,
1529
- "is_moderated": false
1530
- },
1531
- "per_request_limits": null
1532
- },
1533
- {
1534
- "id": "meta-llama/llama-3-70b-instruct",
1535
- "name": "Meta: Llama 3 70B Instruct",
1536
- "created": 1713398400,
1537
- "description": "Meta's latest class of model (Llama 3) launched with a variety of sizes & flavors. This 70B instruct-tuned version was optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
1538
- "context_length": 8192,
1539
- "architecture": {
1540
- "modality": "text->text",
1541
- "tokenizer": "Llama3",
1542
- "instruct_type": "llama3"
1543
- },
1544
- "pricing": {
1545
- "prompt": "0.00000035",
1546
- "completion": "0.0000004",
1547
- "image": "0",
1548
- "request": "0"
1549
- },
1550
- "top_provider": {
1551
- "context_length": 8192,
1552
- "max_completion_tokens": null,
1553
- "is_moderated": false
1554
- },
1555
- "per_request_limits": null
1556
- },
1557
- {
1558
- "id": "meta-llama/llama-3-70b-instruct:nitro",
1559
- "name": "Meta: Llama 3 70B Instruct (nitro)",
1560
- "created": 1713398400,
1561
- "description": "Meta's latest class of model (Llama 3) launched with a variety of sizes & flavors. This 70B instruct-tuned version was optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).\n\n_These are higher-throughput endpoints for [Llama 3 70B Instruct](/models/meta-llama/llama-3-70b-instruct). They may have higher prices._",
1562
- "context_length": 8192,
1563
- "architecture": {
1564
- "modality": "text->text",
1565
- "tokenizer": "Llama3",
1566
- "instruct_type": "llama3"
1567
- },
1568
- "pricing": {
1569
- "prompt": "0.000000792",
1570
- "completion": "0.000000792",
1571
- "image": "0",
1572
- "request": "0"
1573
- },
1574
- "top_provider": {
1575
- "context_length": 8192,
1576
- "max_completion_tokens": null,
1577
- "is_moderated": false
1578
- },
1579
- "per_request_limits": null
1580
- },
1581
- {
1582
- "id": "meta-llama/llama-3-8b-instruct:free",
1583
- "name": "Meta: Llama 3 8B Instruct (free)",
1584
- "created": 1713398400,
1585
- "description": "Meta's latest class of model (Llama 3) launched with a variety of sizes & flavors. This 8B instruct-tuned version was optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).\n\n_These are free, rate-limited endpoints for [Llama 3 8B Instruct](/models/meta-llama/llama-3-8b-instruct). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
1586
- "context_length": 8192,
1587
- "architecture": {
1588
- "modality": "text->text",
1589
- "tokenizer": "Llama3",
1590
- "instruct_type": "llama3"
1591
- },
1592
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
1593
- "top_provider": {
1594
- "context_length": 8192,
1595
- "max_completion_tokens": 4096,
1596
- "is_moderated": false
1597
- },
1598
- "per_request_limits": null
1599
- },
1600
- {
1601
- "id": "meta-llama/llama-3-8b-instruct",
1602
- "name": "Meta: Llama 3 8B Instruct",
1603
- "created": 1713398400,
1604
- "description": "Meta's latest class of model (Llama 3) launched with a variety of sizes & flavors. This 8B instruct-tuned version was optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).",
1605
- "context_length": 8192,
1606
- "architecture": {
1607
- "modality": "text->text",
1608
- "tokenizer": "Llama3",
1609
- "instruct_type": "llama3"
1610
- },
1611
- "pricing": {
1612
- "prompt": "0.000000055",
1613
- "completion": "0.000000055",
1614
- "image": "0",
1615
- "request": "0"
1616
- },
1617
- "top_provider": {
1618
- "context_length": 8192,
1619
- "max_completion_tokens": null,
1620
- "is_moderated": false
1621
- },
1622
- "per_request_limits": null
1623
- },
1624
- {
1625
- "id": "meta-llama/llama-3-8b-instruct:nitro",
1626
- "name": "Meta: Llama 3 8B Instruct (nitro)",
1627
- "created": 1713398400,
1628
- "description": "Meta's latest class of model (Llama 3) launched with a variety of sizes & flavors. This 8B instruct-tuned version was optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).\n\n_These are higher-throughput endpoints for [Llama 3 8B Instruct](/models/meta-llama/llama-3-8b-instruct). They may have higher prices._",
1629
- "context_length": 8192,
1630
- "architecture": {
1631
- "modality": "text->text",
1632
- "tokenizer": "Llama3",
1633
- "instruct_type": "llama3"
1634
- },
1635
- "pricing": {
1636
- "prompt": "0.000000162",
1637
- "completion": "0.000000162",
1638
- "image": "0",
1639
- "request": "0"
1640
- },
1641
- "top_provider": {
1642
- "context_length": 8192,
1643
- "max_completion_tokens": null,
1644
- "is_moderated": false
1645
- },
1646
- "per_request_limits": null
1647
- },
1648
- {
1649
- "id": "meta-llama/llama-3-8b-instruct:extended",
1650
- "name": "Meta: Llama 3 8B Instruct (extended)",
1651
- "created": 1713398400,
1652
- "description": "Meta's latest class of model (Llama 3) launched with a variety of sizes & flavors. This 8B instruct-tuned version was optimized for high quality dialogue usecases.\n\nIt has demonstrated strong performance compared to leading closed-source models in human evaluations.\n\nTo read more about the model release, [click here](https://ai.meta.com/blog/meta-llama-3/). Usage of this model is subject to [Meta's Acceptable Use Policy](https://llama.meta.com/llama3/use-policy/).\n\n_These are extended-context endpoints for [Llama 3 8B Instruct](/models/meta-llama/llama-3-8b-instruct). They may have higher prices._",
1653
- "context_length": 16384,
1654
- "architecture": {
1655
- "modality": "text->text",
1656
- "tokenizer": "Llama3",
1657
- "instruct_type": "llama3"
1658
- },
1659
- "pricing": {
1660
- "prompt": "0.0000001875",
1661
- "completion": "0.000001125",
1662
- "image": "0",
1663
- "request": "0"
1664
- },
1665
- "top_provider": {
1666
- "context_length": 16384,
1667
- "max_completion_tokens": 2048,
1668
- "is_moderated": false
1669
- },
1670
- "per_request_limits": null
1671
- },
1672
- {
1673
- "id": "mistralai/mixtral-8x22b-instruct",
1674
- "name": "Mistral: Mixtral 8x22B Instruct",
1675
- "created": 1713312000,
1676
- "description": "Mistral's official instruct fine-tuned version of [Mixtral 8x22B](/models/mistralai/mixtral-8x22b). It uses 39B active parameters out of 141B, offering unparalleled cost efficiency for its size. Its strengths include:\n- strong math, coding, and reasoning\n- large context length (64k)\n- fluency in English, French, Italian, German, and Spanish\n\nSee benchmarks on the launch announcement [here](https://mistral.ai/news/mixtral-8x22b/).\n#moe",
1677
- "context_length": 65536,
1678
- "architecture": {
1679
- "modality": "text->text",
1680
- "tokenizer": "Mistral",
1681
- "instruct_type": "mistral"
1682
- },
1683
- "pricing": {
1684
- "prompt": "0.00000065",
1685
- "completion": "0.00000065",
1686
- "image": "0",
1687
- "request": "0"
1688
- },
1689
- "top_provider": {
1690
- "context_length": 65536,
1691
- "max_completion_tokens": null,
1692
- "is_moderated": false
1693
- },
1694
- "per_request_limits": null
1695
- },
1696
- {
1697
- "id": "microsoft/wizardlm-2-7b",
1698
- "name": "WizardLM-2 7B",
1699
- "created": 1713225600,
1700
- "description": "WizardLM-2 7B is the smaller variant of Microsoft AI's latest Wizard model. It is the fastest and achieves comparable performance with existing 10x larger opensource leading models\n\nIt is a finetune of [Mistral 7B Instruct](/models/mistralai/mistral-7b-instruct), using the same technique as [WizardLM-2 8x22B](/models/microsoft/wizardlm-2-8x22b).\n\nTo read more about the model release, [click here](https://wizardlm.github.io/WizardLM2/).\n\n#moe",
1701
- "context_length": 32000,
1702
- "architecture": {
1703
- "modality": "text->text",
1704
- "tokenizer": "Mistral",
1705
- "instruct_type": "vicuna"
1706
- },
1707
- "pricing": {
1708
- "prompt": "0.000000055",
1709
- "completion": "0.000000055",
1710
- "image": "0",
1711
- "request": "0"
1712
- },
1713
- "top_provider": {
1714
- "context_length": 32000,
1715
- "max_completion_tokens": null,
1716
- "is_moderated": false
1717
- },
1718
- "per_request_limits": null
1719
- },
1720
- {
1721
- "id": "microsoft/wizardlm-2-8x22b",
1722
- "name": "WizardLM-2 8x22B",
1723
- "created": 1713225600,
1724
- "description": "WizardLM-2 8x22B is Microsoft AI's most advanced Wizard model. It demonstrates highly competitive performance compared to leading proprietary models, and it consistently outperforms all existing state-of-the-art opensource models.\n\nIt is an instruct finetune of [Mixtral 8x22B](/models/mistralai/mixtral-8x22b).\n\nTo read more about the model release, [click here](https://wizardlm.github.io/WizardLM2/).\n\n#moe",
1725
- "context_length": 65536,
1726
- "architecture": {
1727
- "modality": "text->text",
1728
- "tokenizer": "Mistral",
1729
- "instruct_type": "vicuna"
1730
- },
1731
- "pricing": { "prompt": "0.0000005", "completion": "0.0000005", "image": "0", "request": "0" },
1732
- "top_provider": {
1733
- "context_length": 65536,
1734
- "max_completion_tokens": null,
1735
- "is_moderated": false
1736
- },
1737
- "per_request_limits": null
1738
- },
1739
- {
1740
- "id": "google/gemini-pro-1.5",
1741
- "name": "Google: Gemini Pro 1.5",
1742
- "created": 1712620800,
1743
- "description": "Google's latest multimodal model, supporting image and video in text or chat prompts.\n\nOptimized for language tasks including:\n\n- Code generation\n- Text generation\n- Text editing\n- Problem solving\n- Recommendations\n- Information extraction\n- Data extraction or generation\n- AI agents\n\nUsage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.dev/terms).\n\n#multimodal",
1744
- "context_length": 4000000,
1745
- "architecture": {
1746
- "modality": "text+image->text",
1747
- "tokenizer": "Gemini",
1748
- "instruct_type": null
1749
- },
1750
- "pricing": {
1751
- "prompt": "0.0000025",
1752
- "completion": "0.0000075",
1753
- "image": "0.00263",
1754
- "request": "0"
1755
- },
1756
- "top_provider": {
1757
- "context_length": 4000000,
1758
- "max_completion_tokens": 32768,
1759
- "is_moderated": false
1760
- },
1761
- "per_request_limits": null
1762
- },
1763
- {
1764
- "id": "openai/gpt-4-turbo",
1765
- "name": "OpenAI: GPT-4 Turbo",
1766
- "created": 1712620800,
1767
- "description": "The latest GPT-4 Turbo model with vision capabilities. Vision requests can now use JSON mode and function calling.\n\nTraining data: up to December 2023.",
1768
- "context_length": 128000,
1769
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
1770
- "pricing": {
1771
- "prompt": "0.00001",
1772
- "completion": "0.00003",
1773
- "image": "0.01445",
1774
- "request": "0"
1775
- },
1776
- "top_provider": {
1777
- "context_length": 128000,
1778
- "max_completion_tokens": 4096,
1779
- "is_moderated": true
1780
- },
1781
- "per_request_limits": null
1782
- },
1783
- {
1784
- "id": "cohere/command-r-plus",
1785
- "name": "Cohere: Command R+",
1786
- "created": 1712188800,
1787
- "description": "Command R+ is a new, 104B-parameter LLM from Cohere. It's useful for roleplay, general consumer usecases, and Retrieval Augmented Generation (RAG).\n\nIt offers multilingual support for ten key languages to facilitate global business operations. See benchmarks and the launch post [here](https://txt.cohere.com/command-r-plus-microsoft-azure/).\n\nUse of this model is subject to Cohere's [Acceptable Use Policy](https://docs.cohere.com/docs/c4ai-acceptable-use-policy).",
1788
- "context_length": 128000,
1789
- "architecture": { "modality": "text->text", "tokenizer": "Cohere", "instruct_type": null },
1790
- "pricing": { "prompt": "0.000003", "completion": "0.000015", "image": "0", "request": "0" },
1791
- "top_provider": {
1792
- "context_length": 128000,
1793
- "max_completion_tokens": 4000,
1794
- "is_moderated": false
1795
- },
1796
- "per_request_limits": null
1797
- },
1798
- {
1799
- "id": "databricks/dbrx-instruct",
1800
- "name": "Databricks: DBRX 132B Instruct",
1801
- "created": 1711670400,
1802
- "description": "DBRX is a new open source large language model developed by Databricks. At 132B, it outperforms existing open source LLMs like Llama 2 70B and [Mixtral-8x7b](/models/mistralai/mixtral-8x7b) on standard industry benchmarks for language understanding, programming, math, and logic.\n\nIt uses a fine-grained mixture-of-experts (MoE) architecture. 36B parameters are active on any input. It was pre-trained on 12T tokens of text and code data. Compared to other open MoE models like Mixtral-8x7B and Grok-1, DBRX is fine-grained, meaning it uses a larger number of smaller experts.\n\nSee the launch announcement and benchmark results [here](https://www.databricks.com/blog/introducing-dbrx-new-state-art-open-llm).\n\n#moe",
1803
- "context_length": 32768,
1804
- "architecture": { "modality": "text->text", "tokenizer": "Other", "instruct_type": "chatml" },
1805
- "pricing": {
1806
- "prompt": "0.00000108",
1807
- "completion": "0.00000108",
1808
- "image": "0",
1809
- "request": "0"
1810
- },
1811
- "top_provider": {
1812
- "context_length": 32768,
1813
- "max_completion_tokens": null,
1814
- "is_moderated": false
1815
- },
1816
- "per_request_limits": null
1817
- },
1818
- {
1819
- "id": "sophosympatheia/midnight-rose-70b",
1820
- "name": "Midnight Rose 70B",
1821
- "created": 1711065600,
1822
- "description": "A merge with a complex family tree, this model was crafted for roleplaying and storytelling. Midnight Rose is a successor to Rogue Rose and Aurora Nights and improves upon them both. It wants to produce lengthy output by default and is the best creative writing merge produced so far by sophosympatheia.\n\nDescending from earlier versions of Midnight Rose and [Wizard Tulu Dolphin 70B](https://huggingface.co/sophosympatheia/Wizard-Tulu-Dolphin-70B-v1.0), it inherits the best qualities of each.",
1823
- "context_length": 4096,
1824
- "architecture": {
1825
- "modality": "text->text",
1826
- "tokenizer": "Llama2",
1827
- "instruct_type": "airoboros"
1828
- },
1829
- "pricing": { "prompt": "0.0000008", "completion": "0.0000008", "image": "0", "request": "0" },
1830
- "top_provider": {
1831
- "context_length": 4096,
1832
- "max_completion_tokens": null,
1833
- "is_moderated": false
1834
- },
1835
- "per_request_limits": null
1836
- },
1837
- {
1838
- "id": "cohere/command-r",
1839
- "name": "Cohere: Command R",
1840
- "created": 1710374400,
1841
- "description": "Command-R is a 35B parameter model that performs conversational language tasks at a higher quality, more reliably, and with a longer context than previous models. It can be used for complex workflows like code generation, retrieval augmented generation (RAG), tool use, and agents.\n\nRead the launch post [here](https://txt.cohere.com/command-r/).\n\nUse of this model is subject to Cohere's [Acceptable Use Policy](https://docs.cohere.com/docs/c4ai-acceptable-use-policy).",
1842
- "context_length": 128000,
1843
- "architecture": { "modality": "text->text", "tokenizer": "Cohere", "instruct_type": null },
1844
- "pricing": { "prompt": "0.0000005", "completion": "0.0000015", "image": "0", "request": "0" },
1845
- "top_provider": {
1846
- "context_length": 128000,
1847
- "max_completion_tokens": 4000,
1848
- "is_moderated": false
1849
- },
1850
- "per_request_limits": null
1851
- },
1852
- {
1853
- "id": "cohere/command",
1854
- "name": "Cohere: Command",
1855
- "created": 1710374400,
1856
- "description": "Command is an instruction-following conversational model that performs language tasks with high quality, more reliably and with a longer context than our base generative models.\n\nUse of this model is subject to Cohere's [Acceptable Use Policy](https://docs.cohere.com/docs/c4ai-acceptable-use-policy).",
1857
- "context_length": 4096,
1858
- "architecture": { "modality": "text->text", "tokenizer": "Cohere", "instruct_type": null },
1859
- "pricing": { "prompt": "0.000001", "completion": "0.000002", "image": "0", "request": "0" },
1860
- "top_provider": {
1861
- "context_length": 4096,
1862
- "max_completion_tokens": 4000,
1863
- "is_moderated": false
1864
- },
1865
- "per_request_limits": null
1866
- },
1867
- {
1868
- "id": "anthropic/claude-3-haiku",
1869
- "name": "Anthropic: Claude 3 Haiku",
1870
- "created": 1710288000,
1871
- "description": "Claude 3 Haiku is Anthropic's fastest and most compact model for\nnear-instant responsiveness. Quick and accurate targeted performance.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-haiku)\n\n#multimodal",
1872
- "context_length": 200000,
1873
- "architecture": {
1874
- "modality": "text+image->text",
1875
- "tokenizer": "Claude",
1876
- "instruct_type": null
1877
- },
1878
- "pricing": {
1879
- "prompt": "0.00000025",
1880
- "completion": "0.00000125",
1881
- "image": "0.0004",
1882
- "request": "0"
1883
- },
1884
- "top_provider": {
1885
- "context_length": 200000,
1886
- "max_completion_tokens": 4096,
1887
- "is_moderated": true
1888
- },
1889
- "per_request_limits": null
1890
- },
1891
- {
1892
- "id": "anthropic/claude-3-haiku:beta",
1893
- "name": "Anthropic: Claude 3 Haiku (self-moderated)",
1894
- "created": 1710288000,
1895
- "description": "Claude 3 Haiku is Anthropic's fastest and most compact model for\nnear-instant responsiveness. Quick and accurate targeted performance.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-haiku)\n\n#multimodal\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-3-haiku) variant._",
1896
- "context_length": 200000,
1897
- "architecture": {
1898
- "modality": "text+image->text",
1899
- "tokenizer": "Claude",
1900
- "instruct_type": null
1901
- },
1902
- "pricing": {
1903
- "prompt": "0.00000025",
1904
- "completion": "0.00000125",
1905
- "image": "0.0004",
1906
- "request": "0"
1907
- },
1908
- "top_provider": {
1909
- "context_length": 200000,
1910
- "max_completion_tokens": 4096,
1911
- "is_moderated": false
1912
- },
1913
- "per_request_limits": null
1914
- },
1915
- {
1916
- "id": "anthropic/claude-3-sonnet",
1917
- "name": "Anthropic: Claude 3 Sonnet",
1918
- "created": 1709596800,
1919
- "description": "Claude 3 Sonnet is an ideal balance of intelligence and speed for enterprise workloads. Maximum utility at a lower price, dependable, balanced for scaled deployments.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-family)\n\n#multimodal",
1920
- "context_length": 200000,
1921
- "architecture": {
1922
- "modality": "text+image->text",
1923
- "tokenizer": "Claude",
1924
- "instruct_type": null
1925
- },
1926
- "pricing": {
1927
- "prompt": "0.000003",
1928
- "completion": "0.000015",
1929
- "image": "0.0048",
1930
- "request": "0"
1931
- },
1932
- "top_provider": {
1933
- "context_length": 200000,
1934
- "max_completion_tokens": 4096,
1935
- "is_moderated": true
1936
- },
1937
- "per_request_limits": null
1938
- },
1939
- {
1940
- "id": "anthropic/claude-3-sonnet:beta",
1941
- "name": "Anthropic: Claude 3 Sonnet (self-moderated)",
1942
- "created": 1709596800,
1943
- "description": "Claude 3 Sonnet is an ideal balance of intelligence and speed for enterprise workloads. Maximum utility at a lower price, dependable, balanced for scaled deployments.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-family)\n\n#multimodal\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-3-sonnet) variant._",
1944
- "context_length": 200000,
1945
- "architecture": {
1946
- "modality": "text+image->text",
1947
- "tokenizer": "Claude",
1948
- "instruct_type": null
1949
- },
1950
- "pricing": {
1951
- "prompt": "0.000003",
1952
- "completion": "0.000015",
1953
- "image": "0.0048",
1954
- "request": "0"
1955
- },
1956
- "top_provider": {
1957
- "context_length": 200000,
1958
- "max_completion_tokens": 4096,
1959
- "is_moderated": false
1960
- },
1961
- "per_request_limits": null
1962
- },
1963
- {
1964
- "id": "anthropic/claude-3-opus",
1965
- "name": "Anthropic: Claude 3 Opus",
1966
- "created": 1709596800,
1967
- "description": "Claude 3 Opus is Anthropic's most powerful model for highly complex tasks. It boasts top-level performance, intelligence, fluency, and understanding.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-family)\n\n#multimodal",
1968
- "context_length": 200000,
1969
- "architecture": {
1970
- "modality": "text+image->text",
1971
- "tokenizer": "Claude",
1972
- "instruct_type": null
1973
- },
1974
- "pricing": {
1975
- "prompt": "0.000015",
1976
- "completion": "0.000075",
1977
- "image": "0.024",
1978
- "request": "0"
1979
- },
1980
- "top_provider": {
1981
- "context_length": 200000,
1982
- "max_completion_tokens": 4096,
1983
- "is_moderated": true
1984
- },
1985
- "per_request_limits": null
1986
- },
1987
- {
1988
- "id": "anthropic/claude-3-opus:beta",
1989
- "name": "Anthropic: Claude 3 Opus (self-moderated)",
1990
- "created": 1709596800,
1991
- "description": "Claude 3 Opus is Anthropic's most powerful model for highly complex tasks. It boasts top-level performance, intelligence, fluency, and understanding.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-family)\n\n#multimodal\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-3-opus) variant._",
1992
- "context_length": 200000,
1993
- "architecture": {
1994
- "modality": "text+image->text",
1995
- "tokenizer": "Claude",
1996
- "instruct_type": null
1997
- },
1998
- "pricing": {
1999
- "prompt": "0.000015",
2000
- "completion": "0.000075",
2001
- "image": "0.024",
2002
- "request": "0"
2003
- },
2004
- "top_provider": {
2005
- "context_length": 200000,
2006
- "max_completion_tokens": 4096,
2007
- "is_moderated": false
2008
- },
2009
- "per_request_limits": null
2010
- },
2011
- {
2012
- "id": "mistralai/mistral-large",
2013
- "name": "Mistral Large",
2014
- "created": 1708905600,
2015
- "description": "This is Mistral AI's flagship model, Mistral Large 2 (version `mistral-large-2407`). It's a proprietary weights-available model and excels at reasoning, code, JSON, chat, and more. Read the launch announcement [here](https://mistral.ai/news/mistral-large-2407/).\n\nIt is fluent in English, French, Spanish, German, and Italian, with high grammatical accuracy, and its long context window allows precise information recall from large documents.",
2016
- "context_length": 128000,
2017
- "architecture": { "modality": "text->text", "tokenizer": "Mistral", "instruct_type": null },
2018
- "pricing": { "prompt": "0.000003", "completion": "0.000009", "image": "0", "request": "0" },
2019
- "top_provider": {
2020
- "context_length": 128000,
2021
- "max_completion_tokens": null,
2022
- "is_moderated": false
2023
- },
2024
- "per_request_limits": null
2025
- },
2026
- {
2027
- "id": "openai/gpt-4-turbo-preview",
2028
- "name": "OpenAI: GPT-4 Turbo Preview",
2029
- "created": 1706140800,
2030
- "description": "The preview GPT-4 model with improved instruction following, JSON mode, reproducible outputs, parallel function calling, and more. Training data: up to Dec 2023.\n\n**Note:** heavily rate limited by OpenAI while in preview.",
2031
- "context_length": 128000,
2032
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
2033
- "pricing": { "prompt": "0.00001", "completion": "0.00003", "image": "0", "request": "0" },
2034
- "top_provider": {
2035
- "context_length": 128000,
2036
- "max_completion_tokens": 4096,
2037
- "is_moderated": true
2038
- },
2039
- "per_request_limits": null
2040
- },
2041
- {
2042
- "id": "openai/gpt-3.5-turbo-0613",
2043
- "name": "OpenAI: GPT-3.5 Turbo (older v0613)",
2044
- "created": 1706140800,
2045
- "description": "GPT-3.5 Turbo is OpenAI's fastest model. It can understand and generate natural language or code, and is optimized for chat and traditional completion tasks.\n\nTraining data up to Sep 2021.",
2046
- "context_length": 4095,
2047
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
2048
- "pricing": { "prompt": "0.000001", "completion": "0.000002", "image": "0", "request": "0" },
2049
- "top_provider": {
2050
- "context_length": 4095,
2051
- "max_completion_tokens": 4096,
2052
- "is_moderated": true
2053
- },
2054
- "per_request_limits": null
2055
- },
2056
- {
2057
- "id": "nousresearch/nous-hermes-2-mixtral-8x7b-dpo",
2058
- "name": "Nous: Hermes 2 Mixtral 8x7B DPO",
2059
- "created": 1705363200,
2060
- "description": "Nous Hermes 2 Mixtral 8x7B DPO is the new flagship Nous Research model trained over the [Mixtral 8x7B MoE LLM](/models/mistralai/mixtral-8x7b).\n\nThe model was trained on over 1,000,000 entries of primarily [GPT-4](/models/openai/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.\n\n#moe",
2061
- "context_length": 32768,
2062
- "architecture": {
2063
- "modality": "text->text",
2064
- "tokenizer": "Mistral",
2065
- "instruct_type": "chatml"
2066
- },
2067
- "pricing": {
2068
- "prompt": "0.00000045",
2069
- "completion": "0.00000045",
2070
- "image": "0",
2071
- "request": "0"
2072
- },
2073
- "top_provider": {
2074
- "context_length": 32768,
2075
- "max_completion_tokens": null,
2076
- "is_moderated": false
2077
- },
2078
- "per_request_limits": null
2079
- },
2080
- {
2081
- "id": "mistralai/mistral-medium",
2082
- "name": "Mistral Medium",
2083
- "created": 1704844800,
2084
- "description": "This is Mistral AI's closed-source, medium-sided model. It's powered by a closed-source prototype and excels at reasoning, code, JSON, chat, and more. In benchmarks, it compares with many of the flagship models of other companies.",
2085
- "context_length": 32000,
2086
- "architecture": { "modality": "text->text", "tokenizer": "Mistral", "instruct_type": null },
2087
- "pricing": { "prompt": "0.0000027", "completion": "0.0000081", "image": "0", "request": "0" },
2088
- "top_provider": {
2089
- "context_length": 32000,
2090
- "max_completion_tokens": null,
2091
- "is_moderated": false
2092
- },
2093
- "per_request_limits": null
2094
- },
2095
- {
2096
- "id": "mistralai/mistral-small",
2097
- "name": "Mistral Small",
2098
- "created": 1704844800,
2099
- "description": "This model is currently powered by Mixtral-8X7B-v0.1, a sparse mixture of experts model with 12B active parameters. It has better reasoning, exhibits more capabilities, can produce and reason about code, and is multiligual, supporting English, French, German, Italian, and Spanish.\n#moe",
2100
- "context_length": 32000,
2101
- "architecture": { "modality": "text->text", "tokenizer": "Mistral", "instruct_type": null },
2102
- "pricing": { "prompt": "0.000002", "completion": "0.000006", "image": "0", "request": "0" },
2103
- "top_provider": {
2104
- "context_length": 32000,
2105
- "max_completion_tokens": null,
2106
- "is_moderated": false
2107
- },
2108
- "per_request_limits": null
2109
- },
2110
- {
2111
- "id": "mistralai/mistral-tiny",
2112
- "name": "Mistral Tiny",
2113
- "created": 1704844800,
2114
- "description": "This model is currently powered by Mistral-7B-v0.2, and incorporates a \"better\" fine-tuning than [Mistral 7B](/models/mistralai/mistral-7b-instruct-v0.1), inspired by community work. It's best used for large batch processing tasks where cost is a significant factor but reasoning capabilities are not crucial.",
2115
- "context_length": 32000,
2116
- "architecture": { "modality": "text->text", "tokenizer": "Mistral", "instruct_type": null },
2117
- "pricing": {
2118
- "prompt": "0.00000025",
2119
- "completion": "0.00000025",
2120
- "image": "0",
2121
- "request": "0"
2122
- },
2123
- "top_provider": {
2124
- "context_length": 32000,
2125
- "max_completion_tokens": null,
2126
- "is_moderated": false
2127
- },
2128
- "per_request_limits": null
2129
- },
2130
- {
2131
- "id": "austism/chronos-hermes-13b",
2132
- "name": "Chronos Hermes 13B v2",
2133
- "created": 1704412800,
2134
- "description": "A 75/25 merge of [Chronos 13b v2](https://huggingface.co/elinas/chronos-13b-v2) and [Nous Hermes Llama2 13b](/models/nousresearch/nous-hermes-llama2-13b). This offers the imaginative writing style of Chronos while retaining coherency. Outputs are long and use exceptional prose. #merge",
2135
- "context_length": 4096,
2136
- "architecture": {
2137
- "modality": "text->text",
2138
- "tokenizer": "Llama2",
2139
- "instruct_type": "alpaca"
2140
- },
2141
- "pricing": {
2142
- "prompt": "0.00000013",
2143
- "completion": "0.00000013",
2144
- "image": "0",
2145
- "request": "0"
2146
- },
2147
- "top_provider": {
2148
- "context_length": 4096,
2149
- "max_completion_tokens": null,
2150
- "is_moderated": false
2151
- },
2152
- "per_request_limits": null
2153
- },
2154
- {
2155
- "id": "nousresearch/nous-hermes-yi-34b",
2156
- "name": "Nous: Hermes 2 Yi 34B",
2157
- "created": 1704153600,
2158
- "description": "Nous Hermes 2 Yi 34B was trained on 1,000,000 entries of primarily GPT-4 generated data, as well as other high quality data from open datasets across the AI landscape.\n\nNous-Hermes 2 on Yi 34B outperforms all Nous-Hermes & Open-Hermes models of the past, achieving new heights in all benchmarks for a Nous Research LLM as well as surpassing many popular finetunes.",
2159
- "context_length": 4096,
2160
- "architecture": { "modality": "text->text", "tokenizer": "Yi", "instruct_type": "chatml" },
2161
- "pricing": {
2162
- "prompt": "0.00000072",
2163
- "completion": "0.00000072",
2164
- "image": "0",
2165
- "request": "0"
2166
- },
2167
- "top_provider": {
2168
- "context_length": 4096,
2169
- "max_completion_tokens": null,
2170
- "is_moderated": false
2171
- },
2172
- "per_request_limits": null
2173
- },
2174
- {
2175
- "id": "mistralai/mistral-7b-instruct-v0.2",
2176
- "name": "Mistral: Mistral 7B Instruct v0.2",
2177
- "created": 1703721600,
2178
- "description": "A high-performing, industry-standard 7.3B parameter model, with optimizations for speed and context length.\n\nAn improved version of [Mistral 7B Instruct](/modelsmistralai/mistral-7b-instruct-v0.1), with the following changes:\n\n- 32k context window (vs 8k context in v0.1)\n- Rope-theta = 1e6\n- No Sliding-Window Attention",
2179
- "context_length": 32768,
2180
- "architecture": {
2181
- "modality": "text->text",
2182
- "tokenizer": "Mistral",
2183
- "instruct_type": "mistral"
2184
- },
2185
- "pricing": {
2186
- "prompt": "0.000000055",
2187
- "completion": "0.000000055",
2188
- "image": "0",
2189
- "request": "0"
2190
- },
2191
- "top_provider": {
2192
- "context_length": 32768,
2193
- "max_completion_tokens": null,
2194
- "is_moderated": false
2195
- },
2196
- "per_request_limits": null
2197
- },
2198
- {
2199
- "id": "cognitivecomputations/dolphin-mixtral-8x7b",
2200
- "name": "Dolphin 2.6 Mixtral 8x7B 🐬",
2201
- "created": 1703116800,
2202
- "description": "This is a 16k context fine-tune of [Mixtral-8x7b](/models/mistralai/mixtral-8x7b). It excels in coding tasks due to extensive training with coding data and is known for its obedience, although it lacks DPO tuning.\n\nThe model is uncensored and is stripped of alignment and bias. It requires an external alignment layer for ethical use. Users are cautioned to use this highly compliant model responsibly, as detailed in a blog post about uncensored models at [erichartford.com/uncensored-models](https://erichartford.com/uncensored-models).\n\n#moe #uncensored",
2203
- "context_length": 32768,
2204
- "architecture": {
2205
- "modality": "text->text",
2206
- "tokenizer": "Mistral",
2207
- "instruct_type": "chatml"
2208
- },
2209
- "pricing": { "prompt": "0.0000005", "completion": "0.0000005", "image": "0", "request": "0" },
2210
- "top_provider": {
2211
- "context_length": 32768,
2212
- "max_completion_tokens": null,
2213
- "is_moderated": false
2214
- },
2215
- "per_request_limits": null
2216
- },
2217
- {
2218
- "id": "google/gemini-pro-vision",
2219
- "name": "Google: Gemini Pro Vision 1.0",
2220
- "created": 1702425600,
2221
- "description": "Google's flagship multimodal model, supporting image and video in text or chat prompts for a text or code response.\n\nSee the benchmarks and prompting guidelines from [Deepmind](https://deepmind.google/technologies/gemini/).\n\nUsage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.dev/terms).\n\n#multimodal",
2222
- "context_length": 65536,
2223
- "architecture": {
2224
- "modality": "text+image->text",
2225
- "tokenizer": "Gemini",
2226
- "instruct_type": null
2227
- },
2228
- "pricing": {
2229
- "prompt": "0.000000125",
2230
- "completion": "0.000000375",
2231
- "image": "0.0025",
2232
- "request": "0"
2233
- },
2234
- "top_provider": {
2235
- "context_length": 65536,
2236
- "max_completion_tokens": 8192,
2237
- "is_moderated": false
2238
- },
2239
- "per_request_limits": null
2240
- },
2241
- {
2242
- "id": "google/gemini-pro",
2243
- "name": "Google: Gemini Pro 1.0",
2244
- "created": 1702425600,
2245
- "description": "Google's flagship text generation model. Designed to handle natural language tasks, multiturn text and code chat, and code generation.\n\nSee the benchmarks and prompting guidelines from [Deepmind](https://deepmind.google/technologies/gemini/).\n\nUsage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.dev/terms).",
2246
- "context_length": 131040,
2247
- "architecture": { "modality": "text->text", "tokenizer": "Gemini", "instruct_type": null },
2248
- "pricing": {
2249
- "prompt": "0.000000125",
2250
- "completion": "0.000000375",
2251
- "image": "0.0025",
2252
- "request": "0"
2253
- },
2254
- "top_provider": {
2255
- "context_length": 131040,
2256
- "max_completion_tokens": 32768,
2257
- "is_moderated": false
2258
- },
2259
- "per_request_limits": null
2260
- },
2261
- {
2262
- "id": "mistralai/mixtral-8x7b-instruct",
2263
- "name": "Mixtral 8x7B Instruct",
2264
- "created": 1702166400,
2265
- "description": "A pretrained generative Sparse Mixture of Experts, by Mistral AI, for chat and instruction use. Incorporates 8 experts (feed-forward networks) for a total of 47 billion parameters.\n\nInstruct model fine-tuned by Mistral. #moe",
2266
- "context_length": 32768,
2267
- "architecture": {
2268
- "modality": "text->text",
2269
- "tokenizer": "Mistral",
2270
- "instruct_type": "mistral"
2271
- },
2272
- "pricing": {
2273
- "prompt": "0.00000024",
2274
- "completion": "0.00000024",
2275
- "image": "0",
2276
- "request": "0"
2277
- },
2278
- "top_provider": {
2279
- "context_length": 32768,
2280
- "max_completion_tokens": null,
2281
- "is_moderated": false
2282
- },
2283
- "per_request_limits": null
2284
- },
2285
- {
2286
- "id": "mistralai/mixtral-8x7b-instruct:nitro",
2287
- "name": "Mixtral 8x7B Instruct (nitro)",
2288
- "created": 1702166400,
2289
- "description": "A pretrained generative Sparse Mixture of Experts, by Mistral AI, for chat and instruction use. Incorporates 8 experts (feed-forward networks) for a total of 47 billion parameters.\n\nInstruct model fine-tuned by Mistral. #moe\n\n_These are higher-throughput endpoints for [Mixtral 8x7B Instruct](/models/mistralai/mixtral-8x7b-instruct). They may have higher prices._",
2290
- "context_length": 32768,
2291
- "architecture": {
2292
- "modality": "text->text",
2293
- "tokenizer": "Mistral",
2294
- "instruct_type": "mistral"
2295
- },
2296
- "pricing": {
2297
- "prompt": "0.00000054",
2298
- "completion": "0.00000054",
2299
- "image": "0",
2300
- "request": "0"
2301
- },
2302
- "top_provider": {
2303
- "context_length": 32768,
2304
- "max_completion_tokens": null,
2305
- "is_moderated": false
2306
- },
2307
- "per_request_limits": null
2308
- },
2309
- {
2310
- "id": "mistralai/mixtral-8x7b",
2311
- "name": "Mixtral 8x7B (base)",
2312
- "created": 1702166400,
2313
- "description": "A pretrained generative Sparse Mixture of Experts, by Mistral AI. Incorporates 8 experts (feed-forward networks) for a total of 47B parameters. Base model (not fine-tuned for instructions) - see [Mixtral 8x7B Instruct](/models/mistralai/mixtral-8x7b-instruct) for an instruct-tuned model.\n\n#moe",
2314
- "context_length": 32768,
2315
- "architecture": { "modality": "text->text", "tokenizer": "Mistral", "instruct_type": "none" },
2316
- "pricing": {
2317
- "prompt": "0.00000054",
2318
- "completion": "0.00000054",
2319
- "image": "0",
2320
- "request": "0"
2321
- },
2322
- "top_provider": {
2323
- "context_length": 32768,
2324
- "max_completion_tokens": null,
2325
- "is_moderated": false
2326
- },
2327
- "per_request_limits": null
2328
- },
2329
- {
2330
- "id": "togethercomputer/stripedhyena-nous-7b",
2331
- "name": "StripedHyena Nous 7B",
2332
- "created": 1702080000,
2333
- "description": "This is the chat model variant of the [StripedHyena series](/models?q=stripedhyena) developed by Together in collaboration with Nous Research.\n\nStripedHyena uses a new architecture that competes with traditional Transformers, particularly in long-context data processing. It combines attention mechanisms with gated convolutions for improved speed, efficiency, and scaling. This model marks a significant advancement in AI architecture for sequence modeling tasks.",
2334
- "context_length": 32768,
2335
- "architecture": {
2336
- "modality": "text->text",
2337
- "tokenizer": "Mistral",
2338
- "instruct_type": "alpaca"
2339
- },
2340
- "pricing": {
2341
- "prompt": "0.00000018",
2342
- "completion": "0.00000018",
2343
- "image": "0",
2344
- "request": "0"
2345
- },
2346
- "top_provider": {
2347
- "context_length": 32768,
2348
- "max_completion_tokens": null,
2349
- "is_moderated": false
2350
- },
2351
- "per_request_limits": null
2352
- },
2353
- {
2354
- "id": "gryphe/mythomist-7b:free",
2355
- "name": "MythoMist 7B (free)",
2356
- "created": 1701907200,
2357
- "description": "From the creator of [MythoMax](/models/gryphe/mythomax-l2-13b), merges a suite of models to reduce word anticipation, ministrations, and other undesirable words in ChatGPT roleplaying data.\n\nIt combines [Neural Chat 7B](/models/intel/neural-chat-7b), Airoboros 7b, [Toppy M 7B](/models/undi95/toppy-m-7b), [Zepher 7b beta](/models/huggingfaceh4/zephyr-7b-beta), [Nous Capybara 34B](/models/nousresearch/nous-capybara-34b), [OpenHeremes 2.5](/models/teknium/openhermes-2.5-mistral-7b), and many others.\n\n#merge\n\n_These are free, rate-limited endpoints for [MythoMist 7B](/models/gryphe/mythomist-7b). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
2358
- "context_length": 32768,
2359
- "architecture": {
2360
- "modality": "text->text",
2361
- "tokenizer": "Mistral",
2362
- "instruct_type": "alpaca"
2363
- },
2364
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
2365
- "top_provider": {
2366
- "context_length": 8192,
2367
- "max_completion_tokens": 4096,
2368
- "is_moderated": false
2369
- },
2370
- "per_request_limits": null
2371
- },
2372
- {
2373
- "id": "gryphe/mythomist-7b",
2374
- "name": "MythoMist 7B",
2375
- "created": 1701907200,
2376
- "description": "From the creator of [MythoMax](/models/gryphe/mythomax-l2-13b), merges a suite of models to reduce word anticipation, ministrations, and other undesirable words in ChatGPT roleplaying data.\n\nIt combines [Neural Chat 7B](/models/intel/neural-chat-7b), Airoboros 7b, [Toppy M 7B](/models/undi95/toppy-m-7b), [Zepher 7b beta](/models/huggingfaceh4/zephyr-7b-beta), [Nous Capybara 34B](/models/nousresearch/nous-capybara-34b), [OpenHeremes 2.5](/models/teknium/openhermes-2.5-mistral-7b), and many others.\n\n#merge",
2377
- "context_length": 32768,
2378
- "architecture": {
2379
- "modality": "text->text",
2380
- "tokenizer": "Mistral",
2381
- "instruct_type": "alpaca"
2382
- },
2383
- "pricing": {
2384
- "prompt": "0.000000375",
2385
- "completion": "0.000000375",
2386
- "image": "0",
2387
- "request": "0"
2388
- },
2389
- "top_provider": {
2390
- "context_length": 32768,
2391
- "max_completion_tokens": 2048,
2392
- "is_moderated": false
2393
- },
2394
- "per_request_limits": null
2395
- },
2396
- {
2397
- "id": "openchat/openchat-7b:free",
2398
- "name": "OpenChat 3.5 7B (free)",
2399
- "created": 1701129600,
2400
- "description": "OpenChat 7B is a library of open-source language models, fine-tuned with \"C-RLFT (Conditioned Reinforcement Learning Fine-Tuning)\" - a strategy inspired by offline reinforcement learning. It has been trained on mixed-quality data without preference labels.\n\n- For OpenChat fine-tuned on Mistral 7B, check out [OpenChat 7B](/models/openchat/openchat-7b).\n- For OpenChat fine-tuned on Llama 8B, check out [OpenChat 8B](/models/openchat/openchat-8b).\n\n#open-source\n\n_These are free, rate-limited endpoints for [OpenChat 3.5 7B](/models/openchat/openchat-7b). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
2401
- "context_length": 8192,
2402
- "architecture": {
2403
- "modality": "text->text",
2404
- "tokenizer": "Mistral",
2405
- "instruct_type": "openchat"
2406
- },
2407
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
2408
- "top_provider": {
2409
- "context_length": 8192,
2410
- "max_completion_tokens": 4096,
2411
- "is_moderated": false
2412
- },
2413
- "per_request_limits": null
2414
- },
2415
- {
2416
- "id": "openchat/openchat-7b",
2417
- "name": "OpenChat 3.5 7B",
2418
- "created": 1701129600,
2419
- "description": "OpenChat 7B is a library of open-source language models, fine-tuned with \"C-RLFT (Conditioned Reinforcement Learning Fine-Tuning)\" - a strategy inspired by offline reinforcement learning. It has been trained on mixed-quality data without preference labels.\n\n- For OpenChat fine-tuned on Mistral 7B, check out [OpenChat 7B](/models/openchat/openchat-7b).\n- For OpenChat fine-tuned on Llama 8B, check out [OpenChat 8B](/models/openchat/openchat-8b).\n\n#open-source",
2420
- "context_length": 8192,
2421
- "architecture": {
2422
- "modality": "text->text",
2423
- "tokenizer": "Mistral",
2424
- "instruct_type": "openchat"
2425
- },
2426
- "pricing": {
2427
- "prompt": "0.000000055",
2428
- "completion": "0.000000055",
2429
- "image": "0",
2430
- "request": "0"
2431
- },
2432
- "top_provider": {
2433
- "context_length": 8192,
2434
- "max_completion_tokens": null,
2435
- "is_moderated": false
2436
- },
2437
- "per_request_limits": null
2438
- },
2439
- {
2440
- "id": "neversleep/noromaid-20b",
2441
- "name": "Noromaid 20B",
2442
- "created": 1700956800,
2443
- "description": "A collab between IkariDev and Undi. This merge is suitable for RP, ERP, and general knowledge.\n\n#merge #uncensored",
2444
- "context_length": 8192,
2445
- "architecture": {
2446
- "modality": "text->text",
2447
- "tokenizer": "Llama2",
2448
- "instruct_type": "alpaca"
2449
- },
2450
- "pricing": {
2451
- "prompt": "0.0000015",
2452
- "completion": "0.00000225",
2453
- "image": "0",
2454
- "request": "0"
2455
- },
2456
- "top_provider": {
2457
- "context_length": 8192,
2458
- "max_completion_tokens": 2048,
2459
- "is_moderated": false
2460
- },
2461
- "per_request_limits": null
2462
- },
2463
- {
2464
- "id": "anthropic/claude-instant-1.1",
2465
- "name": "Anthropic: Claude Instant v1.1",
2466
- "created": 1700611200,
2467
- "description": "Anthropic's model for low-latency, high throughput text generation. Supports hundreds of pages of text.",
2468
- "context_length": 100000,
2469
- "architecture": {
2470
- "modality": "text->text",
2471
- "tokenizer": "Claude",
2472
- "instruct_type": "claude"
2473
- },
2474
- "pricing": { "prompt": "0.0000008", "completion": "0.0000024", "image": "0", "request": "0" },
2475
- "top_provider": {
2476
- "context_length": 100000,
2477
- "max_completion_tokens": 2048,
2478
- "is_moderated": true
2479
- },
2480
- "per_request_limits": null
2481
- },
2482
- {
2483
- "id": "anthropic/claude-2.1",
2484
- "name": "Anthropic: Claude v2.1",
2485
- "created": 1700611200,
2486
- "description": "Claude 2 delivers advancements in key capabilities for enterprises—including an industry-leading 200K token context window, significant reductions in rates of model hallucination, system prompts and a new beta feature: tool use.",
2487
- "context_length": 200000,
2488
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
2489
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
2490
- "top_provider": {
2491
- "context_length": 200000,
2492
- "max_completion_tokens": 4096,
2493
- "is_moderated": true
2494
- },
2495
- "per_request_limits": null
2496
- },
2497
- {
2498
- "id": "anthropic/claude-2.1:beta",
2499
- "name": "Anthropic: Claude v2.1 (self-moderated)",
2500
- "created": 1700611200,
2501
- "description": "Claude 2 delivers advancements in key capabilities for enterprises—including an industry-leading 200K token context window, significant reductions in rates of model hallucination, system prompts and a new beta feature: tool use.\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-2.1) variant._",
2502
- "context_length": 200000,
2503
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
2504
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
2505
- "top_provider": {
2506
- "context_length": 200000,
2507
- "max_completion_tokens": 4096,
2508
- "is_moderated": false
2509
- },
2510
- "per_request_limits": null
2511
- },
2512
- {
2513
- "id": "anthropic/claude-2",
2514
- "name": "Anthropic: Claude v2",
2515
- "created": 1700611200,
2516
- "description": "Claude 2 delivers advancements in key capabilities for enterprises—including an industry-leading 200K token context window, significant reductions in rates of model hallucination, system prompts and a new beta feature: tool use.",
2517
- "context_length": 200000,
2518
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
2519
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
2520
- "top_provider": {
2521
- "context_length": 200000,
2522
- "max_completion_tokens": 4096,
2523
- "is_moderated": true
2524
- },
2525
- "per_request_limits": null
2526
- },
2527
- {
2528
- "id": "anthropic/claude-2:beta",
2529
- "name": "Anthropic: Claude v2 (self-moderated)",
2530
- "created": 1700611200,
2531
- "description": "Claude 2 delivers advancements in key capabilities for enterprises—including an industry-leading 200K token context window, significant reductions in rates of model hallucination, system prompts and a new beta feature: tool use.\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-2) variant._",
2532
- "context_length": 200000,
2533
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
2534
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
2535
- "top_provider": {
2536
- "context_length": 200000,
2537
- "max_completion_tokens": 4096,
2538
- "is_moderated": false
2539
- },
2540
- "per_request_limits": null
2541
- },
2542
- {
2543
- "id": "teknium/openhermes-2.5-mistral-7b",
2544
- "name": "OpenHermes 2.5 Mistral 7B",
2545
- "created": 1700438400,
2546
- "description": "A continuation of [OpenHermes 2 model](/models/teknium/openhermes-2-mistral-7b), trained on additional code datasets.\nPotentially the most interesting finding from training on a good ratio (est. of around 7-14% of the total dataset) of code instruction was that it has boosted several non-code benchmarks, including TruthfulQA, AGIEval, and GPT4All suite. It did however reduce BigBench benchmark score, but the net gain overall is significant.",
2547
- "context_length": 4096,
2548
- "architecture": {
2549
- "modality": "text->text",
2550
- "tokenizer": "Mistral",
2551
- "instruct_type": "chatml"
2552
- },
2553
- "pricing": {
2554
- "prompt": "0.00000017",
2555
- "completion": "0.00000017",
2556
- "image": "0",
2557
- "request": "0"
2558
- },
2559
- "top_provider": {
2560
- "context_length": 4096,
2561
- "max_completion_tokens": null,
2562
- "is_moderated": false
2563
- },
2564
- "per_request_limits": null
2565
- },
2566
- {
2567
- "id": "openai/gpt-4-vision-preview",
2568
- "name": "OpenAI: GPT-4 Vision",
2569
- "created": 1699833600,
2570
- "description": "Ability to understand images, in addition to all other [GPT-4 Turbo capabilties](/models/openai/gpt-4-turbo). Training data: up to Apr 2023.\n\n**Note:** heavily rate limited by OpenAI while in preview.\n\n#multimodal",
2571
- "context_length": 128000,
2572
- "architecture": { "modality": "text+image->text", "tokenizer": "GPT", "instruct_type": null },
2573
- "pricing": {
2574
- "prompt": "0.00001",
2575
- "completion": "0.00003",
2576
- "image": "0.01445",
2577
- "request": "0"
2578
- },
2579
- "top_provider": {
2580
- "context_length": 128000,
2581
- "max_completion_tokens": 4096,
2582
- "is_moderated": true
2583
- },
2584
- "per_request_limits": null
2585
- },
2586
- {
2587
- "id": "lizpreciatior/lzlv-70b-fp16-hf",
2588
- "name": "lzlv 70B",
2589
- "created": 1699747200,
2590
- "description": "A Mythomax/MLewd_13B-style merge of selected 70B models.\nA multi-model merge of several LLaMA2 70B finetunes for roleplaying and creative work. The goal was to create a model that combines creativity with intelligence for an enhanced experience.\n\n#merge #uncensored",
2591
- "context_length": 4096,
2592
- "architecture": {
2593
- "modality": "text->text",
2594
- "tokenizer": "Llama2",
2595
- "instruct_type": "airoboros"
2596
- },
2597
- "pricing": {
2598
- "prompt": "0.00000035",
2599
- "completion": "0.0000004",
2600
- "image": "0",
2601
- "request": "0"
2602
- },
2603
- "top_provider": {
2604
- "context_length": 4096,
2605
- "max_completion_tokens": null,
2606
- "is_moderated": false
2607
- },
2608
- "per_request_limits": null
2609
- },
2610
- {
2611
- "id": "alpindale/goliath-120b",
2612
- "name": "Goliath 120B",
2613
- "created": 1699574400,
2614
- "description": "A large LLM created by combining two fine-tuned Llama 70B models into one 120B model. Combines Xwin and Euryale.\n\nCredits to\n- [@chargoddard](https://huggingface.co/chargoddard) for developing the framework used to merge the model - [mergekit](https://github.com/cg123/mergekit).\n- [@Undi95](https://huggingface.co/Undi95) for helping with the merge ratios.\n\n#merge",
2615
- "context_length": 6144,
2616
- "architecture": {
2617
- "modality": "text->text",
2618
- "tokenizer": "Llama2",
2619
- "instruct_type": "airoboros"
2620
- },
2621
- "pricing": {
2622
- "prompt": "0.000009375",
2623
- "completion": "0.000009375",
2624
- "image": "0",
2625
- "request": "0"
2626
- },
2627
- "top_provider": {
2628
- "context_length": 6144,
2629
- "max_completion_tokens": 400,
2630
- "is_moderated": false
2631
- },
2632
- "per_request_limits": null
2633
- },
2634
- {
2635
- "id": "undi95/toppy-m-7b:free",
2636
- "name": "Toppy M 7B (free)",
2637
- "created": 1699574400,
2638
- "description": "A wild 7B parameter model that merges several models using the new task_arithmetic merge method from mergekit.\nList of merged models:\n- NousResearch/Nous-Capybara-7B-V1.9\n- [HuggingFaceH4/zephyr-7b-beta](/models/huggingfaceh4/zephyr-7b-beta)\n- lemonilia/AshhLimaRP-Mistral-7B\n- Vulkane/120-Days-of-Sodom-LoRA-Mistral-7b\n- Undi95/Mistral-pippa-sharegpt-7b-qlora\n\n#merge #uncensored\n\n_These are free, rate-limited endpoints for [Toppy M 7B](/models/undi95/toppy-m-7b). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
2639
- "context_length": 4096,
2640
- "architecture": {
2641
- "modality": "text->text",
2642
- "tokenizer": "Mistral",
2643
- "instruct_type": "alpaca"
2644
- },
2645
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
2646
- "top_provider": {
2647
- "context_length": 4096,
2648
- "max_completion_tokens": 2048,
2649
- "is_moderated": false
2650
- },
2651
- "per_request_limits": null
2652
- },
2653
- {
2654
- "id": "undi95/toppy-m-7b",
2655
- "name": "Toppy M 7B",
2656
- "created": 1699574400,
2657
- "description": "A wild 7B parameter model that merges several models using the new task_arithmetic merge method from mergekit.\nList of merged models:\n- NousResearch/Nous-Capybara-7B-V1.9\n- [HuggingFaceH4/zephyr-7b-beta](/models/huggingfaceh4/zephyr-7b-beta)\n- lemonilia/AshhLimaRP-Mistral-7B\n- Vulkane/120-Days-of-Sodom-LoRA-Mistral-7b\n- Undi95/Mistral-pippa-sharegpt-7b-qlora\n\n#merge #uncensored",
2658
- "context_length": 4096,
2659
- "architecture": {
2660
- "modality": "text->text",
2661
- "tokenizer": "Mistral",
2662
- "instruct_type": "alpaca"
2663
- },
2664
- "pricing": {
2665
- "prompt": "0.00000007",
2666
- "completion": "0.00000007",
2667
- "image": "0",
2668
- "request": "0"
2669
- },
2670
- "top_provider": {
2671
- "context_length": 4096,
2672
- "max_completion_tokens": null,
2673
- "is_moderated": false
2674
- },
2675
- "per_request_limits": null
2676
- },
2677
- {
2678
- "id": "undi95/toppy-m-7b:nitro",
2679
- "name": "Toppy M 7B (nitro)",
2680
- "created": 1699574400,
2681
- "description": "A wild 7B parameter model that merges several models using the new task_arithmetic merge method from mergekit.\nList of merged models:\n- NousResearch/Nous-Capybara-7B-V1.9\n- [HuggingFaceH4/zephyr-7b-beta](/models/huggingfaceh4/zephyr-7b-beta)\n- lemonilia/AshhLimaRP-Mistral-7B\n- Vulkane/120-Days-of-Sodom-LoRA-Mistral-7b\n- Undi95/Mistral-pippa-sharegpt-7b-qlora\n\n#merge #uncensored\n\n_These are higher-throughput endpoints for [Toppy M 7B](/models/undi95/toppy-m-7b). They may have higher prices._",
2682
- "context_length": 4096,
2683
- "architecture": {
2684
- "modality": "text->text",
2685
- "tokenizer": "Mistral",
2686
- "instruct_type": "alpaca"
2687
- },
2688
- "pricing": {
2689
- "prompt": "0.00000007",
2690
- "completion": "0.00000007",
2691
- "image": "0",
2692
- "request": "0"
2693
- },
2694
- "top_provider": {
2695
- "context_length": 4096,
2696
- "max_completion_tokens": null,
2697
- "is_moderated": false
2698
- },
2699
- "per_request_limits": null
2700
- },
2701
- {
2702
- "id": "openrouter/auto",
2703
- "name": "Auto (best for prompt)",
2704
- "created": 1699401600,
2705
- "description": "Depending on their size, subject, and complexity, your prompts will be sent to [Llama 3 70B Instruct](/models/meta-llama/llama-3-70b-instruct), [Claude 3.5 Sonnet (self-moderated)](/models/anthropic/claude-3.5-sonnet:beta) or [GPT-4o](/models/openai/gpt-4o). To see which model was used, visit [Activity](/activity).\n\nA major redesign of this router is coming soon. Stay tuned on [Discord](https://discord.gg/fVyRaUDgxW) for updates.",
2706
- "context_length": 200000,
2707
- "architecture": { "modality": "text->text", "tokenizer": "Router", "instruct_type": null },
2708
- "pricing": { "prompt": "-1", "completion": "-1", "request": "-1", "image": "-1" },
2709
- "top_provider": {
2710
- "context_length": null,
2711
- "max_completion_tokens": null,
2712
- "is_moderated": false
2713
- },
2714
- "per_request_limits": null
2715
- },
2716
- {
2717
- "id": "openai/gpt-4-1106-preview",
2718
- "name": "OpenAI: GPT-4 Turbo (older v1106)",
2719
- "created": 1699228800,
2720
- "description": "The latest GPT-4 Turbo model with vision capabilities. Vision requests can now use JSON mode and function calling.\n\nTraining data: up to April 2023.",
2721
- "context_length": 128000,
2722
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
2723
- "pricing": { "prompt": "0.00001", "completion": "0.00003", "image": "0", "request": "0" },
2724
- "top_provider": {
2725
- "context_length": 128000,
2726
- "max_completion_tokens": 4096,
2727
- "is_moderated": true
2728
- },
2729
- "per_request_limits": null
2730
- },
2731
- {
2732
- "id": "openai/gpt-3.5-turbo-1106",
2733
- "name": "OpenAI: GPT-3.5 Turbo 16k (older v1106)",
2734
- "created": 1699228800,
2735
- "description": "An older GPT-3.5 Turbo model with improved instruction following, JSON mode, reproducible outputs, parallel function calling, and more. Training data: up to Sep 2021.",
2736
- "context_length": 16385,
2737
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
2738
- "pricing": { "prompt": "0.000001", "completion": "0.000002", "image": "0", "request": "0" },
2739
- "top_provider": {
2740
- "context_length": 16385,
2741
- "max_completion_tokens": 4096,
2742
- "is_moderated": true
2743
- },
2744
- "per_request_limits": null
2745
- },
2746
- {
2747
- "id": "google/palm-2-codechat-bison-32k",
2748
- "name": "Google: PaLM 2 Code Chat 32k",
2749
- "created": 1698969600,
2750
- "description": "PaLM 2 fine-tuned for chatbot conversations that help with code-related questions.",
2751
- "context_length": 131040,
2752
- "architecture": { "modality": "text->text", "tokenizer": "PaLM", "instruct_type": null },
2753
- "pricing": {
2754
- "prompt": "0.00000025",
2755
- "completion": "0.0000005",
2756
- "image": "0",
2757
- "request": "0"
2758
- },
2759
- "top_provider": {
2760
- "context_length": 131072,
2761
- "max_completion_tokens": 32768,
2762
- "is_moderated": false
2763
- },
2764
- "per_request_limits": null
2765
- },
2766
- {
2767
- "id": "google/palm-2-chat-bison-32k",
2768
- "name": "Google: PaLM 2 Chat 32k",
2769
- "created": 1698969600,
2770
- "description": "PaLM 2 is a language model by Google with improved multilingual, reasoning and coding capabilities.",
2771
- "context_length": 131040,
2772
- "architecture": { "modality": "text->text", "tokenizer": "PaLM", "instruct_type": null },
2773
- "pricing": {
2774
- "prompt": "0.00000025",
2775
- "completion": "0.0000005",
2776
- "image": "0",
2777
- "request": "0"
2778
- },
2779
- "top_provider": {
2780
- "context_length": 131072,
2781
- "max_completion_tokens": 32768,
2782
- "is_moderated": false
2783
- },
2784
- "per_request_limits": null
2785
- },
2786
- {
2787
- "id": "jondurbin/airoboros-l2-70b",
2788
- "name": "Airoboros 70B",
2789
- "created": 1698537600,
2790
- "description": "A Llama 2 70B fine-tune using synthetic data (the Airoboros dataset).\n\nCurrently based on [jondurbin/airoboros-l2-70b](https://huggingface.co/jondurbin/airoboros-l2-70b-2.2.1), but might get updated in the future.",
2791
- "context_length": 4096,
2792
- "architecture": {
2793
- "modality": "text->text",
2794
- "tokenizer": "Llama2",
2795
- "instruct_type": "airoboros"
2796
- },
2797
- "pricing": { "prompt": "0.0000005", "completion": "0.0000005", "image": "0", "request": "0" },
2798
- "top_provider": {
2799
- "context_length": 4096,
2800
- "max_completion_tokens": null,
2801
- "is_moderated": false
2802
- },
2803
- "per_request_limits": null
2804
- },
2805
- {
2806
- "id": "xwin-lm/xwin-lm-70b",
2807
- "name": "Xwin 70B",
2808
- "created": 1697328000,
2809
- "description": "Xwin-LM aims to develop and open-source alignment tech for LLMs. Our first release, built-upon on the [Llama2](/models/${Model.Llama_2_13B_Chat}) base models, ranked TOP-1 on AlpacaEval. Notably, it's the first to surpass [GPT-4](/models/${Model.GPT_4}) on this benchmark. The project will be continuously updated.",
2810
- "context_length": 8192,
2811
- "architecture": {
2812
- "modality": "text->text",
2813
- "tokenizer": "Llama2",
2814
- "instruct_type": "airoboros"
2815
- },
2816
- "pricing": {
2817
- "prompt": "0.00000375",
2818
- "completion": "0.00000375",
2819
- "image": "0",
2820
- "request": "0"
2821
- },
2822
- "top_provider": {
2823
- "context_length": 8192,
2824
- "max_completion_tokens": 400,
2825
- "is_moderated": false
2826
- },
2827
- "per_request_limits": null
2828
- },
2829
- {
2830
- "id": "mistralai/mistral-7b-instruct-v0.1",
2831
- "name": "Mistral: Mistral 7B Instruct v0.1",
2832
- "created": 1695859200,
2833
- "description": "A 7.3B parameter model that outperforms Llama 2 13B on all benchmarks, with optimizations for speed and context length.",
2834
- "context_length": 4096,
2835
- "architecture": {
2836
- "modality": "text->text",
2837
- "tokenizer": "Mistral",
2838
- "instruct_type": "mistral"
2839
- },
2840
- "pricing": {
2841
- "prompt": "0.000000055",
2842
- "completion": "0.000000055",
2843
- "image": "0",
2844
- "request": "0"
2845
- },
2846
- "top_provider": {
2847
- "context_length": 4096,
2848
- "max_completion_tokens": null,
2849
- "is_moderated": false
2850
- },
2851
- "per_request_limits": null
2852
- },
2853
- {
2854
- "id": "openai/gpt-3.5-turbo-instruct",
2855
- "name": "OpenAI: GPT-3.5 Turbo Instruct",
2856
- "created": 1695859200,
2857
- "description": "This model is a variant of GPT-3.5 Turbo tuned for instructional prompts and omitting chat-related optimizations. Training data: up to Sep 2021.",
2858
- "context_length": 4095,
2859
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": "chatml" },
2860
- "pricing": { "prompt": "0.0000015", "completion": "0.000002", "image": "0", "request": "0" },
2861
- "top_provider": {
2862
- "context_length": 4095,
2863
- "max_completion_tokens": 4096,
2864
- "is_moderated": true
2865
- },
2866
- "per_request_limits": null
2867
- },
2868
- {
2869
- "id": "pygmalionai/mythalion-13b",
2870
- "name": "Pygmalion: Mythalion 13B",
2871
- "created": 1693612800,
2872
- "description": "A blend of the new Pygmalion-13b and MythoMax. #merge",
2873
- "context_length": 8192,
2874
- "architecture": {
2875
- "modality": "text->text",
2876
- "tokenizer": "Llama2",
2877
- "instruct_type": "alpaca"
2878
- },
2879
- "pricing": {
2880
- "prompt": "0.000001125",
2881
- "completion": "0.000001125",
2882
- "image": "0",
2883
- "request": "0"
2884
- },
2885
- "top_provider": {
2886
- "context_length": 8192,
2887
- "max_completion_tokens": 400,
2888
- "is_moderated": false
2889
- },
2890
- "per_request_limits": null
2891
- },
2892
- {
2893
- "id": "openai/gpt-4-32k-0314",
2894
- "name": "OpenAI: GPT-4 32k (older v0314)",
2895
- "created": 1693180800,
2896
- "description": "GPT-4-32k is an extended version of GPT-4, with the same capabilities but quadrupled context length, allowing for processing up to 40 pages of text in a single pass. This is particularly beneficial for handling longer content like interacting with PDFs without an external vector database. Training data: up to Sep 2021.",
2897
- "context_length": 32767,
2898
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
2899
- "pricing": { "prompt": "0.00006", "completion": "0.00012", "image": "0", "request": "0" },
2900
- "top_provider": {
2901
- "context_length": 32767,
2902
- "max_completion_tokens": 4096,
2903
- "is_moderated": true
2904
- },
2905
- "per_request_limits": null
2906
- },
2907
- {
2908
- "id": "openai/gpt-4-32k",
2909
- "name": "OpenAI: GPT-4 32k",
2910
- "created": 1693180800,
2911
- "description": "GPT-4-32k is an extended version of GPT-4, with the same capabilities but quadrupled context length, allowing for processing up to 40 pages of text in a single pass. This is particularly beneficial for handling longer content like interacting with PDFs without an external vector database. Training data: up to Sep 2021.",
2912
- "context_length": 32767,
2913
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
2914
- "pricing": { "prompt": "0.00006", "completion": "0.00012", "image": "0", "request": "0" },
2915
- "top_provider": {
2916
- "context_length": 32767,
2917
- "max_completion_tokens": 4096,
2918
- "is_moderated": true
2919
- },
2920
- "per_request_limits": null
2921
- },
2922
- {
2923
- "id": "openai/gpt-3.5-turbo-16k",
2924
- "name": "OpenAI: GPT-3.5 Turbo 16k",
2925
- "created": 1693180800,
2926
- "description": "This model offers four times the context length of gpt-3.5-turbo, allowing it to support approximately 20 pages of text in a single request at a higher cost. Training data: up to Sep 2021.",
2927
- "context_length": 16385,
2928
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
2929
- "pricing": { "prompt": "0.000003", "completion": "0.000004", "image": "0", "request": "0" },
2930
- "top_provider": {
2931
- "context_length": 16385,
2932
- "max_completion_tokens": 4096,
2933
- "is_moderated": true
2934
- },
2935
- "per_request_limits": null
2936
- },
2937
- {
2938
- "id": "nousresearch/nous-hermes-llama2-13b",
2939
- "name": "Nous: Hermes 13B",
2940
- "created": 1692489600,
2941
- "description": "A state-of-the-art language model fine-tuned on over 300k instructions by Nous Research, with Teknium and Emozilla leading the fine tuning process.",
2942
- "context_length": 4096,
2943
- "architecture": {
2944
- "modality": "text->text",
2945
- "tokenizer": "Llama2",
2946
- "instruct_type": "alpaca"
2947
- },
2948
- "pricing": {
2949
- "prompt": "0.00000017",
2950
- "completion": "0.00000017",
2951
- "image": "0",
2952
- "request": "0"
2953
- },
2954
- "top_provider": {
2955
- "context_length": 4096,
2956
- "max_completion_tokens": null,
2957
- "is_moderated": false
2958
- },
2959
- "per_request_limits": null
2960
- },
2961
- {
2962
- "id": "huggingfaceh4/zephyr-7b-beta:free",
2963
- "name": "Hugging Face: Zephyr 7B (free)",
2964
- "created": 1690934400,
2965
- "description": "Zephyr is a series of language models that are trained to act as helpful assistants. Zephyr-7B-β is the second model in the series, and is a fine-tuned version of [mistralai/Mistral-7B-v0.1](/models/mistralai/mistral-7b-instruct-v0.1) that was trained on a mix of publicly available, synthetic datasets using Direct Preference Optimization (DPO).\n\n_These are free, rate-limited endpoints for [Zephyr 7B](/models/huggingfaceh4/zephyr-7b-beta). Outputs may be cached. Read about rate limits [here](/docs/limits)._",
2966
- "context_length": 4096,
2967
- "architecture": {
2968
- "modality": "text->text",
2969
- "tokenizer": "Mistral",
2970
- "instruct_type": "zephyr"
2971
- },
2972
- "pricing": { "prompt": "0", "completion": "0", "image": "0", "request": "0" },
2973
- "top_provider": {
2974
- "context_length": 4096,
2975
- "max_completion_tokens": 2048,
2976
- "is_moderated": false
2977
- },
2978
- "per_request_limits": null
2979
- },
2980
- {
2981
- "id": "mancer/weaver",
2982
- "name": "Mancer: Weaver (alpha)",
2983
- "created": 1690934400,
2984
- "description": "An attempt to recreate Claude-style verbosity, but don't expect the same level of coherence or memory. Meant for use in roleplay/narrative situations.",
2985
- "context_length": 8000,
2986
- "architecture": {
2987
- "modality": "text->text",
2988
- "tokenizer": "Llama2",
2989
- "instruct_type": "alpaca"
2990
- },
2991
- "pricing": {
2992
- "prompt": "0.000001875",
2993
- "completion": "0.00000225",
2994
- "image": "0",
2995
- "request": "0"
2996
- },
2997
- "top_provider": {
2998
- "context_length": 8000,
2999
- "max_completion_tokens": 1000,
3000
- "is_moderated": false
3001
- },
3002
- "per_request_limits": null
3003
- },
3004
- {
3005
- "id": "anthropic/claude-instant-1.0",
3006
- "name": "Anthropic: Claude Instant v1.0",
3007
- "created": 1690502400,
3008
- "description": "Anthropic's model for low-latency, high throughput text generation. Supports hundreds of pages of text.",
3009
- "context_length": 100000,
3010
- "architecture": {
3011
- "modality": "text->text",
3012
- "tokenizer": "Claude",
3013
- "instruct_type": "claude"
3014
- },
3015
- "pricing": { "prompt": "0.0000008", "completion": "0.0000024", "image": "0", "request": "0" },
3016
- "top_provider": {
3017
- "context_length": 100000,
3018
- "max_completion_tokens": 4096,
3019
- "is_moderated": true
3020
- },
3021
- "per_request_limits": null
3022
- },
3023
- {
3024
- "id": "anthropic/claude-1.2",
3025
- "name": "Anthropic: Claude v1.2",
3026
- "created": 1690502400,
3027
- "description": "Anthropic's model for low-latency, high throughput text generation. Supports hundreds of pages of text.",
3028
- "context_length": 100000,
3029
- "architecture": {
3030
- "modality": "text->text",
3031
- "tokenizer": "Claude",
3032
- "instruct_type": "claude"
3033
- },
3034
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
3035
- "top_provider": {
3036
- "context_length": 100000,
3037
- "max_completion_tokens": 4096,
3038
- "is_moderated": true
3039
- },
3040
- "per_request_limits": null
3041
- },
3042
- {
3043
- "id": "anthropic/claude-1",
3044
- "name": "Anthropic: Claude v1",
3045
- "created": 1690502400,
3046
- "description": "Anthropic's model for low-latency, high throughput text generation. Supports hundreds of pages of text.",
3047
- "context_length": 100000,
3048
- "architecture": {
3049
- "modality": "text->text",
3050
- "tokenizer": "Claude",
3051
- "instruct_type": "claude"
3052
- },
3053
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
3054
- "top_provider": {
3055
- "context_length": 100000,
3056
- "max_completion_tokens": 4096,
3057
- "is_moderated": true
3058
- },
3059
- "per_request_limits": null
3060
- },
3061
- {
3062
- "id": "anthropic/claude-instant-1",
3063
- "name": "Anthropic: Claude Instant v1",
3064
- "created": 1690502400,
3065
- "description": "Anthropic's model for low-latency, high throughput text generation. Supports hundreds of pages of text.",
3066
- "context_length": 100000,
3067
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
3068
- "pricing": { "prompt": "0.0000008", "completion": "0.0000024", "image": "0", "request": "0" },
3069
- "top_provider": {
3070
- "context_length": 100000,
3071
- "max_completion_tokens": 4096,
3072
- "is_moderated": true
3073
- },
3074
- "per_request_limits": null
3075
- },
3076
- {
3077
- "id": "anthropic/claude-instant-1:beta",
3078
- "name": "Anthropic: Claude Instant v1 (self-moderated)",
3079
- "created": 1690502400,
3080
- "description": "Anthropic's model for low-latency, high throughput text generation. Supports hundreds of pages of text.\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-instant-1) variant._",
3081
- "context_length": 100000,
3082
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
3083
- "pricing": { "prompt": "0.0000008", "completion": "0.0000024", "image": "0", "request": "0" },
3084
- "top_provider": {
3085
- "context_length": 100000,
3086
- "max_completion_tokens": 4096,
3087
- "is_moderated": false
3088
- },
3089
- "per_request_limits": null
3090
- },
3091
- {
3092
- "id": "anthropic/claude-2.0",
3093
- "name": "Anthropic: Claude v2.0",
3094
- "created": 1690502400,
3095
- "description": "Anthropic's flagship model. Superior performance on tasks that require complex reasoning. Supports hundreds of pages of text.",
3096
- "context_length": 100000,
3097
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
3098
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
3099
- "top_provider": {
3100
- "context_length": 100000,
3101
- "max_completion_tokens": 4096,
3102
- "is_moderated": true
3103
- },
3104
- "per_request_limits": null
3105
- },
3106
- {
3107
- "id": "anthropic/claude-2.0:beta",
3108
- "name": "Anthropic: Claude v2.0 (self-moderated)",
3109
- "created": 1690502400,
3110
- "description": "Anthropic's flagship model. Superior performance on tasks that require complex reasoning. Supports hundreds of pages of text.\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/models/anthropic/claude-2.0) variant._",
3111
- "context_length": 100000,
3112
- "architecture": { "modality": "text->text", "tokenizer": "Claude", "instruct_type": null },
3113
- "pricing": { "prompt": "0.000008", "completion": "0.000024", "image": "0", "request": "0" },
3114
- "top_provider": {
3115
- "context_length": 100000,
3116
- "max_completion_tokens": 4096,
3117
- "is_moderated": false
3118
- },
3119
- "per_request_limits": null
3120
- },
3121
- {
3122
- "id": "undi95/remm-slerp-l2-13b",
3123
- "name": "ReMM SLERP 13B",
3124
- "created": 1689984000,
3125
- "description": "A recreation trial of the original MythoMax-L2-B13 but with updated models. #merge",
3126
- "context_length": 4096,
3127
- "architecture": {
3128
- "modality": "text->text",
3129
- "tokenizer": "Llama2",
3130
- "instruct_type": "alpaca"
3131
- },
3132
- "pricing": {
3133
- "prompt": "0.000001125",
3134
- "completion": "0.000001125",
3135
- "image": "0",
3136
- "request": "0"
3137
- },
3138
- "top_provider": {
3139
- "context_length": 4096,
3140
- "max_completion_tokens": 400,
3141
- "is_moderated": false
3142
- },
3143
- "per_request_limits": null
3144
- },
3145
- {
3146
- "id": "undi95/remm-slerp-l2-13b:extended",
3147
- "name": "ReMM SLERP 13B (extended)",
3148
- "created": 1689984000,
3149
- "description": "A recreation trial of the original MythoMax-L2-B13 but with updated models. #merge\n\n_These are extended-context endpoints for [ReMM SLERP 13B](/models/undi95/remm-slerp-l2-13b). They may have higher prices._",
3150
- "context_length": 6144,
3151
- "architecture": {
3152
- "modality": "text->text",
3153
- "tokenizer": "Llama2",
3154
- "instruct_type": "alpaca"
3155
- },
3156
- "pricing": {
3157
- "prompt": "0.000001125",
3158
- "completion": "0.000001125",
3159
- "image": "0",
3160
- "request": "0"
3161
- },
3162
- "top_provider": {
3163
- "context_length": 6144,
3164
- "max_completion_tokens": 400,
3165
- "is_moderated": false
3166
- },
3167
- "per_request_limits": null
3168
- },
3169
- {
3170
- "id": "google/palm-2-codechat-bison",
3171
- "name": "Google: PaLM 2 Code Chat",
3172
- "created": 1689811200,
3173
- "description": "PaLM 2 fine-tuned for chatbot conversations that help with code-related questions.",
3174
- "context_length": 28672,
3175
- "architecture": { "modality": "text->text", "tokenizer": "PaLM", "instruct_type": null },
3176
- "pricing": {
3177
- "prompt": "0.00000025",
3178
- "completion": "0.0000005",
3179
- "image": "0",
3180
- "request": "0"
3181
- },
3182
- "top_provider": {
3183
- "context_length": 28672,
3184
- "max_completion_tokens": 4096,
3185
- "is_moderated": false
3186
- },
3187
- "per_request_limits": null
3188
- },
3189
- {
3190
- "id": "google/palm-2-chat-bison",
3191
- "name": "Google: PaLM 2 Chat",
3192
- "created": 1689811200,
3193
- "description": "PaLM 2 is a language model by Google with improved multilingual, reasoning and coding capabilities.",
3194
- "context_length": 36864,
3195
- "architecture": { "modality": "text->text", "tokenizer": "PaLM", "instruct_type": null },
3196
- "pricing": {
3197
- "prompt": "0.00000025",
3198
- "completion": "0.0000005",
3199
- "image": "0",
3200
- "request": "0"
3201
- },
3202
- "top_provider": {
3203
- "context_length": 36864,
3204
- "max_completion_tokens": 4096,
3205
- "is_moderated": false
3206
- },
3207
- "per_request_limits": null
3208
- },
3209
- {
3210
- "id": "gryphe/mythomax-l2-13b",
3211
- "name": "MythoMax 13B",
3212
- "created": 1688256000,
3213
- "description": "One of the highest performing and most popular fine-tunes of Llama 2 13B, with rich descriptions and roleplay. #merge",
3214
- "context_length": 4096,
3215
- "architecture": {
3216
- "modality": "text->text",
3217
- "tokenizer": "Llama2",
3218
- "instruct_type": "alpaca"
3219
- },
3220
- "pricing": { "prompt": "0.0000001", "completion": "0.0000001", "image": "0", "request": "0" },
3221
- "top_provider": {
3222
- "context_length": 4096,
3223
- "max_completion_tokens": null,
3224
- "is_moderated": false
3225
- },
3226
- "per_request_limits": null
3227
- },
3228
- {
3229
- "id": "gryphe/mythomax-l2-13b:nitro",
3230
- "name": "MythoMax 13B (nitro)",
3231
- "created": 1688256000,
3232
- "description": "One of the highest performing and most popular fine-tunes of Llama 2 13B, with rich descriptions and roleplay. #merge\n\n_These are higher-throughput endpoints for [MythoMax 13B](/models/gryphe/mythomax-l2-13b). They may have higher prices._",
3233
- "context_length": 4096,
3234
- "architecture": {
3235
- "modality": "text->text",
3236
- "tokenizer": "Llama2",
3237
- "instruct_type": "alpaca"
3238
- },
3239
- "pricing": { "prompt": "0.0000002", "completion": "0.0000002", "image": "0", "request": "0" },
3240
- "top_provider": {
3241
- "context_length": 4096,
3242
- "max_completion_tokens": null,
3243
- "is_moderated": false
3244
- },
3245
- "per_request_limits": null
3246
- },
3247
- {
3248
- "id": "gryphe/mythomax-l2-13b:extended",
3249
- "name": "MythoMax 13B (extended)",
3250
- "created": 1688256000,
3251
- "description": "One of the highest performing and most popular fine-tunes of Llama 2 13B, with rich descriptions and roleplay. #merge\n\n_These are extended-context endpoints for [MythoMax 13B](/models/gryphe/mythomax-l2-13b). They may have higher prices._",
3252
- "context_length": 8192,
3253
- "architecture": {
3254
- "modality": "text->text",
3255
- "tokenizer": "Llama2",
3256
- "instruct_type": "alpaca"
3257
- },
3258
- "pricing": {
3259
- "prompt": "0.000001125",
3260
- "completion": "0.000001125",
3261
- "image": "0",
3262
- "request": "0"
3263
- },
3264
- "top_provider": {
3265
- "context_length": 8192,
3266
- "max_completion_tokens": 400,
3267
- "is_moderated": false
3268
- },
3269
- "per_request_limits": null
3270
- },
3271
- {
3272
- "id": "meta-llama/llama-2-13b-chat",
3273
- "name": "Meta: Llama v2 13B Chat",
3274
- "created": 1687219200,
3275
- "description": "A 13 billion parameter language model from Meta, fine tuned for chat completions",
3276
- "context_length": 4096,
3277
- "architecture": {
3278
- "modality": "text->text",
3279
- "tokenizer": "Llama2",
3280
- "instruct_type": "llama2"
3281
- },
3282
- "pricing": {
3283
- "prompt": "0.00000027",
3284
- "completion": "0.00000027",
3285
- "image": "0",
3286
- "request": "0"
3287
- },
3288
- "top_provider": {
3289
- "context_length": 4096,
3290
- "max_completion_tokens": null,
3291
- "is_moderated": false
3292
- },
3293
- "per_request_limits": null
3294
- },
3295
- {
3296
- "id": "openai/gpt-4-0314",
3297
- "name": "OpenAI: GPT-4 (older v0314)",
3298
- "created": 1685232000,
3299
- "description": "GPT-4-0314 is the first version of GPT-4 released, with a context length of 8,192 tokens, and was supported until June 14. Training data: up to Sep 2021.",
3300
- "context_length": 8191,
3301
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
3302
- "pricing": { "prompt": "0.00003", "completion": "0.00006", "image": "0", "request": "0" },
3303
- "top_provider": {
3304
- "context_length": 8191,
3305
- "max_completion_tokens": 4096,
3306
- "is_moderated": true
3307
- },
3308
- "per_request_limits": null
3309
- },
3310
- {
3311
- "id": "openai/gpt-4",
3312
- "name": "OpenAI: GPT-4",
3313
- "created": 1685232000,
3314
- "description": "OpenAI's flagship model, GPT-4 is a large-scale multimodal language model capable of solving difficult problems with greater accuracy than previous models due to its broader general knowledge and advanced reasoning capabilities. Training data: up to Sep 2021.",
3315
- "context_length": 8191,
3316
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
3317
- "pricing": { "prompt": "0.00003", "completion": "0.00006", "image": "0", "request": "0" },
3318
- "top_provider": {
3319
- "context_length": 8191,
3320
- "max_completion_tokens": 4096,
3321
- "is_moderated": true
3322
- },
3323
- "per_request_limits": null
3324
- },
3325
- {
3326
- "id": "openai/gpt-3.5-turbo-0301",
3327
- "name": "OpenAI: GPT-3.5 Turbo (older v0301)",
3328
- "created": 1685232000,
3329
- "description": "GPT-3.5 Turbo is OpenAI's fastest model. It can understand and generate natural language or code, and is optimized for chat and traditional completion tasks.\n\nTraining data up to Sep 2021.",
3330
- "context_length": 4095,
3331
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
3332
- "pricing": { "prompt": "0.000001", "completion": "0.000002", "image": "0", "request": "0" },
3333
- "top_provider": {
3334
- "context_length": 4095,
3335
- "max_completion_tokens": 4096,
3336
- "is_moderated": true
3337
- },
3338
- "per_request_limits": null
3339
- },
3340
- {
3341
- "id": "openai/gpt-3.5-turbo-0125",
3342
- "name": "OpenAI: GPT-3.5 Turbo 16k",
3343
- "created": 1685232000,
3344
- "description": "The latest GPT-3.5 Turbo model with improved instruction following, JSON mode, reproducible outputs, parallel function calling, and more. Training data: up to Sep 2021.\n\nThis version has a higher accuracy at responding in requested formats and a fix for a bug which caused a text encoding issue for non-English language function calls.",
3345
- "context_length": 16385,
3346
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
3347
- "pricing": { "prompt": "0.0000005", "completion": "0.0000015", "image": "0", "request": "0" },
3348
- "top_provider": {
3349
- "context_length": 16385,
3350
- "max_completion_tokens": 4096,
3351
- "is_moderated": true
3352
- },
3353
- "per_request_limits": null
3354
- },
3355
- {
3356
- "id": "openai/gpt-3.5-turbo",
3357
- "name": "OpenAI: GPT-3.5 Turbo",
3358
- "created": 1685232000,
3359
- "description": "GPT-3.5 Turbo is OpenAI's fastest model. It can understand and generate natural language or code, and is optimized for chat and traditional completion tasks.\n\nTraining data up to Sep 2021.",
3360
- "context_length": 16385,
3361
- "architecture": { "modality": "text->text", "tokenizer": "GPT", "instruct_type": null },
3362
- "pricing": { "prompt": "0.0000005", "completion": "0.0000015", "image": "0", "request": "0" },
3363
- "top_provider": {
3364
- "context_length": 16385,
3365
- "max_completion_tokens": 4096,
3366
- "is_moderated": true
3367
- },
3368
- "per_request_limits": null
3369
16
  }
3370
17
  ]