@larkup/cli 0.1.16 → 0.1.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.
- package/LICENSE +176 -24
- package/dist/index.js +2306 -181
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -71,6 +71,7 @@ import { promises as fs } from "fs";
|
|
|
71
71
|
import path from "path";
|
|
72
72
|
import { randomUUID } from "crypto";
|
|
73
73
|
import { AsyncLocalStorage } from "async_hooks";
|
|
74
|
+
import net from "net";
|
|
74
75
|
|
|
75
76
|
// ../../packages/core/src/types.ts
|
|
76
77
|
var DEFAULT_CONFIG = {
|
|
@@ -87,7 +88,8 @@ var DEFAULT_CONFIG = {
|
|
|
87
88
|
vectorStore: "lancedb",
|
|
88
89
|
storeConfig: {
|
|
89
90
|
mode: "local",
|
|
90
|
-
dbPath: "./.larkup/lancedb"
|
|
91
|
+
dbPath: "./.larkup/lancedb",
|
|
92
|
+
tableName: "documents"
|
|
91
93
|
},
|
|
92
94
|
topK: 5,
|
|
93
95
|
serperApiKey: "",
|
|
@@ -225,9 +227,23 @@ async function requireDataDir() {
|
|
|
225
227
|
const { server } = await createServer("My RAG server");
|
|
226
228
|
return serverDir(server.id);
|
|
227
229
|
}
|
|
228
|
-
function
|
|
230
|
+
async function isPortFree(port) {
|
|
231
|
+
return new Promise((resolve) => {
|
|
232
|
+
const server = net.createServer();
|
|
233
|
+
server.once("error", () => resolve(false));
|
|
234
|
+
server.once("listening", () => {
|
|
235
|
+
server.close(() => resolve(true));
|
|
236
|
+
});
|
|
237
|
+
server.listen(port, "127.0.0.1");
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
async function nextPort(ws) {
|
|
229
241
|
const ports = ws.servers.map((s) => s.port);
|
|
230
|
-
|
|
242
|
+
let candidate = Math.max(BASE_PORT - 1, ...ports) + 1;
|
|
243
|
+
while (!await isPortFree(candidate)) {
|
|
244
|
+
candidate++;
|
|
245
|
+
}
|
|
246
|
+
return candidate;
|
|
231
247
|
}
|
|
232
248
|
function defaultConfigFor(id, name) {
|
|
233
249
|
return {
|
|
@@ -245,7 +261,7 @@ function createServer(name) {
|
|
|
245
261
|
const meta = {
|
|
246
262
|
id,
|
|
247
263
|
name: name.trim() || "Untitled server",
|
|
248
|
-
port: nextPort(ws),
|
|
264
|
+
port: await nextPort(ws),
|
|
249
265
|
createdAt: now,
|
|
250
266
|
updatedAt: now
|
|
251
267
|
};
|
|
@@ -332,7 +348,7 @@ async function readConfig() {
|
|
|
332
348
|
embeddingModelId: migratedEmbeddingId ?? DEFAULT_CONFIG.embeddingModelId,
|
|
333
349
|
customEmbeddings: migratedEmbeddings,
|
|
334
350
|
chunking: { ...DEFAULT_CONFIG.chunking, ...parsed.chunking },
|
|
335
|
-
storeConfig: { ...parsed.storeConfig }
|
|
351
|
+
storeConfig: { ...DEFAULT_CONFIG.storeConfig, ...parsed.storeConfig }
|
|
336
352
|
};
|
|
337
353
|
delete result["customEmbedding"];
|
|
338
354
|
return result;
|
|
@@ -838,20 +854,12 @@ var EMBEDDING_MODELS = [
|
|
|
838
854
|
},
|
|
839
855
|
// ── Google ───────────────────────────────────────────────────────────
|
|
840
856
|
{
|
|
841
|
-
id: "google/
|
|
842
|
-
label: "
|
|
857
|
+
id: "google/gemini-embedding-001",
|
|
858
|
+
label: "gemini-embedding-001",
|
|
843
859
|
provider: "google",
|
|
844
860
|
dimensions: 768,
|
|
845
861
|
maxInputTokens: 2048,
|
|
846
|
-
description: "
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
id: "google/gemini-embedding-exp-03-07",
|
|
850
|
-
label: "gemini-embedding-exp-03-07",
|
|
851
|
-
provider: "google",
|
|
852
|
-
dimensions: 3072,
|
|
853
|
-
maxInputTokens: 8192,
|
|
854
|
-
description: "State-of-the-art Gemini embeddings with flexible dimensions."
|
|
862
|
+
description: "Gemini embedding 001."
|
|
855
863
|
},
|
|
856
864
|
// ── Cohere ───────────────────────────────────────────────────────────
|
|
857
865
|
{
|
|
@@ -1147,7 +1155,7 @@ function getAIModel(config) {
|
|
|
1147
1155
|
const google = createGoogleGenerativeAI({
|
|
1148
1156
|
apiKey: config.embeddingApiKey || void 0
|
|
1149
1157
|
});
|
|
1150
|
-
return google.
|
|
1158
|
+
return google.textEmbeddingModel(modelName);
|
|
1151
1159
|
}
|
|
1152
1160
|
if (config.embeddingProvider === "cohere") {
|
|
1153
1161
|
const cohere = createCohere({
|
|
@@ -1197,7 +1205,7 @@ function expectedDimensions(config) {
|
|
|
1197
1205
|
const custom = (config.customEmbeddings ?? []).find(
|
|
1198
1206
|
(m) => m.modelName === customName
|
|
1199
1207
|
);
|
|
1200
|
-
if (custom) return custom.dimensions;
|
|
1208
|
+
if (custom) return custom.dimensions ?? 0;
|
|
1201
1209
|
}
|
|
1202
1210
|
return getEmbeddingModel(config.embeddingModelId)?.dimensions ?? 0;
|
|
1203
1211
|
}
|
|
@@ -1729,21 +1737,21 @@ function embedSource(config) {
|
|
|
1729
1737
|
baseURL: process.env.EMBEDDING_BASE_URL || ${JSON.stringify(custom?.baseUrl || "")},
|
|
1730
1738
|
apiKey: process.env.EMBEDDING_API_KEY
|
|
1731
1739
|
})
|
|
1732
|
-
const MODEL = provider.
|
|
1740
|
+
const MODEL = provider.embeddingModel(process.env.EMBEDDING_MODEL || ${JSON.stringify(custom?.modelName || "")})`;
|
|
1733
1741
|
} else if (config.embeddingProvider === "deepseek") {
|
|
1734
1742
|
imports += `import { createDeepSeek } from "@ai-sdk/deepseek"
|
|
1735
1743
|
`;
|
|
1736
1744
|
init = `const provider = createDeepSeek({
|
|
1737
1745
|
apiKey: process.env.EMBEDDING_API_KEY
|
|
1738
1746
|
})
|
|
1739
|
-
const MODEL = provider.
|
|
1747
|
+
const MODEL = provider.embeddingModel(process.env.EMBEDDING_MODEL || ${JSON.stringify(config.embeddingModelId)})`;
|
|
1740
1748
|
} else if (config.embeddingProvider === "google") {
|
|
1741
1749
|
imports += `import { createGoogleGenerativeAI } from "@ai-sdk/google"
|
|
1742
1750
|
`;
|
|
1743
1751
|
init = `const provider = createGoogleGenerativeAI({
|
|
1744
1752
|
apiKey: process.env.EMBEDDING_API_KEY
|
|
1745
1753
|
})
|
|
1746
|
-
const MODEL = provider.
|
|
1754
|
+
const MODEL = provider.textEmbeddingModel(process.env.EMBEDDING_MODEL || ${JSON.stringify(config.embeddingModelId)})`;
|
|
1747
1755
|
} else if (config.embeddingProvider === "cohere") {
|
|
1748
1756
|
imports += `import { createCohere } from "@ai-sdk/cohere"
|
|
1749
1757
|
`;
|
|
@@ -1907,7 +1915,7 @@ const server = createServer(async (req, res) => {
|
|
|
1907
1915
|
<svg class="icon" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
|
|
1908
1916
|
API Reference
|
|
1909
1917
|
</a>
|
|
1910
|
-
<a href="https://github.com/
|
|
1918
|
+
<a href="https://github.com/Larkup-AI/larkup-rag" target="_blank" rel="noopener" class="btn btn-outline">
|
|
1911
1919
|
<svg class="icon" viewBox="0 0 24 24"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
|
|
1912
1920
|
Larkup Team
|
|
1913
1921
|
</a>
|
|
@@ -1916,7 +1924,7 @@ const server = createServer(async (req, res) => {
|
|
|
1916
1924
|
Contact
|
|
1917
1925
|
</a>
|
|
1918
1926
|
</div>
|
|
1919
|
-
<div class="footer">Built with <a href="https://github.com/
|
|
1927
|
+
<div class="footer">Built with <a href="https://github.com/Larkup-AI/larkup-rag/buddy-rag" target="_blank" rel="noopener">larkup</a> \xB7 v1.0</div>
|
|
1920
1928
|
</div>
|
|
1921
1929
|
</body>
|
|
1922
1930
|
</html>\`)
|
|
@@ -2720,139 +2728,39 @@ import { z } from "zod";
|
|
|
2720
2728
|
import * as p3 from "@clack/prompts";
|
|
2721
2729
|
|
|
2722
2730
|
// ../../packages/core/src/chat-models/registry.ts
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
id: "openai/gpt-4o",
|
|
2734
|
-
label: "GPT-4o",
|
|
2735
|
-
provider: "openai",
|
|
2736
|
-
description: "Most capable OpenAI model. Higher cost."
|
|
2737
|
-
},
|
|
2738
|
-
{
|
|
2739
|
-
id: "openai/gpt-4.1-mini",
|
|
2740
|
-
label: "GPT-4.1 Mini",
|
|
2741
|
-
provider: "openai",
|
|
2742
|
-
description: "Latest mini model with improved instruction following."
|
|
2743
|
-
},
|
|
2744
|
-
{
|
|
2745
|
-
id: "openai/gpt-4.1-nano",
|
|
2746
|
-
label: "GPT-4.1 Nano",
|
|
2747
|
-
provider: "openai",
|
|
2748
|
-
description: "Smallest and fastest GPT-4.1 variant."
|
|
2749
|
-
},
|
|
2750
|
-
// ── Google ──────────────────────────────────────────────────────────
|
|
2751
|
-
{
|
|
2752
|
-
id: "google/gemini-2.0-flash",
|
|
2753
|
-
label: "Gemini 2.0 Flash",
|
|
2754
|
-
provider: "google",
|
|
2755
|
-
isDefault: true,
|
|
2756
|
-
description: "Fast, affordable Gemini model. Great default."
|
|
2757
|
-
},
|
|
2758
|
-
{
|
|
2759
|
-
id: "google/gemini-2.5-flash",
|
|
2760
|
-
label: "Gemini 2.5 Flash",
|
|
2761
|
-
provider: "google",
|
|
2762
|
-
description: "Latest Gemini flash with improved reasoning."
|
|
2763
|
-
},
|
|
2764
|
-
{
|
|
2765
|
-
id: "google/gemini-2.5-pro",
|
|
2766
|
-
label: "Gemini 2.5 Pro",
|
|
2767
|
-
provider: "google",
|
|
2768
|
-
description: "Most capable Gemini model."
|
|
2769
|
-
},
|
|
2770
|
-
// ── Cohere ──────────────────────────────────────────────────────────
|
|
2771
|
-
{
|
|
2772
|
-
id: "cohere/command-r",
|
|
2773
|
-
label: "Command R",
|
|
2774
|
-
provider: "cohere",
|
|
2775
|
-
isDefault: true,
|
|
2776
|
-
description: "Optimized for RAG and tool use."
|
|
2777
|
-
},
|
|
2778
|
-
{
|
|
2779
|
-
id: "cohere/command-r-plus",
|
|
2780
|
-
label: "Command R+",
|
|
2781
|
-
provider: "cohere",
|
|
2782
|
-
description: "Most capable Cohere model for complex tasks."
|
|
2783
|
-
},
|
|
2784
|
-
// ── Mistral ─────────────────────────────────────────────────────────
|
|
2785
|
-
{
|
|
2786
|
-
id: "mistral/mistral-small-latest",
|
|
2787
|
-
label: "Mistral Small",
|
|
2788
|
-
provider: "mistral",
|
|
2789
|
-
isDefault: true,
|
|
2790
|
-
description: "Fast and efficient. Good for most tasks."
|
|
2791
|
-
},
|
|
2792
|
-
{
|
|
2793
|
-
id: "mistral/mistral-large-latest",
|
|
2794
|
-
label: "Mistral Large",
|
|
2795
|
-
provider: "mistral",
|
|
2796
|
-
description: "Mistral's most capable model."
|
|
2797
|
-
},
|
|
2798
|
-
// ── DeepSeek ────────────────────────────────────────────────────────
|
|
2799
|
-
{
|
|
2800
|
-
id: "deepseek/deepseek-chat",
|
|
2801
|
-
label: "DeepSeek Chat",
|
|
2802
|
-
provider: "deepseek",
|
|
2803
|
-
isDefault: true,
|
|
2804
|
-
description: "DeepSeek's primary chat model."
|
|
2805
|
-
},
|
|
2806
|
-
// ── Vercel AI Gateway ───────────────────────────────────────────────
|
|
2807
|
-
{
|
|
2808
|
-
id: "openai/gpt-4o-mini",
|
|
2809
|
-
label: "GPT-4o Mini (via Gateway)",
|
|
2810
|
-
provider: "vercel_ai_gateway",
|
|
2811
|
-
isDefault: true,
|
|
2812
|
-
description: "OpenAI GPT-4o Mini routed through Vercel AI Gateway."
|
|
2813
|
-
},
|
|
2814
|
-
{
|
|
2815
|
-
id: "openai/gpt-4o",
|
|
2816
|
-
label: "GPT-4o (via Gateway)",
|
|
2817
|
-
provider: "vercel_ai_gateway",
|
|
2818
|
-
description: "OpenAI GPT-4o routed through Vercel AI Gateway."
|
|
2819
|
-
},
|
|
2820
|
-
{
|
|
2821
|
-
id: "google/gemini-2.0-flash",
|
|
2822
|
-
label: "Gemini 2.0 Flash (via Gateway)",
|
|
2823
|
-
provider: "vercel_ai_gateway",
|
|
2824
|
-
description: "Google Gemini routed through Vercel AI Gateway."
|
|
2825
|
-
},
|
|
2826
|
-
{
|
|
2827
|
-
id: "cohere/command-r-plus",
|
|
2828
|
-
label: "Command R+ (via Gateway)",
|
|
2829
|
-
provider: "vercel_ai_gateway",
|
|
2830
|
-
description: "Cohere Command R+ routed through Vercel AI Gateway."
|
|
2831
|
-
},
|
|
2832
|
-
{
|
|
2833
|
-
id: "mistral/mistral-large-latest",
|
|
2834
|
-
label: "Mistral Large (via Gateway)",
|
|
2835
|
-
provider: "vercel_ai_gateway",
|
|
2836
|
-
description: "Mistral Large routed through Vercel AI Gateway."
|
|
2837
|
-
},
|
|
2838
|
-
{
|
|
2839
|
-
id: "anthropic/claude-3-5-sonnet-20240620",
|
|
2840
|
-
label: "Claude 3.5 Sonnet (via Gateway)",
|
|
2841
|
-
provider: "vercel_ai_gateway",
|
|
2842
|
-
description: "Anthropic Claude 3.5 Sonnet via Vercel AI Gateway."
|
|
2843
|
-
},
|
|
2844
|
-
{
|
|
2845
|
-
id: "anthropic/claude-3-haiku-20240307",
|
|
2846
|
-
label: "Claude 3 Haiku (via Gateway)",
|
|
2847
|
-
provider: "vercel_ai_gateway",
|
|
2848
|
-
description: "Anthropic Claude 3 Haiku via Vercel AI Gateway."
|
|
2849
|
-
}
|
|
2850
|
-
];
|
|
2851
|
-
function getDefaultChatModel(provider) {
|
|
2852
|
-
return CHAT_MODELS.find((m) => m.provider === provider && m.isDefault) ?? CHAT_MODELS.find((m) => m.provider === provider);
|
|
2731
|
+
function toChatDescriptor(m) {
|
|
2732
|
+
return {
|
|
2733
|
+
id: m.id,
|
|
2734
|
+
name: m.name,
|
|
2735
|
+
provider: m.owned_by,
|
|
2736
|
+
context_window: m.context_window,
|
|
2737
|
+
max_tokens: m.max_tokens,
|
|
2738
|
+
tags: m.tags,
|
|
2739
|
+
description: m.description
|
|
2740
|
+
};
|
|
2853
2741
|
}
|
|
2854
|
-
function
|
|
2855
|
-
|
|
2742
|
+
function getChatModelsForProvider(models, provider) {
|
|
2743
|
+
if (provider === "vercel_ai_gateway") return models;
|
|
2744
|
+
return models.filter((m) => m.provider?.toLowerCase() === provider.toLowerCase());
|
|
2745
|
+
}
|
|
2746
|
+
function getDefaultChatModel(models, provider) {
|
|
2747
|
+
const forProvider = getChatModelsForProvider(models, provider);
|
|
2748
|
+
const defaults = {
|
|
2749
|
+
openai: "openai/gpt-4o-mini",
|
|
2750
|
+
anthropic: "anthropic/claude-sonnet-4",
|
|
2751
|
+
google: "google/gemini-2.0-flash",
|
|
2752
|
+
mistral: "mistral/mistral-small-latest",
|
|
2753
|
+
deepseek: "deepseek/deepseek-chat",
|
|
2754
|
+
cohere: "cohere/command-r",
|
|
2755
|
+
meta: "meta/llama-4-maverick",
|
|
2756
|
+
xai: "xai/grok-3-mini",
|
|
2757
|
+
vercel_ai_gateway: "openai/gpt-4o-mini"
|
|
2758
|
+
};
|
|
2759
|
+
const defaultId = defaults[provider];
|
|
2760
|
+
return forProvider.find((m) => m.id === defaultId) ?? forProvider[0];
|
|
2761
|
+
}
|
|
2762
|
+
function getChatModel(models, id) {
|
|
2763
|
+
return models.find((m) => m.id === id);
|
|
2856
2764
|
}
|
|
2857
2765
|
|
|
2858
2766
|
// src/commands/chat.ts
|
|
@@ -2987,32 +2895,2249 @@ Chat error: ${e.message}`);
|
|
|
2987
2895
|
|
|
2988
2896
|
// src/commands/settings.ts
|
|
2989
2897
|
import * as p4 from "@clack/prompts";
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
2898
|
+
|
|
2899
|
+
// ../../packages/core/src/models-list.ts
|
|
2900
|
+
var ALL_MODELS = [
|
|
2901
|
+
{
|
|
2902
|
+
"id": "alibaba/qwen-3-14b",
|
|
2903
|
+
"name": "Qwen3-14B",
|
|
2904
|
+
"owned_by": "alibaba",
|
|
2905
|
+
"type": "language",
|
|
2906
|
+
"description": "Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support",
|
|
2907
|
+
"context_window": 40960,
|
|
2908
|
+
"max_tokens": 16384,
|
|
2909
|
+
"tags": [
|
|
2910
|
+
"reasoning",
|
|
2911
|
+
"tool-use"
|
|
2912
|
+
]
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
"id": "alibaba/qwen-3-235b",
|
|
2916
|
+
"name": "Qwen3 235B A22B",
|
|
2917
|
+
"owned_by": "alibaba",
|
|
2918
|
+
"type": "language",
|
|
2919
|
+
"description": "",
|
|
2920
|
+
"context_window": 262144,
|
|
2921
|
+
"max_tokens": 16384,
|
|
2922
|
+
"tags": [
|
|
2923
|
+
"tool-use",
|
|
2924
|
+
"reasoning"
|
|
2925
|
+
]
|
|
2926
|
+
},
|
|
2927
|
+
{
|
|
2928
|
+
"id": "alibaba/qwen-3-30b",
|
|
2929
|
+
"name": "Qwen3-30B-A3B",
|
|
2930
|
+
"owned_by": "alibaba",
|
|
2931
|
+
"type": "language",
|
|
2932
|
+
"description": "Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support",
|
|
2933
|
+
"context_window": 40960,
|
|
2934
|
+
"max_tokens": 16384,
|
|
2935
|
+
"tags": [
|
|
2936
|
+
"reasoning",
|
|
2937
|
+
"tool-use"
|
|
2938
|
+
]
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
"id": "alibaba/qwen-3-32b",
|
|
2942
|
+
"name": "Qwen 3 32B",
|
|
2943
|
+
"owned_by": "alibaba",
|
|
2944
|
+
"type": "language",
|
|
2945
|
+
"description": "Qwen3-32B is a world-class model with comparable quality to DeepSeek R1 while outperforming GPT-4.1 and Claude Sonnet 3.7. It excels in code-gen, tool-calling, and advanced reasoning, making it an exceptional model for a wide range of production use cases.",
|
|
2946
|
+
"context_window": 128e3,
|
|
2947
|
+
"max_tokens": 8192,
|
|
2948
|
+
"tags": [
|
|
2949
|
+
"reasoning",
|
|
2950
|
+
"tool-use",
|
|
2951
|
+
"implicit-caching"
|
|
2952
|
+
]
|
|
2953
|
+
},
|
|
2954
|
+
{
|
|
2955
|
+
"id": "alibaba/qwen-3.6-max-preview",
|
|
2956
|
+
"name": "Qwen 3.6 Max Preview",
|
|
2957
|
+
"owned_by": "alibaba",
|
|
2958
|
+
"type": "language",
|
|
2959
|
+
"description": "Compared with the previously released Qwen3-Max and Qwen3.6-Plus, this model features enhanced vibe coding abilities, more efficient coding agent execution, and significantly improved front-end development skills. Additionally, its long-tail knowledge retention has been further upgraded.",
|
|
2960
|
+
"context_window": 24e4,
|
|
2961
|
+
"max_tokens": 64e3,
|
|
2962
|
+
"tags": [
|
|
2963
|
+
"reasoning",
|
|
2964
|
+
"tool-use"
|
|
2965
|
+
]
|
|
2966
|
+
},
|
|
2967
|
+
{
|
|
2968
|
+
"id": "alibaba/qwen3-235b-a22b-thinking",
|
|
2969
|
+
"name": "Qwen3 VL 235B A22B Thinking",
|
|
2970
|
+
"owned_by": "alibaba",
|
|
2971
|
+
"type": "language",
|
|
2972
|
+
"description": "Qwen3 series VL models feature significantly enhanced multimodal reasoning capabilities, with a particular focus on optimizing the model for STEM and mathematical reasoning. Visual perception and recognition abilities have been comprehensively improved, and OCR capabilities have undergone a major upgrade.",
|
|
2973
|
+
"context_window": 131072,
|
|
2974
|
+
"max_tokens": 32768,
|
|
2975
|
+
"tags": [
|
|
2976
|
+
"vision",
|
|
2977
|
+
"reasoning",
|
|
2978
|
+
"tool-use",
|
|
2979
|
+
"file-input"
|
|
2980
|
+
]
|
|
2981
|
+
},
|
|
2982
|
+
{
|
|
2983
|
+
"id": "alibaba/qwen3-coder",
|
|
2984
|
+
"name": "Qwen3 Coder 480B A35B Instruct",
|
|
2985
|
+
"owned_by": "alibaba",
|
|
2986
|
+
"type": "language",
|
|
2987
|
+
"description": "Qwen3-Coder-480B-A35B-Instruct is a cutting-edge open coding model from Qwen, matching Claude Sonnet\u2019s performance in agentic programming, browser automation, and core development tasks.",
|
|
2988
|
+
"context_window": 262144,
|
|
2989
|
+
"max_tokens": 65536,
|
|
2990
|
+
"tags": [
|
|
2991
|
+
"tool-use",
|
|
2992
|
+
"implicit-caching"
|
|
2993
|
+
]
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
"id": "alibaba/qwen3-coder-30b-a3b",
|
|
2997
|
+
"name": "Qwen 3 Coder 30B A3B Instruct",
|
|
2998
|
+
"owned_by": "alibaba",
|
|
2999
|
+
"type": "language",
|
|
3000
|
+
"description": "Efficient coding specialist balancing performance with cost-effectiveness for daily development tasks while maintaining strong tool integration capabilities.",
|
|
3001
|
+
"context_window": 262144,
|
|
3002
|
+
"max_tokens": 8192,
|
|
3003
|
+
"tags": [
|
|
3004
|
+
"tool-use"
|
|
3005
|
+
]
|
|
3006
|
+
},
|
|
3007
|
+
{
|
|
3008
|
+
"id": "alibaba/qwen3-coder-next",
|
|
3009
|
+
"name": "Qwen3 Coder Next",
|
|
3010
|
+
"owned_by": "alibaba",
|
|
3011
|
+
"type": "language",
|
|
3012
|
+
"description": "Qwen3-Coder-Next is an open-weight language model built specifically for coding, with strong performance on large-scale software engineering and agentic coding benchmarks. It uses a hybrid Mixture-of-Experts architecture to offer high capability at relatively modest active parameter counts, improving efficiency for real-world deployments. The model is trained on diverse code and natural language data so it can handle tasks like code generation, refactoring, debugging, repository-level reasoning, and technical explanation across multiple programming languages. It is also optimized for tool use and function calling, making it suitable as the core of coding agents that interact with shells, editors, issue trackers, and other developer tools.",
|
|
3013
|
+
"context_window": 256e3,
|
|
3014
|
+
"max_tokens": 256e3,
|
|
3015
|
+
"tags": [
|
|
3016
|
+
"tool-use"
|
|
3017
|
+
]
|
|
3018
|
+
},
|
|
3019
|
+
{
|
|
3020
|
+
"id": "alibaba/qwen3-coder-plus",
|
|
3021
|
+
"name": "Qwen3 Coder Plus",
|
|
3022
|
+
"owned_by": "alibaba",
|
|
3023
|
+
"type": "language",
|
|
3024
|
+
"description": "Powered by Qwen3 this is a powerful Coding Agent that excels in tool calling and environment interaction to achieve autonomous programming. It combines outstanding coding proficiency with versatile general-purpose abilities.",
|
|
3025
|
+
"context_window": 1e6,
|
|
3026
|
+
"max_tokens": 65536,
|
|
3027
|
+
"tags": [
|
|
3028
|
+
"implicit-caching",
|
|
3029
|
+
"tool-use"
|
|
3030
|
+
]
|
|
3031
|
+
},
|
|
3032
|
+
{
|
|
3033
|
+
"id": "alibaba/qwen3-embedding-0.6b",
|
|
3034
|
+
"name": "Qwen3 Embedding 0.6B",
|
|
3035
|
+
"owned_by": "alibaba",
|
|
3036
|
+
"type": "embedding",
|
|
3037
|
+
"description": "The Qwen3 Embedding model series is the latest proprietary model of the Qwen family, specifically designed for text embedding and ranking tasks. Building upon the dense foundational models of the Qwen3 series, it provides a comprehensive range of text embeddings and reranking models in various sizes (0.6B, 4B, and 8B).",
|
|
3038
|
+
"context_window": 32768,
|
|
3039
|
+
"max_tokens": 32768,
|
|
3040
|
+
"tags": []
|
|
3041
|
+
},
|
|
3042
|
+
{
|
|
3043
|
+
"id": "alibaba/qwen3-embedding-4b",
|
|
3044
|
+
"name": "Qwen3 Embedding 4B",
|
|
3045
|
+
"owned_by": "alibaba",
|
|
3046
|
+
"type": "embedding",
|
|
3047
|
+
"description": "The Qwen3 Embedding model series is the latest proprietary model of the Qwen family, specifically designed for text embedding and ranking tasks. Building upon the dense foundational models of the Qwen3 series, it provides a comprehensive range of text embeddings and reranking models in various sizes (0.6B, 4B, and 8B).",
|
|
3048
|
+
"context_window": 32768,
|
|
3049
|
+
"max_tokens": 32768,
|
|
3050
|
+
"tags": []
|
|
3051
|
+
},
|
|
3052
|
+
{
|
|
3053
|
+
"id": "alibaba/qwen3-embedding-8b",
|
|
3054
|
+
"name": "Qwen3 Embedding 8B",
|
|
3055
|
+
"owned_by": "alibaba",
|
|
3056
|
+
"type": "embedding",
|
|
3057
|
+
"description": "The Qwen3 Embedding model series is the latest proprietary model of the Qwen family, specifically designed for text embedding and ranking tasks. Building upon the dense foundational models of the Qwen3 series, it provides a comprehensive range of text embeddings and reranking models in various sizes (0.6B, 4B, and 8B).",
|
|
3058
|
+
"context_window": 32768,
|
|
3059
|
+
"max_tokens": 32768,
|
|
3060
|
+
"tags": []
|
|
3061
|
+
},
|
|
3062
|
+
{
|
|
3063
|
+
"id": "alibaba/qwen3-max",
|
|
3064
|
+
"name": "Qwen3 Max",
|
|
3065
|
+
"owned_by": "alibaba",
|
|
3066
|
+
"type": "language",
|
|
3067
|
+
"description": "The Qwen 3 series Max model has undergone specialized upgrades in agent programming and tool invocation compared to the preview version. The officially released model this time has achieved state-of-the-art (SOTA) performance in its field and is better suited to meet the demands of agents operating in more complex scenarios.",
|
|
3068
|
+
"context_window": 262144,
|
|
3069
|
+
"max_tokens": 32768,
|
|
3070
|
+
"tags": [
|
|
3071
|
+
"tool-use",
|
|
3072
|
+
"implicit-caching"
|
|
3073
|
+
]
|
|
3074
|
+
},
|
|
3075
|
+
{
|
|
3076
|
+
"id": "alibaba/qwen3-max-preview",
|
|
3077
|
+
"name": "Qwen3 Max Preview",
|
|
3078
|
+
"owned_by": "alibaba",
|
|
3079
|
+
"type": "language",
|
|
3080
|
+
"description": "Qwen3-Max-Preview shows substantial gains over the 2.5 series in overall capability, with significant enhancements in Chinese-English text understanding, complex instruction following, handling of subjective open-ended tasks, multilingual ability, and tool invocation; model knowledge hallucinations are reduced.",
|
|
3081
|
+
"context_window": 262144,
|
|
3082
|
+
"max_tokens": 32768,
|
|
3083
|
+
"tags": [
|
|
3084
|
+
"tool-use",
|
|
3085
|
+
"implicit-caching"
|
|
3086
|
+
]
|
|
3087
|
+
},
|
|
3088
|
+
{
|
|
3089
|
+
"id": "alibaba/qwen3-max-thinking",
|
|
3090
|
+
"name": "Qwen 3 Max Thinking",
|
|
3091
|
+
"owned_by": "alibaba",
|
|
3092
|
+
"type": "language",
|
|
3093
|
+
"description": "Compared with the snapshot as of September 23, 2025, the Qwen-3 series Max model in this release achieves an effective integration of thinking and non-thinking modes, resulting in a comprehensive and substantial improvement in the model\u2019s overall performance. In thinking mode, the model simultaneously supports web search, web information extraction, and a code interpreter tool, enabling it to tackle more complex and challenging problems with greater accuracy by leveraging external tools while engaging in slow, deliberative reasoning. This version is based on a snapshot taken on January 23, 2026.",
|
|
3094
|
+
"context_window": 256e3,
|
|
3095
|
+
"max_tokens": 65536,
|
|
3096
|
+
"tags": [
|
|
3097
|
+
"reasoning",
|
|
3098
|
+
"tool-use"
|
|
3099
|
+
]
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"id": "alibaba/qwen3-next-80b-a3b-instruct",
|
|
3103
|
+
"name": "Qwen3 Next 80B A3B Instruct",
|
|
3104
|
+
"owned_by": "alibaba",
|
|
3105
|
+
"type": "language",
|
|
3106
|
+
"description": "A new generation of open-source, non-thinking mode model powered by Qwen3. This version demonstrates superior Chinese text understanding, augmented logical reasoning, and enhanced capabilities in text generation tasks over the previous iteration (Qwen3-235B-A22B-Instruct-2507).",
|
|
3107
|
+
"context_window": 131072,
|
|
3108
|
+
"max_tokens": 32768,
|
|
3109
|
+
"tags": [
|
|
3110
|
+
"tool-use"
|
|
3111
|
+
]
|
|
3112
|
+
},
|
|
3113
|
+
{
|
|
3114
|
+
"id": "alibaba/qwen3-next-80b-a3b-thinking",
|
|
3115
|
+
"name": "Qwen3 Next 80B A3B Thinking",
|
|
3116
|
+
"owned_by": "alibaba",
|
|
3117
|
+
"type": "language",
|
|
3118
|
+
"description": "A new generation of Qwen3-based open-source thinking mode models. This version offers improved instruction following and streamlined summary responses over the previous iteration (Qwen3-235B-A22B-Thinking-2507).",
|
|
3119
|
+
"context_window": 131072,
|
|
3120
|
+
"max_tokens": 32768,
|
|
3121
|
+
"tags": [
|
|
3122
|
+
"reasoning",
|
|
3123
|
+
"tool-use"
|
|
3124
|
+
]
|
|
3125
|
+
},
|
|
3126
|
+
{
|
|
3127
|
+
"id": "alibaba/qwen3-vl-235b-a22b-instruct",
|
|
3128
|
+
"name": "Qwen3 VL 235B A22B Instruct",
|
|
3129
|
+
"owned_by": "alibaba",
|
|
3130
|
+
"type": "language",
|
|
3131
|
+
"description": "The Qwen3 series VL models has been comprehensively upgraded in areas such as visual coding and spatial perception. Its visual perception and recognition capabilities have significantly improved, supporting the understanding of ultra-long videos, and its OCR functionality has undergone a major enhancement.",
|
|
3132
|
+
"context_window": 131072,
|
|
3133
|
+
"max_tokens": 129024,
|
|
3134
|
+
"tags": [
|
|
3135
|
+
"tool-use",
|
|
3136
|
+
"vision",
|
|
3137
|
+
"implicit-caching"
|
|
3138
|
+
]
|
|
3139
|
+
},
|
|
3140
|
+
{
|
|
3141
|
+
"id": "alibaba/qwen3-vl-instruct",
|
|
3142
|
+
"name": "Qwen3 VL 235B A22B Instruct",
|
|
3143
|
+
"owned_by": "alibaba",
|
|
3144
|
+
"type": "language",
|
|
3145
|
+
"description": "The Qwen3 series VL models has been comprehensively upgraded in areas such as visual coding and spatial perception. Its visual perception and recognition capabilities have significantly improved, supporting the understanding of ultra-long videos, and its OCR functionality has undergone a major enhancement.",
|
|
3146
|
+
"context_window": 131072,
|
|
3147
|
+
"max_tokens": 129024,
|
|
3148
|
+
"tags": [
|
|
3149
|
+
"tool-use",
|
|
3150
|
+
"vision",
|
|
3151
|
+
"implicit-caching"
|
|
3152
|
+
]
|
|
3153
|
+
},
|
|
3154
|
+
{
|
|
3155
|
+
"id": "alibaba/qwen3-vl-thinking",
|
|
3156
|
+
"name": "Qwen3 VL 235B A22B Thinking",
|
|
3157
|
+
"owned_by": "alibaba",
|
|
3158
|
+
"type": "language",
|
|
3159
|
+
"description": "Qwen3 series VL models feature significantly enhanced multimodal reasoning capabilities, with a particular focus on optimizing the model for STEM and mathematical reasoning. Visual perception and recognition abilities have been comprehensively improved, and OCR capabilities have undergone a major upgrade.",
|
|
3160
|
+
"context_window": 131072,
|
|
3161
|
+
"max_tokens": 32768,
|
|
3162
|
+
"tags": [
|
|
3163
|
+
"vision",
|
|
3164
|
+
"reasoning",
|
|
3165
|
+
"tool-use",
|
|
3166
|
+
"file-input"
|
|
3167
|
+
]
|
|
3168
|
+
},
|
|
3169
|
+
{
|
|
3170
|
+
"id": "alibaba/qwen3.5-flash",
|
|
3171
|
+
"name": "Qwen 3.5 Flash",
|
|
3172
|
+
"owned_by": "alibaba",
|
|
3173
|
+
"type": "language",
|
|
3174
|
+
"description": "The Qwen3.5 native vision-language Flash models are built on a hybrid architecture that integrates a linear attention mechanism with a sparse mixture-of-experts model, achieving higher inference efficiency. Compared to the 3 series, these models deliver a leap forward in performance for both pure text and multimodal tasks, offering fast response times while balancing inference speed and overall performance.",
|
|
3175
|
+
"context_window": 1e6,
|
|
3176
|
+
"max_tokens": 64e3,
|
|
3177
|
+
"tags": [
|
|
3178
|
+
"vision",
|
|
3179
|
+
"file-input",
|
|
3180
|
+
"reasoning",
|
|
3181
|
+
"tool-use"
|
|
3182
|
+
]
|
|
3183
|
+
},
|
|
3184
|
+
{
|
|
3185
|
+
"id": "alibaba/qwen3.5-plus",
|
|
3186
|
+
"name": "Qwen 3.5 Plus",
|
|
3187
|
+
"owned_by": "alibaba",
|
|
3188
|
+
"type": "language",
|
|
3189
|
+
"description": "The Qwen3.5 native vision-language series Plus models are built on a hybrid architecture that integrates linear attention mechanisms with sparse mixture-of-experts models, achieving higher inference efficiency. In a variety of task evaluations, the 3.5 series consistently demonstrates performance on par with state-of-the-art leading models. Compared to the 3 series, these models show a leap forward in both pure-text and multimodal capabilities.",
|
|
3190
|
+
"context_window": 1e6,
|
|
3191
|
+
"max_tokens": 64e3,
|
|
3192
|
+
"tags": [
|
|
3193
|
+
"vision",
|
|
3194
|
+
"file-input",
|
|
3195
|
+
"reasoning",
|
|
3196
|
+
"tool-use"
|
|
3197
|
+
]
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
"id": "alibaba/qwen3.6-27b",
|
|
3201
|
+
"name": "Qwen 3.6 27B",
|
|
3202
|
+
"owned_by": "alibaba",
|
|
3203
|
+
"type": "language",
|
|
3204
|
+
"description": "The Qwen3.6 35B-A3B native vision-language model is built on a hybrid architecture that integrates linear attention mechanisms with a sparse mixture-of-experts framework, achieving higher inference efficiency. Compared with the 3.5-35B-A3B, this model demonstrates significantly improved agentic coding capabilities, mathematical and code reasoning abilities, spatial intelligence, as well as object localization and object detection performance.",
|
|
3205
|
+
"context_window": 256e3,
|
|
3206
|
+
"max_tokens": 256e3,
|
|
3207
|
+
"tags": [
|
|
3208
|
+
"reasoning",
|
|
3209
|
+
"tool-use",
|
|
3210
|
+
"file-input",
|
|
3211
|
+
"vision"
|
|
3212
|
+
]
|
|
3213
|
+
},
|
|
3214
|
+
{
|
|
3215
|
+
"id": "alibaba/qwen3.6-plus",
|
|
3216
|
+
"name": "Qwen 3.6 Plus",
|
|
3217
|
+
"owned_by": "alibaba",
|
|
3218
|
+
"type": "language",
|
|
3219
|
+
"description": "The Qwen3.6 native vision-language Plus series models demonstrate exceptional performance on par with the current state-of-the-art models, with a significant improvement in overall results compared to the 3.5 series. The models have been markedly enhanced in code-related capabilities such as agentic coding, front-end programming, and Vibe coding, as well as in multi-modal general object recognition, OCR, and object localization.",
|
|
3220
|
+
"context_window": 1e6,
|
|
3221
|
+
"max_tokens": 64e3,
|
|
3222
|
+
"tags": [
|
|
3223
|
+
"reasoning",
|
|
3224
|
+
"tool-use",
|
|
3225
|
+
"vision",
|
|
3226
|
+
"file-input"
|
|
3227
|
+
]
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"id": "alibaba/qwen3.7-max",
|
|
3231
|
+
"name": "Qwen 3.7 Max",
|
|
3232
|
+
"owned_by": "alibaba",
|
|
3233
|
+
"type": "language",
|
|
3234
|
+
"description": "Qwen3.7 is a next\u2011generation flagship model designed for the agent\u2011centric era, with its core strengths lying in the breadth and depth of its agent\u2011level capabilities: it excels at programming, office and productivity tasks, and long\u2011term autonomous execution.",
|
|
3235
|
+
"context_window": 991e3,
|
|
3236
|
+
"max_tokens": 64e3,
|
|
3237
|
+
"tags": [
|
|
3238
|
+
"implicit-caching",
|
|
3239
|
+
"reasoning",
|
|
3240
|
+
"tool-use"
|
|
3241
|
+
]
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
"id": "alibaba/qwen3.7-plus",
|
|
3245
|
+
"name": "Qwen 3.7 Plus",
|
|
3246
|
+
"owned_by": "alibaba",
|
|
3247
|
+
"type": "language",
|
|
3248
|
+
"description": "Among the Qwen3.7 series, the cost-effective Plus model builds on its robust text capabilities while delivering a comprehensive upgrade to its vision\u2011language abilities, all while preserving its full\u2011stack agent\u2011level intelligence for coding, tool use, and productivity workflows.",
|
|
3249
|
+
"context_window": 1e6,
|
|
3250
|
+
"max_tokens": 64e3,
|
|
3251
|
+
"tags": [
|
|
3252
|
+
"reasoning",
|
|
3253
|
+
"tool-use",
|
|
3254
|
+
"implicit-caching",
|
|
3255
|
+
"file-input",
|
|
3256
|
+
"vision"
|
|
3257
|
+
]
|
|
3258
|
+
},
|
|
3259
|
+
{
|
|
3260
|
+
"id": "alibaba/wan-v2.5-t2v-preview",
|
|
3261
|
+
"name": "Wan v2.5 Text-to-Video Preview",
|
|
3262
|
+
"owned_by": "alibaba",
|
|
3263
|
+
"type": "video",
|
|
3264
|
+
"description": "",
|
|
3265
|
+
"tags": []
|
|
3266
|
+
},
|
|
3267
|
+
{
|
|
3268
|
+
"id": "alibaba/wan-v2.6-i2v",
|
|
3269
|
+
"name": "Wan v2.6 Image-to-Video",
|
|
3270
|
+
"owned_by": "alibaba",
|
|
3271
|
+
"type": "video",
|
|
3272
|
+
"description": "",
|
|
3273
|
+
"tags": []
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"id": "alibaba/wan-v2.6-i2v-flash",
|
|
3277
|
+
"name": "Wan v2.6 Image-to-Video Flash",
|
|
3278
|
+
"owned_by": "alibaba",
|
|
3279
|
+
"type": "video",
|
|
3280
|
+
"description": "",
|
|
3281
|
+
"tags": []
|
|
3282
|
+
},
|
|
3283
|
+
{
|
|
3284
|
+
"id": "alibaba/wan-v2.6-r2v",
|
|
3285
|
+
"name": "Wan v2.6 Reference-to-Video",
|
|
3286
|
+
"owned_by": "alibaba",
|
|
3287
|
+
"type": "video",
|
|
3288
|
+
"description": "",
|
|
3289
|
+
"tags": []
|
|
3290
|
+
},
|
|
3291
|
+
{
|
|
3292
|
+
"id": "alibaba/wan-v2.6-r2v-flash",
|
|
3293
|
+
"name": "Wan v2.6 Reference-to-Video Flash",
|
|
3294
|
+
"owned_by": "alibaba",
|
|
3295
|
+
"type": "video",
|
|
3296
|
+
"description": "",
|
|
3297
|
+
"tags": []
|
|
3298
|
+
},
|
|
3299
|
+
{
|
|
3300
|
+
"id": "alibaba/wan-v2.6-t2v",
|
|
3301
|
+
"name": "Wan v2.6 Text-to-Video",
|
|
3302
|
+
"owned_by": "alibaba",
|
|
3303
|
+
"type": "video",
|
|
3304
|
+
"description": "",
|
|
3305
|
+
"tags": []
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
"id": "alibaba/wan-v2.7-r2v",
|
|
3309
|
+
"name": "Wan v2.7 Reference-to-Video",
|
|
3310
|
+
"owned_by": "alibaba",
|
|
3311
|
+
"type": "video",
|
|
3312
|
+
"description": "",
|
|
3313
|
+
"tags": []
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
"id": "alibaba/wan-v2.7-t2v",
|
|
3317
|
+
"name": "Wan v2.7 Text-to-Video",
|
|
3318
|
+
"owned_by": "alibaba",
|
|
3319
|
+
"type": "video",
|
|
3320
|
+
"description": "",
|
|
3321
|
+
"tags": []
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"id": "anthropic/claude-3-haiku",
|
|
3325
|
+
"name": "Claude 3 Haiku",
|
|
3326
|
+
"owned_by": "anthropic",
|
|
3327
|
+
"type": "language",
|
|
3328
|
+
"description": "Claude 3 Haiku is Anthropic's fastest, most compact model for near-instant responsiveness. It answers simple queries and requests with speed. Customers will be able to build seamless AI experiences that mimic human interactions. Claude 3 Haiku can process images and return text outputs, and features a 200K context window.",
|
|
3329
|
+
"context_window": 2e5,
|
|
3330
|
+
"max_tokens": 4096,
|
|
3331
|
+
"tags": [
|
|
3332
|
+
"tool-use",
|
|
3333
|
+
"vision",
|
|
3334
|
+
"explicit-caching"
|
|
3335
|
+
]
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"id": "anthropic/claude-fable-5",
|
|
3339
|
+
"name": "Claude Fable 5",
|
|
3340
|
+
"owned_by": "anthropic",
|
|
3341
|
+
"type": "language",
|
|
3342
|
+
"description": "Claude Fable 5 is a Mythos-class model with robust safeguards. It can handle long-running, complex, and asynchronous tasks where previous models would have needed more frequent check-ins.",
|
|
3343
|
+
"context_window": 1e6,
|
|
3344
|
+
"max_tokens": 128e3,
|
|
3345
|
+
"tags": [
|
|
3346
|
+
"reasoning",
|
|
3347
|
+
"tool-use",
|
|
3348
|
+
"explicit-caching",
|
|
3349
|
+
"file-input",
|
|
3350
|
+
"vision"
|
|
3351
|
+
]
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"id": "anthropic/claude-haiku-4.5",
|
|
3355
|
+
"name": "Claude Haiku 4.5",
|
|
3356
|
+
"owned_by": "anthropic",
|
|
3357
|
+
"type": "language",
|
|
3358
|
+
"description": "Claude Haiku 4.5 matches Sonnet 4's performance on coding, computer use, and agent tasks at substantially lower cost and faster speeds. It delivers near-frontier performance and Claude\u2019s unique character at a price point that works for scaled sub-agent deployments, free tier products, and intelligence-sensitive applications with budget constraints.",
|
|
3359
|
+
"context_window": 2e5,
|
|
3360
|
+
"max_tokens": 64e3,
|
|
3361
|
+
"tags": [
|
|
3362
|
+
"explicit-caching",
|
|
3363
|
+
"file-input",
|
|
3364
|
+
"reasoning",
|
|
3365
|
+
"tool-use",
|
|
3366
|
+
"vision",
|
|
3367
|
+
"web-search"
|
|
3368
|
+
]
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"id": "anthropic/claude-opus-4",
|
|
3372
|
+
"name": "Claude Opus 4",
|
|
3373
|
+
"owned_by": "anthropic",
|
|
3374
|
+
"type": "language",
|
|
3375
|
+
"description": "Claude Opus 4 is Anthropic's most powerful model yet and the state-of-the-art coding model. It delivers sustained performance on long-running tasks that require focused effort and thousands of steps, significantly expanding what AI agents can solve. Claude Opus 4 is ideal for powering frontier agent products and features.",
|
|
3376
|
+
"context_window": 2e5,
|
|
3377
|
+
"max_tokens": 8192,
|
|
3378
|
+
"tags": [
|
|
3379
|
+
"file-input",
|
|
3380
|
+
"reasoning",
|
|
3381
|
+
"tool-use",
|
|
3382
|
+
"vision",
|
|
3383
|
+
"explicit-caching"
|
|
3384
|
+
]
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"id": "anthropic/claude-opus-4.1",
|
|
3388
|
+
"name": "Claude Opus 4.1",
|
|
3389
|
+
"owned_by": "anthropic",
|
|
3390
|
+
"type": "language",
|
|
3391
|
+
"description": "Claude Opus 4.1 is a drop-in replacement for Opus 4 that delivers superior performance and precision for real-world coding and agentic tasks. Opus 4.1 advances state-of-the-art coding performance to 74.5% on SWE-bench Verified, and handles complex, multi-step problems with more rigor and attention to detail.",
|
|
3392
|
+
"context_window": 2e5,
|
|
3393
|
+
"max_tokens": 32e3,
|
|
3394
|
+
"tags": [
|
|
3395
|
+
"file-input",
|
|
3396
|
+
"reasoning",
|
|
3397
|
+
"tool-use",
|
|
3398
|
+
"vision",
|
|
3399
|
+
"explicit-caching"
|
|
3400
|
+
]
|
|
3401
|
+
},
|
|
3402
|
+
{
|
|
3403
|
+
"id": "anthropic/claude-opus-4.5",
|
|
3404
|
+
"name": "Claude Opus 4.5",
|
|
3405
|
+
"owned_by": "anthropic",
|
|
3406
|
+
"type": "language",
|
|
3407
|
+
"description": "Claude Opus 4.5 is Anthropic\u2019s latest model in the Opus series, meant for demanding reasoning tasks and complex problem solving. This model has improvements in general intelligence and vision compared to previous iterations. In addition, it is suited for difficult coding tasks and agentic workflows, especially those with computer use and tool use, and can effectively handle context usage and external memory files.",
|
|
3408
|
+
"context_window": 2e5,
|
|
3409
|
+
"max_tokens": 64e3,
|
|
3410
|
+
"tags": [
|
|
3411
|
+
"explicit-caching",
|
|
3412
|
+
"file-input",
|
|
3413
|
+
"reasoning",
|
|
3414
|
+
"tool-use",
|
|
3415
|
+
"vision",
|
|
3416
|
+
"web-search"
|
|
3417
|
+
]
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
"id": "anthropic/claude-opus-4.6",
|
|
3421
|
+
"name": "Claude Opus 4.6",
|
|
3422
|
+
"owned_by": "anthropic",
|
|
3423
|
+
"type": "language",
|
|
3424
|
+
"description": "Opus 4.6 is the world\u2019s best model for coding and professional work, built to power agents that take on whole categories of real-world work. It excels across the entire SDLC, breaking through on hard problems, identifying complex bugs, and demonstrating deeper codebase understanding. It also delivers a step-change in knowledge work, with near-production-ready documents, presentations, and spreadsheets on the first pass.",
|
|
3425
|
+
"context_window": 1e6,
|
|
3426
|
+
"max_tokens": 128e3,
|
|
3427
|
+
"tags": [
|
|
3428
|
+
"tool-use",
|
|
3429
|
+
"reasoning",
|
|
3430
|
+
"vision",
|
|
3431
|
+
"file-input",
|
|
3432
|
+
"explicit-caching",
|
|
3433
|
+
"web-search"
|
|
3434
|
+
]
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"id": "anthropic/claude-opus-4.7",
|
|
3438
|
+
"name": "Claude Opus 4.7",
|
|
3439
|
+
"owned_by": "anthropic",
|
|
3440
|
+
"type": "language",
|
|
3441
|
+
"description": "Opus 4.7 builds on the coding and agentic strengths of Opus 4.6 with stronger performance on complex, multi-step tasks and more reliable agentic execution. It also brings improved performance on knowledge work, from drafting documents to building presentations and analyzing data.",
|
|
3442
|
+
"context_window": 1e6,
|
|
3443
|
+
"max_tokens": 128e3,
|
|
3444
|
+
"tags": [
|
|
3445
|
+
"tool-use",
|
|
3446
|
+
"reasoning",
|
|
3447
|
+
"vision",
|
|
3448
|
+
"file-input",
|
|
3449
|
+
"explicit-caching",
|
|
3450
|
+
"web-search",
|
|
3451
|
+
"fast"
|
|
3452
|
+
]
|
|
3453
|
+
},
|
|
3454
|
+
{
|
|
3455
|
+
"id": "anthropic/claude-opus-4.7-fast",
|
|
3456
|
+
"name": "Claude Opus 4.7 (Fast)",
|
|
3457
|
+
"owned_by": "anthropic",
|
|
3458
|
+
"type": "language",
|
|
3459
|
+
"description": "Opus 4.7 builds on the coding and agentic strengths of Opus 4.6 with stronger performance on complex, multi-step tasks and more reliable agentic execution. It also brings improved performance on knowledge work, from drafting documents to building presentations and analyzing data.",
|
|
3460
|
+
"context_window": 1e6,
|
|
3461
|
+
"max_tokens": 128e3,
|
|
3462
|
+
"tags": [
|
|
3463
|
+
"tool-use",
|
|
3464
|
+
"reasoning",
|
|
3465
|
+
"vision",
|
|
3466
|
+
"file-input",
|
|
3467
|
+
"explicit-caching",
|
|
3468
|
+
"web-search",
|
|
3469
|
+
"fast"
|
|
3470
|
+
]
|
|
3471
|
+
},
|
|
3472
|
+
{
|
|
3473
|
+
"id": "anthropic/claude-opus-4.8",
|
|
3474
|
+
"name": "Claude Opus 4.8",
|
|
3475
|
+
"owned_by": "anthropic",
|
|
3476
|
+
"type": "language",
|
|
3477
|
+
"description": "Opus 4.8 is a focused upgrade to Opus 4.7 and is Anthropic's best generally available model for coding, agentic tasks, and enterprise workflows. It builds on the strengths of previous Opus models with stronger performance on complex, multi-step coding tasks. Anthropic recommends using it on long-horizon coding and agentic tasks. It is also stronger on professional work, including document drafting, data analysis, and presentations.",
|
|
3478
|
+
"context_window": 1e6,
|
|
3479
|
+
"max_tokens": 128e3,
|
|
3480
|
+
"tags": [
|
|
3481
|
+
"tool-use",
|
|
3482
|
+
"reasoning",
|
|
3483
|
+
"vision",
|
|
3484
|
+
"file-input",
|
|
3485
|
+
"explicit-caching",
|
|
3486
|
+
"web-search",
|
|
3487
|
+
"fast"
|
|
3488
|
+
]
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"id": "anthropic/claude-opus-4.8-fast",
|
|
3492
|
+
"name": "Claude Opus 4.8 (Fast)",
|
|
3493
|
+
"owned_by": "anthropic",
|
|
3494
|
+
"type": "language",
|
|
3495
|
+
"description": "Opus 4.8 is a focused upgrade to Opus 4.7 and is Anthropic's best generally available model for coding, agentic tasks, and enterprise workflows. It builds on the strengths of previous Opus models with stronger performance on complex, multi-step coding tasks. Anthropic recommends using it on long-horizon coding and agentic tasks. It is also stronger on professional work, including document drafting, data analysis, and presentations.",
|
|
3496
|
+
"context_window": 1e6,
|
|
3497
|
+
"max_tokens": 128e3,
|
|
3498
|
+
"tags": [
|
|
3499
|
+
"tool-use",
|
|
3500
|
+
"reasoning",
|
|
3501
|
+
"vision",
|
|
3502
|
+
"file-input",
|
|
3503
|
+
"explicit-caching",
|
|
3504
|
+
"web-search",
|
|
3505
|
+
"fast"
|
|
3506
|
+
]
|
|
3507
|
+
},
|
|
3508
|
+
{
|
|
3509
|
+
"id": "anthropic/claude-sonnet-4",
|
|
3510
|
+
"name": "Claude Sonnet 4",
|
|
3511
|
+
"owned_by": "anthropic",
|
|
3512
|
+
"type": "language",
|
|
3513
|
+
"description": "Claude Sonnet 4 balances impressive performance for coding with the right speed and cost for high-volume use cases: Coding: Handle everyday development tasks with enhanced performance-power code reviews, bug fixes, API integrations, and feature development with immediate feedback loops.",
|
|
3514
|
+
"context_window": 1e6,
|
|
3515
|
+
"max_tokens": 8192,
|
|
3516
|
+
"tags": [
|
|
3517
|
+
"file-input",
|
|
3518
|
+
"reasoning",
|
|
3519
|
+
"tool-use",
|
|
3520
|
+
"vision",
|
|
3521
|
+
"explicit-caching"
|
|
3522
|
+
]
|
|
3523
|
+
},
|
|
3524
|
+
{
|
|
3525
|
+
"id": "anthropic/claude-sonnet-4.5",
|
|
3526
|
+
"name": "Claude Sonnet 4.5",
|
|
3527
|
+
"owned_by": "anthropic",
|
|
3528
|
+
"type": "language",
|
|
3529
|
+
"description": "Claude Sonnet 4.5 is the newest model in the Sonnet series, offering improvements and updates over Sonnet 4.",
|
|
3530
|
+
"context_window": 1e6,
|
|
3531
|
+
"max_tokens": 64e3,
|
|
3532
|
+
"tags": [
|
|
3533
|
+
"explicit-caching",
|
|
3534
|
+
"file-input",
|
|
3535
|
+
"reasoning",
|
|
3536
|
+
"tool-use",
|
|
3537
|
+
"vision",
|
|
3538
|
+
"web-search"
|
|
3539
|
+
]
|
|
3540
|
+
},
|
|
3541
|
+
{
|
|
3542
|
+
"id": "anthropic/claude-sonnet-4.6",
|
|
3543
|
+
"name": "Claude Sonnet 4.6",
|
|
3544
|
+
"owned_by": "anthropic",
|
|
3545
|
+
"type": "language",
|
|
3546
|
+
"description": "Claude Sonnet 4.6 is the most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with memory, polished document creation, and confident computer use for web QA and workflow automation.",
|
|
3547
|
+
"context_window": 1e6,
|
|
3548
|
+
"max_tokens": 128e3,
|
|
3549
|
+
"tags": [
|
|
3550
|
+
"file-input",
|
|
3551
|
+
"reasoning",
|
|
3552
|
+
"tool-use",
|
|
3553
|
+
"vision",
|
|
3554
|
+
"explicit-caching",
|
|
3555
|
+
"web-search"
|
|
3556
|
+
]
|
|
3557
|
+
},
|
|
3558
|
+
{
|
|
3559
|
+
"id": "anthropic/claude-sonnet-5",
|
|
3560
|
+
"name": "Claude Sonnet 5",
|
|
3561
|
+
"owned_by": "anthropic",
|
|
3562
|
+
"type": "language",
|
|
3563
|
+
"description": "Sonnet 5 is an upgrade to Sonnet 4.6, with gains across agentic coding and professional work. It builds on the strengths of previous Sonnet models, bringing top-tier intelligence at Sonnet pricing for coding, agents, and everyday professional work at scale.",
|
|
3564
|
+
"context_window": 1e6,
|
|
3565
|
+
"max_tokens": 128e3,
|
|
3566
|
+
"tags": [
|
|
3567
|
+
"reasoning",
|
|
3568
|
+
"tool-use",
|
|
3569
|
+
"explicit-caching",
|
|
3570
|
+
"file-input",
|
|
3571
|
+
"vision",
|
|
3572
|
+
"web-search"
|
|
3573
|
+
]
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
"id": "cohere/embed-v4.0",
|
|
3577
|
+
"name": "Embed v4.0",
|
|
3578
|
+
"owned_by": "cohere",
|
|
3579
|
+
"type": "embedding",
|
|
3580
|
+
"description": "A model that allows for text, images, or mixed content to be classified or turned into embeddings.",
|
|
3581
|
+
"context_window": 128e3,
|
|
3582
|
+
"tags": []
|
|
3583
|
+
},
|
|
3584
|
+
{
|
|
3585
|
+
"id": "cohere/rerank-v3.5",
|
|
3586
|
+
"name": "Cohere Rerank 3.5",
|
|
3587
|
+
"owned_by": "cohere",
|
|
3588
|
+
"type": "reranking",
|
|
3589
|
+
"description": "A model that allows for re-ranking English Language documents and semi-structured data (JSON).",
|
|
3590
|
+
"context_window": 4096,
|
|
3591
|
+
"max_tokens": 4096,
|
|
3592
|
+
"tags": []
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
"id": "cohere/rerank-v4-fast",
|
|
3596
|
+
"name": "Cohere Rerank 4 Fast",
|
|
3597
|
+
"owned_by": "cohere",
|
|
3598
|
+
"type": "reranking",
|
|
3599
|
+
"description": "A light version of Rerank 4 Pro, this is a multilingual model that allows for re-ranking English and non-english documents and semi-structured data (JSON). This model is better suited for low latency and high throughput use-cases than its pro variant.",
|
|
3600
|
+
"context_window": 32e3,
|
|
3601
|
+
"max_tokens": 32e3,
|
|
3602
|
+
"tags": []
|
|
3603
|
+
},
|
|
3604
|
+
{
|
|
3605
|
+
"id": "cohere/rerank-v4-pro",
|
|
3606
|
+
"name": "Cohere Rerank 4 Pro",
|
|
3607
|
+
"owned_by": "cohere",
|
|
3608
|
+
"type": "reranking",
|
|
3609
|
+
"description": "A multilingual model that allows for re-ranking English and non-english documents and semi-structured data (JSON). This model is better suited for state-of-the-art quality and complex use-cases than its fast variant.",
|
|
3610
|
+
"context_window": 32e3,
|
|
3611
|
+
"max_tokens": 32e3,
|
|
3612
|
+
"tags": []
|
|
3613
|
+
},
|
|
3614
|
+
{
|
|
3615
|
+
"id": "deepseek/deepseek-v4-flash",
|
|
3616
|
+
"name": "DeepSeek V4 Flash",
|
|
3617
|
+
"owned_by": "deepseek",
|
|
3618
|
+
"type": "language",
|
|
3619
|
+
"description": "DeepSeek-V4 series incorporate several key upgrades in architecture and optimization: (1) a hybrid attention architecture that combines Compressed Sparse Attention (CSA)\nand Heavily Compressed Attention (HCA) to improve long-context efficiency; (2) ManifoldConstrained Hyper-Connections (mHC) that enhance conventional residual connections; (3)\nand the Muon optimizer for faster convergence and greater training stability",
|
|
3620
|
+
"context_window": 1e6,
|
|
3621
|
+
"max_tokens": 384e3,
|
|
3622
|
+
"tags": [
|
|
3623
|
+
"reasoning",
|
|
3624
|
+
"tool-use",
|
|
3625
|
+
"implicit-caching"
|
|
3626
|
+
]
|
|
3627
|
+
},
|
|
3628
|
+
{
|
|
3629
|
+
"id": "deepseek/deepseek-v4-pro",
|
|
3630
|
+
"name": "DeepSeek V4 Pro",
|
|
3631
|
+
"owned_by": "deepseek",
|
|
3632
|
+
"type": "language",
|
|
3633
|
+
"description": "DeepSeek-V4 series incorporate several key upgrades in architecture and optimization: (1) a hybrid attention architecture that combines Compressed Sparse Attention (CSA)\nand Heavily Compressed Attention (HCA) to improve long-context efficiency; (2) ManifoldConstrained Hyper-Connections (mHC) that enhance conventional residual connections; (3)\nand the Muon optimizer for faster convergence and greater training stability",
|
|
3634
|
+
"context_window": 1e6,
|
|
3635
|
+
"max_tokens": 384e3,
|
|
3636
|
+
"tags": [
|
|
3637
|
+
"reasoning",
|
|
3638
|
+
"tool-use",
|
|
3639
|
+
"implicit-caching"
|
|
3640
|
+
]
|
|
3641
|
+
},
|
|
3642
|
+
{
|
|
3643
|
+
"id": "google/gemini-3.1-flash-lite",
|
|
3644
|
+
"name": "Gemini 3.1 Flash Lite",
|
|
3645
|
+
"owned_by": "google",
|
|
3646
|
+
"type": "language",
|
|
3647
|
+
"description": "Gemini 3.1 Flash Lite outperforms 2.5 Flash Lite on overall quality and lands close to 2.5 Flash performance across key capability areas. It is a workhorse model for high-volume use cases, with improvements across audio input/ASR, RAG snippet ranking, translation, data extraction, and code completion.",
|
|
3648
|
+
"context_window": 1e6,
|
|
3649
|
+
"max_tokens": 65e3,
|
|
3650
|
+
"tags": [
|
|
3651
|
+
"reasoning",
|
|
3652
|
+
"tool-use",
|
|
3653
|
+
"implicit-caching",
|
|
3654
|
+
"file-input",
|
|
3655
|
+
"vision",
|
|
3656
|
+
"web-search"
|
|
3657
|
+
]
|
|
3658
|
+
},
|
|
3659
|
+
{
|
|
3660
|
+
"id": "google/gemini-3.1-flash-lite-preview",
|
|
3661
|
+
"name": "Gemini 3.1 Flash Lite Preview",
|
|
3662
|
+
"owned_by": "google",
|
|
3663
|
+
"type": "language",
|
|
3664
|
+
"description": "Gemini 3.1 Flash Lite Preview outperforms 2.5 Flash Lite on overall quality and lands close to 2.5 Flash performance across key capability areas. It is a workhorse model for high-volume use cases, with improvements across audio input/ASR, RAG snippet ranking, translation, data extraction, and code completion.",
|
|
3665
|
+
"context_window": 1e6,
|
|
3666
|
+
"max_tokens": 65e3,
|
|
3667
|
+
"tags": [
|
|
3668
|
+
"reasoning",
|
|
3669
|
+
"tool-use",
|
|
3670
|
+
"implicit-caching",
|
|
3671
|
+
"file-input",
|
|
3672
|
+
"vision",
|
|
3673
|
+
"web-search"
|
|
3674
|
+
]
|
|
3675
|
+
},
|
|
3676
|
+
{
|
|
3677
|
+
"id": "google/gemini-embedding-001",
|
|
3678
|
+
"name": "Gemini Embedding 001",
|
|
3679
|
+
"owned_by": "google",
|
|
3680
|
+
"type": "embedding",
|
|
3681
|
+
"description": "State-of-the-art embedding model with excellent performance across English, multilingual and code tasks.",
|
|
3682
|
+
"tags": []
|
|
3683
|
+
},
|
|
3684
|
+
{
|
|
3685
|
+
"id": "google/gemini-embedding-2",
|
|
3686
|
+
"name": "Gemini Embedding 2",
|
|
3687
|
+
"owned_by": "google",
|
|
3688
|
+
"type": "embedding",
|
|
3689
|
+
"description": "Google\u2019s first fully multimodal Embedding model that is capable of mapping text, image, video, audio, and PDFs and their interleaved combinations thereof into a single, unified vector space. Built on the Gemini architecture, it supports 100+ languages.",
|
|
3690
|
+
"tags": []
|
|
3691
|
+
},
|
|
3692
|
+
{
|
|
3693
|
+
"id": "google/gemma-4-26b-a4b-it",
|
|
3694
|
+
"name": "Gemma 4 26B A4B IT",
|
|
3695
|
+
"owned_by": "google",
|
|
3696
|
+
"type": "language",
|
|
3697
|
+
"description": "Gemma is a family of open models built by Google DeepMind. Gemma 4 models are multimodal, handling text and image input (with audio supported on small models) and generating text output. This release includes open-weights models in both pre-trained and instruction-tuned variants. Gemma 4 features a context window of up to 256K tokens and maintains multilingual support in over 140 languages.",
|
|
3698
|
+
"context_window": 262144,
|
|
3699
|
+
"max_tokens": 131072,
|
|
3700
|
+
"tags": [
|
|
3701
|
+
"file-input",
|
|
3702
|
+
"reasoning",
|
|
3703
|
+
"tool-use",
|
|
3704
|
+
"vision",
|
|
3705
|
+
"implicit-caching"
|
|
3706
|
+
]
|
|
3707
|
+
},
|
|
3708
|
+
{
|
|
3709
|
+
"id": "google/gemma-4-31b-it",
|
|
3710
|
+
"name": "Gemma 4 31B IT",
|
|
3711
|
+
"owned_by": "google",
|
|
3712
|
+
"type": "language",
|
|
3713
|
+
"description": "Gemma 4 31B is engineered to tackle the most demanding enterprise workloads and complex reasoning tasks. With an expansive 256K-token context window, the 31B model can effortlessly ingest entire codebases, and massive sets of images in a single prompt.",
|
|
3714
|
+
"context_window": 262144,
|
|
3715
|
+
"max_tokens": 131072,
|
|
3716
|
+
"tags": [
|
|
3717
|
+
"file-input",
|
|
3718
|
+
"reasoning",
|
|
3719
|
+
"tool-use",
|
|
3720
|
+
"vision"
|
|
3721
|
+
]
|
|
3722
|
+
},
|
|
3723
|
+
{
|
|
3724
|
+
"id": "google/imagen-4.0-fast-generate-001",
|
|
3725
|
+
"name": "Imagen 4 Fast",
|
|
3726
|
+
"owned_by": "google",
|
|
3727
|
+
"type": "image",
|
|
3728
|
+
"description": "Imagen 4 Fast is Google\u2019s speed-optimized variant of the Imagen 4 text-to-image model, designed for rapid, high-volume image generation. It\u2019s ideal for workflows like quick drafts, mockups, and iterative creative exploration. Despite emphasizing speed, it still benefits from the broader Imagen 4 family\u2019s improvements in clarity, text rendering, and stylistic flexibility, and supports high-resolution outputs up to 2K.",
|
|
3729
|
+
"context_window": 480,
|
|
3730
|
+
"tags": [
|
|
3731
|
+
"image-generation"
|
|
3732
|
+
]
|
|
3733
|
+
},
|
|
3734
|
+
{
|
|
3735
|
+
"id": "google/imagen-4.0-generate-001",
|
|
3736
|
+
"name": "Imagen 4",
|
|
3737
|
+
"owned_by": "google",
|
|
3738
|
+
"type": "image",
|
|
3739
|
+
"description": "Imagen 4: Google's flagship text-to-image model that serves as the go-to choice for a wide variety of high-quality image generation tasks, featuring significant improvements in text rendering over previous models. It now supports up to 2K resolution generation for creating detailed and crisp visuals, making it suitable for everything from marketing assets to artistic compositions.",
|
|
3740
|
+
"context_window": 480,
|
|
3741
|
+
"tags": [
|
|
3742
|
+
"image-generation"
|
|
3743
|
+
]
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"id": "google/imagen-4.0-ultra-generate-001",
|
|
3747
|
+
"name": "Imagen 4 Ultra",
|
|
3748
|
+
"owned_by": "google",
|
|
3749
|
+
"type": "image",
|
|
3750
|
+
"description": "Imagen 4 Ultra: Highest quality image generation model for detailed and photorealistic outputs.",
|
|
3751
|
+
"context_window": 480,
|
|
3752
|
+
"tags": [
|
|
3753
|
+
"image-generation"
|
|
3754
|
+
]
|
|
3755
|
+
},
|
|
3756
|
+
{
|
|
3757
|
+
"id": "google/veo-3.0-fast-generate-001",
|
|
3758
|
+
"name": "Veo 3.0 Fast Generate",
|
|
3759
|
+
"owned_by": "google",
|
|
3760
|
+
"type": "video",
|
|
3761
|
+
"description": "Veo 3 Fast is a quicker and more cost effective version of Veo 3, allowing developers to create videos with sound while maintaining high quality and optimizing for speed and business use cases. Veo 3 Fast offers both text-to-video and image-to-video modalities.",
|
|
3762
|
+
"tags": []
|
|
3763
|
+
},
|
|
3764
|
+
{
|
|
3765
|
+
"id": "google/veo-3.0-generate-001",
|
|
3766
|
+
"name": "Veo 3.0",
|
|
3767
|
+
"owned_by": "google",
|
|
3768
|
+
"type": "video",
|
|
3769
|
+
"description": "Veo 3 is designed to handle a range of video generation tasks, from cinematic narratives to dynamic character animations. With Veo 3, you can create more immersive experiences by not only generating stunning visuals, but also audio like dialogue and sound effects.",
|
|
3770
|
+
"tags": []
|
|
3771
|
+
},
|
|
3772
|
+
{
|
|
3773
|
+
"id": "google/veo-3.1-fast-generate-001",
|
|
3774
|
+
"name": "Veo 3.1 Fast Generate",
|
|
3775
|
+
"owned_by": "google",
|
|
3776
|
+
"type": "video",
|
|
3777
|
+
"description": "Veo 3.1 Fast is a specialized, high-speed variant of Google DeepMind\u2019s Veo 3.1 text-to-video model, optimized for rapid generation of 8-second, high-fidelity videos. It is designed to create cinematic, 1080p, or 720p content with improved prompt adherence and native audio, making it ideal for creating quick, high-quality video clips, social media content, and ad creatives.",
|
|
3778
|
+
"tags": []
|
|
3779
|
+
},
|
|
3780
|
+
{
|
|
3781
|
+
"id": "google/veo-3.1-generate-001",
|
|
3782
|
+
"name": "Veo 3.1",
|
|
3783
|
+
"owned_by": "google",
|
|
3784
|
+
"type": "video",
|
|
3785
|
+
"description": "Veo 3.1 is Google's state-of-the-art model for generating high-fidelity, 8-second 720p, 1080p or 4k videos featuring stunning realism and natively generated audio.",
|
|
3786
|
+
"tags": []
|
|
3787
|
+
},
|
|
3788
|
+
{
|
|
3789
|
+
"id": "meta/llama-3.1-70b",
|
|
3790
|
+
"name": "Llama 3.1 70B Instruct",
|
|
3791
|
+
"owned_by": "meta",
|
|
3792
|
+
"type": "language",
|
|
3793
|
+
"description": "An update to Meta Llama 3 70B Instruct that includes an expanded 128K context length, multilinguality and improved reasoning capabilities.",
|
|
3794
|
+
"context_window": 128e3,
|
|
3795
|
+
"max_tokens": 8192,
|
|
3796
|
+
"tags": [
|
|
3797
|
+
"tool-use"
|
|
3798
|
+
]
|
|
3799
|
+
},
|
|
3800
|
+
{
|
|
3801
|
+
"id": "meta/llama-3.1-8b",
|
|
3802
|
+
"name": "Llama 3.1 8B Instruct",
|
|
3803
|
+
"owned_by": "meta",
|
|
3804
|
+
"type": "language",
|
|
3805
|
+
"description": "An update to Meta Llama 3 8B Instruct that includes an expanded 128K context length, multilinguality and improved reasoning capabilities.",
|
|
3806
|
+
"context_window": 128e3,
|
|
3807
|
+
"max_tokens": 8192,
|
|
3808
|
+
"tags": [
|
|
3809
|
+
"tool-use",
|
|
3810
|
+
"implicit-caching"
|
|
3811
|
+
]
|
|
3812
|
+
},
|
|
3813
|
+
{
|
|
3814
|
+
"id": "meta/llama-3.2-11b",
|
|
3815
|
+
"name": "Llama 3.2 11B Vision Instruct",
|
|
3816
|
+
"owned_by": "meta",
|
|
3817
|
+
"type": "language",
|
|
3818
|
+
"description": "Instruction-tuned image reasoning generative model (text + images in / text out) optimized for visual recognition, image reasoning, captioning and answering general questions about the image.",
|
|
3819
|
+
"context_window": 128e3,
|
|
3820
|
+
"max_tokens": 8192,
|
|
3821
|
+
"tags": [
|
|
3822
|
+
"tool-use",
|
|
3823
|
+
"vision"
|
|
3824
|
+
]
|
|
3825
|
+
},
|
|
3826
|
+
{
|
|
3827
|
+
"id": "meta/llama-3.2-1b",
|
|
3828
|
+
"name": "Llama 3.2 1B Instruct",
|
|
3829
|
+
"owned_by": "meta",
|
|
3830
|
+
"type": "language",
|
|
3831
|
+
"description": "Text-only model, supporting on-device use cases such as multilingual local knowledge retrieval, summarization, and rewriting.",
|
|
3832
|
+
"context_window": 128e3,
|
|
3833
|
+
"max_tokens": 8192,
|
|
3834
|
+
"tags": []
|
|
3835
|
+
},
|
|
3836
|
+
{
|
|
3837
|
+
"id": "meta/llama-3.2-3b",
|
|
3838
|
+
"name": "Llama 3.2 3B Instruct",
|
|
3839
|
+
"owned_by": "meta",
|
|
3840
|
+
"type": "language",
|
|
3841
|
+
"description": "Text-only model, fine-tuned for supporting on-device use cases such as multilingual local knowledge retrieval, summarization, and rewriting.",
|
|
3842
|
+
"context_window": 128e3,
|
|
3843
|
+
"max_tokens": 8192,
|
|
3844
|
+
"tags": []
|
|
3845
|
+
},
|
|
3846
|
+
{
|
|
3847
|
+
"id": "meta/llama-3.2-90b",
|
|
3848
|
+
"name": "Llama 3.2 90B Vision Instruct",
|
|
3849
|
+
"owned_by": "meta",
|
|
3850
|
+
"type": "language",
|
|
3851
|
+
"description": "Instruction-tuned image reasoning generative model (text + images in / text out) optimized for visual recognition, image reasoning, captioning and answering general questions about the image.",
|
|
3852
|
+
"context_window": 128e3,
|
|
3853
|
+
"max_tokens": 8192,
|
|
3854
|
+
"tags": [
|
|
3855
|
+
"tool-use",
|
|
3856
|
+
"vision"
|
|
3857
|
+
]
|
|
3858
|
+
},
|
|
3859
|
+
{
|
|
3860
|
+
"id": "meta/llama-3.3-70b",
|
|
3861
|
+
"name": "Llama 3.3 70B Instruct",
|
|
3862
|
+
"owned_by": "meta",
|
|
3863
|
+
"type": "language",
|
|
3864
|
+
"description": "Where performance meets efficiency. This model supports high-performance conversational AI designed for content creation, enterprise applications, and research, offering advanced language understanding capabilities, including text summarization, classification, sentiment analysis, and code generation.",
|
|
3865
|
+
"context_window": 128e3,
|
|
3866
|
+
"max_tokens": 8192,
|
|
3867
|
+
"tags": [
|
|
3868
|
+
"tool-use"
|
|
3869
|
+
]
|
|
3870
|
+
},
|
|
3871
|
+
{
|
|
3872
|
+
"id": "meta/llama-4-maverick",
|
|
3873
|
+
"name": "Llama 4 Maverick 17B Instruct",
|
|
3874
|
+
"owned_by": "meta",
|
|
3875
|
+
"type": "language",
|
|
3876
|
+
"description": "As a general purpose LLM, Llama 4 Maverick contains 17 billion active parameters, 128 experts, and 400 billion total parameters, offering high quality at a lower price compared to Llama 3.3 70B.",
|
|
3877
|
+
"context_window": 128e3,
|
|
3878
|
+
"max_tokens": 8192,
|
|
3879
|
+
"tags": [
|
|
3880
|
+
"tool-use",
|
|
3881
|
+
"vision"
|
|
3882
|
+
]
|
|
3883
|
+
},
|
|
3884
|
+
{
|
|
3885
|
+
"id": "meta/llama-4-scout",
|
|
3886
|
+
"name": "Llama 4 Scout 17B Instruct",
|
|
3887
|
+
"owned_by": "meta",
|
|
3888
|
+
"type": "language",
|
|
3889
|
+
"description": "Llama 4 Scout is the best multimodal model in the world in its class and is more powerful than our Llama 3 models, while fitting in a single H100 GPU. Additionally, Llama 4 Scout supports an industry-leading context window of up to 10M tokens.",
|
|
3890
|
+
"context_window": 128e3,
|
|
3891
|
+
"max_tokens": 8192,
|
|
3892
|
+
"tags": [
|
|
3893
|
+
"tool-use",
|
|
3894
|
+
"vision"
|
|
3895
|
+
]
|
|
3896
|
+
},
|
|
3897
|
+
{
|
|
3898
|
+
"id": "meta/muse-spark-1.1",
|
|
3899
|
+
"name": "Muse Spark 1.1",
|
|
3900
|
+
"owned_by": "meta",
|
|
3901
|
+
"type": "language",
|
|
3902
|
+
"description": "Muse Spark 1.1 is strongest at agentic performance, tool use, and computer use. It does well on long-running tasks with 1M token context window, can delegate execution to sub-agents running in parallel, and is trained to use computer interfaces on desktop, mobile, or browser.",
|
|
3903
|
+
"context_window": 1048576,
|
|
3904
|
+
"max_tokens": 1048576,
|
|
3905
|
+
"tags": [
|
|
3906
|
+
"reasoning",
|
|
3907
|
+
"tool-use",
|
|
3908
|
+
"implicit-caching",
|
|
3909
|
+
"file-input",
|
|
3910
|
+
"vision"
|
|
3911
|
+
]
|
|
3912
|
+
},
|
|
3913
|
+
{
|
|
3914
|
+
"id": "mistral/codestral-embed",
|
|
3915
|
+
"name": "Codestral Embed",
|
|
3916
|
+
"owned_by": "mistral",
|
|
3917
|
+
"type": "embedding",
|
|
3918
|
+
"description": "Code embedding model that can embed code databases and repositories to power coding assistants.",
|
|
3919
|
+
"tags": []
|
|
3920
|
+
},
|
|
3921
|
+
{
|
|
3922
|
+
"id": "mistral/mistral-embed",
|
|
3923
|
+
"name": "Mistral Embed",
|
|
3924
|
+
"owned_by": "mistral",
|
|
3925
|
+
"type": "embedding",
|
|
3926
|
+
"description": "General-purpose text embedding model for semantic search, similarity, clustering, and RAG workflows.",
|
|
3927
|
+
"tags": []
|
|
3928
|
+
},
|
|
3929
|
+
{
|
|
3930
|
+
"id": "mistral/mistral-medium",
|
|
3931
|
+
"name": "Mistral Medium 3.1",
|
|
3932
|
+
"owned_by": "mistral",
|
|
3933
|
+
"type": "language",
|
|
3934
|
+
"description": "Mistral Medium 3 delivers frontier performance while being an order of magnitude less expensive. For instance, the model performs at or above 90% of Claude Sonnet 3.7 on benchmarks across the board at a significantly lower cost.",
|
|
3935
|
+
"context_window": 128e3,
|
|
3936
|
+
"max_tokens": 64e3,
|
|
3937
|
+
"tags": [
|
|
3938
|
+
"tool-use",
|
|
3939
|
+
"vision"
|
|
3940
|
+
]
|
|
3941
|
+
},
|
|
3942
|
+
{
|
|
3943
|
+
"id": "mistral/mistral-medium-3.5",
|
|
3944
|
+
"name": "Mistral Medium Latest",
|
|
3945
|
+
"owned_by": "mistral",
|
|
3946
|
+
"type": "language",
|
|
3947
|
+
"description": "Mistral's frontier-class multimodal model optimized for agentic and coding use cases.",
|
|
3948
|
+
"context_window": 256e3,
|
|
3949
|
+
"max_tokens": 256e3,
|
|
3950
|
+
"tags": [
|
|
3951
|
+
"reasoning",
|
|
3952
|
+
"tool-use",
|
|
3953
|
+
"vision"
|
|
3954
|
+
]
|
|
3955
|
+
},
|
|
3956
|
+
{
|
|
3957
|
+
"id": "mistral/mistral-small",
|
|
3958
|
+
"name": "Mistral Small",
|
|
3959
|
+
"owned_by": "mistral",
|
|
3960
|
+
"type": "language",
|
|
3961
|
+
"description": "Mistral Small is the ideal choice for simple tasks that one can do in bulk - like Classification, Customer Support, or Text Generation. It offers excellent performance at an affordable price point.",
|
|
3962
|
+
"context_window": 32e3,
|
|
3963
|
+
"max_tokens": 4e3,
|
|
3964
|
+
"tags": [
|
|
3965
|
+
"tool-use",
|
|
3966
|
+
"vision"
|
|
3967
|
+
]
|
|
3968
|
+
},
|
|
3969
|
+
{
|
|
3970
|
+
"id": "mistral/pixtral-12b",
|
|
3971
|
+
"name": "Pixtral 12B 2409",
|
|
3972
|
+
"owned_by": "mistral",
|
|
3973
|
+
"type": "language",
|
|
3974
|
+
"description": "A 12B model with image understanding capabilities in addition to text.",
|
|
3975
|
+
"context_window": 128e3,
|
|
3976
|
+
"max_tokens": 4e3,
|
|
3977
|
+
"tags": [
|
|
3978
|
+
"tool-use",
|
|
3979
|
+
"vision"
|
|
3980
|
+
]
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
"id": "openai/gpt-3.5-turbo",
|
|
3984
|
+
"name": "GPT-3.5 Turbo",
|
|
3985
|
+
"owned_by": "openai",
|
|
3986
|
+
"type": "language",
|
|
3987
|
+
"description": "OpenAI's most capable and cost effective model in the GPT-3.5 family optimized for chat purposes, but also works well for traditional completions tasks.",
|
|
3988
|
+
"context_window": 16385,
|
|
3989
|
+
"max_tokens": 4096,
|
|
3990
|
+
"tags": [
|
|
3991
|
+
"tool-use"
|
|
3992
|
+
]
|
|
3993
|
+
},
|
|
3994
|
+
{
|
|
3995
|
+
"id": "openai/gpt-4-turbo",
|
|
3996
|
+
"name": "GPT-4 Turbo",
|
|
3997
|
+
"owned_by": "openai",
|
|
3998
|
+
"type": "language",
|
|
3999
|
+
"description": "gpt-4-turbo from OpenAI has broad general knowledge and domain expertise allowing it to follow complex instructions in natural language and solve difficult problems accurately. It has a knowledge cutoff of April 2023 and a 128,000 token context window.",
|
|
4000
|
+
"context_window": 128e3,
|
|
4001
|
+
"max_tokens": 4096,
|
|
4002
|
+
"tags": [
|
|
4003
|
+
"tool-use",
|
|
4004
|
+
"vision"
|
|
4005
|
+
]
|
|
4006
|
+
},
|
|
4007
|
+
{
|
|
4008
|
+
"id": "openai/gpt-4.1",
|
|
4009
|
+
"name": "GPT-4.1",
|
|
4010
|
+
"owned_by": "openai",
|
|
4011
|
+
"type": "language",
|
|
4012
|
+
"description": "GPT 4.1 is OpenAI's flagship model for complex tasks. It is well suited for problem solving across domains.",
|
|
4013
|
+
"context_window": 1047576,
|
|
4014
|
+
"max_tokens": 32768,
|
|
4015
|
+
"tags": [
|
|
4016
|
+
"file-input",
|
|
4017
|
+
"implicit-caching",
|
|
4018
|
+
"tool-use",
|
|
4019
|
+
"vision",
|
|
4020
|
+
"web-search"
|
|
4021
|
+
]
|
|
4022
|
+
},
|
|
4023
|
+
{
|
|
4024
|
+
"id": "openai/gpt-4.1-mini",
|
|
4025
|
+
"name": "GPT-4.1 mini",
|
|
4026
|
+
"owned_by": "openai",
|
|
4027
|
+
"type": "language",
|
|
4028
|
+
"description": "GPT 4.1 mini provides a balance between intelligence, speed, and cost that makes it an attractive model for many use cases.",
|
|
4029
|
+
"context_window": 1047576,
|
|
4030
|
+
"max_tokens": 32768,
|
|
4031
|
+
"tags": [
|
|
4032
|
+
"file-input",
|
|
4033
|
+
"implicit-caching",
|
|
4034
|
+
"tool-use",
|
|
4035
|
+
"vision",
|
|
4036
|
+
"web-search"
|
|
4037
|
+
]
|
|
4038
|
+
},
|
|
4039
|
+
{
|
|
4040
|
+
"id": "openai/gpt-4.1-nano",
|
|
4041
|
+
"name": "GPT-4.1 nano",
|
|
4042
|
+
"owned_by": "openai",
|
|
4043
|
+
"type": "language",
|
|
4044
|
+
"description": "GPT-4.1 nano is the fastest, most cost-effective GPT 4.1 model.",
|
|
4045
|
+
"context_window": 1047576,
|
|
4046
|
+
"max_tokens": 32768,
|
|
4047
|
+
"tags": [
|
|
4048
|
+
"file-input",
|
|
4049
|
+
"implicit-caching",
|
|
4050
|
+
"tool-use",
|
|
4051
|
+
"vision",
|
|
4052
|
+
"web-search"
|
|
4053
|
+
]
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
"id": "openai/gpt-4o",
|
|
4057
|
+
"name": "GPT-4o",
|
|
4058
|
+
"owned_by": "openai",
|
|
4059
|
+
"type": "language",
|
|
4060
|
+
"description": "GPT-4o from OpenAI has broad general knowledge and domain expertise allowing it to follow complex instructions in natural language and solve difficult problems accurately. It matches GPT-4 Turbo performance with a faster and cheaper API.",
|
|
4061
|
+
"context_window": 128e3,
|
|
4062
|
+
"max_tokens": 16384,
|
|
4063
|
+
"tags": [
|
|
4064
|
+
"file-input",
|
|
4065
|
+
"implicit-caching",
|
|
4066
|
+
"tool-use",
|
|
4067
|
+
"vision",
|
|
4068
|
+
"web-search"
|
|
4069
|
+
]
|
|
4070
|
+
},
|
|
4071
|
+
{
|
|
4072
|
+
"id": "openai/gpt-4o-mini",
|
|
4073
|
+
"name": "GPT-4o mini",
|
|
4074
|
+
"owned_by": "openai",
|
|
4075
|
+
"type": "language",
|
|
4076
|
+
"description": "GPT-4o mini from OpenAI is their most advanced and cost-efficient small model. It is multi-modal (accepting text or image inputs and outputting text) and has higher intelligence than gpt-3.5-turbo but is just as fast.",
|
|
4077
|
+
"context_window": 128e3,
|
|
4078
|
+
"max_tokens": 16384,
|
|
4079
|
+
"tags": [
|
|
4080
|
+
"file-input",
|
|
4081
|
+
"implicit-caching",
|
|
4082
|
+
"tool-use",
|
|
4083
|
+
"vision",
|
|
4084
|
+
"web-search"
|
|
4085
|
+
]
|
|
4086
|
+
},
|
|
4087
|
+
{
|
|
4088
|
+
"id": "openai/gpt-4o-mini-search-preview",
|
|
4089
|
+
"name": "GPT 4o Mini Search Preview",
|
|
4090
|
+
"owned_by": "openai",
|
|
4091
|
+
"type": "language",
|
|
4092
|
+
"description": "GPT-4o mini Search Preview is a specialized model trained to understand and execute web search queries with the Chat Completions API. In addition to token fees, web search queries have a fee per tool call.",
|
|
4093
|
+
"context_window": 128e3,
|
|
4094
|
+
"max_tokens": 16384,
|
|
4095
|
+
"tags": [
|
|
4096
|
+
"web-search"
|
|
4097
|
+
]
|
|
4098
|
+
},
|
|
4099
|
+
{
|
|
4100
|
+
"id": "openai/gpt-4o-mini-transcribe",
|
|
4101
|
+
"name": "GPT-4o mini Transcribe",
|
|
4102
|
+
"owned_by": "openai",
|
|
4103
|
+
"type": "transcription",
|
|
4104
|
+
"description": "GPT-4o mini Transcribe is a speech-to-text model that uses GPT-4o mini to transcribe audio. It offers improvements to word error rate and better language recognition and accuracy compared to original Whisper models. Use it for more accurate transcripts.",
|
|
4105
|
+
"tags": []
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
"id": "openai/gpt-4o-transcribe",
|
|
4109
|
+
"name": "GPT-4o Transcribe",
|
|
4110
|
+
"owned_by": "openai",
|
|
4111
|
+
"type": "transcription",
|
|
4112
|
+
"description": "GPT-4o Transcribe is a speech-to-text model that uses GPT-4o to transcribe audio. It offers improvements to word error rate and better language recognition and accuracy compared to original Whisper models. Use it for more accurate transcripts.",
|
|
4113
|
+
"tags": []
|
|
4114
|
+
},
|
|
4115
|
+
{
|
|
4116
|
+
"id": "openai/gpt-5",
|
|
4117
|
+
"name": "GPT-5",
|
|
4118
|
+
"owned_by": "openai",
|
|
4119
|
+
"type": "language",
|
|
4120
|
+
"description": "GPT-5 is OpenAI's flagship language model that excels at complex reasoning, broad real-world knowledge, code-intensive, and multi-step agentic tasks.",
|
|
4121
|
+
"context_window": 4e5,
|
|
4122
|
+
"max_tokens": 128e3,
|
|
4123
|
+
"tags": [
|
|
4124
|
+
"file-input",
|
|
4125
|
+
"implicit-caching",
|
|
4126
|
+
"reasoning",
|
|
4127
|
+
"tool-use",
|
|
4128
|
+
"vision",
|
|
4129
|
+
"web-search"
|
|
4130
|
+
]
|
|
4131
|
+
},
|
|
4132
|
+
{
|
|
4133
|
+
"id": "openai/gpt-5-chat",
|
|
4134
|
+
"name": "GPT 5 Chat",
|
|
4135
|
+
"owned_by": "openai",
|
|
4136
|
+
"type": "language",
|
|
4137
|
+
"description": "GPT-5 Chat points to the GPT-5 snapshot currently used in ChatGPT.",
|
|
4138
|
+
"context_window": 128e3,
|
|
4139
|
+
"max_tokens": 16384,
|
|
4140
|
+
"tags": [
|
|
4141
|
+
"file-input",
|
|
4142
|
+
"implicit-caching",
|
|
4143
|
+
"tool-use",
|
|
4144
|
+
"vision",
|
|
4145
|
+
"web-search"
|
|
4146
|
+
]
|
|
4147
|
+
},
|
|
4148
|
+
{
|
|
4149
|
+
"id": "openai/gpt-5-codex",
|
|
4150
|
+
"name": "GPT-5-Codex",
|
|
4151
|
+
"owned_by": "openai",
|
|
4152
|
+
"type": "language",
|
|
4153
|
+
"description": "GPT-5-Codex is a version of GPT-5 optimized for agentic coding tasks in Codex or similar environments.",
|
|
4154
|
+
"context_window": 4e5,
|
|
4155
|
+
"max_tokens": 128e3,
|
|
4156
|
+
"tags": [
|
|
4157
|
+
"file-input",
|
|
4158
|
+
"implicit-caching",
|
|
4159
|
+
"reasoning",
|
|
4160
|
+
"tool-use",
|
|
4161
|
+
"vision",
|
|
4162
|
+
"web-search"
|
|
4163
|
+
]
|
|
4164
|
+
},
|
|
4165
|
+
{
|
|
4166
|
+
"id": "openai/gpt-5-mini",
|
|
4167
|
+
"name": "GPT-5 mini",
|
|
4168
|
+
"owned_by": "openai",
|
|
4169
|
+
"type": "language",
|
|
4170
|
+
"description": "GPT-5 mini is a cost optimized model that excels at reasoning/chat tasks. It offers an optimal balance between speed, cost, and capability.",
|
|
4171
|
+
"context_window": 4e5,
|
|
4172
|
+
"max_tokens": 128e3,
|
|
4173
|
+
"tags": [
|
|
4174
|
+
"file-input",
|
|
4175
|
+
"implicit-caching",
|
|
4176
|
+
"reasoning",
|
|
4177
|
+
"tool-use",
|
|
4178
|
+
"vision",
|
|
4179
|
+
"web-search"
|
|
4180
|
+
]
|
|
4181
|
+
},
|
|
4182
|
+
{
|
|
4183
|
+
"id": "openai/gpt-5-nano",
|
|
4184
|
+
"name": "GPT-5 nano",
|
|
4185
|
+
"owned_by": "openai",
|
|
4186
|
+
"type": "language",
|
|
4187
|
+
"description": "GPT-5 nano is a high throughput model that excels at simple instruction or classification tasks.",
|
|
4188
|
+
"context_window": 4e5,
|
|
4189
|
+
"max_tokens": 128e3,
|
|
4190
|
+
"tags": [
|
|
4191
|
+
"file-input",
|
|
4192
|
+
"implicit-caching",
|
|
4193
|
+
"reasoning",
|
|
4194
|
+
"tool-use",
|
|
4195
|
+
"vision",
|
|
4196
|
+
"web-search"
|
|
4197
|
+
]
|
|
4198
|
+
},
|
|
4199
|
+
{
|
|
4200
|
+
"id": "openai/gpt-5-pro",
|
|
4201
|
+
"name": "GPT-5 pro",
|
|
4202
|
+
"owned_by": "openai",
|
|
4203
|
+
"type": "language",
|
|
4204
|
+
"description": "GPT-5 pro uses more compute to think harder and provide consistently better answers. Since GPT-5 pro is designed to tackle tough problems, some requests may take several minutes to finish.",
|
|
4205
|
+
"context_window": 4e5,
|
|
4206
|
+
"max_tokens": 272e3,
|
|
4207
|
+
"tags": [
|
|
4208
|
+
"file-input",
|
|
4209
|
+
"reasoning",
|
|
4210
|
+
"tool-use",
|
|
4211
|
+
"vision",
|
|
4212
|
+
"web-search"
|
|
4213
|
+
]
|
|
4214
|
+
},
|
|
4215
|
+
{
|
|
4216
|
+
"id": "openai/gpt-5.1-codex",
|
|
4217
|
+
"name": "GPT-5.1-Codex",
|
|
4218
|
+
"owned_by": "openai",
|
|
4219
|
+
"type": "language",
|
|
4220
|
+
"description": "GPT-5.1-Codex is a version of GPT-5.1 optimized for agentic coding tasks in Codex or similar environments.",
|
|
4221
|
+
"context_window": 4e5,
|
|
4222
|
+
"max_tokens": 128e3,
|
|
4223
|
+
"tags": [
|
|
4224
|
+
"file-input",
|
|
4225
|
+
"implicit-caching",
|
|
4226
|
+
"reasoning",
|
|
4227
|
+
"tool-use",
|
|
4228
|
+
"vision",
|
|
4229
|
+
"web-search"
|
|
4230
|
+
]
|
|
4231
|
+
},
|
|
4232
|
+
{
|
|
4233
|
+
"id": "openai/gpt-5.1-codex-max",
|
|
4234
|
+
"name": "GPT 5.1 Codex Max",
|
|
4235
|
+
"owned_by": "openai",
|
|
4236
|
+
"type": "language",
|
|
4237
|
+
"description": "GPT\u20115.1-Codex-Max is purpose-built for agentic coding.",
|
|
4238
|
+
"context_window": 4e5,
|
|
4239
|
+
"max_tokens": 128e3,
|
|
4240
|
+
"tags": [
|
|
4241
|
+
"file-input",
|
|
4242
|
+
"implicit-caching",
|
|
4243
|
+
"reasoning",
|
|
4244
|
+
"tool-use",
|
|
4245
|
+
"vision",
|
|
4246
|
+
"web-search"
|
|
4247
|
+
]
|
|
4248
|
+
},
|
|
4249
|
+
{
|
|
4250
|
+
"id": "openai/gpt-5.1-codex-mini",
|
|
4251
|
+
"name": "GPT 5.1 Codex Mini",
|
|
4252
|
+
"owned_by": "openai",
|
|
4253
|
+
"type": "language",
|
|
4254
|
+
"description": "GPT-5.1 Codex mini is a smaller, faster, and cheaper version of GPT-5.1 Codex.",
|
|
4255
|
+
"context_window": 4e5,
|
|
4256
|
+
"max_tokens": 128e3,
|
|
4257
|
+
"tags": [
|
|
4258
|
+
"file-input",
|
|
4259
|
+
"implicit-caching",
|
|
4260
|
+
"reasoning",
|
|
4261
|
+
"tool-use",
|
|
4262
|
+
"vision",
|
|
4263
|
+
"web-search"
|
|
4264
|
+
]
|
|
4265
|
+
},
|
|
4266
|
+
{
|
|
4267
|
+
"id": "openai/gpt-5.1-instant",
|
|
4268
|
+
"name": "GPT-5.1 Instant",
|
|
4269
|
+
"owned_by": "openai",
|
|
4270
|
+
"type": "language",
|
|
4271
|
+
"description": "GPT-5.1 Instant (or GPT-5.1 chat) is a warmer and more conversational version of GPT-5-chat, with improved instruction following and adaptive reasoning for deciding when to think before responding.",
|
|
4272
|
+
"context_window": 128e3,
|
|
4273
|
+
"max_tokens": 16384,
|
|
4274
|
+
"tags": [
|
|
4275
|
+
"file-input",
|
|
4276
|
+
"implicit-caching",
|
|
4277
|
+
"tool-use",
|
|
4278
|
+
"vision",
|
|
4279
|
+
"web-search"
|
|
4280
|
+
]
|
|
4281
|
+
},
|
|
4282
|
+
{
|
|
4283
|
+
"id": "openai/gpt-5.1-thinking",
|
|
4284
|
+
"name": "GPT 5.1 Thinking",
|
|
4285
|
+
"owned_by": "openai",
|
|
4286
|
+
"type": "language",
|
|
4287
|
+
"description": "An upgraded version of GPT-5 that adapts thinking time more precisely to the question to spend more time on complex questions and respond more quickly to simpler tasks.",
|
|
4288
|
+
"context_window": 4e5,
|
|
4289
|
+
"max_tokens": 128e3,
|
|
4290
|
+
"tags": [
|
|
4291
|
+
"file-input",
|
|
4292
|
+
"implicit-caching",
|
|
4293
|
+
"reasoning",
|
|
4294
|
+
"tool-use",
|
|
4295
|
+
"vision",
|
|
4296
|
+
"web-search"
|
|
4297
|
+
]
|
|
4298
|
+
},
|
|
4299
|
+
{
|
|
4300
|
+
"id": "openai/gpt-5.2",
|
|
4301
|
+
"name": "GPT 5.2",
|
|
4302
|
+
"owned_by": "openai",
|
|
4303
|
+
"type": "language",
|
|
4304
|
+
"description": "GPT-5.2 is OpenAI's best general-purpose model, part of the GPT-5 flagship model family. It's their most intelligent model yet for both general and agentic tasks.",
|
|
4305
|
+
"context_window": 4e5,
|
|
4306
|
+
"max_tokens": 128e3,
|
|
4307
|
+
"tags": [
|
|
4308
|
+
"file-input",
|
|
4309
|
+
"implicit-caching",
|
|
4310
|
+
"reasoning",
|
|
4311
|
+
"tool-use",
|
|
4312
|
+
"vision",
|
|
4313
|
+
"web-search"
|
|
4314
|
+
]
|
|
4315
|
+
},
|
|
4316
|
+
{
|
|
4317
|
+
"id": "openai/gpt-5.2-chat",
|
|
4318
|
+
"name": "GPT 5.2 Chat",
|
|
4319
|
+
"owned_by": "openai",
|
|
4320
|
+
"type": "language",
|
|
4321
|
+
"description": "The model powering ChatGPT is gpt-5.2-chat-latest: this is OpenAI's best general-purpose model, part of the GPT-5 flagship model family.",
|
|
4322
|
+
"context_window": 128e3,
|
|
4323
|
+
"max_tokens": 16384,
|
|
4324
|
+
"tags": [
|
|
4325
|
+
"file-input",
|
|
4326
|
+
"implicit-caching",
|
|
4327
|
+
"tool-use",
|
|
4328
|
+
"vision",
|
|
4329
|
+
"web-search"
|
|
4330
|
+
]
|
|
4331
|
+
},
|
|
4332
|
+
{
|
|
4333
|
+
"id": "openai/gpt-5.2-codex",
|
|
4334
|
+
"name": "GPT 5.2 Codex",
|
|
4335
|
+
"owned_by": "openai",
|
|
4336
|
+
"type": "language",
|
|
4337
|
+
"description": "GPT\u20115.2-Codex is a version of GPT\u20115.2\u2060 further optimized for agentic coding in Codex, including improvements on long-horizon work through context compaction, stronger performance on large code changes like refactors and migrations, improved performance in Windows environments, and significantly stronger cybersecurity capabilities.",
|
|
4338
|
+
"context_window": 4e5,
|
|
4339
|
+
"max_tokens": 128e3,
|
|
4340
|
+
"tags": [
|
|
4341
|
+
"file-input",
|
|
4342
|
+
"implicit-caching",
|
|
4343
|
+
"reasoning",
|
|
4344
|
+
"tool-use",
|
|
4345
|
+
"vision",
|
|
4346
|
+
"web-search"
|
|
4347
|
+
]
|
|
4348
|
+
},
|
|
4349
|
+
{
|
|
4350
|
+
"id": "openai/gpt-5.2-pro",
|
|
4351
|
+
"name": "GPT 5.2 ",
|
|
4352
|
+
"owned_by": "openai",
|
|
4353
|
+
"type": "language",
|
|
4354
|
+
"description": "Version of GPT-5.2 that produces smarter and more precise responses.",
|
|
4355
|
+
"context_window": 4e5,
|
|
4356
|
+
"max_tokens": 128e3,
|
|
4357
|
+
"tags": [
|
|
4358
|
+
"tool-use",
|
|
4359
|
+
"vision",
|
|
4360
|
+
"reasoning",
|
|
4361
|
+
"file-input",
|
|
4362
|
+
"web-search"
|
|
4363
|
+
]
|
|
4364
|
+
},
|
|
4365
|
+
{
|
|
4366
|
+
"id": "openai/gpt-5.3-chat",
|
|
4367
|
+
"name": "GPT-5.3 Chat",
|
|
4368
|
+
"owned_by": "openai",
|
|
4369
|
+
"type": "language",
|
|
4370
|
+
"description": "The model powering ChatGPT is gpt-5.3-chat-latest: this is OpenAI's best general-purpose model, part of the GPT-5 flagship model family.",
|
|
4371
|
+
"context_window": 128e3,
|
|
4372
|
+
"max_tokens": 16384,
|
|
4373
|
+
"tags": [
|
|
4374
|
+
"file-input",
|
|
4375
|
+
"implicit-caching",
|
|
4376
|
+
"tool-use",
|
|
4377
|
+
"vision",
|
|
4378
|
+
"web-search"
|
|
4379
|
+
]
|
|
4380
|
+
},
|
|
4381
|
+
{
|
|
4382
|
+
"id": "openai/gpt-5.3-codex",
|
|
4383
|
+
"name": "GPT 5.3 Codex",
|
|
4384
|
+
"owned_by": "openai",
|
|
4385
|
+
"type": "language",
|
|
4386
|
+
"description": "GPT-5.3-Codex advances both the frontier coding performance of GPT\u20115.2-Codex and the reasoning and professional knowledge capabilities of GPT\u20115.2, together in one model, which is also 25% faster. This enables it to take on long-running tasks that involve research, tool use, and complex execution.",
|
|
4387
|
+
"context_window": 4e5,
|
|
4388
|
+
"max_tokens": 128e3,
|
|
4389
|
+
"tags": [
|
|
4390
|
+
"file-input",
|
|
4391
|
+
"implicit-caching",
|
|
4392
|
+
"reasoning",
|
|
4393
|
+
"tool-use",
|
|
4394
|
+
"vision",
|
|
4395
|
+
"web-search"
|
|
4396
|
+
]
|
|
4397
|
+
},
|
|
4398
|
+
{
|
|
4399
|
+
"id": "openai/gpt-5.4",
|
|
4400
|
+
"name": "GPT 5.4",
|
|
4401
|
+
"owned_by": "openai",
|
|
4402
|
+
"type": "language",
|
|
4403
|
+
"description": "GPT-5.4 is OpenAI's best general-purpose model, part of the GPT-5 flagship model family. It's their most intelligent model yet for both general and agentic tasks.",
|
|
4404
|
+
"context_window": 105e4,
|
|
4405
|
+
"max_tokens": 128e3,
|
|
4406
|
+
"tags": [
|
|
4407
|
+
"file-input",
|
|
4408
|
+
"implicit-caching",
|
|
4409
|
+
"reasoning",
|
|
4410
|
+
"tool-use",
|
|
4411
|
+
"vision",
|
|
4412
|
+
"web-search",
|
|
4413
|
+
"websocket-realtime"
|
|
4414
|
+
]
|
|
4415
|
+
},
|
|
4416
|
+
{
|
|
4417
|
+
"id": "openai/gpt-5.4-mini",
|
|
4418
|
+
"name": "GPT 5.4 Mini",
|
|
4419
|
+
"owned_by": "openai",
|
|
4420
|
+
"type": "language",
|
|
4421
|
+
"description": "GPT-5.4 Mini brings the strengths of GPT-5.4 to a faster, more efficient model designed for high-volume workloads.",
|
|
4422
|
+
"context_window": 4e5,
|
|
4423
|
+
"max_tokens": 128e3,
|
|
4424
|
+
"tags": [
|
|
4425
|
+
"file-input",
|
|
4426
|
+
"implicit-caching",
|
|
4427
|
+
"reasoning",
|
|
4428
|
+
"tool-use",
|
|
4429
|
+
"vision",
|
|
4430
|
+
"web-search"
|
|
4431
|
+
]
|
|
4432
|
+
},
|
|
4433
|
+
{
|
|
4434
|
+
"id": "openai/gpt-5.4-nano",
|
|
4435
|
+
"name": "GPT 5.4 Nano",
|
|
4436
|
+
"owned_by": "openai",
|
|
4437
|
+
"type": "language",
|
|
4438
|
+
"description": "GPT-5.4 Nano is designed for tasks where speed and cost matter most like classification, data extraction, ranking, and sub-agents.",
|
|
4439
|
+
"context_window": 4e5,
|
|
4440
|
+
"max_tokens": 128e3,
|
|
4441
|
+
"tags": [
|
|
4442
|
+
"file-input",
|
|
4443
|
+
"implicit-caching",
|
|
4444
|
+
"reasoning",
|
|
4445
|
+
"tool-use",
|
|
4446
|
+
"vision",
|
|
4447
|
+
"web-search"
|
|
4448
|
+
]
|
|
4449
|
+
},
|
|
4450
|
+
{
|
|
4451
|
+
"id": "openai/gpt-5.4-pro",
|
|
4452
|
+
"name": "GPT 5.4 Pro",
|
|
4453
|
+
"owned_by": "openai",
|
|
4454
|
+
"type": "language",
|
|
4455
|
+
"description": "GPT-5.4 Pro uses more compute to think harder and provide consistently better answers. It's designed to tackle tough problems.",
|
|
4456
|
+
"context_window": 105e4,
|
|
4457
|
+
"max_tokens": 128e3,
|
|
4458
|
+
"tags": [
|
|
4459
|
+
"file-input",
|
|
4460
|
+
"reasoning",
|
|
4461
|
+
"tool-use",
|
|
4462
|
+
"vision",
|
|
4463
|
+
"web-search"
|
|
4464
|
+
]
|
|
4465
|
+
},
|
|
4466
|
+
{
|
|
4467
|
+
"id": "openai/gpt-5.5",
|
|
4468
|
+
"name": "GPT 5.5",
|
|
4469
|
+
"owned_by": "openai",
|
|
4470
|
+
"type": "language",
|
|
4471
|
+
"description": "GPT\u20115.5 understands what you\u2019re trying to do faster and can carry more of the work itself. It excels at writing and debugging code, researching online, analyzing data, creating documents and spreadsheets, operating software, and moving across tools until a task is finished. Instead of carefully managing every step, you can give GPT\u20115.5 a messy, multi-part task and trust it to plan, use tools, check its work, navigate through ambiguity, and keep going.",
|
|
4472
|
+
"context_window": 1e6,
|
|
4473
|
+
"max_tokens": 128e3,
|
|
4474
|
+
"tags": [
|
|
4475
|
+
"file-input",
|
|
4476
|
+
"implicit-caching",
|
|
4477
|
+
"reasoning",
|
|
4478
|
+
"tool-use",
|
|
4479
|
+
"vision",
|
|
4480
|
+
"web-search",
|
|
4481
|
+
"websocket-realtime"
|
|
4482
|
+
]
|
|
4483
|
+
},
|
|
4484
|
+
{
|
|
4485
|
+
"id": "openai/gpt-5.5-pro",
|
|
4486
|
+
"name": "GPT 5.5 Pro",
|
|
4487
|
+
"owned_by": "openai",
|
|
4488
|
+
"type": "language",
|
|
4489
|
+
"description": "",
|
|
4490
|
+
"context_window": 1e6,
|
|
4491
|
+
"max_tokens": 128e3,
|
|
4492
|
+
"tags": [
|
|
4493
|
+
"reasoning",
|
|
4494
|
+
"tool-use",
|
|
4495
|
+
"file-input",
|
|
4496
|
+
"web-search",
|
|
4497
|
+
"vision"
|
|
4498
|
+
]
|
|
4499
|
+
},
|
|
4500
|
+
{
|
|
4501
|
+
"id": "openai/gpt-5.6-luna",
|
|
4502
|
+
"name": "GPT 5.6 Luna",
|
|
4503
|
+
"owned_by": "openai",
|
|
4504
|
+
"type": "language",
|
|
4505
|
+
"description": "GPT-5.6 Luna is a fast, affordable GPT-5.6 model that brings strong capability at the lowest cost in the series.",
|
|
4506
|
+
"context_window": 105e4,
|
|
4507
|
+
"max_tokens": 128e3,
|
|
4508
|
+
"tags": [
|
|
4509
|
+
"reasoning",
|
|
4510
|
+
"file-input",
|
|
4511
|
+
"tool-use",
|
|
4512
|
+
"vision",
|
|
4513
|
+
"implicit-caching",
|
|
4514
|
+
"web-search",
|
|
4515
|
+
"websocket-realtime"
|
|
4516
|
+
]
|
|
4517
|
+
},
|
|
4518
|
+
{
|
|
4519
|
+
"id": "openai/gpt-5.6-sol",
|
|
4520
|
+
"name": "GPT 5.6 Sol",
|
|
4521
|
+
"owned_by": "openai",
|
|
4522
|
+
"type": "language",
|
|
4523
|
+
"description": "GPT-5.6 Sol is the flagship of OpenAI's GPT-5.6 series, its most capable model for long-horizon agentic work across coding, biology, and cybersecurity.",
|
|
4524
|
+
"context_window": 105e4,
|
|
4525
|
+
"max_tokens": 128e3,
|
|
4526
|
+
"tags": [
|
|
4527
|
+
"reasoning",
|
|
4528
|
+
"tool-use",
|
|
4529
|
+
"implicit-caching",
|
|
4530
|
+
"file-input",
|
|
4531
|
+
"vision",
|
|
4532
|
+
"web-search",
|
|
4533
|
+
"websocket-realtime"
|
|
4534
|
+
]
|
|
4535
|
+
},
|
|
4536
|
+
{
|
|
4537
|
+
"id": "openai/gpt-5.6-terra",
|
|
4538
|
+
"name": "GPT 5.6 Terra",
|
|
4539
|
+
"owned_by": "openai",
|
|
4540
|
+
"type": "language",
|
|
4541
|
+
"description": "GPT-5.6 Terra is a balanced GPT-5.6 model for everyday work, with performance comparable to the previous generation at half the cost.",
|
|
4542
|
+
"context_window": 105e4,
|
|
4543
|
+
"max_tokens": 128e3,
|
|
4544
|
+
"tags": [
|
|
4545
|
+
"reasoning",
|
|
4546
|
+
"web-search",
|
|
4547
|
+
"file-input",
|
|
4548
|
+
"tool-use",
|
|
4549
|
+
"vision",
|
|
4550
|
+
"implicit-caching",
|
|
4551
|
+
"websocket-realtime"
|
|
4552
|
+
]
|
|
4553
|
+
},
|
|
4554
|
+
{
|
|
4555
|
+
"id": "openai/gpt-image-1",
|
|
4556
|
+
"name": "GPT Image 1",
|
|
4557
|
+
"owned_by": "openai",
|
|
4558
|
+
"type": "image",
|
|
4559
|
+
"description": "GPT Image 1 is OpenAI's new state-of-the-art image generation model. It is a natively multimodal language model that accepts both text and image inputs, and produces image outputs.",
|
|
4560
|
+
"tags": [
|
|
4561
|
+
"image-generation",
|
|
4562
|
+
"implicit-caching"
|
|
4563
|
+
]
|
|
4564
|
+
},
|
|
4565
|
+
{
|
|
4566
|
+
"id": "openai/gpt-image-1-mini",
|
|
4567
|
+
"name": "GPT Image 1 Mini",
|
|
4568
|
+
"owned_by": "openai",
|
|
4569
|
+
"type": "image",
|
|
4570
|
+
"description": "A cost-efficient version of GPT Image 1. It is a natively multimodal language model that accepts both text and image inputs, and produces image outputs.",
|
|
4571
|
+
"tags": [
|
|
4572
|
+
"image-generation",
|
|
4573
|
+
"implicit-caching"
|
|
4574
|
+
]
|
|
4575
|
+
},
|
|
4576
|
+
{
|
|
4577
|
+
"id": "openai/gpt-image-1.5",
|
|
4578
|
+
"name": "GPT Image 1.5",
|
|
4579
|
+
"owned_by": "openai",
|
|
4580
|
+
"type": "image",
|
|
4581
|
+
"description": "GPT Image 1.5 is OpenAI's latest image generation model, with better instruction following and adherence to prompts.",
|
|
4582
|
+
"tags": [
|
|
4583
|
+
"image-generation",
|
|
4584
|
+
"implicit-caching"
|
|
4585
|
+
]
|
|
4586
|
+
},
|
|
4587
|
+
{
|
|
4588
|
+
"id": "openai/gpt-image-2",
|
|
4589
|
+
"name": "GPT Image 2",
|
|
4590
|
+
"owned_by": "openai",
|
|
4591
|
+
"type": "image",
|
|
4592
|
+
"description": "GPT Image 2 is OpenAI's state-of-the-art image generation model for fast, high-quality image generation and editing. It supports flexible image sizes and high-fidelity image inputs.",
|
|
4593
|
+
"tags": [
|
|
4594
|
+
"image-generation",
|
|
4595
|
+
"implicit-caching"
|
|
4596
|
+
]
|
|
4597
|
+
},
|
|
4598
|
+
{
|
|
4599
|
+
"id": "openai/gpt-oss-120b",
|
|
4600
|
+
"name": "GPT OSS 120B",
|
|
4601
|
+
"owned_by": "openai",
|
|
4602
|
+
"type": "language",
|
|
4603
|
+
"description": "Extremely capable general-purpose LLM with strong, controllable reasoning capabilities",
|
|
4604
|
+
"context_window": 131072,
|
|
4605
|
+
"max_tokens": 131072,
|
|
4606
|
+
"tags": [
|
|
4607
|
+
"reasoning",
|
|
4608
|
+
"tool-use",
|
|
4609
|
+
"implicit-caching"
|
|
4610
|
+
]
|
|
4611
|
+
},
|
|
4612
|
+
{
|
|
4613
|
+
"id": "openai/gpt-oss-20b",
|
|
4614
|
+
"name": "GPT OSS 20B",
|
|
4615
|
+
"owned_by": "openai",
|
|
4616
|
+
"type": "language",
|
|
4617
|
+
"description": "A compact, open-weight language model optimized for low-latency and resource-constrained environments, including local and edge deployments.",
|
|
4618
|
+
"context_window": 131072,
|
|
4619
|
+
"max_tokens": 8192,
|
|
4620
|
+
"tags": [
|
|
4621
|
+
"reasoning",
|
|
4622
|
+
"tool-use",
|
|
4623
|
+
"implicit-caching"
|
|
4624
|
+
]
|
|
4625
|
+
},
|
|
4626
|
+
{
|
|
4627
|
+
"id": "openai/gpt-oss-safeguard-20b",
|
|
4628
|
+
"name": "GPT OSS Safeguard 20B",
|
|
4629
|
+
"owned_by": "openai",
|
|
4630
|
+
"type": "language",
|
|
4631
|
+
"description": "OpenAI's first open weight reasoning model specifically trained for safety classification tasks. Fine-tuned from GPT-OSS, this model helps classify text content based on customizable policies, enabling bring-your-own-policy Trust & Safety AI where your own taxonomy, definitions, and thresholds guide classification decisions.",
|
|
4632
|
+
"context_window": 131072,
|
|
4633
|
+
"max_tokens": 65536,
|
|
4634
|
+
"tags": [
|
|
4635
|
+
"implicit-caching",
|
|
4636
|
+
"reasoning",
|
|
4637
|
+
"tool-use"
|
|
4638
|
+
]
|
|
4639
|
+
},
|
|
4640
|
+
{
|
|
4641
|
+
"id": "openai/gpt-realtime-1.5",
|
|
4642
|
+
"name": "GPT-Realtime-1.5",
|
|
4643
|
+
"owned_by": "openai",
|
|
4644
|
+
"type": "realtime",
|
|
4645
|
+
"description": "GPT-Realtime-1.5 is our flagship audio model for voice agents and customer support.",
|
|
4646
|
+
"tags": []
|
|
4647
|
+
},
|
|
4648
|
+
{
|
|
4649
|
+
"id": "openai/gpt-realtime-2",
|
|
4650
|
+
"name": "gpt-realtime-2",
|
|
4651
|
+
"owned_by": "openai",
|
|
4652
|
+
"type": "realtime",
|
|
4653
|
+
"description": "GPT Realtime 2 is our most capable realtime voice model. It supports speech-to-speech interactions with configurable reasoning effort, stronger instruction following, and more reliable tool use for complex voice-agent workflows.",
|
|
4654
|
+
"tags": [
|
|
4655
|
+
"websocket-realtime"
|
|
4656
|
+
]
|
|
4657
|
+
},
|
|
4658
|
+
{
|
|
4659
|
+
"id": "openai/gpt-realtime-2.1",
|
|
4660
|
+
"name": "gpt-realtime-2.1",
|
|
4661
|
+
"owned_by": "openai",
|
|
4662
|
+
"type": "realtime",
|
|
4663
|
+
"description": "GPT-Realtime-2.1 updates GPT-Realtime-2 with improved alphanumeric recognition, silence and noise handling, and interruption behavior. It supports speech-to-speech interactions with configurable reasoning effort, instruction following, and tool use for complex voice-agent workflows.",
|
|
4664
|
+
"context_window": 128e3,
|
|
4665
|
+
"max_tokens": 32e3,
|
|
4666
|
+
"tags": []
|
|
4667
|
+
},
|
|
4668
|
+
{
|
|
4669
|
+
"id": "openai/gpt-realtime-mini",
|
|
4670
|
+
"name": "GPT-Realtime mini",
|
|
4671
|
+
"owned_by": "openai",
|
|
4672
|
+
"type": "realtime",
|
|
4673
|
+
"description": "GPT-Realtime mini is capable of responding to audio and text inputs in realtime over WebRTC, WebSocket, or SIP connections.",
|
|
4674
|
+
"tags": []
|
|
4675
|
+
},
|
|
4676
|
+
{
|
|
4677
|
+
"id": "openai/o1",
|
|
4678
|
+
"name": "o1",
|
|
4679
|
+
"owned_by": "openai",
|
|
4680
|
+
"type": "language",
|
|
4681
|
+
"description": "o1 is OpenAI's flagship reasoning model, designed for complex problems that require deep thinking. It provides strong reasoning capabilities with improved accuracy for complex multi-step tasks.",
|
|
4682
|
+
"context_window": 2e5,
|
|
4683
|
+
"max_tokens": 1e5,
|
|
4684
|
+
"tags": [
|
|
4685
|
+
"file-input",
|
|
4686
|
+
"reasoning",
|
|
4687
|
+
"tool-use",
|
|
4688
|
+
"vision",
|
|
4689
|
+
"implicit-caching"
|
|
4690
|
+
]
|
|
4691
|
+
},
|
|
4692
|
+
{
|
|
4693
|
+
"id": "openai/o3",
|
|
4694
|
+
"name": "o3",
|
|
4695
|
+
"owned_by": "openai",
|
|
4696
|
+
"type": "language",
|
|
4697
|
+
"description": "OpenAI's o3 is their most powerful reasoning model, setting new state-of-the-art benchmarks in coding, math, science, and visual perception. It excels at complex queries requiring multi-faceted analysis, with particular strength in analyzing images, charts, and graphics.",
|
|
4698
|
+
"context_window": 2e5,
|
|
4699
|
+
"max_tokens": 1e5,
|
|
4700
|
+
"tags": [
|
|
4701
|
+
"file-input",
|
|
4702
|
+
"implicit-caching",
|
|
4703
|
+
"reasoning",
|
|
4704
|
+
"tool-use",
|
|
4705
|
+
"vision",
|
|
4706
|
+
"web-search"
|
|
4707
|
+
]
|
|
4708
|
+
},
|
|
4709
|
+
{
|
|
4710
|
+
"id": "openai/o3-deep-research",
|
|
4711
|
+
"name": "o3-deep-research",
|
|
4712
|
+
"owned_by": "openai",
|
|
4713
|
+
"type": "language",
|
|
4714
|
+
"description": "o3-deep-research is OpenAI's most advanced model for deep research, designed to tackle complex, multi-step research tasks. It can search and synthesize information from across the internet as well as from your own data\u2014brought in through MCP connectors.",
|
|
4715
|
+
"context_window": 2e5,
|
|
4716
|
+
"max_tokens": 1e5,
|
|
4717
|
+
"tags": [
|
|
4718
|
+
"file-input",
|
|
4719
|
+
"implicit-caching",
|
|
4720
|
+
"reasoning",
|
|
4721
|
+
"tool-use",
|
|
4722
|
+
"vision",
|
|
4723
|
+
"web-search"
|
|
4724
|
+
]
|
|
4725
|
+
},
|
|
4726
|
+
{
|
|
4727
|
+
"id": "openai/o3-mini",
|
|
4728
|
+
"name": "o3-mini",
|
|
4729
|
+
"owned_by": "openai",
|
|
4730
|
+
"type": "language",
|
|
4731
|
+
"description": "o3-mini is OpenAI's most recent small reasoning model, providing high intelligence at the same cost and latency targets of o1-mini.",
|
|
4732
|
+
"context_window": 2e5,
|
|
4733
|
+
"max_tokens": 1e5,
|
|
4734
|
+
"tags": [
|
|
4735
|
+
"implicit-caching",
|
|
4736
|
+
"reasoning",
|
|
4737
|
+
"tool-use"
|
|
4738
|
+
]
|
|
4739
|
+
},
|
|
4740
|
+
{
|
|
4741
|
+
"id": "openai/o3-pro",
|
|
4742
|
+
"name": "o3 Pro",
|
|
4743
|
+
"owned_by": "openai",
|
|
4744
|
+
"type": "language",
|
|
4745
|
+
"description": "The o-series of models are trained with reinforcement learning to think before they answer and perform complex reasoning. The o3-pro model uses more compute to think harder and provide consistently better answers.",
|
|
4746
|
+
"context_window": 2e5,
|
|
4747
|
+
"max_tokens": 1e5,
|
|
4748
|
+
"tags": [
|
|
4749
|
+
"reasoning",
|
|
4750
|
+
"vision",
|
|
4751
|
+
"file-input",
|
|
4752
|
+
"tool-use",
|
|
4753
|
+
"web-search"
|
|
4754
|
+
]
|
|
4755
|
+
},
|
|
4756
|
+
{
|
|
4757
|
+
"id": "openai/o4-mini",
|
|
4758
|
+
"name": "o4-mini",
|
|
4759
|
+
"owned_by": "openai",
|
|
4760
|
+
"type": "language",
|
|
4761
|
+
"description": "OpenAI's o4-mini delivers fast, cost-efficient reasoning with exceptional performance for its size, particularly excelling in math (best-performing on AIME benchmarks), coding, and visual tasks.",
|
|
4762
|
+
"context_window": 2e5,
|
|
4763
|
+
"max_tokens": 1e5,
|
|
4764
|
+
"tags": [
|
|
4765
|
+
"file-input",
|
|
4766
|
+
"implicit-caching",
|
|
4767
|
+
"reasoning",
|
|
4768
|
+
"tool-use",
|
|
4769
|
+
"vision",
|
|
4770
|
+
"web-search"
|
|
4771
|
+
]
|
|
4772
|
+
},
|
|
4773
|
+
{
|
|
4774
|
+
"id": "openai/text-embedding-3-large",
|
|
4775
|
+
"name": "text-embedding-3-large",
|
|
4776
|
+
"owned_by": "openai",
|
|
4777
|
+
"type": "embedding",
|
|
4778
|
+
"description": "OpenAI's most capable embedding model for both english and non-english tasks.",
|
|
4779
|
+
"tags": []
|
|
4780
|
+
},
|
|
4781
|
+
{
|
|
4782
|
+
"id": "openai/text-embedding-3-small",
|
|
4783
|
+
"name": "text-embedding-3-small",
|
|
4784
|
+
"owned_by": "openai",
|
|
4785
|
+
"type": "embedding",
|
|
4786
|
+
"description": "OpenAI's improved, more performant version of their ada embedding model.",
|
|
4787
|
+
"tags": []
|
|
4788
|
+
},
|
|
4789
|
+
{
|
|
4790
|
+
"id": "openai/text-embedding-ada-002",
|
|
4791
|
+
"name": "text-embedding-ada-002",
|
|
4792
|
+
"owned_by": "openai",
|
|
4793
|
+
"type": "embedding",
|
|
4794
|
+
"description": "OpenAI's legacy text embedding model.",
|
|
4795
|
+
"tags": []
|
|
4796
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
"id": "openai/tts-1",
|
|
4799
|
+
"name": "TTS-1",
|
|
4800
|
+
"owned_by": "openai",
|
|
4801
|
+
"type": "speech",
|
|
4802
|
+
"description": "TTS is a model that converts text to natural sounding spoken text.",
|
|
4803
|
+
"tags": []
|
|
4804
|
+
},
|
|
4805
|
+
{
|
|
4806
|
+
"id": "openai/tts-1-hd",
|
|
4807
|
+
"name": "TTS-1 HD",
|
|
4808
|
+
"owned_by": "openai",
|
|
4809
|
+
"type": "speech",
|
|
4810
|
+
"description": "TTS is a model that converts text to natural sounding spoken text. The tts-1-hd model is optimized for high quality text-to-speech use cases.",
|
|
4811
|
+
"tags": []
|
|
4812
|
+
},
|
|
4813
|
+
{
|
|
4814
|
+
"id": "openai/whisper-1",
|
|
4815
|
+
"name": "Whisper",
|
|
4816
|
+
"owned_by": "openai",
|
|
4817
|
+
"type": "transcription",
|
|
4818
|
+
"description": "Whisper is a general-purpose speech recognition model, trained on a large dataset of diverse audio. You can also use it as a multitask model to perform multilingual speech recognition as well as speech translation and language identification.",
|
|
4819
|
+
"tags": []
|
|
4820
|
+
},
|
|
4821
|
+
{
|
|
4822
|
+
"id": "perplexity/sonar",
|
|
4823
|
+
"name": "Sonar",
|
|
4824
|
+
"owned_by": "perplexity",
|
|
4825
|
+
"type": "language",
|
|
4826
|
+
"description": "Perplexity's lightweight offering with search grounding, quicker and cheaper than Sonar Pro.",
|
|
4827
|
+
"context_window": 127e3,
|
|
4828
|
+
"max_tokens": 8e3,
|
|
4829
|
+
"tags": [
|
|
4830
|
+
"vision",
|
|
4831
|
+
"web-search"
|
|
4832
|
+
]
|
|
4833
|
+
},
|
|
4834
|
+
{
|
|
4835
|
+
"id": "perplexity/sonar-pro",
|
|
4836
|
+
"name": "Sonar Pro",
|
|
4837
|
+
"owned_by": "perplexity",
|
|
4838
|
+
"type": "language",
|
|
4839
|
+
"description": "Perplexity's premier offering with search grounding, supporting advanced queries and follow-ups.",
|
|
4840
|
+
"context_window": 2e5,
|
|
4841
|
+
"max_tokens": 8e3,
|
|
4842
|
+
"tags": [
|
|
4843
|
+
"vision",
|
|
4844
|
+
"web-search"
|
|
4845
|
+
]
|
|
4846
|
+
},
|
|
4847
|
+
{
|
|
4848
|
+
"id": "perplexity/sonar-reasoning-pro",
|
|
4849
|
+
"name": "Sonar Reasoning Pro",
|
|
4850
|
+
"owned_by": "perplexity",
|
|
4851
|
+
"type": "language",
|
|
4852
|
+
"description": "A premium reasoning-focused model that outputs Chain of Thought (CoT) in responses, providing comprehensive explanations with enhanced search capabilities and multiple search queries per request.",
|
|
4853
|
+
"context_window": 127e3,
|
|
4854
|
+
"max_tokens": 8e3,
|
|
4855
|
+
"tags": [
|
|
4856
|
+
"reasoning",
|
|
4857
|
+
"web-search"
|
|
4858
|
+
]
|
|
4859
|
+
},
|
|
4860
|
+
{
|
|
4861
|
+
"id": "xai/grok-4.1-fast-non-reasoning",
|
|
4862
|
+
"name": "Grok 4.1 Fast Non-Reasoning",
|
|
4863
|
+
"owned_by": "xai",
|
|
4864
|
+
"type": "language",
|
|
4865
|
+
"description": "",
|
|
4866
|
+
"context_window": 1e6,
|
|
4867
|
+
"max_tokens": 1e6,
|
|
4868
|
+
"tags": [
|
|
4869
|
+
"tool-use",
|
|
4870
|
+
"file-input",
|
|
4871
|
+
"vision",
|
|
4872
|
+
"implicit-caching"
|
|
4873
|
+
]
|
|
4874
|
+
},
|
|
4875
|
+
{
|
|
4876
|
+
"id": "xai/grok-4.1-fast-reasoning",
|
|
4877
|
+
"name": "Grok 4.1 Fast Reasoning",
|
|
4878
|
+
"owned_by": "xai",
|
|
4879
|
+
"type": "language",
|
|
4880
|
+
"description": "",
|
|
4881
|
+
"context_window": 1e6,
|
|
4882
|
+
"max_tokens": 1e6,
|
|
4883
|
+
"tags": [
|
|
4884
|
+
"reasoning",
|
|
4885
|
+
"file-input",
|
|
4886
|
+
"vision",
|
|
4887
|
+
"tool-use",
|
|
4888
|
+
"implicit-caching"
|
|
4889
|
+
]
|
|
4890
|
+
},
|
|
4891
|
+
{
|
|
4892
|
+
"id": "xai/grok-4.20-multi-agent",
|
|
4893
|
+
"name": "Grok 4.20 Multi-Agent",
|
|
4894
|
+
"owned_by": "xai",
|
|
4895
|
+
"type": "language",
|
|
4896
|
+
"description": "Multiple agents collaborate in parallel to perform deep research tasks.",
|
|
4897
|
+
"context_window": 2e6,
|
|
4898
|
+
"max_tokens": 2e6,
|
|
4899
|
+
"tags": [
|
|
4900
|
+
"reasoning",
|
|
4901
|
+
"tool-use",
|
|
4902
|
+
"implicit-caching",
|
|
4903
|
+
"vision",
|
|
4904
|
+
"file-input",
|
|
4905
|
+
"web-search"
|
|
4906
|
+
]
|
|
4907
|
+
},
|
|
4908
|
+
{
|
|
4909
|
+
"id": "xai/grok-4.20-multi-agent-beta",
|
|
4910
|
+
"name": "Grok 4.20 Multi Agent Beta",
|
|
4911
|
+
"owned_by": "xai",
|
|
4912
|
+
"type": "language",
|
|
4913
|
+
"description": "Multiple agents collaborate in parallel to perform deep research tasks.",
|
|
4914
|
+
"context_window": 2e6,
|
|
4915
|
+
"max_tokens": 2e6,
|
|
4916
|
+
"tags": [
|
|
4917
|
+
"reasoning",
|
|
4918
|
+
"tool-use",
|
|
4919
|
+
"implicit-caching",
|
|
4920
|
+
"vision",
|
|
4921
|
+
"file-input",
|
|
4922
|
+
"web-search"
|
|
4923
|
+
]
|
|
4924
|
+
},
|
|
4925
|
+
{
|
|
4926
|
+
"id": "xai/grok-4.20-non-reasoning",
|
|
4927
|
+
"name": "Grok 4.20 Non-Reasoning",
|
|
4928
|
+
"owned_by": "xai",
|
|
4929
|
+
"type": "language",
|
|
4930
|
+
"description": "Grok 4.20 Beta is the newest flagship model from xAI with industry-leading speed and agentic tool calling capabilities. It combines the lowest hallucination rate on the market with strict prompt adherence, delivering consistently precise and truthful responses.",
|
|
4931
|
+
"context_window": 2e6,
|
|
4932
|
+
"max_tokens": 2e6,
|
|
4933
|
+
"tags": [
|
|
4934
|
+
"tool-use",
|
|
4935
|
+
"implicit-caching",
|
|
4936
|
+
"file-input",
|
|
4937
|
+
"vision",
|
|
4938
|
+
"web-search"
|
|
4939
|
+
]
|
|
4940
|
+
},
|
|
4941
|
+
{
|
|
4942
|
+
"id": "xai/grok-4.20-non-reasoning-beta",
|
|
4943
|
+
"name": "Grok 4.20 Beta Non-Reasoning",
|
|
4944
|
+
"owned_by": "xai",
|
|
4945
|
+
"type": "language",
|
|
4946
|
+
"description": "Grok 4.20 Beta is the newest flagship model from xAI with industry-leading speed and agentic tool calling capabilities. It combines the lowest hallucination rate on the market with strict prompt adherance, delivering consistently precise and truthful responses.",
|
|
4947
|
+
"context_window": 2e6,
|
|
4948
|
+
"max_tokens": 2e6,
|
|
4949
|
+
"tags": [
|
|
4950
|
+
"tool-use",
|
|
4951
|
+
"implicit-caching",
|
|
4952
|
+
"vision",
|
|
4953
|
+
"file-input",
|
|
4954
|
+
"web-search"
|
|
4955
|
+
]
|
|
4956
|
+
},
|
|
4957
|
+
{
|
|
4958
|
+
"id": "xai/grok-4.20-reasoning",
|
|
4959
|
+
"name": "Grok 4.20 Reasoning",
|
|
4960
|
+
"owned_by": "xai",
|
|
4961
|
+
"type": "language",
|
|
4962
|
+
"description": "Grok 4.20 Beta is the newest flagship model from xAI with industry-leading speed and agentic tool calling capabilities. It combines the lowest hallucination rate on the market with strict prompt adherence, delivering consistently precise and truthful responses.",
|
|
4963
|
+
"context_window": 2e6,
|
|
4964
|
+
"max_tokens": 2e6,
|
|
4965
|
+
"tags": [
|
|
4966
|
+
"reasoning",
|
|
4967
|
+
"tool-use",
|
|
4968
|
+
"implicit-caching",
|
|
4969
|
+
"vision",
|
|
4970
|
+
"file-input",
|
|
4971
|
+
"web-search"
|
|
4972
|
+
]
|
|
4973
|
+
},
|
|
4974
|
+
{
|
|
4975
|
+
"id": "xai/grok-4.20-reasoning-beta",
|
|
4976
|
+
"name": "Grok 4.20 Beta Reasoning",
|
|
4977
|
+
"owned_by": "xai",
|
|
4978
|
+
"type": "language",
|
|
4979
|
+
"description": "Grok 4.20 Beta is the newest flagship model from xAI with industry-leading speed and agentic tool calling capabilities. It combines the lowest hallucination rate on the market with strict prompt adherance, delivering consistently precise and truthful responses.",
|
|
4980
|
+
"context_window": 2e6,
|
|
4981
|
+
"max_tokens": 2e6,
|
|
4982
|
+
"tags": [
|
|
4983
|
+
"reasoning",
|
|
4984
|
+
"tool-use",
|
|
4985
|
+
"vision",
|
|
4986
|
+
"file-input",
|
|
4987
|
+
"implicit-caching",
|
|
4988
|
+
"web-search"
|
|
4989
|
+
]
|
|
4990
|
+
},
|
|
4991
|
+
{
|
|
4992
|
+
"id": "xai/grok-4.3",
|
|
4993
|
+
"name": "Grok 4.3",
|
|
4994
|
+
"owned_by": "xai",
|
|
4995
|
+
"type": "language",
|
|
4996
|
+
"description": "Grok 4.3 is a new model matching the scale of Grok 4.20 with an improved architecture and a December 2025 knowledge cutoff.",
|
|
4997
|
+
"context_window": 1e6,
|
|
4998
|
+
"max_tokens": 1e6,
|
|
4999
|
+
"tags": [
|
|
5000
|
+
"reasoning",
|
|
5001
|
+
"tool-use",
|
|
5002
|
+
"implicit-caching",
|
|
5003
|
+
"file-input",
|
|
5004
|
+
"vision",
|
|
5005
|
+
"web-search"
|
|
5006
|
+
]
|
|
5007
|
+
},
|
|
5008
|
+
{
|
|
5009
|
+
"id": "xai/grok-4.5",
|
|
5010
|
+
"name": "Grok 4.5",
|
|
5011
|
+
"owned_by": "xai",
|
|
5012
|
+
"type": "language",
|
|
5013
|
+
"description": "SpaceXAI's smartest model with frontier performance on coding, knowledge work, and STEM.",
|
|
5014
|
+
"context_window": 5e5,
|
|
5015
|
+
"max_tokens": 5e5,
|
|
5016
|
+
"tags": [
|
|
5017
|
+
"reasoning",
|
|
5018
|
+
"tool-use",
|
|
5019
|
+
"implicit-caching",
|
|
5020
|
+
"file-input",
|
|
5021
|
+
"vision",
|
|
5022
|
+
"web-search"
|
|
5023
|
+
]
|
|
5024
|
+
},
|
|
5025
|
+
{
|
|
5026
|
+
"id": "xai/grok-build-0.1",
|
|
5027
|
+
"name": "Grok Build 0.1",
|
|
5028
|
+
"owned_by": "xai",
|
|
5029
|
+
"type": "language",
|
|
5030
|
+
"description": "xAI's fast coding model trained specifically for agentic coding.",
|
|
5031
|
+
"context_window": 256e3,
|
|
5032
|
+
"max_tokens": 256e3,
|
|
5033
|
+
"tags": [
|
|
5034
|
+
"reasoning",
|
|
5035
|
+
"implicit-caching",
|
|
5036
|
+
"vision",
|
|
5037
|
+
"tool-use",
|
|
5038
|
+
"web-search"
|
|
5039
|
+
]
|
|
5040
|
+
},
|
|
5041
|
+
{
|
|
5042
|
+
"id": "xai/grok-imagine-image",
|
|
5043
|
+
"name": "Grok Imagine Image",
|
|
5044
|
+
"owned_by": "xai",
|
|
5045
|
+
"type": "image",
|
|
5046
|
+
"description": "Generate high-quality images from text prompts with xAI's imagine API.",
|
|
5047
|
+
"tags": [
|
|
5048
|
+
"image-generation"
|
|
5049
|
+
]
|
|
5050
|
+
},
|
|
5051
|
+
{
|
|
5052
|
+
"id": "xai/grok-imagine-video",
|
|
5053
|
+
"name": "Grok Imagine",
|
|
5054
|
+
"owned_by": "xai",
|
|
5055
|
+
"type": "video",
|
|
5056
|
+
"description": "State-of-the-art video generation across quality, cost, and latency. Grok Imagine is x.AI's most powerful video-audio generative model yet. Bring an image to life, start from a simple text prompt, or even refine a complex cinematic sequence.",
|
|
5057
|
+
"tags": []
|
|
5058
|
+
},
|
|
5059
|
+
{
|
|
5060
|
+
"id": "xai/grok-imagine-video-1.5",
|
|
5061
|
+
"name": "Grok Imagine Video 1.5",
|
|
5062
|
+
"owned_by": "xai",
|
|
5063
|
+
"type": "video",
|
|
5064
|
+
"description": "",
|
|
5065
|
+
"tags": []
|
|
5066
|
+
},
|
|
5067
|
+
{
|
|
5068
|
+
"id": "xai/grok-imagine-video-1.5-preview",
|
|
5069
|
+
"name": "Grok Imagine Video 1.5 Preview",
|
|
5070
|
+
"owned_by": "xai",
|
|
5071
|
+
"type": "video",
|
|
5072
|
+
"description": "",
|
|
5073
|
+
"tags": []
|
|
5074
|
+
},
|
|
5075
|
+
{
|
|
5076
|
+
"id": "xai/grok-stt",
|
|
5077
|
+
"name": "Grok STT",
|
|
5078
|
+
"owned_by": "xai",
|
|
5079
|
+
"type": "transcription",
|
|
5080
|
+
"description": "Transcribe audio to text in 25 languages with batch and streaming modes.",
|
|
5081
|
+
"tags": []
|
|
5082
|
+
},
|
|
5083
|
+
{
|
|
5084
|
+
"id": "xai/grok-tts",
|
|
5085
|
+
"name": "Grok TTS",
|
|
5086
|
+
"owned_by": "xai",
|
|
5087
|
+
"type": "speech",
|
|
5088
|
+
"description": "Generate speech with 5 expressive voices, speech tags, and telephony codecs.",
|
|
5089
|
+
"tags": []
|
|
5090
|
+
},
|
|
5091
|
+
{
|
|
5092
|
+
"id": "xai/grok-voice-think-fast-1.0",
|
|
5093
|
+
"name": "Grok Voice Think Fast 1.0",
|
|
5094
|
+
"owned_by": "xai",
|
|
5095
|
+
"type": "realtime",
|
|
5096
|
+
"description": "Build real-time voice applications powered by Grok. Stream audio and text bidirectionally via WebSocket for voice assistants, phone agents, and interactive voice systems.",
|
|
5097
|
+
"tags": []
|
|
5098
|
+
}
|
|
5099
|
+
];
|
|
5100
|
+
|
|
5101
|
+
// ../../packages/core/src/models-cache.ts
|
|
5102
|
+
async function getAllModels() {
|
|
5103
|
+
return ALL_MODELS;
|
|
5104
|
+
}
|
|
5105
|
+
|
|
5106
|
+
// src/commands/settings.ts
|
|
5107
|
+
async function settingsCommand(options) {
|
|
5108
|
+
await inServerScope(options.server, async () => {
|
|
5109
|
+
await requireActive();
|
|
5110
|
+
const config = await readConfig();
|
|
5111
|
+
log.info(log.fmt.bold("\n--- CLI Settings ---"));
|
|
5112
|
+
const gatewayModels = await getAllModels();
|
|
5113
|
+
const chatModels = gatewayModels.filter((m) => m.type === "language").map(toChatDescriptor);
|
|
5114
|
+
const providers = Array.from(new Set(chatModels.map((m) => m.provider)));
|
|
5115
|
+
const selectedProvider = await p4.select({
|
|
5116
|
+
message: "Select AI Provider for Chat:",
|
|
5117
|
+
initialValue: config.chatProvider || config.embeddingProvider,
|
|
5118
|
+
options: providers.map((p5) => ({ label: p5, value: p5 }))
|
|
5119
|
+
});
|
|
5120
|
+
if (p4.isCancel(selectedProvider)) {
|
|
5121
|
+
log.info("Cancelled.");
|
|
5122
|
+
return;
|
|
5123
|
+
}
|
|
5124
|
+
const availableModels = chatModels.filter(
|
|
5125
|
+
(m) => m.provider === selectedProvider
|
|
5126
|
+
);
|
|
5127
|
+
const selectedModel = await p4.select({
|
|
5128
|
+
message: "Select Chat Model:",
|
|
5129
|
+
initialValue: config.chatModelId || availableModels[0]?.id,
|
|
5130
|
+
options: availableModels.map((m) => ({ label: m.name, value: m.id }))
|
|
5131
|
+
});
|
|
5132
|
+
if (p4.isCancel(selectedModel)) {
|
|
5133
|
+
log.info("Cancelled.");
|
|
5134
|
+
return;
|
|
5135
|
+
}
|
|
5136
|
+
await writeConfig({
|
|
5137
|
+
...config,
|
|
5138
|
+
chatProvider: selectedProvider,
|
|
5139
|
+
chatModelId: selectedModel
|
|
5140
|
+
});
|
|
3016
5141
|
log.success(`Settings saved. Chat model set to ${selectedModel}.`);
|
|
3017
5142
|
});
|
|
3018
5143
|
}
|