ai-model-prices 2026.7.11 → 2026.7.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +4 -1
  2. package/dist/adapters/ai-router.d.mts +6 -0
  3. package/dist/adapters/ai-router.d.ts +6 -0
  4. package/dist/adapters/ai-router.js +7 -0
  5. package/dist/adapters/ai-router.mjs +5 -0
  6. package/dist/adapters/ambient.d.mts +2 -2
  7. package/dist/adapters/ambient.d.ts +2 -2
  8. package/dist/adapters/daoxe.d.mts +6 -0
  9. package/dist/adapters/daoxe.d.ts +6 -0
  10. package/dist/adapters/daoxe.js +7 -0
  11. package/dist/adapters/daoxe.mjs +5 -0
  12. package/dist/adapters/google-vertex.d.mts +2 -2
  13. package/dist/adapters/google-vertex.d.ts +2 -2
  14. package/dist/adapters/hpc-ai.d.mts +2 -2
  15. package/dist/adapters/hpc-ai.d.ts +2 -2
  16. package/dist/adapters/inferx.d.mts +6 -0
  17. package/dist/adapters/inferx.d.ts +6 -0
  18. package/dist/adapters/inferx.js +7 -0
  19. package/dist/adapters/inferx.mjs +5 -0
  20. package/dist/adapters/llmgateway.d.mts +2 -2
  21. package/dist/adapters/llmgateway.d.ts +2 -2
  22. package/dist/adapters/openrouter.d.mts +2 -2
  23. package/dist/adapters/openrouter.d.ts +2 -2
  24. package/dist/adapters/vercel.d.mts +1 -1
  25. package/dist/adapters/vercel.d.ts +1 -1
  26. package/dist/adapters/vivgrid.d.mts +2 -2
  27. package/dist/adapters/vivgrid.d.ts +2 -2
  28. package/dist/adapters/wafer.ai.d.mts +2 -2
  29. package/dist/adapters/wafer.ai.d.ts +2 -2
  30. package/dist/adapters/zenmux.d.mts +2 -2
  31. package/dist/adapters/zenmux.d.ts +2 -2
  32. package/dist/index.d.mts +12 -9
  33. package/dist/index.d.ts +12 -9
  34. package/dist/index.js +1 -1
  35. package/dist/index.mjs +1 -1
  36. package/dist/providers/_manifest.js +1 -1
  37. package/dist/providers/ai-router.js +1 -0
  38. package/dist/providers/ambient.js +1 -1
  39. package/dist/providers/daoxe.js +1 -0
  40. package/dist/providers/deepinfra.js +1 -1
  41. package/dist/providers/google-vertex.js +1 -1
  42. package/dist/providers/hpc-ai.js +1 -1
  43. package/dist/providers/inferx.js +1 -0
  44. package/dist/providers/llmgateway.js +1 -1
  45. package/dist/providers/openrouter.js +1 -1
  46. package/dist/providers/vercel.js +1 -1
  47. package/dist/providers/vivgrid.js +1 -1
  48. package/dist/providers/wafer.ai.js +1 -1
  49. package/dist/providers/zenmux.js +1 -1
  50. package/package.json +31 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  Pricing data for AI models, typed and kept up to date daily from [models.dev](https://models.dev).
7
7
 
8
8
  <!-- STATS:START -->
9
- **151 providers · 5208 models · Updated 2026-07-11**
9
+ **154 providers · 5239 models · Updated 2026-07-13**
10
10
  <!-- STATS:END -->
11
11
 
12
12
  ## Installation
@@ -190,6 +190,7 @@ filterModels({
190
190
  | Morph | `morph` |
191
191
  | Sakana AI | `sakana` |
192
192
  | Deep Infra | `deepinfra` |
193
+ | DaoXE | `daoxe` |
193
194
  | Vertex (Anthropic) | `google-vertex-anthropic` |
194
195
  | v0 | `v0` |
195
196
  | Azure | `azure` |
@@ -221,6 +222,7 @@ filterModels({
221
222
  | Perplexity Agent | `perplexity-agent` |
222
223
  | SiliconFlow | `siliconflow` |
223
224
  | Umans AI Coding Plan | `umans-ai-coding-plan` |
225
+ | AI-ROUTER | `ai-router` |
224
226
  | IO.NET | `io-net` |
225
227
  | GMI Cloud | `gmicloud` |
226
228
  | Xiaomi Token Plan (China) | `xiaomi-token-plan-cn` |
@@ -236,6 +238,7 @@ filterModels({
236
238
  | Kilo Gateway | `kilo` |
237
239
  | LucidQuery | `lucidquery` |
238
240
  | Meganova | `meganova` |
241
+ | InferX | `inferx` |
239
242
  | Perplexity | `perplexity` |
240
243
  | Amazon Bedrock | `amazon-bedrock` |
241
244
  | Umans AI | `umans-ai` |
@@ -0,0 +1,6 @@
1
+ import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
+ export type ModelId="gpt-5.6-luna" | "gpt-5.6-terra" | "gpt-5.4" | "gpt-5.6-sol" | "gpt-5.5";
3
+ export type ModelName="GPT-5.6 Luna" | "GPT-5.6 Terra" | "GPT-5.4" | "GPT-5.6 Sol" | "GPT-5.5";
4
+ export declare function getModels():Model[];
5
+ export declare function getModel(id:ModelId):Model|undefined;
6
+ export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,6 @@
1
+ import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
+ export type ModelId="gpt-5.6-luna" | "gpt-5.6-terra" | "gpt-5.4" | "gpt-5.6-sol" | "gpt-5.5";
3
+ export type ModelName="GPT-5.6 Luna" | "GPT-5.6 Terra" | "GPT-5.4" | "GPT-5.6 Sol" | "GPT-5.5";
4
+ export declare function getModels():Model[];
5
+ export declare function getModel(id:ModelId):Model|undefined;
6
+ export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports,"__esModule",{value:true});
3
+ const{getModelsByProvider:_gm,getModel:_gmod,getPrice:_gp}=require("../index.js");
4
+ const pid="ai-router";
5
+ const getModels=()=>_gm(pid);exports.getModels=getModels;
6
+ const getModel=id=>_gmod(pid,id);exports.getModel=getModel;
7
+ const getPrice=(id,tokens)=>_gp(pid,id,tokens);exports.getPrice=getPrice;
@@ -0,0 +1,5 @@
1
+ import{getModelsByProvider as _gm,getModel as _gmod,getPrice as _gp}from"../index.mjs";
2
+ const pid="ai-router";
3
+ export const getModels=()=>_gm(pid);
4
+ export const getModel=id=>_gmod(pid,id);
5
+ export const getPrice=(id,tokens)=>_gp(pid,id,tokens);
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
- export type ModelId="moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2.6" | "zai-org/GLM-5.1-FP8";
3
- export type ModelName="Kimi K2.7 Code" | "Kimi K2.6" | "GLM 5.1";
2
+ export type ModelId="moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2.6" | "zai-org/GLM-5.1-FP8" | "zai-org/GLM-5.2-FP8";
3
+ export type ModelName="Kimi K2.7 Code" | "Kimi K2.6" | "GLM 5.1" | "GLM-5.2";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
- export type ModelId="moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2.6" | "zai-org/GLM-5.1-FP8";
3
- export type ModelName="Kimi K2.7 Code" | "Kimi K2.6" | "GLM 5.1";
2
+ export type ModelId="moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2.6" | "zai-org/GLM-5.1-FP8" | "zai-org/GLM-5.2-FP8";
3
+ export type ModelName="Kimi K2.7 Code" | "Kimi K2.6" | "GLM 5.1" | "GLM-5.2";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,6 @@
1
+ import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
+ export type ModelId="claude-haiku-4-5-20251001" | "grok-4.3" | "claude-opus-4-8" | "grok-4.5" | "kimi-k2.5" | "gpt-5.4" | "gemini-3.1-pro-preview" | "claude-sonnet-4-6" | "gpt-5.5";
3
+ export type ModelName="Claude Haiku 4.5" | "Grok 4.3" | "Claude Opus 4.8" | "Grok 4.5" | "Kimi K2.5" | "GPT-5.4" | "Gemini 3.1 Pro Preview" | "Claude Sonnet 4.6" | "GPT-5.5";
4
+ export declare function getModels():Model[];
5
+ export declare function getModel(id:ModelId):Model|undefined;
6
+ export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,6 @@
1
+ import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
+ export type ModelId="claude-haiku-4-5-20251001" | "grok-4.3" | "claude-opus-4-8" | "grok-4.5" | "kimi-k2.5" | "gpt-5.4" | "gemini-3.1-pro-preview" | "claude-sonnet-4-6" | "gpt-5.5";
3
+ export type ModelName="Claude Haiku 4.5" | "Grok 4.3" | "Claude Opus 4.8" | "Grok 4.5" | "Kimi K2.5" | "GPT-5.4" | "Gemini 3.1 Pro Preview" | "Claude Sonnet 4.6" | "GPT-5.5";
4
+ export declare function getModels():Model[];
5
+ export declare function getModel(id:ModelId):Model|undefined;
6
+ export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports,"__esModule",{value:true});
3
+ const{getModelsByProvider:_gm,getModel:_gmod,getPrice:_gp}=require("../index.js");
4
+ const pid="daoxe";
5
+ const getModels=()=>_gm(pid);exports.getModels=getModels;
6
+ const getModel=id=>_gmod(pid,id);exports.getModel=getModel;
7
+ const getPrice=(id,tokens)=>_gp(pid,id,tokens);exports.getPrice=getPrice;
@@ -0,0 +1,5 @@
1
+ import{getModelsByProvider as _gm,getModel as _gmod,getPrice as _gp}from"../index.mjs";
2
+ const pid="daoxe";
3
+ export const getModels=()=>_gm(pid);
4
+ export const getModel=id=>_gmod(pid,id);
5
+ export const getPrice=(id,tokens)=>_gp(pid,id,tokens);
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
- export type ModelId="gemini-2.5-pro-tts" | "claude-haiku-4-5@20251001" | "gemini-3.1-flash-lite" | "gemini-2.5-pro" | "gemini-2.5-flash-tts" | "gemini-2.5-flash" | "gemini-3.5-flash" | "claude-opus-4@20250514" | "claude-opus-4-1@20250805" | "gemini-embedding-001" | "claude-opus-4-5@20251101" | "claude-3-5-haiku@20241022" | "gemini-3.1-pro-preview-customtools" | "gemini-flash-lite-latest" | "claude-sonnet-4@20250514" | "gemini-2.5-flash-lite" | "claude-opus-4-7@default" | "gemini-3.1-pro-preview" | "claude-sonnet-4-5@20250929" | "claude-sonnet-5@default" | "gemini-3-flash-preview" | "claude-opus-4-6@default" | "gemini-flash-latest" | "claude-opus-4-8@default" | "claude-sonnet-4-6@default" | "gemini-3.1-flash-lite-preview" | "moonshotai/kimi-k2-thinking-maas" | "openai/gpt-oss-120b-maas" | "openai/gpt-oss-20b-maas" | "zai-org/glm-4.7-maas" | "zai-org/glm-5-maas" | "deepseek-ai/deepseek-v3.1-maas" | "deepseek-ai/deepseek-v3.2-maas" | "qwen/qwen3-235b-a22b-instruct-2507-maas" | "meta/llama-3.3-70b-instruct-maas" | "meta/llama-4-maverick-17b-128e-instruct-maas";
3
- export type ModelName="Gemini 2.5 Pro TTS" | "Claude Haiku 4.5" | "Gemini 3.1 Flash Lite" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash TTS" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Claude Opus 4" | "Claude Opus 4.1" | "Gemini Embedding 001" | "Claude Opus 4.5" | "Claude Haiku 3.5" | "Gemini 3.1 Pro Preview Custom Tools" | "Gemini Flash-Lite Latest" | "Claude Sonnet 4" | "Gemini 2.5 Flash-Lite" | "Claude Opus 4.7" | "Gemini 3.1 Pro Preview" | "Claude Sonnet 4.5" | "Claude Sonnet 5" | "Gemini 3 Flash Preview" | "Claude Opus 4.6" | "Gemini Flash Latest" | "Claude Opus 4.8" | "Claude Sonnet 4.6" | "Gemini 3.1 Flash Lite Preview" | "Kimi K2 Thinking" | "GPT OSS 120B" | "GPT OSS 20B" | "GLM-4.7" | "GLM-5" | "DeepSeek V3.1" | "DeepSeek V3.2" | "Qwen3 235B A22B Instruct" | "Llama 3.3 70B Instruct" | "Llama 4 Maverick 17B 128E Instruct";
2
+ export type ModelId="gemini-2.5-pro-tts" | "claude-haiku-4-5@20251001" | "gemini-3.1-flash-lite" | "gemini-3.1-flash-image" | "gemini-2.5-pro" | "gemini-2.5-flash-tts" | "gemini-2.5-flash" | "gemini-3.5-flash" | "claude-opus-4@20250514" | "claude-opus-4-1@20250805" | "gemini-embedding-001" | "claude-opus-4-5@20251101" | "claude-3-5-haiku@20241022" | "gemini-3.1-pro-preview-customtools" | "gemini-flash-lite-latest" | "gemini-2.5-flash-image" | "claude-sonnet-4@20250514" | "gemini-2.5-flash-lite" | "claude-opus-4-7@default" | "gemini-3.1-pro-preview" | "claude-sonnet-4-5@20250929" | "claude-sonnet-5@default" | "gemini-3-flash-preview" | "claude-opus-4-6@default" | "gemini-flash-latest" | "claude-opus-4-8@default" | "gemini-3-pro-image" | "claude-sonnet-4-6@default" | "gemini-3.1-flash-lite-preview" | "moonshotai/kimi-k2-thinking-maas" | "openai/gpt-oss-120b-maas" | "openai/gpt-oss-20b-maas" | "zai-org/glm-4.7-maas" | "zai-org/glm-5-maas" | "deepseek-ai/deepseek-v3.1-maas" | "deepseek-ai/deepseek-v3.2-maas" | "qwen/qwen3-235b-a22b-instruct-2507-maas" | "meta/llama-3.3-70b-instruct-maas" | "meta/llama-4-maverick-17b-128e-instruct-maas";
3
+ export type ModelName="Gemini 2.5 Pro TTS" | "Claude Haiku 4.5" | "Gemini 3.1 Flash Lite" | "Nano Banana 2" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash TTS" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Claude Opus 4" | "Claude Opus 4.1" | "Gemini Embedding 001" | "Claude Opus 4.5" | "Claude Haiku 3.5" | "Gemini 3.1 Pro Preview Custom Tools" | "Gemini Flash-Lite Latest" | "Nano Banana" | "Claude Sonnet 4" | "Gemini 2.5 Flash-Lite" | "Claude Opus 4.7" | "Gemini 3.1 Pro Preview" | "Claude Sonnet 4.5" | "Claude Sonnet 5" | "Gemini 3 Flash Preview" | "Claude Opus 4.6" | "Gemini Flash Latest" | "Claude Opus 4.8" | "Nano Banana Pro" | "Claude Sonnet 4.6" | "Gemini 3.1 Flash Lite Preview" | "Kimi K2 Thinking" | "GPT OSS 120B" | "GPT OSS 20B" | "GLM-4.7" | "GLM-5" | "DeepSeek V3.1" | "DeepSeek V3.2" | "Qwen3 235B A22B Instruct" | "Llama 3.3 70B Instruct" | "Llama 4 Maverick 17B 128E Instruct";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
- export type ModelId="gemini-2.5-pro-tts" | "claude-haiku-4-5@20251001" | "gemini-3.1-flash-lite" | "gemini-2.5-pro" | "gemini-2.5-flash-tts" | "gemini-2.5-flash" | "gemini-3.5-flash" | "claude-opus-4@20250514" | "claude-opus-4-1@20250805" | "gemini-embedding-001" | "claude-opus-4-5@20251101" | "claude-3-5-haiku@20241022" | "gemini-3.1-pro-preview-customtools" | "gemini-flash-lite-latest" | "claude-sonnet-4@20250514" | "gemini-2.5-flash-lite" | "claude-opus-4-7@default" | "gemini-3.1-pro-preview" | "claude-sonnet-4-5@20250929" | "claude-sonnet-5@default" | "gemini-3-flash-preview" | "claude-opus-4-6@default" | "gemini-flash-latest" | "claude-opus-4-8@default" | "claude-sonnet-4-6@default" | "gemini-3.1-flash-lite-preview" | "moonshotai/kimi-k2-thinking-maas" | "openai/gpt-oss-120b-maas" | "openai/gpt-oss-20b-maas" | "zai-org/glm-4.7-maas" | "zai-org/glm-5-maas" | "deepseek-ai/deepseek-v3.1-maas" | "deepseek-ai/deepseek-v3.2-maas" | "qwen/qwen3-235b-a22b-instruct-2507-maas" | "meta/llama-3.3-70b-instruct-maas" | "meta/llama-4-maverick-17b-128e-instruct-maas";
3
- export type ModelName="Gemini 2.5 Pro TTS" | "Claude Haiku 4.5" | "Gemini 3.1 Flash Lite" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash TTS" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Claude Opus 4" | "Claude Opus 4.1" | "Gemini Embedding 001" | "Claude Opus 4.5" | "Claude Haiku 3.5" | "Gemini 3.1 Pro Preview Custom Tools" | "Gemini Flash-Lite Latest" | "Claude Sonnet 4" | "Gemini 2.5 Flash-Lite" | "Claude Opus 4.7" | "Gemini 3.1 Pro Preview" | "Claude Sonnet 4.5" | "Claude Sonnet 5" | "Gemini 3 Flash Preview" | "Claude Opus 4.6" | "Gemini Flash Latest" | "Claude Opus 4.8" | "Claude Sonnet 4.6" | "Gemini 3.1 Flash Lite Preview" | "Kimi K2 Thinking" | "GPT OSS 120B" | "GPT OSS 20B" | "GLM-4.7" | "GLM-5" | "DeepSeek V3.1" | "DeepSeek V3.2" | "Qwen3 235B A22B Instruct" | "Llama 3.3 70B Instruct" | "Llama 4 Maverick 17B 128E Instruct";
2
+ export type ModelId="gemini-2.5-pro-tts" | "claude-haiku-4-5@20251001" | "gemini-3.1-flash-lite" | "gemini-3.1-flash-image" | "gemini-2.5-pro" | "gemini-2.5-flash-tts" | "gemini-2.5-flash" | "gemini-3.5-flash" | "claude-opus-4@20250514" | "claude-opus-4-1@20250805" | "gemini-embedding-001" | "claude-opus-4-5@20251101" | "claude-3-5-haiku@20241022" | "gemini-3.1-pro-preview-customtools" | "gemini-flash-lite-latest" | "gemini-2.5-flash-image" | "claude-sonnet-4@20250514" | "gemini-2.5-flash-lite" | "claude-opus-4-7@default" | "gemini-3.1-pro-preview" | "claude-sonnet-4-5@20250929" | "claude-sonnet-5@default" | "gemini-3-flash-preview" | "claude-opus-4-6@default" | "gemini-flash-latest" | "claude-opus-4-8@default" | "gemini-3-pro-image" | "claude-sonnet-4-6@default" | "gemini-3.1-flash-lite-preview" | "moonshotai/kimi-k2-thinking-maas" | "openai/gpt-oss-120b-maas" | "openai/gpt-oss-20b-maas" | "zai-org/glm-4.7-maas" | "zai-org/glm-5-maas" | "deepseek-ai/deepseek-v3.1-maas" | "deepseek-ai/deepseek-v3.2-maas" | "qwen/qwen3-235b-a22b-instruct-2507-maas" | "meta/llama-3.3-70b-instruct-maas" | "meta/llama-4-maverick-17b-128e-instruct-maas";
3
+ export type ModelName="Gemini 2.5 Pro TTS" | "Claude Haiku 4.5" | "Gemini 3.1 Flash Lite" | "Nano Banana 2" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash TTS" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Claude Opus 4" | "Claude Opus 4.1" | "Gemini Embedding 001" | "Claude Opus 4.5" | "Claude Haiku 3.5" | "Gemini 3.1 Pro Preview Custom Tools" | "Gemini Flash-Lite Latest" | "Nano Banana" | "Claude Sonnet 4" | "Gemini 2.5 Flash-Lite" | "Claude Opus 4.7" | "Gemini 3.1 Pro Preview" | "Claude Sonnet 4.5" | "Claude Sonnet 5" | "Gemini 3 Flash Preview" | "Claude Opus 4.6" | "Gemini Flash Latest" | "Claude Opus 4.8" | "Nano Banana Pro" | "Claude Sonnet 4.6" | "Gemini 3.1 Flash Lite Preview" | "Kimi K2 Thinking" | "GPT OSS 120B" | "GPT OSS 20B" | "GLM-4.7" | "GLM-5" | "DeepSeek V3.1" | "DeepSeek V3.2" | "Qwen3 235B A22B Instruct" | "Llama 3.3 70B Instruct" | "Llama 4 Maverick 17B 128E Instruct";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
- export type ModelId="moonshotai/kimi-k2.5" | "zai-org/glm-5.1" | "minimax/minimax-m2.5";
3
- export type ModelName="Kimi K2.5" | "GLM 5.1" | "MiniMax M2.5";
2
+ export type ModelId="moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2.5" | "openai/gpt-5.5" | "anthropic/claude-opus-4.7" | "zai-org/glm-5.1" | "zai-org/glm-5.2" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v4-pro" | "minimax/minimax-m2.5";
3
+ export type ModelName="Kimi K2.7 Code" | "Kimi K2.5" | "GPT-5.5" | "Claude Opus 4.7" | "GLM 5.1" | "GLM-5.2" | "DeepSeek V4 Flash" | "DeepSeek V4 Pro" | "MiniMax-M2.5";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
- export type ModelId="moonshotai/kimi-k2.5" | "zai-org/glm-5.1" | "minimax/minimax-m2.5";
3
- export type ModelName="Kimi K2.5" | "GLM 5.1" | "MiniMax M2.5";
2
+ export type ModelId="moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2.5" | "openai/gpt-5.5" | "anthropic/claude-opus-4.7" | "zai-org/glm-5.1" | "zai-org/glm-5.2" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v4-pro" | "minimax/minimax-m2.5";
3
+ export type ModelName="Kimi K2.7 Code" | "Kimi K2.5" | "GPT-5.5" | "Claude Opus 4.7" | "GLM 5.1" | "GLM-5.2" | "DeepSeek V4 Flash" | "DeepSeek V4 Pro" | "MiniMax-M2.5";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,6 @@
1
+ import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
+ export type ModelId="google/gemma-4-31b-it-fp8" | "qwen/qwen3-coder-next-fp8-1m" | "qwen/qwen3.5-122b-a10b-nvfp4" | "qwen/qwen3.6-35b-a3b-fp8" | "qwen/qwen3-coder-next-fp8" | "qwen/qwen3.6-27b-fp8";
3
+ export type ModelName="Gemma 4 31B IT FP8" | "Qwen3 Coder Next FP8 1M" | "Qwen3.5 122B A10B NVFP4" | "Qwen3.6 35B A3B FP8" | "Qwen3 Coder Next FP8" | "Qwen3.6 27B FP8";
4
+ export declare function getModels():Model[];
5
+ export declare function getModel(id:ModelId):Model|undefined;
6
+ export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,6 @@
1
+ import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
+ export type ModelId="google/gemma-4-31b-it-fp8" | "qwen/qwen3-coder-next-fp8-1m" | "qwen/qwen3.5-122b-a10b-nvfp4" | "qwen/qwen3.6-35b-a3b-fp8" | "qwen/qwen3-coder-next-fp8" | "qwen/qwen3.6-27b-fp8";
3
+ export type ModelName="Gemma 4 31B IT FP8" | "Qwen3 Coder Next FP8 1M" | "Qwen3.5 122B A10B NVFP4" | "Qwen3.6 35B A3B FP8" | "Qwen3 Coder Next FP8" | "Qwen3.6 27B FP8";
4
+ export declare function getModels():Model[];
5
+ export declare function getModel(id:ModelId):Model|undefined;
6
+ export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports,"__esModule",{value:true});
3
+ const{getModelsByProvider:_gm,getModel:_gmod,getPrice:_gp}=require("../index.js");
4
+ const pid="inferx";
5
+ const getModels=()=>_gm(pid);exports.getModels=getModels;
6
+ const getModel=id=>_gmod(pid,id);exports.getModel=getModel;
7
+ const getPrice=(id,tokens)=>_gp(pid,id,tokens);exports.getPrice=getPrice;
@@ -0,0 +1,5 @@
1
+ import{getModelsByProvider as _gm,getModel as _gmod,getPrice as _gp}from"../index.mjs";
2
+ const pid="inferx";
3
+ export const getModels=()=>_gm(pid);
4
+ export const getModel=id=>_gmod(pid,id);
5
+ export const getPrice=(id,tokens)=>_gp(pid,id,tokens);
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
- export type ModelId="qwen-coder-plus" | "mistral-large-latest" | "qwen3-vl-235b-a22b-thinking" | "devstral-small-2507" | "qwen3-vl-30b-a3b-thinking" | "deepseek-v4-flash" | "qwen3-coder-plus" | "minimax-m2.7-highspeed" | "qwen-plus" | "o3" | "nemotron-3-ultra-550b" | "minimax-m2.5" | "grok-4-20-beta-0309-non-reasoning" | "glm-4.7" | "gemini-3.1-flash-lite" | "qwen3-235b-a22b-instruct-2507" | "llama-3-70b-instruct" | "qwen3-coder-30b-a3b-instruct" | "seed-1-8-251228" | "kimi-k2" | "llama-3.1-70b-instruct" | "gpt-5.2-pro" | "minimax-m2.1" | "qwen3-32b" | "pixtral-large-latest" | "glm-4-32b-0414-128k" | "seed-1-6-flash-250715" | "qwen3-next-80b-a3b-instruct" | "qwen3-vl-8b-instruct" | "gpt-4o-mini-search-preview" | "glm-4.5v" | "qwen3.7-plus" | "gemini-2.5-pro" | "gpt-5" | "claude-haiku-4-5-20251001" | "qwen3.6-35b-a3b" | "gpt-3.5-turbo" | "seed-1-6-250615" | "qwen3.7-max" | "glm-4.5" | "gpt-5-pro" | "gemini-2.5-flash" | "gpt-4o" | "ministral-8b-2512" | "gpt-4" | "o4-mini" | "qwen3-max" | "mistral-small-2506" | "gemini-3.5-flash" | "qwen-plus-latest" | "muse-spark-1.1" | "claude-opus-4-1-20250805" | "gemma-4-31b-it" | "grok-4-3" | "llama-4-scout-17b-instruct" | "llama-3.3-70b-instruct" | "sonar-reasoning-pro" | "grok-4-20-non-reasoning" | "glm-4.7-flashx" | "qwen3-30b-a3b-instruct-2507" | "kimi-k2.7-code" | "glm-5.1" | "deepseek-v4-pro" | "qwen3-next-80b-a3b-thinking" | "glm-4.6" | "qwen35-397b-a17b" | "qwen3-235b-a22b-thinking-2507" | "kimi-k2-thinking" | "claude-sonnet-4-5" | "gemini-pro-latest" | "glm-4.5-x" | "claude-opus-4-7" | "claude-sonnet-5" | "grok-4-1-fast-non-reasoning" | "gpt-5.4-nano" | "grok-4-20-beta-0309-reasoning" | "glm-5.2" | "qwen3.6-flash" | "glm-4.5-airx" | "gpt-5-chat-latest" | "ministral-3b-2512" | "qwen2-5-vl-72b-instruct" | "glm-4.6v-flashx" | "minimax-m3" | "qwen3-vl-plus" | "claude-opus-4-5-20251101" | "gpt-5.1-codex" | "minimax-m2" | "claude-opus-4-8" | "gpt-5.3-chat-latest" | "grok-4-5" | "claude-3-opus" | "qwen-omni-turbo" | "o3-mini" | "gpt-5.2" | "gpt-5.3-codex" | "minimax-m2.7" | "qwen-flash" | "qwen3-4b-fp8" | "gemini-2.5-flash-lite" | "qwen2-5-vl-32b-instruct" | "gpt-5.6-luna" | "gpt-5.1-codex-mini" | "kimi-k2.5" | "seed-1-6-250915" | "gpt-5.6-terra" | "gpt-5.2-chat-latest" | "minimax-text-01" | "gpt-4.1-nano" | "gpt-oss-120b" | "qwen-vl-max" | "llama-3-8b-instruct" | "claude-fable-5" | "sonar" | "qwen-max" | "o1" | "minimax-m2.5-highspeed" | "deepseek-v3.1" | "ministral-14b-2512" | "sonar-pro" | "glm-4.6v" | "claude-haiku-4-5" | "claude-haiku-4-5-free" | "minimax-m2.1-lightning" | "gpt-5.4" | "mimo-v2.5" | "mimo-v2-omni" | "gpt-5.4-mini" | "kimi-k2.6" | "gpt-4.1" | "gemini-3.1-pro-preview" | "claude-opus-4-6" | "qwen3-coder-next" | "llama-4-maverick-17b-instruct" | "qwen3-coder-480b-a35b-instruct" | "devstral-2512" | "claude-sonnet-4-5-20250929" | "gemma-4-26b-a4b-it" | "qwen3.5-9b" | "qwq-plus" | "grok-4-1-fast-reasoning" | "qwen3-vl-30b-a3b-instruct" | "qwen3-vl-flash" | "gpt-5-mini" | "gpt-4.1-mini" | "llama-3.1-nemotron-ultra-253b" | "gpt-4-turbo" | "qwen3-coder-flash" | "grok-build-0-1" | "gpt-5-nano" | "grok-4" | "llama-3.2-11b-instruct" | "gpt-5.4-pro" | "glm-4.5-air" | "kimi-k2.7-code-highspeed" | "claude-sonnet-4-6" | "gemini-3-flash-preview" | "glm-4.7-flash" | "qwen3-vl-235b-a22b-instruct" | "mimo-v2-pro" | "gpt-4o-search-preview" | "llama-3.2-3b-instruct" | "mimo-v2.5-pro" | "gpt-5.5-pro" | "gpt-4o-mini" | "gpt-oss-20b" | "glm-5" | "qwen-max-latest" | "mistral-large-2512" | "qwen-turbo" | "custom" | "gpt-5.6-sol" | "grok-4-20-reasoning" | "deepseek-v3.2" | "qwen3.6-max-preview" | "auto" | "codestral-2508" | "qwen3-235b-a22b-fp8" | "fugu-ultra" | "gpt-5.2-codex" | "qwen-vl-plus" | "qwen3.6-plus" | "gpt-5.1" | "gpt-5.5";
3
- export type ModelName="Qwen Coder Plus" | "Mistral Large (latest)" | "Qwen3 VL 235B A22B Thinking" | "Devstral Small" | "Qwen3 VL 30B A3B Thinking" | "DeepSeek V4 Flash" | "Qwen3 Coder Plus" | "MiniMax-M2.7-highspeed" | "Qwen Plus" | "o3" | "Nemotron 3 Ultra 550B A55B" | "MiniMax-M2.5" | "Grok 4.20 (Non-Reasoning)" | "GLM-4.7" | "Gemini 3.1 Flash Lite" | "Qwen3 235B A22B Instruct (2507)" | "Llama 3 70B Instruct" | "Qwen3-Coder 30B-A3B Instruct" | "Seed 1.8 (251228)" | "Kimi K2" | "Llama 3.1 70B Instruct" | "GPT-5.2 Pro" | "MiniMax-M2.1" | "Qwen3 32B" | "Pixtral Large (latest)" | "GLM-4 32B (0414-128k)" | "Seed 1.6 Flash (250715)" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "GPT-4o Mini Search Preview" | "GLM-4.5V" | "Qwen3.7 Plus" | "Gemini 2.5 Pro" | "GPT-5" | "Claude Haiku 4.5" | "Qwen3.6 35B-A3B" | "GPT-3.5-turbo" | "Seed 1.6 (250615)" | "Qwen3.7 Max" | "GLM-4.5" | "GPT-5 Pro" | "Gemini 2.5 Flash" | "GPT-4o" | "Ministral 8B" | "GPT-4" | "o4-mini" | "Qwen3 Max" | "Mistral Small 3.2" | "Gemini 3.5 Flash" | "Qwen Plus Latest" | "Muse Spark 1.1" | "Claude Opus 4.1" | "Gemma 4 31B IT" | "Grok 4.3" | "Llama 4 Scout 17B Instruct" | "Llama-3.3-70B-Instruct" | "Sonar Reasoning Pro" | "GLM-4.7-FlashX" | "Qwen3 30B A3B Instruct (2507)" | "Kimi K2.7 Code" | "GLM-5.1" | "DeepSeek V4 Pro" | "Qwen3-Next 80B-A3B (Thinking)" | "GLM-4.6" | "Qwen3.5 397B-A17B" | "Qwen3 235B A22B Thinking (2507)" | "Kimi K2 Thinking" | "Claude Sonnet 4.5 (latest)" | "Gemini Pro Latest" | "GLM-4.5 X" | "Claude Opus 4.7" | "Claude Sonnet 5" | "Grok 4.1 Fast Non-Reasoning" | "GPT-5.4 nano" | "Grok 4.20 (Reasoning)" | "GLM-5.2" | "Qwen3.6 Flash" | "GLM-4.5 AirX" | "GPT-5 Chat (latest)" | "Ministral 3B" | "Qwen2.5-VL 72B Instruct" | "GLM-4.6V FlashX" | "MiniMax-M3" | "Qwen3-VL Plus" | "Claude Opus 4.5" | "GPT-5.1 Codex" | "MiniMax-M2" | "Claude Opus 4.8" | "GPT-5.3 Chat (latest)" | "Grok 4.5" | "Claude 3 Opus" | "Qwen-Omni Turbo" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "MiniMax-M2.7" | "Qwen Flash" | "Qwen3 4B FP8" | "Gemini 2.5 Flash-Lite" | "Qwen2.5 VL 32B Instruct" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "Kimi K2.5" | "Seed 1.6 (250915)" | "GPT-5.6 Terra" | "GPT-5.2 Chat" | "MiniMax Text 01" | "GPT-4.1 nano" | "GPT OSS 120B" | "Qwen-VL Max" | "Llama 3 8B Instruct" | "Claude Fable 5" | "Sonar" | "Qwen Max" | "o1" | "MiniMax-M2.5-highspeed" | "DeepSeek V3.1" | "Ministral 14B" | "Sonar Pro" | "GLM-4.6V" | "Claude Haiku 4.5 (latest)" | "MiniMax M2.1 Lightning" | "GPT-5.4" | "MiMo-V2.5" | "MiMo-V2-Omni" | "GPT-5.4 mini" | "Kimi K2.6" | "GPT-4.1" | "Gemini 3.1 Pro Preview" | "Claude Opus 4.6" | "Qwen3 Coder Next" | "Llama 4 Maverick 17B Instruct" | "Qwen3-Coder 480B-A35B Instruct" | "Devstral 2" | "Claude Sonnet 4.5" | "Gemma 4 26B A4B IT" | "Qwen3.5 9B" | "QwQ Plus" | "Grok 4.1 Fast Reasoning" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 VL Flash" | "GPT-5 Mini" | "GPT-4.1 mini" | "Llama 3.1 Nemotron Ultra 253B" | "GPT-4 Turbo" | "Qwen3 Coder Flash" | "Grok Build 0.1" | "GPT-5 Nano" | "Grok 4" | "Llama 3.2 11B Instruct" | "GPT-5.4 Pro" | "GLM-4.5-Air" | "Kimi K2.7 Code Highspeed" | "Claude Sonnet 4.6" | "Gemini 3 Flash Preview" | "GLM-4.7-Flash" | "Qwen3 VL 235B A22B Instruct" | "MiMo-V2-Pro" | "GPT-4o Search Preview" | "Llama 3.2 3B Instruct" | "MiMo-V2.5-Pro" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GLM-5" | "Qwen Max Latest" | "Mistral Large 3" | "Qwen Turbo" | "Custom Model" | "GPT-5.6 Sol" | "DeepSeek V3.2" | "Qwen3.6 Max Preview" | "Auto Route" | "Codestral" | "Qwen3 235B A22B FP8" | "Fugu Ultra" | "GPT-5.2 Codex" | "Qwen-VL Plus" | "Qwen3.6 Plus" | "GPT-5.1" | "GPT-5.5";
2
+ export type ModelId="qwen-coder-plus" | "mistral-large-latest" | "qwen3-vl-235b-a22b-thinking" | "devstral-small-2507" | "qwen3-vl-30b-a3b-thinking" | "deepseek-v4-flash" | "qwen3-coder-plus" | "minimax-m2.7-highspeed" | "qwen-plus" | "o3" | "nemotron-3-ultra-550b" | "minimax-m2.5" | "grok-4-20-beta-0309-non-reasoning" | "glm-4.7" | "gemini-3.1-flash-lite" | "qwen3-235b-a22b-instruct-2507" | "llama-3-70b-instruct" | "qwen3-coder-30b-a3b-instruct" | "seed-1-8-251228" | "kimi-k2" | "llama-3.1-70b-instruct" | "gpt-5.2-pro" | "minimax-m2.1" | "qwen3-32b" | "pixtral-large-latest" | "glm-4-32b-0414-128k" | "seed-1-6-flash-250715" | "qwen3-next-80b-a3b-instruct" | "qwen3-vl-8b-instruct" | "gpt-4o-mini-search-preview" | "glm-4.5v" | "qwen3.7-plus" | "gemini-2.5-pro" | "gpt-5" | "claude-haiku-4-5-20251001" | "qwen3.6-35b-a3b" | "gpt-3.5-turbo" | "seed-1-6-250615" | "qwen3.7-max" | "glm-4.5" | "gpt-5-pro" | "gemini-2.5-flash" | "gpt-4o" | "ministral-8b-2512" | "gpt-4" | "o4-mini" | "qwen3-max" | "mistral-small-2506" | "gemini-3.5-flash" | "qwen-plus-latest" | "muse-spark-1.1" | "claude-opus-4-1-20250805" | "gemma-4-31b-it" | "grok-4-3" | "llama-4-scout-17b-instruct" | "llama-3.3-70b-instruct" | "sonar-reasoning-pro" | "grok-4-20-non-reasoning" | "glm-4.7-flashx" | "qwen3-30b-a3b-instruct-2507" | "kimi-k2.7-code" | "glm-5.1" | "deepseek-v4-pro" | "qwen3-next-80b-a3b-thinking" | "glm-4.6" | "qwen35-397b-a17b" | "qwen3-235b-a22b-thinking-2507" | "kimi-k2-thinking" | "claude-sonnet-4-5" | "gemini-pro-latest" | "glm-4.5-x" | "claude-opus-4-7" | "claude-sonnet-5" | "grok-4-1-fast-non-reasoning" | "gpt-5.4-nano" | "grok-4-20-beta-0309-reasoning" | "glm-5.2" | "qwen3.6-flash" | "glm-4.5-airx" | "gpt-5-chat-latest" | "ministral-3b-2512" | "qwen2-5-vl-72b-instruct" | "glm-4.6v-flashx" | "minimax-m3" | "qwen3-vl-plus" | "claude-opus-4-5-20251101" | "gpt-5.1-codex" | "minimax-m2" | "claude-opus-4-8" | "gpt-5.3-chat-latest" | "grok-4-5" | "claude-3-opus" | "qwen-omni-turbo" | "o3-mini" | "gpt-5.2" | "gpt-5.3-codex" | "minimax-m2.7" | "qwen-flash" | "qwen3-4b-fp8" | "gemini-2.5-flash-lite" | "qwen2-5-vl-32b-instruct" | "gpt-5.6-luna" | "gpt-5.1-codex-mini" | "kimi-k2.5" | "seed-1-6-250915" | "gpt-5.6-terra" | "gpt-5.2-chat-latest" | "minimax-text-01" | "gpt-4.1-nano" | "gpt-oss-120b" | "qwen-vl-max" | "llama-3-8b-instruct" | "claude-fable-5" | "sonar" | "qwen-max" | "o1" | "minimax-m2.5-highspeed" | "deepseek-v3.1" | "ministral-14b-2512" | "sonar-pro" | "glm-4.6v" | "claude-haiku-4-5" | "claude-haiku-4-5-free" | "minimax-m2.1-lightning" | "gpt-5.4" | "mimo-v2.5" | "gpt-5.4-mini" | "kimi-k2.6" | "gpt-4.1" | "gemini-3.1-pro-preview" | "claude-opus-4-6" | "qwen3-coder-next" | "llama-4-maverick-17b-instruct" | "qwen3-coder-480b-a35b-instruct" | "devstral-2512" | "claude-sonnet-4-5-20250929" | "gemma-4-26b-a4b-it" | "qwen3.5-9b" | "qwq-plus" | "grok-4-1-fast-reasoning" | "qwen3-vl-30b-a3b-instruct" | "qwen3-vl-flash" | "gpt-5-mini" | "gpt-4.1-mini" | "llama-3.1-nemotron-ultra-253b" | "gpt-4-turbo" | "qwen3-coder-flash" | "grok-build-0-1" | "gpt-5-nano" | "grok-4" | "llama-3.2-11b-instruct" | "gpt-5.4-pro" | "glm-4.5-air" | "kimi-k2.7-code-highspeed" | "claude-sonnet-4-6" | "gemini-3-flash-preview" | "glm-4.7-flash" | "qwen3-vl-235b-a22b-instruct" | "gpt-4o-search-preview" | "llama-3.2-3b-instruct" | "mimo-v2.5-pro" | "gpt-5.5-pro" | "gpt-4o-mini" | "gpt-oss-20b" | "glm-5" | "qwen-max-latest" | "mistral-large-2512" | "qwen-turbo" | "custom" | "gpt-5.6-sol" | "grok-4-20-reasoning" | "deepseek-v3.2" | "qwen3.6-max-preview" | "auto" | "codestral-2508" | "qwen3-235b-a22b-fp8" | "fugu-ultra" | "gpt-5.2-codex" | "qwen-vl-plus" | "qwen3.6-plus" | "gpt-5.1" | "gpt-5.5";
3
+ export type ModelName="Qwen Coder Plus" | "Mistral Large (latest)" | "Qwen3 VL 235B A22B Thinking" | "Devstral Small" | "Qwen3 VL 30B A3B Thinking" | "DeepSeek V4 Flash" | "Qwen3 Coder Plus" | "MiniMax-M2.7-highspeed" | "Qwen Plus" | "o3" | "Nemotron 3 Ultra 550B A55B" | "MiniMax-M2.5" | "Grok 4.20 (Non-Reasoning)" | "GLM-4.7" | "Gemini 3.1 Flash Lite" | "Qwen3 235B A22B Instruct (2507)" | "Llama 3 70B Instruct" | "Qwen3-Coder 30B-A3B Instruct" | "Seed 1.8 (251228)" | "Kimi K2" | "Llama 3.1 70B Instruct" | "GPT-5.2 Pro" | "MiniMax-M2.1" | "Qwen3 32B" | "Pixtral Large (latest)" | "GLM-4 32B (0414-128k)" | "Seed 1.6 Flash (250715)" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "GPT-4o Mini Search Preview" | "GLM-4.5V" | "Qwen3.7 Plus" | "Gemini 2.5 Pro" | "GPT-5" | "Claude Haiku 4.5" | "Qwen3.6 35B-A3B" | "GPT-3.5-turbo" | "Seed 1.6 (250615)" | "Qwen3.7 Max" | "GLM-4.5" | "GPT-5 Pro" | "Gemini 2.5 Flash" | "GPT-4o" | "Ministral 8B" | "GPT-4" | "o4-mini" | "Qwen3 Max" | "Mistral Small 3.2" | "Gemini 3.5 Flash" | "Qwen Plus Latest" | "Muse Spark 1.1" | "Claude Opus 4.1" | "Gemma 4 31B IT" | "Grok 4.3" | "Llama 4 Scout 17B Instruct" | "Llama-3.3-70B-Instruct" | "Sonar Reasoning Pro" | "GLM-4.7-FlashX" | "Qwen3 30B A3B Instruct (2507)" | "Kimi K2.7 Code" | "GLM-5.1" | "DeepSeek V4 Pro" | "Qwen3-Next 80B-A3B (Thinking)" | "GLM-4.6" | "Qwen3.5 397B-A17B" | "Qwen3 235B A22B Thinking (2507)" | "Kimi K2 Thinking" | "Claude Sonnet 4.5 (latest)" | "Gemini Pro Latest" | "GLM-4.5 X" | "Claude Opus 4.7" | "Claude Sonnet 5" | "Grok 4.1 Fast Non-Reasoning" | "GPT-5.4 nano" | "Grok 4.20 (Reasoning)" | "GLM-5.2" | "Qwen3.6 Flash" | "GLM-4.5 AirX" | "GPT-5 Chat (latest)" | "Ministral 3B" | "Qwen2.5-VL 72B Instruct" | "GLM-4.6V FlashX" | "MiniMax-M3" | "Qwen3-VL Plus" | "Claude Opus 4.5" | "GPT-5.1 Codex" | "MiniMax-M2" | "Claude Opus 4.8" | "GPT-5.3 Chat (latest)" | "Grok 4.5" | "Claude 3 Opus" | "Qwen-Omni Turbo" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "MiniMax-M2.7" | "Qwen Flash" | "Qwen3 4B FP8" | "Gemini 2.5 Flash-Lite" | "Qwen2.5 VL 32B Instruct" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "Kimi K2.5" | "Seed 1.6 (250915)" | "GPT-5.6 Terra" | "GPT-5.2 Chat" | "MiniMax Text 01" | "GPT-4.1 nano" | "GPT OSS 120B" | "Qwen-VL Max" | "Llama 3 8B Instruct" | "Claude Fable 5" | "Sonar" | "Qwen Max" | "o1" | "MiniMax-M2.5-highspeed" | "DeepSeek V3.1" | "Ministral 14B" | "Sonar Pro" | "GLM-4.6V" | "Claude Haiku 4.5 (latest)" | "MiniMax M2.1 Lightning" | "GPT-5.4" | "MiMo-V2.5" | "GPT-5.4 mini" | "Kimi K2.6" | "GPT-4.1" | "Gemini 3.1 Pro Preview" | "Claude Opus 4.6" | "Qwen3 Coder Next" | "Llama 4 Maverick 17B Instruct" | "Qwen3-Coder 480B-A35B Instruct" | "Devstral 2" | "Claude Sonnet 4.5" | "Gemma 4 26B A4B IT" | "Qwen3.5 9B" | "QwQ Plus" | "Grok 4.1 Fast Reasoning" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 VL Flash" | "GPT-5 Mini" | "GPT-4.1 mini" | "Llama 3.1 Nemotron Ultra 253B" | "GPT-4 Turbo" | "Qwen3 Coder Flash" | "Grok Build 0.1" | "GPT-5 Nano" | "Grok 4" | "Llama 3.2 11B Instruct" | "GPT-5.4 Pro" | "GLM-4.5-Air" | "Kimi K2.7 Code Highspeed" | "Claude Sonnet 4.6" | "Gemini 3 Flash Preview" | "GLM-4.7-Flash" | "Qwen3 VL 235B A22B Instruct" | "GPT-4o Search Preview" | "Llama 3.2 3B Instruct" | "MiMo-V2.5-Pro" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GLM-5" | "Qwen Max Latest" | "Mistral Large 3" | "Qwen Turbo" | "Custom Model" | "GPT-5.6 Sol" | "DeepSeek V3.2" | "Qwen3.6 Max Preview" | "Auto Route" | "Codestral" | "Qwen3 235B A22B FP8" | "Fugu Ultra" | "GPT-5.2 Codex" | "Qwen-VL Plus" | "Qwen3.6 Plus" | "GPT-5.1" | "GPT-5.5";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
- export type ModelId="qwen-coder-plus" | "mistral-large-latest" | "qwen3-vl-235b-a22b-thinking" | "devstral-small-2507" | "qwen3-vl-30b-a3b-thinking" | "deepseek-v4-flash" | "qwen3-coder-plus" | "minimax-m2.7-highspeed" | "qwen-plus" | "o3" | "nemotron-3-ultra-550b" | "minimax-m2.5" | "grok-4-20-beta-0309-non-reasoning" | "glm-4.7" | "gemini-3.1-flash-lite" | "qwen3-235b-a22b-instruct-2507" | "llama-3-70b-instruct" | "qwen3-coder-30b-a3b-instruct" | "seed-1-8-251228" | "kimi-k2" | "llama-3.1-70b-instruct" | "gpt-5.2-pro" | "minimax-m2.1" | "qwen3-32b" | "pixtral-large-latest" | "glm-4-32b-0414-128k" | "seed-1-6-flash-250715" | "qwen3-next-80b-a3b-instruct" | "qwen3-vl-8b-instruct" | "gpt-4o-mini-search-preview" | "glm-4.5v" | "qwen3.7-plus" | "gemini-2.5-pro" | "gpt-5" | "claude-haiku-4-5-20251001" | "qwen3.6-35b-a3b" | "gpt-3.5-turbo" | "seed-1-6-250615" | "qwen3.7-max" | "glm-4.5" | "gpt-5-pro" | "gemini-2.5-flash" | "gpt-4o" | "ministral-8b-2512" | "gpt-4" | "o4-mini" | "qwen3-max" | "mistral-small-2506" | "gemini-3.5-flash" | "qwen-plus-latest" | "muse-spark-1.1" | "claude-opus-4-1-20250805" | "gemma-4-31b-it" | "grok-4-3" | "llama-4-scout-17b-instruct" | "llama-3.3-70b-instruct" | "sonar-reasoning-pro" | "grok-4-20-non-reasoning" | "glm-4.7-flashx" | "qwen3-30b-a3b-instruct-2507" | "kimi-k2.7-code" | "glm-5.1" | "deepseek-v4-pro" | "qwen3-next-80b-a3b-thinking" | "glm-4.6" | "qwen35-397b-a17b" | "qwen3-235b-a22b-thinking-2507" | "kimi-k2-thinking" | "claude-sonnet-4-5" | "gemini-pro-latest" | "glm-4.5-x" | "claude-opus-4-7" | "claude-sonnet-5" | "grok-4-1-fast-non-reasoning" | "gpt-5.4-nano" | "grok-4-20-beta-0309-reasoning" | "glm-5.2" | "qwen3.6-flash" | "glm-4.5-airx" | "gpt-5-chat-latest" | "ministral-3b-2512" | "qwen2-5-vl-72b-instruct" | "glm-4.6v-flashx" | "minimax-m3" | "qwen3-vl-plus" | "claude-opus-4-5-20251101" | "gpt-5.1-codex" | "minimax-m2" | "claude-opus-4-8" | "gpt-5.3-chat-latest" | "grok-4-5" | "claude-3-opus" | "qwen-omni-turbo" | "o3-mini" | "gpt-5.2" | "gpt-5.3-codex" | "minimax-m2.7" | "qwen-flash" | "qwen3-4b-fp8" | "gemini-2.5-flash-lite" | "qwen2-5-vl-32b-instruct" | "gpt-5.6-luna" | "gpt-5.1-codex-mini" | "kimi-k2.5" | "seed-1-6-250915" | "gpt-5.6-terra" | "gpt-5.2-chat-latest" | "minimax-text-01" | "gpt-4.1-nano" | "gpt-oss-120b" | "qwen-vl-max" | "llama-3-8b-instruct" | "claude-fable-5" | "sonar" | "qwen-max" | "o1" | "minimax-m2.5-highspeed" | "deepseek-v3.1" | "ministral-14b-2512" | "sonar-pro" | "glm-4.6v" | "claude-haiku-4-5" | "claude-haiku-4-5-free" | "minimax-m2.1-lightning" | "gpt-5.4" | "mimo-v2.5" | "mimo-v2-omni" | "gpt-5.4-mini" | "kimi-k2.6" | "gpt-4.1" | "gemini-3.1-pro-preview" | "claude-opus-4-6" | "qwen3-coder-next" | "llama-4-maverick-17b-instruct" | "qwen3-coder-480b-a35b-instruct" | "devstral-2512" | "claude-sonnet-4-5-20250929" | "gemma-4-26b-a4b-it" | "qwen3.5-9b" | "qwq-plus" | "grok-4-1-fast-reasoning" | "qwen3-vl-30b-a3b-instruct" | "qwen3-vl-flash" | "gpt-5-mini" | "gpt-4.1-mini" | "llama-3.1-nemotron-ultra-253b" | "gpt-4-turbo" | "qwen3-coder-flash" | "grok-build-0-1" | "gpt-5-nano" | "grok-4" | "llama-3.2-11b-instruct" | "gpt-5.4-pro" | "glm-4.5-air" | "kimi-k2.7-code-highspeed" | "claude-sonnet-4-6" | "gemini-3-flash-preview" | "glm-4.7-flash" | "qwen3-vl-235b-a22b-instruct" | "mimo-v2-pro" | "gpt-4o-search-preview" | "llama-3.2-3b-instruct" | "mimo-v2.5-pro" | "gpt-5.5-pro" | "gpt-4o-mini" | "gpt-oss-20b" | "glm-5" | "qwen-max-latest" | "mistral-large-2512" | "qwen-turbo" | "custom" | "gpt-5.6-sol" | "grok-4-20-reasoning" | "deepseek-v3.2" | "qwen3.6-max-preview" | "auto" | "codestral-2508" | "qwen3-235b-a22b-fp8" | "fugu-ultra" | "gpt-5.2-codex" | "qwen-vl-plus" | "qwen3.6-plus" | "gpt-5.1" | "gpt-5.5";
3
- export type ModelName="Qwen Coder Plus" | "Mistral Large (latest)" | "Qwen3 VL 235B A22B Thinking" | "Devstral Small" | "Qwen3 VL 30B A3B Thinking" | "DeepSeek V4 Flash" | "Qwen3 Coder Plus" | "MiniMax-M2.7-highspeed" | "Qwen Plus" | "o3" | "Nemotron 3 Ultra 550B A55B" | "MiniMax-M2.5" | "Grok 4.20 (Non-Reasoning)" | "GLM-4.7" | "Gemini 3.1 Flash Lite" | "Qwen3 235B A22B Instruct (2507)" | "Llama 3 70B Instruct" | "Qwen3-Coder 30B-A3B Instruct" | "Seed 1.8 (251228)" | "Kimi K2" | "Llama 3.1 70B Instruct" | "GPT-5.2 Pro" | "MiniMax-M2.1" | "Qwen3 32B" | "Pixtral Large (latest)" | "GLM-4 32B (0414-128k)" | "Seed 1.6 Flash (250715)" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "GPT-4o Mini Search Preview" | "GLM-4.5V" | "Qwen3.7 Plus" | "Gemini 2.5 Pro" | "GPT-5" | "Claude Haiku 4.5" | "Qwen3.6 35B-A3B" | "GPT-3.5-turbo" | "Seed 1.6 (250615)" | "Qwen3.7 Max" | "GLM-4.5" | "GPT-5 Pro" | "Gemini 2.5 Flash" | "GPT-4o" | "Ministral 8B" | "GPT-4" | "o4-mini" | "Qwen3 Max" | "Mistral Small 3.2" | "Gemini 3.5 Flash" | "Qwen Plus Latest" | "Muse Spark 1.1" | "Claude Opus 4.1" | "Gemma 4 31B IT" | "Grok 4.3" | "Llama 4 Scout 17B Instruct" | "Llama-3.3-70B-Instruct" | "Sonar Reasoning Pro" | "GLM-4.7-FlashX" | "Qwen3 30B A3B Instruct (2507)" | "Kimi K2.7 Code" | "GLM-5.1" | "DeepSeek V4 Pro" | "Qwen3-Next 80B-A3B (Thinking)" | "GLM-4.6" | "Qwen3.5 397B-A17B" | "Qwen3 235B A22B Thinking (2507)" | "Kimi K2 Thinking" | "Claude Sonnet 4.5 (latest)" | "Gemini Pro Latest" | "GLM-4.5 X" | "Claude Opus 4.7" | "Claude Sonnet 5" | "Grok 4.1 Fast Non-Reasoning" | "GPT-5.4 nano" | "Grok 4.20 (Reasoning)" | "GLM-5.2" | "Qwen3.6 Flash" | "GLM-4.5 AirX" | "GPT-5 Chat (latest)" | "Ministral 3B" | "Qwen2.5-VL 72B Instruct" | "GLM-4.6V FlashX" | "MiniMax-M3" | "Qwen3-VL Plus" | "Claude Opus 4.5" | "GPT-5.1 Codex" | "MiniMax-M2" | "Claude Opus 4.8" | "GPT-5.3 Chat (latest)" | "Grok 4.5" | "Claude 3 Opus" | "Qwen-Omni Turbo" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "MiniMax-M2.7" | "Qwen Flash" | "Qwen3 4B FP8" | "Gemini 2.5 Flash-Lite" | "Qwen2.5 VL 32B Instruct" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "Kimi K2.5" | "Seed 1.6 (250915)" | "GPT-5.6 Terra" | "GPT-5.2 Chat" | "MiniMax Text 01" | "GPT-4.1 nano" | "GPT OSS 120B" | "Qwen-VL Max" | "Llama 3 8B Instruct" | "Claude Fable 5" | "Sonar" | "Qwen Max" | "o1" | "MiniMax-M2.5-highspeed" | "DeepSeek V3.1" | "Ministral 14B" | "Sonar Pro" | "GLM-4.6V" | "Claude Haiku 4.5 (latest)" | "MiniMax M2.1 Lightning" | "GPT-5.4" | "MiMo-V2.5" | "MiMo-V2-Omni" | "GPT-5.4 mini" | "Kimi K2.6" | "GPT-4.1" | "Gemini 3.1 Pro Preview" | "Claude Opus 4.6" | "Qwen3 Coder Next" | "Llama 4 Maverick 17B Instruct" | "Qwen3-Coder 480B-A35B Instruct" | "Devstral 2" | "Claude Sonnet 4.5" | "Gemma 4 26B A4B IT" | "Qwen3.5 9B" | "QwQ Plus" | "Grok 4.1 Fast Reasoning" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 VL Flash" | "GPT-5 Mini" | "GPT-4.1 mini" | "Llama 3.1 Nemotron Ultra 253B" | "GPT-4 Turbo" | "Qwen3 Coder Flash" | "Grok Build 0.1" | "GPT-5 Nano" | "Grok 4" | "Llama 3.2 11B Instruct" | "GPT-5.4 Pro" | "GLM-4.5-Air" | "Kimi K2.7 Code Highspeed" | "Claude Sonnet 4.6" | "Gemini 3 Flash Preview" | "GLM-4.7-Flash" | "Qwen3 VL 235B A22B Instruct" | "MiMo-V2-Pro" | "GPT-4o Search Preview" | "Llama 3.2 3B Instruct" | "MiMo-V2.5-Pro" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GLM-5" | "Qwen Max Latest" | "Mistral Large 3" | "Qwen Turbo" | "Custom Model" | "GPT-5.6 Sol" | "DeepSeek V3.2" | "Qwen3.6 Max Preview" | "Auto Route" | "Codestral" | "Qwen3 235B A22B FP8" | "Fugu Ultra" | "GPT-5.2 Codex" | "Qwen-VL Plus" | "Qwen3.6 Plus" | "GPT-5.1" | "GPT-5.5";
2
+ export type ModelId="qwen-coder-plus" | "mistral-large-latest" | "qwen3-vl-235b-a22b-thinking" | "devstral-small-2507" | "qwen3-vl-30b-a3b-thinking" | "deepseek-v4-flash" | "qwen3-coder-plus" | "minimax-m2.7-highspeed" | "qwen-plus" | "o3" | "nemotron-3-ultra-550b" | "minimax-m2.5" | "grok-4-20-beta-0309-non-reasoning" | "glm-4.7" | "gemini-3.1-flash-lite" | "qwen3-235b-a22b-instruct-2507" | "llama-3-70b-instruct" | "qwen3-coder-30b-a3b-instruct" | "seed-1-8-251228" | "kimi-k2" | "llama-3.1-70b-instruct" | "gpt-5.2-pro" | "minimax-m2.1" | "qwen3-32b" | "pixtral-large-latest" | "glm-4-32b-0414-128k" | "seed-1-6-flash-250715" | "qwen3-next-80b-a3b-instruct" | "qwen3-vl-8b-instruct" | "gpt-4o-mini-search-preview" | "glm-4.5v" | "qwen3.7-plus" | "gemini-2.5-pro" | "gpt-5" | "claude-haiku-4-5-20251001" | "qwen3.6-35b-a3b" | "gpt-3.5-turbo" | "seed-1-6-250615" | "qwen3.7-max" | "glm-4.5" | "gpt-5-pro" | "gemini-2.5-flash" | "gpt-4o" | "ministral-8b-2512" | "gpt-4" | "o4-mini" | "qwen3-max" | "mistral-small-2506" | "gemini-3.5-flash" | "qwen-plus-latest" | "muse-spark-1.1" | "claude-opus-4-1-20250805" | "gemma-4-31b-it" | "grok-4-3" | "llama-4-scout-17b-instruct" | "llama-3.3-70b-instruct" | "sonar-reasoning-pro" | "grok-4-20-non-reasoning" | "glm-4.7-flashx" | "qwen3-30b-a3b-instruct-2507" | "kimi-k2.7-code" | "glm-5.1" | "deepseek-v4-pro" | "qwen3-next-80b-a3b-thinking" | "glm-4.6" | "qwen35-397b-a17b" | "qwen3-235b-a22b-thinking-2507" | "kimi-k2-thinking" | "claude-sonnet-4-5" | "gemini-pro-latest" | "glm-4.5-x" | "claude-opus-4-7" | "claude-sonnet-5" | "grok-4-1-fast-non-reasoning" | "gpt-5.4-nano" | "grok-4-20-beta-0309-reasoning" | "glm-5.2" | "qwen3.6-flash" | "glm-4.5-airx" | "gpt-5-chat-latest" | "ministral-3b-2512" | "qwen2-5-vl-72b-instruct" | "glm-4.6v-flashx" | "minimax-m3" | "qwen3-vl-plus" | "claude-opus-4-5-20251101" | "gpt-5.1-codex" | "minimax-m2" | "claude-opus-4-8" | "gpt-5.3-chat-latest" | "grok-4-5" | "claude-3-opus" | "qwen-omni-turbo" | "o3-mini" | "gpt-5.2" | "gpt-5.3-codex" | "minimax-m2.7" | "qwen-flash" | "qwen3-4b-fp8" | "gemini-2.5-flash-lite" | "qwen2-5-vl-32b-instruct" | "gpt-5.6-luna" | "gpt-5.1-codex-mini" | "kimi-k2.5" | "seed-1-6-250915" | "gpt-5.6-terra" | "gpt-5.2-chat-latest" | "minimax-text-01" | "gpt-4.1-nano" | "gpt-oss-120b" | "qwen-vl-max" | "llama-3-8b-instruct" | "claude-fable-5" | "sonar" | "qwen-max" | "o1" | "minimax-m2.5-highspeed" | "deepseek-v3.1" | "ministral-14b-2512" | "sonar-pro" | "glm-4.6v" | "claude-haiku-4-5" | "claude-haiku-4-5-free" | "minimax-m2.1-lightning" | "gpt-5.4" | "mimo-v2.5" | "gpt-5.4-mini" | "kimi-k2.6" | "gpt-4.1" | "gemini-3.1-pro-preview" | "claude-opus-4-6" | "qwen3-coder-next" | "llama-4-maverick-17b-instruct" | "qwen3-coder-480b-a35b-instruct" | "devstral-2512" | "claude-sonnet-4-5-20250929" | "gemma-4-26b-a4b-it" | "qwen3.5-9b" | "qwq-plus" | "grok-4-1-fast-reasoning" | "qwen3-vl-30b-a3b-instruct" | "qwen3-vl-flash" | "gpt-5-mini" | "gpt-4.1-mini" | "llama-3.1-nemotron-ultra-253b" | "gpt-4-turbo" | "qwen3-coder-flash" | "grok-build-0-1" | "gpt-5-nano" | "grok-4" | "llama-3.2-11b-instruct" | "gpt-5.4-pro" | "glm-4.5-air" | "kimi-k2.7-code-highspeed" | "claude-sonnet-4-6" | "gemini-3-flash-preview" | "glm-4.7-flash" | "qwen3-vl-235b-a22b-instruct" | "gpt-4o-search-preview" | "llama-3.2-3b-instruct" | "mimo-v2.5-pro" | "gpt-5.5-pro" | "gpt-4o-mini" | "gpt-oss-20b" | "glm-5" | "qwen-max-latest" | "mistral-large-2512" | "qwen-turbo" | "custom" | "gpt-5.6-sol" | "grok-4-20-reasoning" | "deepseek-v3.2" | "qwen3.6-max-preview" | "auto" | "codestral-2508" | "qwen3-235b-a22b-fp8" | "fugu-ultra" | "gpt-5.2-codex" | "qwen-vl-plus" | "qwen3.6-plus" | "gpt-5.1" | "gpt-5.5";
3
+ export type ModelName="Qwen Coder Plus" | "Mistral Large (latest)" | "Qwen3 VL 235B A22B Thinking" | "Devstral Small" | "Qwen3 VL 30B A3B Thinking" | "DeepSeek V4 Flash" | "Qwen3 Coder Plus" | "MiniMax-M2.7-highspeed" | "Qwen Plus" | "o3" | "Nemotron 3 Ultra 550B A55B" | "MiniMax-M2.5" | "Grok 4.20 (Non-Reasoning)" | "GLM-4.7" | "Gemini 3.1 Flash Lite" | "Qwen3 235B A22B Instruct (2507)" | "Llama 3 70B Instruct" | "Qwen3-Coder 30B-A3B Instruct" | "Seed 1.8 (251228)" | "Kimi K2" | "Llama 3.1 70B Instruct" | "GPT-5.2 Pro" | "MiniMax-M2.1" | "Qwen3 32B" | "Pixtral Large (latest)" | "GLM-4 32B (0414-128k)" | "Seed 1.6 Flash (250715)" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "GPT-4o Mini Search Preview" | "GLM-4.5V" | "Qwen3.7 Plus" | "Gemini 2.5 Pro" | "GPT-5" | "Claude Haiku 4.5" | "Qwen3.6 35B-A3B" | "GPT-3.5-turbo" | "Seed 1.6 (250615)" | "Qwen3.7 Max" | "GLM-4.5" | "GPT-5 Pro" | "Gemini 2.5 Flash" | "GPT-4o" | "Ministral 8B" | "GPT-4" | "o4-mini" | "Qwen3 Max" | "Mistral Small 3.2" | "Gemini 3.5 Flash" | "Qwen Plus Latest" | "Muse Spark 1.1" | "Claude Opus 4.1" | "Gemma 4 31B IT" | "Grok 4.3" | "Llama 4 Scout 17B Instruct" | "Llama-3.3-70B-Instruct" | "Sonar Reasoning Pro" | "GLM-4.7-FlashX" | "Qwen3 30B A3B Instruct (2507)" | "Kimi K2.7 Code" | "GLM-5.1" | "DeepSeek V4 Pro" | "Qwen3-Next 80B-A3B (Thinking)" | "GLM-4.6" | "Qwen3.5 397B-A17B" | "Qwen3 235B A22B Thinking (2507)" | "Kimi K2 Thinking" | "Claude Sonnet 4.5 (latest)" | "Gemini Pro Latest" | "GLM-4.5 X" | "Claude Opus 4.7" | "Claude Sonnet 5" | "Grok 4.1 Fast Non-Reasoning" | "GPT-5.4 nano" | "Grok 4.20 (Reasoning)" | "GLM-5.2" | "Qwen3.6 Flash" | "GLM-4.5 AirX" | "GPT-5 Chat (latest)" | "Ministral 3B" | "Qwen2.5-VL 72B Instruct" | "GLM-4.6V FlashX" | "MiniMax-M3" | "Qwen3-VL Plus" | "Claude Opus 4.5" | "GPT-5.1 Codex" | "MiniMax-M2" | "Claude Opus 4.8" | "GPT-5.3 Chat (latest)" | "Grok 4.5" | "Claude 3 Opus" | "Qwen-Omni Turbo" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "MiniMax-M2.7" | "Qwen Flash" | "Qwen3 4B FP8" | "Gemini 2.5 Flash-Lite" | "Qwen2.5 VL 32B Instruct" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "Kimi K2.5" | "Seed 1.6 (250915)" | "GPT-5.6 Terra" | "GPT-5.2 Chat" | "MiniMax Text 01" | "GPT-4.1 nano" | "GPT OSS 120B" | "Qwen-VL Max" | "Llama 3 8B Instruct" | "Claude Fable 5" | "Sonar" | "Qwen Max" | "o1" | "MiniMax-M2.5-highspeed" | "DeepSeek V3.1" | "Ministral 14B" | "Sonar Pro" | "GLM-4.6V" | "Claude Haiku 4.5 (latest)" | "MiniMax M2.1 Lightning" | "GPT-5.4" | "MiMo-V2.5" | "GPT-5.4 mini" | "Kimi K2.6" | "GPT-4.1" | "Gemini 3.1 Pro Preview" | "Claude Opus 4.6" | "Qwen3 Coder Next" | "Llama 4 Maverick 17B Instruct" | "Qwen3-Coder 480B-A35B Instruct" | "Devstral 2" | "Claude Sonnet 4.5" | "Gemma 4 26B A4B IT" | "Qwen3.5 9B" | "QwQ Plus" | "Grok 4.1 Fast Reasoning" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 VL Flash" | "GPT-5 Mini" | "GPT-4.1 mini" | "Llama 3.1 Nemotron Ultra 253B" | "GPT-4 Turbo" | "Qwen3 Coder Flash" | "Grok Build 0.1" | "GPT-5 Nano" | "Grok 4" | "Llama 3.2 11B Instruct" | "GPT-5.4 Pro" | "GLM-4.5-Air" | "Kimi K2.7 Code Highspeed" | "Claude Sonnet 4.6" | "Gemini 3 Flash Preview" | "GLM-4.7-Flash" | "Qwen3 VL 235B A22B Instruct" | "GPT-4o Search Preview" | "Llama 3.2 3B Instruct" | "MiMo-V2.5-Pro" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GLM-5" | "Qwen Max Latest" | "Mistral Large 3" | "Qwen Turbo" | "Custom Model" | "GPT-5.6 Sol" | "DeepSeek V3.2" | "Qwen3.6 Max Preview" | "Auto Route" | "Codestral" | "Qwen3 235B A22B FP8" | "Fugu Ultra" | "GPT-5.2 Codex" | "Qwen-VL Plus" | "Qwen3.6 Plus" | "GPT-5.1" | "GPT-5.5";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
2
- export type ModelId="inclusionai/ling-2.6-1t" | "inclusionai/ring-2.6-1t" | "inclusionai/ling-2.6-flash" | "ibm-granite/granite-4.0-h-micro" | "ibm-granite/granite-4.1-8b" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.3-70b-instruct:free" | "meta-llama/llama-3.3-70b-instruct" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-3-8b-instruct" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-3b-instruct" | "~anthropic/claude-haiku-latest" | "~anthropic/claude-fable-latest" | "~anthropic/claude-sonnet-latest" | "~anthropic/claude-opus-latest" | "moonshotai/kimi-k2" | "moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2-thinking" | "moonshotai/kimi-k2.5" | "moonshotai/kimi-k2.6" | "moonshotai/kimi-k2-0905" | "baidu/ernie-4.5-vl-424b-a47b" | "perceptron/perceptron-mk1" | "google/gemini-3.1-flash-lite" | "google/gemini-3.1-flash-image" | "google/gemma-3n-e4b-it" | "google/gemma-4-26b-a4b-it:free" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-3.5-flash" | "google/gemma-4-31b-it" | "google/lyria-3-clip-preview" | "google/gemini-3.1-pro-preview-customtools" | "google/gemini-3.1-flash-lite-image" | "google/gemini-3-pro-image-preview" | "google/gemini-2.5-flash-image" | "google/gemini-2.5-flash-lite" | "google/gemini-3.1-flash-image-preview" | "google/gemini-2.5-pro-preview-05-06" | "google/gemini-3.1-pro-preview" | "google/gemma-4-26b-a4b-it" | "google/gemini-2.5-pro-preview" | "google/gemini-3-flash-preview" | "google/gemma-3-12b-it" | "google/gemma-3-4b-it" | "google/gemma-3-27b-it" | "google/lyria-3-pro-preview" | "google/gemma-4-31b-it:free" | "google/gemma-2-27b-it" | "google/gemini-3-pro-image" | "google/gemini-3.1-flash-lite-preview" | "liquid/lfm-2.5-1.2b-thinking:free" | "liquid/lfm-2.5-1.2b-instruct:free" | "x-ai/grok-4.20" | "x-ai/grok-4.3" | "x-ai/grok-4.5" | "x-ai/grok-4.20-multi-agent" | "x-ai/grok-build-0.1" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "microsoft/phi-4" | "microsoft/wizardlm-2-8x22b" | "poolside/laguna-xs-2.1:free" | "poolside/laguna-m.1" | "poolside/laguna-xs-2.1" | "poolside/laguna-m.1:free" | "writer/palmyra-x5" | "z-ai/glm-4.7" | "z-ai/glm-4.5v" | "z-ai/glm-4.5" | "z-ai/glm-5.1" | "z-ai/glm-4.6" | "z-ai/glm-5.2" | "z-ai/glm-4.6v" | "z-ai/glm-5v-turbo" | "z-ai/glm-4.5-air" | "z-ai/glm-4.7-flash" | "z-ai/glm-5" | "z-ai/glm-5-turbo" | "openai/gpt-4o-mini-2024-07-18" | "openai/gpt-oss-safeguard-20b" | "openai/gpt-3.5-turbo-instruct" | "openai/gpt-5.2-chat" | "openai/gpt-5.6-luna-pro" | "openai/o3" | "openai/gpt-5.6-sol-pro" | "openai/o4-mini-high" | "openai/gpt-audio" | "openai/gpt-5.2-pro" | "openai/gpt-4o-mini-search-preview" | "openai/gpt-5.6-terra-pro" | "openai/gpt-5" | "openai/gpt-5-chat" | "openai/gpt-3.5-turbo" | "openai/gpt-5-pro" | "openai/gpt-4o" | "openai/gpt-4" | "openai/o4-mini" | "openai/gpt-3.5-turbo-16k" | "openai/o3-pro" | "openai/gpt-5.1-chat" | "openai/gpt-4o-2024-05-13" | "openai/gpt-5.4-nano" | "openai/gpt-5.3-chat" | "openai/gpt-3.5-turbo-0613" | "openai/gpt-5-image-mini" | "openai/gpt-5.1-codex" | "openai/gpt-5.1-codex-max" | "openai/gpt-oss-120b:free" | "openai/gpt-4o-2024-08-06" | "openai/o3-mini" | "openai/gpt-5.2" | "openai/gpt-5.3-codex" | "openai/gpt-audio-mini" | "openai/gpt-5.6-luna" | "openai/gpt-5.1-codex-mini" | "openai/gpt-5.6-terra" | "openai/o4-mini-deep-research" | "openai/gpt-4.1-nano" | "openai/gpt-oss-120b" | "openai/gpt-4o-2024-11-20" | "openai/o1" | "openai/o1-pro" | "openai/gpt-chat-latest" | "openai/gpt-5-image" | "openai/gpt-5.4" | "openai/gpt-5.4-mini" | "openai/gpt-4.1" | "openai/o3-deep-research" | "openai/gpt-4-turbo-preview" | "openai/gpt-5-mini" | "openai/gpt-4.1-mini" | "openai/gpt-4-turbo" | "openai/gpt-5-nano" | "openai/gpt-5.4-pro" | "openai/o3-mini-high" | "openai/gpt-5.4-image-2" | "openai/gpt-4o-search-preview" | "openai/gpt-5.5-pro" | "openai/gpt-4o-mini" | "openai/gpt-oss-20b" | "openai/gpt-5.6-sol" | "openai/gpt-5-codex" | "openai/gpt-5.2-codex" | "openai/gpt-oss-20b:free" | "openai/gpt-5.1" | "openai/gpt-5.5" | "thedrummer/cydonia-24b-v4.1" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/rocinante-12b" | "bytedance/ui-tars-1.5-7b" | "rekaai/reka-flash-3" | "rekaai/reka-edge" | "mistralai/mistral-large-2407" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/mistral-nemo" | "mistralai/mistral-medium-3-5" | "mistralai/ministral-8b-2512" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/mistral-saba" | "mistralai/mistral-large" | "mistralai/mistral-medium-3.1" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/ministral-3b-2512" | "mistralai/mistral-small-2603" | "mistralai/ministral-14b-2512" | "mistralai/devstral-2512" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-large-2512" | "mistralai/codestral-2508" | "morph/morph-v3-fast" | "morph/morph-v3-large" | "bytedance-seed/seed-1.6-flash" | "bytedance-seed/seed-1.6" | "bytedance-seed/seed-2.0-mini" | "bytedance-seed/seed-2.0-lite" | "sakana/fugu-ultra" | "anthracite-org/magnum-v4-72b" | "nvidia/nemotron-3-nano-30b-a3b:free" | "nvidia/nemotron-nano-9b-v2:free" | "nvidia/nemotron-nano-12b-v2-vl:free" | "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free" | "nvidia/nemotron-3-ultra-550b-a55b:free" | "nvidia/nemotron-3-ultra-550b-a55b" | "nvidia/nemotron-3.5-content-safety:free" | "nvidia/nemotron-3-nano-30b-a3b" | "nvidia/llama-3.3-nemotron-super-49b-v1.5" | "nvidia/nemotron-3-super-120b-a12b:free" | "nvidia/nemotron-3-super-120b-a12b" | "cognitivecomputations/dolphin-mistral-24b-venice-edition" | "cognitivecomputations/dolphin-mistral-24b-venice-edition:free" | "xiaomi/mimo-v2.5" | "xiaomi/mimo-v2.5-pro" | "inception/mercury-2" | "anthropic/claude-sonnet-4.5" | "anthropic/claude-sonnet-4" | "anthropic/claude-haiku-4.5" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-sonnet-5" | "anthropic/claude-opus-4.7" | "anthropic/claude-opus-4.8" | "anthropic/claude-fable-5" | "anthropic/claude-opus-4.1" | "anthropic/claude-opus-4.5" | "anthropic/claude-sonnet-4.6" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-opus-4.6" | "tencent/hy3:free" | "tencent/hy3" | "tencent/hunyuan-a13b-instruct" | "tencent/hy3-preview" | "deepcogito/cogito-v2.1-671b" | "cohere/command-a" | "cohere/command-r-08-2024" | "cohere/command-r7b-12-2024" | "cohere/command-r-plus-08-2024" | "cohere/north-mini-code:free" | "~x-ai/grok-latest" | "gryphe/mythomax-l2-13b" | "stepfun/step-3.7-flash" | "stepfun/step-3.5-flash" | "nex-agi/nex-n2-mini" | "nex-agi/nex-n2-pro" | "undi95/remm-slerp-l2-13b" | "~openai/gpt-mini-latest" | "~openai/gpt-latest" | "~moonshotai/kimi-latest" | "relace/relace-search" | "relace/relace-apply-3" | "ai21/jamba-large-1.7" | "arcee-ai/coder-large" | "arcee-ai/virtuoso-large" | "arcee-ai/trinity-large-thinking" | "mancer/weaver" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "openrouter/free" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen3-coder-plus" | "qwen/qwen-plus" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-32b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.7-plus" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3.7-max" | "qwen/qwen3-max" | "qwen/qwen3-8b" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-coder:free" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen3-coder" | "qwen/qwen3.6-flash" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-max-thinking" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3.5-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder-next" | "qwen/qwen3.6-27b" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.5-9b" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-coder-flash" | "qwen/qwen3-14b" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3.6-plus" | "amazon/nova-lite-v1" | "amazon/nova-premier-v1" | "amazon/nova-pro-v1" | "amazon/nova-micro-v1" | "amazon/nova-2-lite-v1" | "aion-labs/aion-3.0-mini" | "aion-labs/aion-rp-llama-3.1-8b" | "aion-labs/aion-3.0" | "aion-labs/aion-2.0" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "sao10k/l3.1-euryale-70b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.1-70b-hanami-x1" | "upstage/solar-pro-3" | "allenai/olmo-3-32b-think" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v4-pro" | "deepseek/deepseek-r1" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-chat" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-chat-v3.1" | "minimax/minimax-m2.5" | "minimax/minimax-m2.1" | "minimax/minimax-01" | "minimax/minimax-m3" | "minimax/minimax-m2" | "minimax/minimax-m2-her" | "minimax/minimax-m2.7" | "minimax/minimax-m1" | "kwaipilot/kat-coder-pro-v2" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-4-405b" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-4-70b";
3
- export type ModelName="Ling-2.6-1T" | "Ring-2.6-1T" | "Ling-2.6-flash" | "Granite 4.0 Micro" | "Granite 4.1 8B" | "Llama 3.1 8B Instruct" | "Llama 3.1 70B Instruct" | "Llama 3.2 1B Instruct" | "Llama 4 Maverick" | "Llama 3.2 11B Vision Instruct" | "Llama 3.3 70B Instruct (free)" | "Llama-3.3-70B-Instruct" | "Llama 3.2 3B Instruct (free)" | "Llama Guard 4 12B" | "Llama 3 8B Instruct" | "Llama 4 Scout" | "Llama 3.2 3B Instruct" | "Anthropic Claude Haiku Latest" | "Claude Fable Latest" | "Anthropic Claude Sonnet Latest" | "Claude Opus Latest" | "Kimi K2 0711" | "Kimi K2.7 Code" | "Kimi K2 Thinking" | "Kimi K2.5" | "Kimi K2.6" | "Kimi K2 0905" | "ERNIE 4.5 VL 424B A47B " | "Perceptron Mk1" | "Gemini 3.1 Flash Lite" | "Nano Banana 2 (Gemini 3.1 Flash Image)" | "Gemma 3n 4B" | "Gemma 4 26B A4B (free)" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Gemma 4 31B IT" | "Lyria 3 Clip Preview" | "Gemini 3.1 Pro Preview Custom Tools" | "Nano Banana 2 Lite (Gemini 3.1 Flash Lite Image)" | "Nano Banana Pro" | "Nano Banana" | "Gemini 2.5 Flash-Lite" | "Nano Banana 2" | "Gemini 2.5 Pro Preview 05-06" | "Gemini 3.1 Pro Preview" | "Gemma 4 26B A4B IT" | "Gemini 2.5 Pro Preview 06-05" | "Gemini 3 Flash Preview" | "Gemma 3 12B" | "Gemma 3 4B" | "Gemma 3 27B" | "Lyria 3 Pro Preview" | "Gemma 4 31B (free)" | "Gemma 2 27B" | "Nano Banana Pro (Gemini 3 Pro Image)" | "Gemini 3.1 Flash Lite Preview" | "LFM2.5-1.2B-Thinking (free)" | "LFM2.5-1.2B-Instruct (free)" | "Grok 4.20" | "Grok 4.3" | "Grok 4.5" | "Grok 4.20 Multi-Agent" | "Grok Build 0.1" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "Phi 4" | "WizardLM-2 8x22B" | "Laguna XS 2.1 (free)" | "Laguna M.1" | "Laguna XS 2.1" | "Laguna M.1 (free)" | "Palmyra X5" | "GLM-4.7" | "GLM-4.5V" | "GLM-4.5" | "GLM-5.1" | "GLM-4.6" | "GLM-5.2" | "GLM-4.6V" | "GLM-5V-Turbo" | "GLM-4.5-Air" | "GLM-4.7-Flash" | "GLM-5" | "GLM-5-Turbo" | "GPT-4o-mini (2024-07-18)" | "gpt-oss-safeguard-20b" | "GPT-3.5 Turbo Instruct" | "GPT-5.2 Chat" | "GPT-5.6 Luna Pro" | "o3" | "GPT-5.6 Sol Pro" | "o4 Mini High" | "GPT Audio" | "GPT-5.2 Pro" | "GPT-4o-mini Search Preview" | "GPT-5.6 Terra Pro" | "GPT-5" | "GPT-5 Chat" | "GPT-3.5-turbo" | "GPT-5 Pro" | "GPT-4o" | "GPT-4" | "o4-mini" | "GPT-3.5 Turbo 16k" | "o3-pro" | "GPT-5.1 Chat" | "GPT-4o (2024-05-13)" | "GPT-5.4 nano" | "GPT-5.3 Chat" | "GPT-3.5 Turbo (older v0613)" | "GPT-5 Image Mini" | "GPT-5.1 Codex" | "GPT-5.1 Codex Max" | "gpt-oss-120b (free)" | "GPT-4o (2024-08-06)" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "GPT Audio Mini" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "GPT-5.6 Terra" | "o4-mini-deep-research" | "GPT-4.1 nano" | "GPT OSS 120B" | "GPT-4o (2024-11-20)" | "o1" | "o1-pro" | "GPT Chat Latest" | "GPT-5 Image" | "GPT-5.4" | "GPT-5.4 mini" | "GPT-4.1" | "o3-deep-research" | "GPT-4 Turbo Preview" | "GPT-5 Mini" | "GPT-4.1 mini" | "GPT-4 Turbo" | "GPT-5 Nano" | "GPT-5.4 Pro" | "o3 Mini High" | "GPT-5.4 Image 2" | "GPT-4o Search Preview" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GPT-5.6 Sol" | "GPT-5-Codex" | "GPT-5.2 Codex" | "gpt-oss-20b (free)" | "GPT-5.1" | "GPT-5.5" | "Cydonia 24B V4.1" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Rocinante 12B" | "UI-TARS 7B " | "Reka Flash 3" | "Reka Edge" | "Mistral Large 2407" | "Mistral Small 3.2 24B" | "Mistral Nemo" | "Mistral Medium 3.5" | "Ministral 3 8B 2512" | "Mistral Small 3.1 24B" | "Saba" | "Mistral Large" | "Mistral Medium 3.1" | "Mistral Small 3" | "Ministral 3 3B 2512" | "Mistral Small 4" | "Ministral 3 14B 2512" | "Devstral 2" | "Mixtral 8x22B Instruct" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Large 3" | "Codestral 2508" | "Morph V3 Fast" | "Morph V3 Large" | "Seed 1.6 Flash" | "Seed 1.6" | "Seed-2.0-Mini" | "Seed-2.0-Lite" | "Fugu Ultra" | "Magnum v4 72B" | "Nemotron 3 Nano 30B A3B (free)" | "Nemotron Nano 9B V2 (free)" | "Nemotron Nano 12B 2 VL (free)" | "Nemotron 3 Nano Omni (free)" | "Nemotron 3 Ultra (free)" | "Nemotron 3 Ultra 550B A55B" | "Nemotron 3.5 Content Safety (free)" | "Nemotron 3 Nano 30B A3B" | "Llama 3.3 Nemotron Super 49B v1.5" | "Nemotron 3 Super (free)" | "Nemotron 3 Super 120B A12B" | "Uncensored" | "Uncensored (free)" | "MiMo-V2.5" | "MiMo-V2.5-Pro" | "Mercury 2" | "Claude Sonnet 4.5 (latest)" | "Claude Sonnet 4" | "Claude Haiku 4.5 (latest)" | "Claude Opus 4.7 (Fast)" | "Claude Sonnet 5" | "Claude Opus 4.7" | "Claude Opus 4.8" | "Claude Fable 5" | "Claude Opus 4.1 (latest)" | "Claude Opus 4.5 (latest)" | "Claude Sonnet 4.6" | "Claude 3 Haiku" | "Claude Opus 4" | "Claude Opus 4.8 (Fast)" | "Claude Opus 4.6" | "Hy3 (free)" | "Hy3" | "Hunyuan A13B Instruct" | "Hy3 preview" | "Cogito v2.1 671B" | "Command A" | "Command R" | "Command R7B" | "Command R+" | "North Mini Code (free)" | "Grok Latest" | "MythoMax 13B" | "Step 3.7 Flash" | "Step 3.5 Flash" | "Nex-N2-Mini" | "Nex-N2-Pro" | "ReMM SLERP 13B" | "OpenAI GPT Mini Latest" | "OpenAI GPT Latest" | "MoonshotAI Kimi Latest" | "Relace Search" | "Relace Apply 3" | "Jamba Large 1.7" | "Coder Large" | "Virtuoso Large" | "Trinity Large Thinking" | "Weaver (alpha)" | "Sonar Reasoning Pro" | "Sonar" | "Sonar Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Free Models Router" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3 VL 235B A22B Thinking" | "Qwen3 VL 30B A3B Thinking" | "Qwen3 Coder Plus" | "Qwen Plus" | "Qwen3-Coder 30B-A3B Instruct" | "Qwen3 32B" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "Qwen3.7 Plus" | "Qwen3.6 35B-A3B" | "Qwen3.7 Max" | "Qwen3 Max" | "Qwen3 8B" | "Qwen Plus 0728" | "Qwen3.5-Flash" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 30B A3B Instruct 2507" | "Qwen2.5 Coder 32B Instruct" | "Qwen3-Next 80B-A3B (Thinking)" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 VL 32B Instruct" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Flash" | "Qwen3.5 Plus 2026-02-15" | "Qwen2.5 7B Instruct" | "Qwen3 VL 8B Thinking" | "Qwen3 Max Thinking" | "Qwen3 30B A3B Thinking 2507" | "Qwen2.5 VL 72B Instruct" | "Qwen3.5 27B" | "Qwen3 235B-A22B" | "Qwen2.5 72B Instruct" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder Next" | "Qwen3.6 27B" | "Qwen3.5 35B-A3B" | "Qwen3.5 9B" | "Qwen3.5 397B-A17B" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 Coder Flash" | "Qwen3 14B" | "Qwen3 VL 235B A22B Instruct" | "Qwen3 30B A3B" | "Qwen3.6 Max Preview" | "Qwen3.5 122B-A10B" | "Qwen3.6 Plus" | "Nova Lite 1.0" | "Nova Premier 1.0" | "Nova Pro 1.0" | "Nova Micro 1.0" | "Nova 2 Lite" | "Aion-3.0-Mini" | "Aion-RP 1.0 (8B)" | "Aion-3.0" | "Aion-2.0" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3.3 Euryale 70B" | "Llama 3 8B Lunaris" | "Llama 3.1 70B Hanami x1" | "Solar Pro 3" | "Olmo 3 32B Think" | "R1 0528" | "DeepSeek V4 Flash" | "DeepSeek V3.1 Terminus" | "R1 Distill Llama 70B" | "DeepSeek V4 Pro" | "DeepSeek-R1" | "DeepSeek V3.2 Exp" | "DeepSeek V3 0324" | "DeepSeek Chat" | "DeepSeek V3.2" | "DeepSeek V3.1" | "MiniMax-M2.5" | "MiniMax-M2.1" | "MiniMax-01" | "MiniMax-M3" | "MiniMax-M2" | "MiniMax M2-her" | "MiniMax-M2.7" | "MiniMax M1" | "KAT-Coder-Pro V2" | "Hermes 3 405B Instruct (free)" | "Hermes 4 405B" | "Hermes 3 70B Instruct" | "Hermes 3 405B Instruct" | "Hermes 4 70B";
2
+ export type ModelId="inclusionai/ling-2.6-1t" | "inclusionai/ring-2.6-1t" | "inclusionai/ling-2.6-flash" | "ibm-granite/granite-4.0-h-micro" | "ibm-granite/granite-4.1-8b" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.3-70b-instruct:free" | "meta-llama/llama-3.3-70b-instruct" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-3b-instruct" | "~anthropic/claude-haiku-latest" | "~anthropic/claude-fable-latest" | "~anthropic/claude-sonnet-latest" | "~anthropic/claude-opus-latest" | "moonshotai/kimi-k2" | "moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2-thinking" | "moonshotai/kimi-k2.5" | "moonshotai/kimi-k2.6" | "moonshotai/kimi-k2-0905" | "baidu/ernie-4.5-vl-424b-a47b" | "perceptron/perceptron-mk1" | "google/gemini-3.1-flash-lite" | "google/gemini-3.1-flash-image" | "google/gemma-3n-e4b-it" | "google/gemma-4-26b-a4b-it:free" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-3.5-flash" | "google/gemma-4-31b-it" | "google/lyria-3-clip-preview" | "google/gemini-3.1-pro-preview-customtools" | "google/gemini-3.1-flash-lite-image" | "google/gemini-3-pro-image-preview" | "google/gemini-2.5-flash-image" | "google/gemini-2.5-flash-lite" | "google/gemini-3.1-flash-image-preview" | "google/gemini-2.5-pro-preview-05-06" | "google/gemini-3.1-pro-preview" | "google/gemma-4-26b-a4b-it" | "google/gemini-2.5-pro-preview" | "google/gemini-3-flash-preview" | "google/gemma-3-12b-it" | "google/gemma-3-4b-it" | "google/gemma-3-27b-it" | "google/lyria-3-pro-preview" | "google/gemma-4-31b-it:free" | "google/gemma-2-27b-it" | "google/gemini-3-pro-image" | "google/gemini-3.1-flash-lite-preview" | "liquid/lfm-2.5-1.2b-thinking:free" | "liquid/lfm-2.5-1.2b-instruct:free" | "x-ai/grok-4.20" | "x-ai/grok-4.3" | "x-ai/grok-4.5" | "x-ai/grok-4.20-multi-agent" | "x-ai/grok-build-0.1" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "microsoft/phi-4" | "microsoft/wizardlm-2-8x22b" | "poolside/laguna-xs-2.1:free" | "poolside/laguna-m.1" | "poolside/laguna-xs-2.1" | "poolside/laguna-m.1:free" | "writer/palmyra-x5" | "z-ai/glm-4.7" | "z-ai/glm-4.5v" | "z-ai/glm-4.5" | "z-ai/glm-5.1" | "z-ai/glm-4.6" | "z-ai/glm-5.2" | "z-ai/glm-4.6v" | "z-ai/glm-5v-turbo" | "z-ai/glm-4.5-air" | "z-ai/glm-4.7-flash" | "z-ai/glm-5" | "z-ai/glm-5-turbo" | "openai/gpt-4o-mini-2024-07-18" | "openai/gpt-oss-safeguard-20b" | "openai/gpt-3.5-turbo-instruct" | "openai/gpt-5.2-chat" | "openai/gpt-5.6-luna-pro" | "openai/o3" | "openai/gpt-5.6-sol-pro" | "openai/o4-mini-high" | "openai/gpt-audio" | "openai/gpt-5.2-pro" | "openai/gpt-4o-mini-search-preview" | "openai/gpt-5.6-terra-pro" | "openai/gpt-5" | "openai/gpt-5-chat" | "openai/gpt-3.5-turbo" | "openai/gpt-5-pro" | "openai/gpt-4o" | "openai/gpt-4" | "openai/o4-mini" | "openai/gpt-3.5-turbo-16k" | "openai/o3-pro" | "openai/gpt-5.1-chat" | "openai/gpt-4o-2024-05-13" | "openai/gpt-5.4-nano" | "openai/gpt-5.3-chat" | "openai/gpt-3.5-turbo-0613" | "openai/gpt-5-image-mini" | "openai/gpt-5.1-codex" | "openai/gpt-5.1-codex-max" | "openai/gpt-oss-120b:free" | "openai/gpt-4o-2024-08-06" | "openai/o3-mini" | "openai/gpt-5.2" | "openai/gpt-5.3-codex" | "openai/gpt-audio-mini" | "openai/gpt-5.6-luna" | "openai/gpt-5.1-codex-mini" | "openai/gpt-5.6-terra" | "openai/o4-mini-deep-research" | "openai/gpt-4.1-nano" | "openai/gpt-oss-120b" | "openai/gpt-4o-2024-11-20" | "openai/o1" | "openai/o1-pro" | "openai/gpt-chat-latest" | "openai/gpt-5-image" | "openai/gpt-5.4" | "openai/gpt-5.4-mini" | "openai/gpt-4.1" | "openai/o3-deep-research" | "openai/gpt-4-turbo-preview" | "openai/gpt-5-mini" | "openai/gpt-4.1-mini" | "openai/gpt-4-turbo" | "openai/gpt-5-nano" | "openai/gpt-5.4-pro" | "openai/o3-mini-high" | "openai/gpt-5.4-image-2" | "openai/gpt-4o-search-preview" | "openai/gpt-5.5-pro" | "openai/gpt-4o-mini" | "openai/gpt-oss-20b" | "openai/gpt-5.6-sol" | "openai/gpt-5-codex" | "openai/gpt-5.2-codex" | "openai/gpt-oss-20b:free" | "openai/gpt-5.1" | "openai/gpt-5.5" | "thedrummer/cydonia-24b-v4.1" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/rocinante-12b" | "bytedance/ui-tars-1.5-7b" | "rekaai/reka-flash-3" | "rekaai/reka-edge" | "mistralai/mistral-large-2407" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/mistral-nemo" | "mistralai/mistral-medium-3-5" | "mistralai/ministral-8b-2512" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/mistral-saba" | "mistralai/mistral-large" | "mistralai/mistral-medium-3.1" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/ministral-3b-2512" | "mistralai/mistral-small-2603" | "mistralai/ministral-14b-2512" | "mistralai/devstral-2512" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-large-2512" | "mistralai/codestral-2508" | "morph/morph-v3-fast" | "morph/morph-v3-large" | "bytedance-seed/seed-1.6-flash" | "bytedance-seed/seed-1.6" | "bytedance-seed/seed-2.0-mini" | "bytedance-seed/seed-2.0-lite" | "sakana/fugu-ultra" | "anthracite-org/magnum-v4-72b" | "nvidia/nemotron-3-nano-30b-a3b:free" | "nvidia/nemotron-nano-9b-v2:free" | "nvidia/nemotron-nano-12b-v2-vl:free" | "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free" | "nvidia/nemotron-3-ultra-550b-a55b:free" | "nvidia/nemotron-3-ultra-550b-a55b" | "nvidia/nemotron-3.5-content-safety:free" | "nvidia/nemotron-3-nano-30b-a3b" | "nvidia/llama-3.3-nemotron-super-49b-v1.5" | "nvidia/nemotron-3-super-120b-a12b:free" | "nvidia/nemotron-3-super-120b-a12b" | "cognitivecomputations/dolphin-mistral-24b-venice-edition" | "cognitivecomputations/dolphin-mistral-24b-venice-edition:free" | "xiaomi/mimo-v2.5" | "xiaomi/mimo-v2.5-pro" | "inception/mercury-2" | "anthropic/claude-sonnet-4.5" | "anthropic/claude-sonnet-4" | "anthropic/claude-haiku-4.5" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-sonnet-5" | "anthropic/claude-opus-4.7" | "anthropic/claude-opus-4.8" | "anthropic/claude-fable-5" | "anthropic/claude-opus-4.1" | "anthropic/claude-opus-4.5" | "anthropic/claude-sonnet-4.6" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-opus-4.6" | "tencent/hy3:free" | "tencent/hy3" | "tencent/hunyuan-a13b-instruct" | "tencent/hy3-preview" | "deepcogito/cogito-v2.1-671b" | "cohere/command-a" | "cohere/command-r-08-2024" | "cohere/command-r7b-12-2024" | "cohere/command-r-plus-08-2024" | "cohere/north-mini-code:free" | "~x-ai/grok-latest" | "gryphe/mythomax-l2-13b" | "stepfun/step-3.7-flash" | "stepfun/step-3.5-flash" | "nex-agi/nex-n2-mini" | "nex-agi/nex-n2-pro" | "undi95/remm-slerp-l2-13b" | "~openai/gpt-mini-latest" | "~openai/gpt-latest" | "~moonshotai/kimi-latest" | "relace/relace-search" | "relace/relace-apply-3" | "ai21/jamba-large-1.7" | "arcee-ai/coder-large" | "arcee-ai/virtuoso-large" | "arcee-ai/trinity-large-thinking" | "mancer/weaver" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "openrouter/free" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen3-coder-plus" | "qwen/qwen-plus" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-32b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.7-plus" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3.7-max" | "qwen/qwen3-max" | "qwen/qwen3-8b" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-coder:free" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen3-coder" | "qwen/qwen3.6-flash" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-max-thinking" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3.5-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder-next" | "qwen/qwen3.6-27b" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.5-9b" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-coder-flash" | "qwen/qwen3-14b" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3.6-plus" | "amazon/nova-lite-v1" | "amazon/nova-premier-v1" | "amazon/nova-pro-v1" | "amazon/nova-micro-v1" | "amazon/nova-2-lite-v1" | "aion-labs/aion-3.0-mini" | "aion-labs/aion-rp-llama-3.1-8b" | "aion-labs/aion-3.0" | "aion-labs/aion-2.0" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "sao10k/l3.1-euryale-70b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.1-70b-hanami-x1" | "upstage/solar-pro-3" | "allenai/olmo-3-32b-think" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v4-pro" | "deepseek/deepseek-r1" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-chat" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-chat-v3.1" | "minimax/minimax-m2.5" | "minimax/minimax-m2.1" | "minimax/minimax-01" | "minimax/minimax-m3" | "minimax/minimax-m2" | "minimax/minimax-m2-her" | "minimax/minimax-m2.7" | "minimax/minimax-m1" | "kwaipilot/kat-coder-pro-v2" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-4-405b" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-4-70b";
3
+ export type ModelName="Ling-2.6-1T" | "Ring-2.6-1T" | "Ling-2.6-flash" | "Granite 4.0 Micro" | "Granite 4.1 8B" | "Llama 3.1 8B Instruct" | "Llama 3.1 70B Instruct" | "Llama 3.2 1B Instruct" | "Llama 4 Maverick" | "Llama 3.2 11B Vision Instruct" | "Llama 3.3 70B Instruct (free)" | "Llama-3.3-70B-Instruct" | "Llama 3.2 3B Instruct (free)" | "Llama Guard 4 12B" | "Llama 4 Scout" | "Llama 3.2 3B Instruct" | "Anthropic Claude Haiku Latest" | "Claude Fable Latest" | "Anthropic Claude Sonnet Latest" | "Claude Opus Latest" | "Kimi K2 0711" | "Kimi K2.7 Code" | "Kimi K2 Thinking" | "Kimi K2.5" | "Kimi K2.6" | "Kimi K2 0905" | "ERNIE 4.5 VL 424B A47B " | "Perceptron Mk1" | "Gemini 3.1 Flash Lite" | "Nano Banana 2" | "Gemma 3n 4B" | "Gemma 4 26B A4B (free)" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Gemma 4 31B IT" | "Lyria 3 Clip Preview" | "Gemini 3.1 Pro Preview Custom Tools" | "Nano Banana 2 Lite (Gemini 3.1 Flash Lite Image)" | "Nano Banana Pro" | "Nano Banana" | "Gemini 2.5 Flash-Lite" | "Gemini 2.5 Pro Preview 05-06" | "Gemini 3.1 Pro Preview" | "Gemma 4 26B A4B IT" | "Gemini 2.5 Pro Preview 06-05" | "Gemini 3 Flash Preview" | "Gemma 3 12B" | "Gemma 3 4B" | "Gemma 3 27B" | "Lyria 3 Pro Preview" | "Gemma 4 31B (free)" | "Gemma 2 27B" | "Gemini 3.1 Flash Lite Preview" | "LFM2.5-1.2B-Thinking (free)" | "LFM2.5-1.2B-Instruct (free)" | "Grok 4.20" | "Grok 4.3" | "Grok 4.5" | "Grok 4.20 Multi-Agent" | "Grok Build 0.1" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "Phi 4" | "WizardLM-2 8x22B" | "Laguna XS 2.1 (free)" | "Laguna M.1" | "Laguna XS 2.1" | "Laguna M.1 (free)" | "Palmyra X5" | "GLM-4.7" | "GLM-4.5V" | "GLM-4.5" | "GLM-5.1" | "GLM-4.6" | "GLM-5.2" | "GLM-4.6V" | "GLM-5V-Turbo" | "GLM-4.5-Air" | "GLM-4.7-Flash" | "GLM-5" | "GLM-5-Turbo" | "GPT-4o-mini (2024-07-18)" | "gpt-oss-safeguard-20b" | "GPT-3.5 Turbo Instruct" | "GPT-5.2 Chat" | "GPT-5.6 Luna Pro" | "o3" | "GPT-5.6 Sol Pro" | "o4 Mini High" | "GPT Audio" | "GPT-5.2 Pro" | "GPT-4o-mini Search Preview" | "GPT-5.6 Terra Pro" | "GPT-5" | "GPT-5 Chat" | "GPT-3.5-turbo" | "GPT-5 Pro" | "GPT-4o" | "GPT-4" | "o4-mini" | "GPT-3.5 Turbo 16k" | "o3-pro" | "GPT-5.1 Chat" | "GPT-4o (2024-05-13)" | "GPT-5.4 nano" | "GPT-5.3 Chat" | "GPT-3.5 Turbo (older v0613)" | "GPT-5 Image Mini" | "GPT-5.1 Codex" | "GPT-5.1 Codex Max" | "gpt-oss-120b (free)" | "GPT-4o (2024-08-06)" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "GPT Audio Mini" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "GPT-5.6 Terra" | "o4-mini-deep-research" | "GPT-4.1 nano" | "GPT OSS 120B" | "GPT-4o (2024-11-20)" | "o1" | "o1-pro" | "GPT Chat Latest" | "GPT-5 Image" | "GPT-5.4" | "GPT-5.4 mini" | "GPT-4.1" | "o3-deep-research" | "GPT-4 Turbo Preview" | "GPT-5 Mini" | "GPT-4.1 mini" | "GPT-4 Turbo" | "GPT-5 Nano" | "GPT-5.4 Pro" | "o3 Mini High" | "GPT-5.4 Image 2" | "GPT-4o Search Preview" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GPT-5.6 Sol" | "GPT-5-Codex" | "GPT-5.2 Codex" | "gpt-oss-20b (free)" | "GPT-5.1" | "GPT-5.5" | "Cydonia 24B V4.1" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Rocinante 12B" | "UI-TARS 7B " | "Reka Flash 3" | "Reka Edge" | "Mistral Large 2407" | "Mistral Small 3.2 24B" | "Mistral Nemo" | "Mistral Medium 3.5" | "Ministral 3 8B 2512" | "Mistral Small 3.1 24B" | "Saba" | "Mistral Large" | "Mistral Medium 3.1" | "Mistral Small 3" | "Ministral 3 3B 2512" | "Mistral Small 4" | "Ministral 3 14B 2512" | "Devstral 2" | "Mixtral 8x22B Instruct" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Large 3" | "Codestral 2508" | "Morph V3 Fast" | "Morph V3 Large" | "Seed 1.6 Flash" | "Seed 1.6" | "Seed-2.0-Mini" | "Seed-2.0-Lite" | "Fugu Ultra" | "Magnum v4 72B" | "Nemotron 3 Nano 30B A3B (free)" | "Nemotron Nano 9B V2 (free)" | "Nemotron Nano 12B 2 VL (free)" | "Nemotron 3 Nano Omni (free)" | "Nemotron 3 Ultra (free)" | "Nemotron 3 Ultra 550B A55B" | "Nemotron 3.5 Content Safety (free)" | "Nemotron 3 Nano 30B A3B" | "Llama 3.3 Nemotron Super 49B v1.5" | "Nemotron 3 Super (free)" | "Nemotron 3 Super 120B A12B" | "Uncensored" | "Uncensored (free)" | "MiMo-V2.5" | "MiMo-V2.5-Pro" | "Mercury 2" | "Claude Sonnet 4.5 (latest)" | "Claude Sonnet 4" | "Claude Haiku 4.5 (latest)" | "Claude Opus 4.7 (Fast)" | "Claude Sonnet 5" | "Claude Opus 4.7" | "Claude Opus 4.8" | "Claude Fable 5" | "Claude Opus 4.1 (latest)" | "Claude Opus 4.5 (latest)" | "Claude Sonnet 4.6" | "Claude 3 Haiku" | "Claude Opus 4" | "Claude Opus 4.8 (Fast)" | "Claude Opus 4.6" | "Hy3 (free)" | "Hy3" | "Hunyuan A13B Instruct" | "Hy3 preview" | "Cogito v2.1 671B" | "Command A" | "Command R" | "Command R7B" | "Command R+" | "North Mini Code (free)" | "Grok Latest" | "MythoMax 13B" | "Step 3.7 Flash" | "Step 3.5 Flash" | "Nex-N2-Mini" | "Nex-N2-Pro" | "ReMM SLERP 13B" | "OpenAI GPT Mini Latest" | "OpenAI GPT Latest" | "MoonshotAI Kimi Latest" | "Relace Search" | "Relace Apply 3" | "Jamba Large 1.7" | "Coder Large" | "Virtuoso Large" | "Trinity Large Thinking" | "Weaver (alpha)" | "Sonar Reasoning Pro" | "Sonar" | "Sonar Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Free Models Router" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3 VL 235B A22B Thinking" | "Qwen3 VL 30B A3B Thinking" | "Qwen3 Coder Plus" | "Qwen Plus" | "Qwen3-Coder 30B-A3B Instruct" | "Qwen3 32B" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "Qwen3.7 Plus" | "Qwen3.6 35B-A3B" | "Qwen3.7 Max" | "Qwen3 Max" | "Qwen3 8B" | "Qwen Plus 0728" | "Qwen3.5-Flash" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 30B A3B Instruct 2507" | "Qwen2.5 Coder 32B Instruct" | "Qwen3-Next 80B-A3B (Thinking)" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 VL 32B Instruct" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Flash" | "Qwen3.5 Plus 2026-02-15" | "Qwen2.5 7B Instruct" | "Qwen3 VL 8B Thinking" | "Qwen3 Max Thinking" | "Qwen3 30B A3B Thinking 2507" | "Qwen2.5 VL 72B Instruct" | "Qwen3.5 27B" | "Qwen3 235B-A22B" | "Qwen2.5 72B Instruct" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder Next" | "Qwen3.6 27B" | "Qwen3.5 35B-A3B" | "Qwen3.5 9B" | "Qwen3.5 397B-A17B" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 Coder Flash" | "Qwen3 14B" | "Qwen3 VL 235B A22B Instruct" | "Qwen3 30B A3B" | "Qwen3.6 Max Preview" | "Qwen3.5 122B-A10B" | "Qwen3.6 Plus" | "Nova Lite 1.0" | "Nova Premier 1.0" | "Nova Pro 1.0" | "Nova Micro 1.0" | "Nova 2 Lite" | "Aion-3.0-Mini" | "Aion-RP 1.0 (8B)" | "Aion-3.0" | "Aion-2.0" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3.3 Euryale 70B" | "Llama 3 8B Lunaris" | "Llama 3.1 70B Hanami x1" | "Solar Pro 3" | "Olmo 3 32B Think" | "R1 0528" | "DeepSeek V4 Flash" | "DeepSeek V3.1 Terminus" | "R1 Distill Llama 70B" | "DeepSeek V4 Pro" | "DeepSeek-R1" | "DeepSeek V3.2 Exp" | "DeepSeek V3 0324" | "DeepSeek Chat" | "DeepSeek V3.2" | "DeepSeek V3.1" | "MiniMax-M2.5" | "MiniMax-M2.1" | "MiniMax-01" | "MiniMax-M3" | "MiniMax-M2" | "MiniMax M2-her" | "MiniMax-M2.7" | "MiniMax M1" | "KAT-Coder-Pro V2" | "Hermes 3 405B Instruct (free)" | "Hermes 4 405B" | "Hermes 3 70B Instruct" | "Hermes 3 405B Instruct" | "Hermes 4 70B";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;
@@ -1,6 +1,6 @@
1
1
  import type{Model,PriceBreakdown,TokenUsage}from'../index.js';
2
- export type ModelId="inclusionai/ling-2.6-1t" | "inclusionai/ring-2.6-1t" | "inclusionai/ling-2.6-flash" | "ibm-granite/granite-4.0-h-micro" | "ibm-granite/granite-4.1-8b" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.3-70b-instruct:free" | "meta-llama/llama-3.3-70b-instruct" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-3-8b-instruct" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-3b-instruct" | "~anthropic/claude-haiku-latest" | "~anthropic/claude-fable-latest" | "~anthropic/claude-sonnet-latest" | "~anthropic/claude-opus-latest" | "moonshotai/kimi-k2" | "moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2-thinking" | "moonshotai/kimi-k2.5" | "moonshotai/kimi-k2.6" | "moonshotai/kimi-k2-0905" | "baidu/ernie-4.5-vl-424b-a47b" | "perceptron/perceptron-mk1" | "google/gemini-3.1-flash-lite" | "google/gemini-3.1-flash-image" | "google/gemma-3n-e4b-it" | "google/gemma-4-26b-a4b-it:free" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-3.5-flash" | "google/gemma-4-31b-it" | "google/lyria-3-clip-preview" | "google/gemini-3.1-pro-preview-customtools" | "google/gemini-3.1-flash-lite-image" | "google/gemini-3-pro-image-preview" | "google/gemini-2.5-flash-image" | "google/gemini-2.5-flash-lite" | "google/gemini-3.1-flash-image-preview" | "google/gemini-2.5-pro-preview-05-06" | "google/gemini-3.1-pro-preview" | "google/gemma-4-26b-a4b-it" | "google/gemini-2.5-pro-preview" | "google/gemini-3-flash-preview" | "google/gemma-3-12b-it" | "google/gemma-3-4b-it" | "google/gemma-3-27b-it" | "google/lyria-3-pro-preview" | "google/gemma-4-31b-it:free" | "google/gemma-2-27b-it" | "google/gemini-3-pro-image" | "google/gemini-3.1-flash-lite-preview" | "liquid/lfm-2.5-1.2b-thinking:free" | "liquid/lfm-2.5-1.2b-instruct:free" | "x-ai/grok-4.20" | "x-ai/grok-4.3" | "x-ai/grok-4.5" | "x-ai/grok-4.20-multi-agent" | "x-ai/grok-build-0.1" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "microsoft/phi-4" | "microsoft/wizardlm-2-8x22b" | "poolside/laguna-xs-2.1:free" | "poolside/laguna-m.1" | "poolside/laguna-xs-2.1" | "poolside/laguna-m.1:free" | "writer/palmyra-x5" | "z-ai/glm-4.7" | "z-ai/glm-4.5v" | "z-ai/glm-4.5" | "z-ai/glm-5.1" | "z-ai/glm-4.6" | "z-ai/glm-5.2" | "z-ai/glm-4.6v" | "z-ai/glm-5v-turbo" | "z-ai/glm-4.5-air" | "z-ai/glm-4.7-flash" | "z-ai/glm-5" | "z-ai/glm-5-turbo" | "openai/gpt-4o-mini-2024-07-18" | "openai/gpt-oss-safeguard-20b" | "openai/gpt-3.5-turbo-instruct" | "openai/gpt-5.2-chat" | "openai/gpt-5.6-luna-pro" | "openai/o3" | "openai/gpt-5.6-sol-pro" | "openai/o4-mini-high" | "openai/gpt-audio" | "openai/gpt-5.2-pro" | "openai/gpt-4o-mini-search-preview" | "openai/gpt-5.6-terra-pro" | "openai/gpt-5" | "openai/gpt-5-chat" | "openai/gpt-3.5-turbo" | "openai/gpt-5-pro" | "openai/gpt-4o" | "openai/gpt-4" | "openai/o4-mini" | "openai/gpt-3.5-turbo-16k" | "openai/o3-pro" | "openai/gpt-5.1-chat" | "openai/gpt-4o-2024-05-13" | "openai/gpt-5.4-nano" | "openai/gpt-5.3-chat" | "openai/gpt-3.5-turbo-0613" | "openai/gpt-5-image-mini" | "openai/gpt-5.1-codex" | "openai/gpt-5.1-codex-max" | "openai/gpt-oss-120b:free" | "openai/gpt-4o-2024-08-06" | "openai/o3-mini" | "openai/gpt-5.2" | "openai/gpt-5.3-codex" | "openai/gpt-audio-mini" | "openai/gpt-5.6-luna" | "openai/gpt-5.1-codex-mini" | "openai/gpt-5.6-terra" | "openai/o4-mini-deep-research" | "openai/gpt-4.1-nano" | "openai/gpt-oss-120b" | "openai/gpt-4o-2024-11-20" | "openai/o1" | "openai/o1-pro" | "openai/gpt-chat-latest" | "openai/gpt-5-image" | "openai/gpt-5.4" | "openai/gpt-5.4-mini" | "openai/gpt-4.1" | "openai/o3-deep-research" | "openai/gpt-4-turbo-preview" | "openai/gpt-5-mini" | "openai/gpt-4.1-mini" | "openai/gpt-4-turbo" | "openai/gpt-5-nano" | "openai/gpt-5.4-pro" | "openai/o3-mini-high" | "openai/gpt-5.4-image-2" | "openai/gpt-4o-search-preview" | "openai/gpt-5.5-pro" | "openai/gpt-4o-mini" | "openai/gpt-oss-20b" | "openai/gpt-5.6-sol" | "openai/gpt-5-codex" | "openai/gpt-5.2-codex" | "openai/gpt-oss-20b:free" | "openai/gpt-5.1" | "openai/gpt-5.5" | "thedrummer/cydonia-24b-v4.1" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/rocinante-12b" | "bytedance/ui-tars-1.5-7b" | "rekaai/reka-flash-3" | "rekaai/reka-edge" | "mistralai/mistral-large-2407" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/mistral-nemo" | "mistralai/mistral-medium-3-5" | "mistralai/ministral-8b-2512" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/mistral-saba" | "mistralai/mistral-large" | "mistralai/mistral-medium-3.1" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/ministral-3b-2512" | "mistralai/mistral-small-2603" | "mistralai/ministral-14b-2512" | "mistralai/devstral-2512" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-large-2512" | "mistralai/codestral-2508" | "morph/morph-v3-fast" | "morph/morph-v3-large" | "bytedance-seed/seed-1.6-flash" | "bytedance-seed/seed-1.6" | "bytedance-seed/seed-2.0-mini" | "bytedance-seed/seed-2.0-lite" | "sakana/fugu-ultra" | "anthracite-org/magnum-v4-72b" | "nvidia/nemotron-3-nano-30b-a3b:free" | "nvidia/nemotron-nano-9b-v2:free" | "nvidia/nemotron-nano-12b-v2-vl:free" | "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free" | "nvidia/nemotron-3-ultra-550b-a55b:free" | "nvidia/nemotron-3-ultra-550b-a55b" | "nvidia/nemotron-3.5-content-safety:free" | "nvidia/nemotron-3-nano-30b-a3b" | "nvidia/llama-3.3-nemotron-super-49b-v1.5" | "nvidia/nemotron-3-super-120b-a12b:free" | "nvidia/nemotron-3-super-120b-a12b" | "cognitivecomputations/dolphin-mistral-24b-venice-edition" | "cognitivecomputations/dolphin-mistral-24b-venice-edition:free" | "xiaomi/mimo-v2.5" | "xiaomi/mimo-v2.5-pro" | "inception/mercury-2" | "anthropic/claude-sonnet-4.5" | "anthropic/claude-sonnet-4" | "anthropic/claude-haiku-4.5" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-sonnet-5" | "anthropic/claude-opus-4.7" | "anthropic/claude-opus-4.8" | "anthropic/claude-fable-5" | "anthropic/claude-opus-4.1" | "anthropic/claude-opus-4.5" | "anthropic/claude-sonnet-4.6" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-opus-4.6" | "tencent/hy3:free" | "tencent/hy3" | "tencent/hunyuan-a13b-instruct" | "tencent/hy3-preview" | "deepcogito/cogito-v2.1-671b" | "cohere/command-a" | "cohere/command-r-08-2024" | "cohere/command-r7b-12-2024" | "cohere/command-r-plus-08-2024" | "cohere/north-mini-code:free" | "~x-ai/grok-latest" | "gryphe/mythomax-l2-13b" | "stepfun/step-3.7-flash" | "stepfun/step-3.5-flash" | "nex-agi/nex-n2-mini" | "nex-agi/nex-n2-pro" | "undi95/remm-slerp-l2-13b" | "~openai/gpt-mini-latest" | "~openai/gpt-latest" | "~moonshotai/kimi-latest" | "relace/relace-search" | "relace/relace-apply-3" | "ai21/jamba-large-1.7" | "arcee-ai/coder-large" | "arcee-ai/virtuoso-large" | "arcee-ai/trinity-large-thinking" | "mancer/weaver" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "openrouter/free" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen3-coder-plus" | "qwen/qwen-plus" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-32b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.7-plus" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3.7-max" | "qwen/qwen3-max" | "qwen/qwen3-8b" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-coder:free" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen3-coder" | "qwen/qwen3.6-flash" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-max-thinking" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3.5-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder-next" | "qwen/qwen3.6-27b" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.5-9b" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-coder-flash" | "qwen/qwen3-14b" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3.6-plus" | "amazon/nova-lite-v1" | "amazon/nova-premier-v1" | "amazon/nova-pro-v1" | "amazon/nova-micro-v1" | "amazon/nova-2-lite-v1" | "aion-labs/aion-3.0-mini" | "aion-labs/aion-rp-llama-3.1-8b" | "aion-labs/aion-3.0" | "aion-labs/aion-2.0" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "sao10k/l3.1-euryale-70b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.1-70b-hanami-x1" | "upstage/solar-pro-3" | "allenai/olmo-3-32b-think" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v4-pro" | "deepseek/deepseek-r1" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-chat" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-chat-v3.1" | "minimax/minimax-m2.5" | "minimax/minimax-m2.1" | "minimax/minimax-01" | "minimax/minimax-m3" | "minimax/minimax-m2" | "minimax/minimax-m2-her" | "minimax/minimax-m2.7" | "minimax/minimax-m1" | "kwaipilot/kat-coder-pro-v2" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-4-405b" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-4-70b";
3
- export type ModelName="Ling-2.6-1T" | "Ring-2.6-1T" | "Ling-2.6-flash" | "Granite 4.0 Micro" | "Granite 4.1 8B" | "Llama 3.1 8B Instruct" | "Llama 3.1 70B Instruct" | "Llama 3.2 1B Instruct" | "Llama 4 Maverick" | "Llama 3.2 11B Vision Instruct" | "Llama 3.3 70B Instruct (free)" | "Llama-3.3-70B-Instruct" | "Llama 3.2 3B Instruct (free)" | "Llama Guard 4 12B" | "Llama 3 8B Instruct" | "Llama 4 Scout" | "Llama 3.2 3B Instruct" | "Anthropic Claude Haiku Latest" | "Claude Fable Latest" | "Anthropic Claude Sonnet Latest" | "Claude Opus Latest" | "Kimi K2 0711" | "Kimi K2.7 Code" | "Kimi K2 Thinking" | "Kimi K2.5" | "Kimi K2.6" | "Kimi K2 0905" | "ERNIE 4.5 VL 424B A47B " | "Perceptron Mk1" | "Gemini 3.1 Flash Lite" | "Nano Banana 2 (Gemini 3.1 Flash Image)" | "Gemma 3n 4B" | "Gemma 4 26B A4B (free)" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Gemma 4 31B IT" | "Lyria 3 Clip Preview" | "Gemini 3.1 Pro Preview Custom Tools" | "Nano Banana 2 Lite (Gemini 3.1 Flash Lite Image)" | "Nano Banana Pro" | "Nano Banana" | "Gemini 2.5 Flash-Lite" | "Nano Banana 2" | "Gemini 2.5 Pro Preview 05-06" | "Gemini 3.1 Pro Preview" | "Gemma 4 26B A4B IT" | "Gemini 2.5 Pro Preview 06-05" | "Gemini 3 Flash Preview" | "Gemma 3 12B" | "Gemma 3 4B" | "Gemma 3 27B" | "Lyria 3 Pro Preview" | "Gemma 4 31B (free)" | "Gemma 2 27B" | "Nano Banana Pro (Gemini 3 Pro Image)" | "Gemini 3.1 Flash Lite Preview" | "LFM2.5-1.2B-Thinking (free)" | "LFM2.5-1.2B-Instruct (free)" | "Grok 4.20" | "Grok 4.3" | "Grok 4.5" | "Grok 4.20 Multi-Agent" | "Grok Build 0.1" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "Phi 4" | "WizardLM-2 8x22B" | "Laguna XS 2.1 (free)" | "Laguna M.1" | "Laguna XS 2.1" | "Laguna M.1 (free)" | "Palmyra X5" | "GLM-4.7" | "GLM-4.5V" | "GLM-4.5" | "GLM-5.1" | "GLM-4.6" | "GLM-5.2" | "GLM-4.6V" | "GLM-5V-Turbo" | "GLM-4.5-Air" | "GLM-4.7-Flash" | "GLM-5" | "GLM-5-Turbo" | "GPT-4o-mini (2024-07-18)" | "gpt-oss-safeguard-20b" | "GPT-3.5 Turbo Instruct" | "GPT-5.2 Chat" | "GPT-5.6 Luna Pro" | "o3" | "GPT-5.6 Sol Pro" | "o4 Mini High" | "GPT Audio" | "GPT-5.2 Pro" | "GPT-4o-mini Search Preview" | "GPT-5.6 Terra Pro" | "GPT-5" | "GPT-5 Chat" | "GPT-3.5-turbo" | "GPT-5 Pro" | "GPT-4o" | "GPT-4" | "o4-mini" | "GPT-3.5 Turbo 16k" | "o3-pro" | "GPT-5.1 Chat" | "GPT-4o (2024-05-13)" | "GPT-5.4 nano" | "GPT-5.3 Chat" | "GPT-3.5 Turbo (older v0613)" | "GPT-5 Image Mini" | "GPT-5.1 Codex" | "GPT-5.1 Codex Max" | "gpt-oss-120b (free)" | "GPT-4o (2024-08-06)" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "GPT Audio Mini" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "GPT-5.6 Terra" | "o4-mini-deep-research" | "GPT-4.1 nano" | "GPT OSS 120B" | "GPT-4o (2024-11-20)" | "o1" | "o1-pro" | "GPT Chat Latest" | "GPT-5 Image" | "GPT-5.4" | "GPT-5.4 mini" | "GPT-4.1" | "o3-deep-research" | "GPT-4 Turbo Preview" | "GPT-5 Mini" | "GPT-4.1 mini" | "GPT-4 Turbo" | "GPT-5 Nano" | "GPT-5.4 Pro" | "o3 Mini High" | "GPT-5.4 Image 2" | "GPT-4o Search Preview" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GPT-5.6 Sol" | "GPT-5-Codex" | "GPT-5.2 Codex" | "gpt-oss-20b (free)" | "GPT-5.1" | "GPT-5.5" | "Cydonia 24B V4.1" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Rocinante 12B" | "UI-TARS 7B " | "Reka Flash 3" | "Reka Edge" | "Mistral Large 2407" | "Mistral Small 3.2 24B" | "Mistral Nemo" | "Mistral Medium 3.5" | "Ministral 3 8B 2512" | "Mistral Small 3.1 24B" | "Saba" | "Mistral Large" | "Mistral Medium 3.1" | "Mistral Small 3" | "Ministral 3 3B 2512" | "Mistral Small 4" | "Ministral 3 14B 2512" | "Devstral 2" | "Mixtral 8x22B Instruct" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Large 3" | "Codestral 2508" | "Morph V3 Fast" | "Morph V3 Large" | "Seed 1.6 Flash" | "Seed 1.6" | "Seed-2.0-Mini" | "Seed-2.0-Lite" | "Fugu Ultra" | "Magnum v4 72B" | "Nemotron 3 Nano 30B A3B (free)" | "Nemotron Nano 9B V2 (free)" | "Nemotron Nano 12B 2 VL (free)" | "Nemotron 3 Nano Omni (free)" | "Nemotron 3 Ultra (free)" | "Nemotron 3 Ultra 550B A55B" | "Nemotron 3.5 Content Safety (free)" | "Nemotron 3 Nano 30B A3B" | "Llama 3.3 Nemotron Super 49B v1.5" | "Nemotron 3 Super (free)" | "Nemotron 3 Super 120B A12B" | "Uncensored" | "Uncensored (free)" | "MiMo-V2.5" | "MiMo-V2.5-Pro" | "Mercury 2" | "Claude Sonnet 4.5 (latest)" | "Claude Sonnet 4" | "Claude Haiku 4.5 (latest)" | "Claude Opus 4.7 (Fast)" | "Claude Sonnet 5" | "Claude Opus 4.7" | "Claude Opus 4.8" | "Claude Fable 5" | "Claude Opus 4.1 (latest)" | "Claude Opus 4.5 (latest)" | "Claude Sonnet 4.6" | "Claude 3 Haiku" | "Claude Opus 4" | "Claude Opus 4.8 (Fast)" | "Claude Opus 4.6" | "Hy3 (free)" | "Hy3" | "Hunyuan A13B Instruct" | "Hy3 preview" | "Cogito v2.1 671B" | "Command A" | "Command R" | "Command R7B" | "Command R+" | "North Mini Code (free)" | "Grok Latest" | "MythoMax 13B" | "Step 3.7 Flash" | "Step 3.5 Flash" | "Nex-N2-Mini" | "Nex-N2-Pro" | "ReMM SLERP 13B" | "OpenAI GPT Mini Latest" | "OpenAI GPT Latest" | "MoonshotAI Kimi Latest" | "Relace Search" | "Relace Apply 3" | "Jamba Large 1.7" | "Coder Large" | "Virtuoso Large" | "Trinity Large Thinking" | "Weaver (alpha)" | "Sonar Reasoning Pro" | "Sonar" | "Sonar Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Free Models Router" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3 VL 235B A22B Thinking" | "Qwen3 VL 30B A3B Thinking" | "Qwen3 Coder Plus" | "Qwen Plus" | "Qwen3-Coder 30B-A3B Instruct" | "Qwen3 32B" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "Qwen3.7 Plus" | "Qwen3.6 35B-A3B" | "Qwen3.7 Max" | "Qwen3 Max" | "Qwen3 8B" | "Qwen Plus 0728" | "Qwen3.5-Flash" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 30B A3B Instruct 2507" | "Qwen2.5 Coder 32B Instruct" | "Qwen3-Next 80B-A3B (Thinking)" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 VL 32B Instruct" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Flash" | "Qwen3.5 Plus 2026-02-15" | "Qwen2.5 7B Instruct" | "Qwen3 VL 8B Thinking" | "Qwen3 Max Thinking" | "Qwen3 30B A3B Thinking 2507" | "Qwen2.5 VL 72B Instruct" | "Qwen3.5 27B" | "Qwen3 235B-A22B" | "Qwen2.5 72B Instruct" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder Next" | "Qwen3.6 27B" | "Qwen3.5 35B-A3B" | "Qwen3.5 9B" | "Qwen3.5 397B-A17B" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 Coder Flash" | "Qwen3 14B" | "Qwen3 VL 235B A22B Instruct" | "Qwen3 30B A3B" | "Qwen3.6 Max Preview" | "Qwen3.5 122B-A10B" | "Qwen3.6 Plus" | "Nova Lite 1.0" | "Nova Premier 1.0" | "Nova Pro 1.0" | "Nova Micro 1.0" | "Nova 2 Lite" | "Aion-3.0-Mini" | "Aion-RP 1.0 (8B)" | "Aion-3.0" | "Aion-2.0" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3.3 Euryale 70B" | "Llama 3 8B Lunaris" | "Llama 3.1 70B Hanami x1" | "Solar Pro 3" | "Olmo 3 32B Think" | "R1 0528" | "DeepSeek V4 Flash" | "DeepSeek V3.1 Terminus" | "R1 Distill Llama 70B" | "DeepSeek V4 Pro" | "DeepSeek-R1" | "DeepSeek V3.2 Exp" | "DeepSeek V3 0324" | "DeepSeek Chat" | "DeepSeek V3.2" | "DeepSeek V3.1" | "MiniMax-M2.5" | "MiniMax-M2.1" | "MiniMax-01" | "MiniMax-M3" | "MiniMax-M2" | "MiniMax M2-her" | "MiniMax-M2.7" | "MiniMax M1" | "KAT-Coder-Pro V2" | "Hermes 3 405B Instruct (free)" | "Hermes 4 405B" | "Hermes 3 70B Instruct" | "Hermes 3 405B Instruct" | "Hermes 4 70B";
2
+ export type ModelId="inclusionai/ling-2.6-1t" | "inclusionai/ring-2.6-1t" | "inclusionai/ling-2.6-flash" | "ibm-granite/granite-4.0-h-micro" | "ibm-granite/granite-4.1-8b" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.3-70b-instruct:free" | "meta-llama/llama-3.3-70b-instruct" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-3b-instruct" | "~anthropic/claude-haiku-latest" | "~anthropic/claude-fable-latest" | "~anthropic/claude-sonnet-latest" | "~anthropic/claude-opus-latest" | "moonshotai/kimi-k2" | "moonshotai/kimi-k2.7-code" | "moonshotai/kimi-k2-thinking" | "moonshotai/kimi-k2.5" | "moonshotai/kimi-k2.6" | "moonshotai/kimi-k2-0905" | "baidu/ernie-4.5-vl-424b-a47b" | "perceptron/perceptron-mk1" | "google/gemini-3.1-flash-lite" | "google/gemini-3.1-flash-image" | "google/gemma-3n-e4b-it" | "google/gemma-4-26b-a4b-it:free" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-3.5-flash" | "google/gemma-4-31b-it" | "google/lyria-3-clip-preview" | "google/gemini-3.1-pro-preview-customtools" | "google/gemini-3.1-flash-lite-image" | "google/gemini-3-pro-image-preview" | "google/gemini-2.5-flash-image" | "google/gemini-2.5-flash-lite" | "google/gemini-3.1-flash-image-preview" | "google/gemini-2.5-pro-preview-05-06" | "google/gemini-3.1-pro-preview" | "google/gemma-4-26b-a4b-it" | "google/gemini-2.5-pro-preview" | "google/gemini-3-flash-preview" | "google/gemma-3-12b-it" | "google/gemma-3-4b-it" | "google/gemma-3-27b-it" | "google/lyria-3-pro-preview" | "google/gemma-4-31b-it:free" | "google/gemma-2-27b-it" | "google/gemini-3-pro-image" | "google/gemini-3.1-flash-lite-preview" | "liquid/lfm-2.5-1.2b-thinking:free" | "liquid/lfm-2.5-1.2b-instruct:free" | "x-ai/grok-4.20" | "x-ai/grok-4.3" | "x-ai/grok-4.5" | "x-ai/grok-4.20-multi-agent" | "x-ai/grok-build-0.1" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "microsoft/phi-4" | "microsoft/wizardlm-2-8x22b" | "poolside/laguna-xs-2.1:free" | "poolside/laguna-m.1" | "poolside/laguna-xs-2.1" | "poolside/laguna-m.1:free" | "writer/palmyra-x5" | "z-ai/glm-4.7" | "z-ai/glm-4.5v" | "z-ai/glm-4.5" | "z-ai/glm-5.1" | "z-ai/glm-4.6" | "z-ai/glm-5.2" | "z-ai/glm-4.6v" | "z-ai/glm-5v-turbo" | "z-ai/glm-4.5-air" | "z-ai/glm-4.7-flash" | "z-ai/glm-5" | "z-ai/glm-5-turbo" | "openai/gpt-4o-mini-2024-07-18" | "openai/gpt-oss-safeguard-20b" | "openai/gpt-3.5-turbo-instruct" | "openai/gpt-5.2-chat" | "openai/gpt-5.6-luna-pro" | "openai/o3" | "openai/gpt-5.6-sol-pro" | "openai/o4-mini-high" | "openai/gpt-audio" | "openai/gpt-5.2-pro" | "openai/gpt-4o-mini-search-preview" | "openai/gpt-5.6-terra-pro" | "openai/gpt-5" | "openai/gpt-5-chat" | "openai/gpt-3.5-turbo" | "openai/gpt-5-pro" | "openai/gpt-4o" | "openai/gpt-4" | "openai/o4-mini" | "openai/gpt-3.5-turbo-16k" | "openai/o3-pro" | "openai/gpt-5.1-chat" | "openai/gpt-4o-2024-05-13" | "openai/gpt-5.4-nano" | "openai/gpt-5.3-chat" | "openai/gpt-3.5-turbo-0613" | "openai/gpt-5-image-mini" | "openai/gpt-5.1-codex" | "openai/gpt-5.1-codex-max" | "openai/gpt-oss-120b:free" | "openai/gpt-4o-2024-08-06" | "openai/o3-mini" | "openai/gpt-5.2" | "openai/gpt-5.3-codex" | "openai/gpt-audio-mini" | "openai/gpt-5.6-luna" | "openai/gpt-5.1-codex-mini" | "openai/gpt-5.6-terra" | "openai/o4-mini-deep-research" | "openai/gpt-4.1-nano" | "openai/gpt-oss-120b" | "openai/gpt-4o-2024-11-20" | "openai/o1" | "openai/o1-pro" | "openai/gpt-chat-latest" | "openai/gpt-5-image" | "openai/gpt-5.4" | "openai/gpt-5.4-mini" | "openai/gpt-4.1" | "openai/o3-deep-research" | "openai/gpt-4-turbo-preview" | "openai/gpt-5-mini" | "openai/gpt-4.1-mini" | "openai/gpt-4-turbo" | "openai/gpt-5-nano" | "openai/gpt-5.4-pro" | "openai/o3-mini-high" | "openai/gpt-5.4-image-2" | "openai/gpt-4o-search-preview" | "openai/gpt-5.5-pro" | "openai/gpt-4o-mini" | "openai/gpt-oss-20b" | "openai/gpt-5.6-sol" | "openai/gpt-5-codex" | "openai/gpt-5.2-codex" | "openai/gpt-oss-20b:free" | "openai/gpt-5.1" | "openai/gpt-5.5" | "thedrummer/cydonia-24b-v4.1" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/rocinante-12b" | "bytedance/ui-tars-1.5-7b" | "rekaai/reka-flash-3" | "rekaai/reka-edge" | "mistralai/mistral-large-2407" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/mistral-nemo" | "mistralai/mistral-medium-3-5" | "mistralai/ministral-8b-2512" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/mistral-saba" | "mistralai/mistral-large" | "mistralai/mistral-medium-3.1" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/ministral-3b-2512" | "mistralai/mistral-small-2603" | "mistralai/ministral-14b-2512" | "mistralai/devstral-2512" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-large-2512" | "mistralai/codestral-2508" | "morph/morph-v3-fast" | "morph/morph-v3-large" | "bytedance-seed/seed-1.6-flash" | "bytedance-seed/seed-1.6" | "bytedance-seed/seed-2.0-mini" | "bytedance-seed/seed-2.0-lite" | "sakana/fugu-ultra" | "anthracite-org/magnum-v4-72b" | "nvidia/nemotron-3-nano-30b-a3b:free" | "nvidia/nemotron-nano-9b-v2:free" | "nvidia/nemotron-nano-12b-v2-vl:free" | "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free" | "nvidia/nemotron-3-ultra-550b-a55b:free" | "nvidia/nemotron-3-ultra-550b-a55b" | "nvidia/nemotron-3.5-content-safety:free" | "nvidia/nemotron-3-nano-30b-a3b" | "nvidia/llama-3.3-nemotron-super-49b-v1.5" | "nvidia/nemotron-3-super-120b-a12b:free" | "nvidia/nemotron-3-super-120b-a12b" | "cognitivecomputations/dolphin-mistral-24b-venice-edition" | "cognitivecomputations/dolphin-mistral-24b-venice-edition:free" | "xiaomi/mimo-v2.5" | "xiaomi/mimo-v2.5-pro" | "inception/mercury-2" | "anthropic/claude-sonnet-4.5" | "anthropic/claude-sonnet-4" | "anthropic/claude-haiku-4.5" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-sonnet-5" | "anthropic/claude-opus-4.7" | "anthropic/claude-opus-4.8" | "anthropic/claude-fable-5" | "anthropic/claude-opus-4.1" | "anthropic/claude-opus-4.5" | "anthropic/claude-sonnet-4.6" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-opus-4.6" | "tencent/hy3:free" | "tencent/hy3" | "tencent/hunyuan-a13b-instruct" | "tencent/hy3-preview" | "deepcogito/cogito-v2.1-671b" | "cohere/command-a" | "cohere/command-r-08-2024" | "cohere/command-r7b-12-2024" | "cohere/command-r-plus-08-2024" | "cohere/north-mini-code:free" | "~x-ai/grok-latest" | "gryphe/mythomax-l2-13b" | "stepfun/step-3.7-flash" | "stepfun/step-3.5-flash" | "nex-agi/nex-n2-mini" | "nex-agi/nex-n2-pro" | "undi95/remm-slerp-l2-13b" | "~openai/gpt-mini-latest" | "~openai/gpt-latest" | "~moonshotai/kimi-latest" | "relace/relace-search" | "relace/relace-apply-3" | "ai21/jamba-large-1.7" | "arcee-ai/coder-large" | "arcee-ai/virtuoso-large" | "arcee-ai/trinity-large-thinking" | "mancer/weaver" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "openrouter/free" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen3-coder-plus" | "qwen/qwen-plus" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-32b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.7-plus" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3.7-max" | "qwen/qwen3-max" | "qwen/qwen3-8b" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-coder:free" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen3-coder" | "qwen/qwen3.6-flash" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-max-thinking" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3.5-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder-next" | "qwen/qwen3.6-27b" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.5-9b" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-coder-flash" | "qwen/qwen3-14b" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3.6-plus" | "amazon/nova-lite-v1" | "amazon/nova-premier-v1" | "amazon/nova-pro-v1" | "amazon/nova-micro-v1" | "amazon/nova-2-lite-v1" | "aion-labs/aion-3.0-mini" | "aion-labs/aion-rp-llama-3.1-8b" | "aion-labs/aion-3.0" | "aion-labs/aion-2.0" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "sao10k/l3.1-euryale-70b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.1-70b-hanami-x1" | "upstage/solar-pro-3" | "allenai/olmo-3-32b-think" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v4-pro" | "deepseek/deepseek-r1" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-chat" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-chat-v3.1" | "minimax/minimax-m2.5" | "minimax/minimax-m2.1" | "minimax/minimax-01" | "minimax/minimax-m3" | "minimax/minimax-m2" | "minimax/minimax-m2-her" | "minimax/minimax-m2.7" | "minimax/minimax-m1" | "kwaipilot/kat-coder-pro-v2" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-4-405b" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-4-70b";
3
+ export type ModelName="Ling-2.6-1T" | "Ring-2.6-1T" | "Ling-2.6-flash" | "Granite 4.0 Micro" | "Granite 4.1 8B" | "Llama 3.1 8B Instruct" | "Llama 3.1 70B Instruct" | "Llama 3.2 1B Instruct" | "Llama 4 Maverick" | "Llama 3.2 11B Vision Instruct" | "Llama 3.3 70B Instruct (free)" | "Llama-3.3-70B-Instruct" | "Llama 3.2 3B Instruct (free)" | "Llama Guard 4 12B" | "Llama 4 Scout" | "Llama 3.2 3B Instruct" | "Anthropic Claude Haiku Latest" | "Claude Fable Latest" | "Anthropic Claude Sonnet Latest" | "Claude Opus Latest" | "Kimi K2 0711" | "Kimi K2.7 Code" | "Kimi K2 Thinking" | "Kimi K2.5" | "Kimi K2.6" | "Kimi K2 0905" | "ERNIE 4.5 VL 424B A47B " | "Perceptron Mk1" | "Gemini 3.1 Flash Lite" | "Nano Banana 2" | "Gemma 3n 4B" | "Gemma 4 26B A4B (free)" | "Gemini 2.5 Pro" | "Gemini 2.5 Flash" | "Gemini 3.5 Flash" | "Gemma 4 31B IT" | "Lyria 3 Clip Preview" | "Gemini 3.1 Pro Preview Custom Tools" | "Nano Banana 2 Lite (Gemini 3.1 Flash Lite Image)" | "Nano Banana Pro" | "Nano Banana" | "Gemini 2.5 Flash-Lite" | "Gemini 2.5 Pro Preview 05-06" | "Gemini 3.1 Pro Preview" | "Gemma 4 26B A4B IT" | "Gemini 2.5 Pro Preview 06-05" | "Gemini 3 Flash Preview" | "Gemma 3 12B" | "Gemma 3 4B" | "Gemma 3 27B" | "Lyria 3 Pro Preview" | "Gemma 4 31B (free)" | "Gemma 2 27B" | "Gemini 3.1 Flash Lite Preview" | "LFM2.5-1.2B-Thinking (free)" | "LFM2.5-1.2B-Instruct (free)" | "Grok 4.20" | "Grok 4.3" | "Grok 4.5" | "Grok 4.20 Multi-Agent" | "Grok Build 0.1" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "Phi 4" | "WizardLM-2 8x22B" | "Laguna XS 2.1 (free)" | "Laguna M.1" | "Laguna XS 2.1" | "Laguna M.1 (free)" | "Palmyra X5" | "GLM-4.7" | "GLM-4.5V" | "GLM-4.5" | "GLM-5.1" | "GLM-4.6" | "GLM-5.2" | "GLM-4.6V" | "GLM-5V-Turbo" | "GLM-4.5-Air" | "GLM-4.7-Flash" | "GLM-5" | "GLM-5-Turbo" | "GPT-4o-mini (2024-07-18)" | "gpt-oss-safeguard-20b" | "GPT-3.5 Turbo Instruct" | "GPT-5.2 Chat" | "GPT-5.6 Luna Pro" | "o3" | "GPT-5.6 Sol Pro" | "o4 Mini High" | "GPT Audio" | "GPT-5.2 Pro" | "GPT-4o-mini Search Preview" | "GPT-5.6 Terra Pro" | "GPT-5" | "GPT-5 Chat" | "GPT-3.5-turbo" | "GPT-5 Pro" | "GPT-4o" | "GPT-4" | "o4-mini" | "GPT-3.5 Turbo 16k" | "o3-pro" | "GPT-5.1 Chat" | "GPT-4o (2024-05-13)" | "GPT-5.4 nano" | "GPT-5.3 Chat" | "GPT-3.5 Turbo (older v0613)" | "GPT-5 Image Mini" | "GPT-5.1 Codex" | "GPT-5.1 Codex Max" | "gpt-oss-120b (free)" | "GPT-4o (2024-08-06)" | "o3-mini" | "GPT-5.2" | "GPT-5.3 Codex" | "GPT Audio Mini" | "GPT-5.6 Luna" | "GPT-5.1 Codex mini" | "GPT-5.6 Terra" | "o4-mini-deep-research" | "GPT-4.1 nano" | "GPT OSS 120B" | "GPT-4o (2024-11-20)" | "o1" | "o1-pro" | "GPT Chat Latest" | "GPT-5 Image" | "GPT-5.4" | "GPT-5.4 mini" | "GPT-4.1" | "o3-deep-research" | "GPT-4 Turbo Preview" | "GPT-5 Mini" | "GPT-4.1 mini" | "GPT-4 Turbo" | "GPT-5 Nano" | "GPT-5.4 Pro" | "o3 Mini High" | "GPT-5.4 Image 2" | "GPT-4o Search Preview" | "GPT-5.5 Pro" | "GPT-4o mini" | "GPT OSS 20B" | "GPT-5.6 Sol" | "GPT-5-Codex" | "GPT-5.2 Codex" | "gpt-oss-20b (free)" | "GPT-5.1" | "GPT-5.5" | "Cydonia 24B V4.1" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Rocinante 12B" | "UI-TARS 7B " | "Reka Flash 3" | "Reka Edge" | "Mistral Large 2407" | "Mistral Small 3.2 24B" | "Mistral Nemo" | "Mistral Medium 3.5" | "Ministral 3 8B 2512" | "Mistral Small 3.1 24B" | "Saba" | "Mistral Large" | "Mistral Medium 3.1" | "Mistral Small 3" | "Ministral 3 3B 2512" | "Mistral Small 4" | "Ministral 3 14B 2512" | "Devstral 2" | "Mixtral 8x22B Instruct" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Large 3" | "Codestral 2508" | "Morph V3 Fast" | "Morph V3 Large" | "Seed 1.6 Flash" | "Seed 1.6" | "Seed-2.0-Mini" | "Seed-2.0-Lite" | "Fugu Ultra" | "Magnum v4 72B" | "Nemotron 3 Nano 30B A3B (free)" | "Nemotron Nano 9B V2 (free)" | "Nemotron Nano 12B 2 VL (free)" | "Nemotron 3 Nano Omni (free)" | "Nemotron 3 Ultra (free)" | "Nemotron 3 Ultra 550B A55B" | "Nemotron 3.5 Content Safety (free)" | "Nemotron 3 Nano 30B A3B" | "Llama 3.3 Nemotron Super 49B v1.5" | "Nemotron 3 Super (free)" | "Nemotron 3 Super 120B A12B" | "Uncensored" | "Uncensored (free)" | "MiMo-V2.5" | "MiMo-V2.5-Pro" | "Mercury 2" | "Claude Sonnet 4.5 (latest)" | "Claude Sonnet 4" | "Claude Haiku 4.5 (latest)" | "Claude Opus 4.7 (Fast)" | "Claude Sonnet 5" | "Claude Opus 4.7" | "Claude Opus 4.8" | "Claude Fable 5" | "Claude Opus 4.1 (latest)" | "Claude Opus 4.5 (latest)" | "Claude Sonnet 4.6" | "Claude 3 Haiku" | "Claude Opus 4" | "Claude Opus 4.8 (Fast)" | "Claude Opus 4.6" | "Hy3 (free)" | "Hy3" | "Hunyuan A13B Instruct" | "Hy3 preview" | "Cogito v2.1 671B" | "Command A" | "Command R" | "Command R7B" | "Command R+" | "North Mini Code (free)" | "Grok Latest" | "MythoMax 13B" | "Step 3.7 Flash" | "Step 3.5 Flash" | "Nex-N2-Mini" | "Nex-N2-Pro" | "ReMM SLERP 13B" | "OpenAI GPT Mini Latest" | "OpenAI GPT Latest" | "MoonshotAI Kimi Latest" | "Relace Search" | "Relace Apply 3" | "Jamba Large 1.7" | "Coder Large" | "Virtuoso Large" | "Trinity Large Thinking" | "Weaver (alpha)" | "Sonar Reasoning Pro" | "Sonar" | "Sonar Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Free Models Router" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3 VL 235B A22B Thinking" | "Qwen3 VL 30B A3B Thinking" | "Qwen3 Coder Plus" | "Qwen Plus" | "Qwen3-Coder 30B-A3B Instruct" | "Qwen3 32B" | "Qwen3-Next 80B-A3B Instruct" | "Qwen3 VL 8B Instruct" | "Qwen3.7 Plus" | "Qwen3.6 35B-A3B" | "Qwen3.7 Max" | "Qwen3 Max" | "Qwen3 8B" | "Qwen Plus 0728" | "Qwen3.5-Flash" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 30B A3B Instruct 2507" | "Qwen2.5 Coder 32B Instruct" | "Qwen3-Next 80B-A3B (Thinking)" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 VL 32B Instruct" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Flash" | "Qwen3.5 Plus 2026-02-15" | "Qwen2.5 7B Instruct" | "Qwen3 VL 8B Thinking" | "Qwen3 Max Thinking" | "Qwen3 30B A3B Thinking 2507" | "Qwen2.5 VL 72B Instruct" | "Qwen3.5 27B" | "Qwen3 235B-A22B" | "Qwen2.5 72B Instruct" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder Next" | "Qwen3.6 27B" | "Qwen3.5 35B-A3B" | "Qwen3.5 9B" | "Qwen3.5 397B-A17B" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 Coder Flash" | "Qwen3 14B" | "Qwen3 VL 235B A22B Instruct" | "Qwen3 30B A3B" | "Qwen3.6 Max Preview" | "Qwen3.5 122B-A10B" | "Qwen3.6 Plus" | "Nova Lite 1.0" | "Nova Premier 1.0" | "Nova Pro 1.0" | "Nova Micro 1.0" | "Nova 2 Lite" | "Aion-3.0-Mini" | "Aion-RP 1.0 (8B)" | "Aion-3.0" | "Aion-2.0" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3.3 Euryale 70B" | "Llama 3 8B Lunaris" | "Llama 3.1 70B Hanami x1" | "Solar Pro 3" | "Olmo 3 32B Think" | "R1 0528" | "DeepSeek V4 Flash" | "DeepSeek V3.1 Terminus" | "R1 Distill Llama 70B" | "DeepSeek V4 Pro" | "DeepSeek-R1" | "DeepSeek V3.2 Exp" | "DeepSeek V3 0324" | "DeepSeek Chat" | "DeepSeek V3.2" | "DeepSeek V3.1" | "MiniMax-M2.5" | "MiniMax-M2.1" | "MiniMax-01" | "MiniMax-M3" | "MiniMax-M2" | "MiniMax M2-her" | "MiniMax-M2.7" | "MiniMax M1" | "KAT-Coder-Pro V2" | "Hermes 3 405B Instruct (free)" | "Hermes 4 405B" | "Hermes 3 70B Instruct" | "Hermes 3 405B Instruct" | "Hermes 4 70B";
4
4
  export declare function getModels():Model[];
5
5
  export declare function getModel(id:ModelId):Model|undefined;
6
6
  export declare function getPrice(id:ModelId,tokens:TokenUsage):PriceBreakdown|null;