ai-model-prices 2026.6.2 → 2026.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/adapters/alibaba-token-plan.d.mts +6 -0
- package/dist/adapters/alibaba-token-plan.d.ts +6 -0
- package/dist/adapters/alibaba-token-plan.js +7 -0
- package/dist/adapters/alibaba-token-plan.mjs +5 -0
- package/dist/adapters/minimax-cn-coding-plan.d.mts +2 -2
- package/dist/adapters/minimax-cn-coding-plan.d.ts +2 -2
- package/dist/adapters/minimax-cn.d.mts +2 -2
- package/dist/adapters/minimax-cn.d.ts +2 -2
- package/dist/adapters/minimax-coding-plan.d.mts +2 -2
- package/dist/adapters/minimax-coding-plan.d.ts +2 -2
- package/dist/adapters/minimax.d.mts +2 -2
- package/dist/adapters/minimax.d.ts +2 -2
- package/dist/adapters/mistral.d.mts +2 -2
- package/dist/adapters/mistral.d.ts +2 -2
- package/dist/adapters/openrouter.d.mts +2 -2
- package/dist/adapters/openrouter.d.ts +2 -2
- package/dist/index.d.mts +8 -7
- package/dist/index.d.ts +8 -7
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/providers/_manifest.js +1 -1
- package/dist/providers/alibaba-token-plan.js +1 -0
- package/dist/providers/claudinio.js +1 -1
- package/dist/providers/github-copilot.js +1 -1
- package/dist/providers/minimax-cn-coding-plan.js +1 -1
- package/dist/providers/minimax-cn.js +1 -1
- package/dist/providers/minimax-coding-plan.js +1 -1
- package/dist/providers/minimax.js +1 -1
- package/dist/providers/mistral.js +1 -1
- package/dist/providers/openrouter.js +1 -1
- package/package.json +11 -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
|
-
**
|
|
9
|
+
**134 providers · 4732 models · Updated 2026-06-03**
|
|
10
10
|
<!-- STATS:END -->
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
@@ -252,6 +252,7 @@ filterModels({
|
|
|
252
252
|
| Scaleway | `scaleway` |
|
|
253
253
|
| Cerebras | `cerebras` |
|
|
254
254
|
| HPC-AI | `hpc-ai` |
|
|
255
|
+
| Alibaba Token Plan | `alibaba-token-plan` |
|
|
255
256
|
| Tencent TokenHub | `tencent-tokenhub` |
|
|
256
257
|
| Alibaba Coding Plan (China) | `alibaba-coding-plan-cn` |
|
|
257
258
|
| Cloudflare Workers AI | `cloudflare-workers-ai` |
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
|
|
2
|
+
export type ModelId="qwen-image-2.0-pro" | "deepseek-v3.2" | "wan2.7-image" | "wan2.7-image-pro" | "qwen-image-2.0" | "MiniMax-M2.5" | "kimi-k2.6" | "qwen3.7-max" | "qwen3.6-plus" | "qwen3.6-flash" | "deepseek-v4-flash" | "glm-5" | "deepseek-v4-pro" | "kimi-k2.5" | "glm-5.1";
|
|
3
|
+
export type ModelName="Qwen Image 2.0 Pro" | "DeepSeek V3.2" | "Wan2.7 Image" | "Wan2.7 Image Pro" | "Qwen Image 2.0" | "MiniMax-M2.5" | "Kimi K2.6" | "Qwen3.7 Max" | "Qwen3.6 Plus" | "Qwen3.6 Flash" | "DeepSeek V4 Flash" | "GLM-5" | "DeepSeek V4 Pro" | "Kimi K2.5" | "GLM-5.1";
|
|
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="qwen-image-2.0-pro" | "deepseek-v3.2" | "wan2.7-image" | "wan2.7-image-pro" | "qwen-image-2.0" | "MiniMax-M2.5" | "kimi-k2.6" | "qwen3.7-max" | "qwen3.6-plus" | "qwen3.6-flash" | "deepseek-v4-flash" | "glm-5" | "deepseek-v4-pro" | "kimi-k2.5" | "glm-5.1";
|
|
3
|
+
export type ModelName="Qwen Image 2.0 Pro" | "DeepSeek V3.2" | "Wan2.7 Image" | "Wan2.7 Image Pro" | "Qwen Image 2.0" | "MiniMax-M2.5" | "Kimi K2.6" | "Qwen3.7 Max" | "Qwen3.6 Plus" | "Qwen3.6 Flash" | "DeepSeek V4 Flash" | "GLM-5" | "DeepSeek V4 Pro" | "Kimi K2.5" | "GLM-5.1";
|
|
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="alibaba-token-plan";
|
|
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;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type{Model,PriceBreakdown,TokenUsage}from'../index.mjs';
|
|
2
|
-
export type ModelId="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
-
export type ModelName="MiniMax-M2.5" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
2
|
+
export type ModelId="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
3
|
+
export type ModelName="MiniMax-M2.5" | "MiniMax-M3" | "MiniMax-M2.5-highspeed" | "MiniMax-M2.7" | "MiniMax-M2" | "MiniMax-M2.7-highspeed" | "MiniMax-M2.1";
|
|
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="mistral-large-2411" | "mistral-medium-2508" | "devstral-medium-latest" | "mistral-small-2603" | "mistral-medium-2604" | "mistral-embed" | "ministral-8b-latest" | "mistral-nemo" | "mistral-large-2512" | "open-mistral-7b" | "labs-devstral-small-2512" | "mistral-large-latest" | "mistral-medium-2505" | "magistral-small" | "open-mixtral-8x22b" | "mistral-small-2506" | "pixtral-12b" | "devstral-small-2507" | "devstral-2512" | "codestral-latest" | "pixtral-large-latest" | "ministral-3b-latest" | "devstral-small-2505" | "open-mixtral-8x7b" | "magistral-medium-latest" | "mistral-small-latest" | "devstral-medium-2507" | "mistral-medium-latest";
|
|
3
|
-
export type ModelName="Mistral Large 2.1" | "Mistral Medium 3.1" | "Devstral 2 (latest)" | "Mistral Small 4" | "Mistral Medium 3.5" | "Mistral Embed" | "Ministral 8B (latest)" | "Mistral Nemo" | "Mistral Large 3" | "Mistral 7B" | "Devstral Small 2" | "Mistral Large (latest)" | "Mistral Medium 3" | "Magistral Small" | "Mixtral 8x22B" | "Mistral Small 3.2" | "Pixtral 12B" | "Devstral Small" | "
|
|
2
|
+
export type ModelId="mistral-large-2411" | "mistral-medium-2508" | "devstral-medium-latest" | "mistral-small-2603" | "mistral-medium-2604" | "mistral-embed" | "ministral-8b-latest" | "mistral-nemo" | "mistral-large-2512" | "open-mistral-7b" | "labs-devstral-small-2512" | "mistral-large-latest" | "mistral-medium-2505" | "magistral-small" | "devstral-latest" | "open-mixtral-8x22b" | "mistral-small-2506" | "pixtral-12b" | "devstral-small-2507" | "devstral-2512" | "codestral-latest" | "pixtral-large-latest" | "open-mistral-nemo" | "ministral-3b-latest" | "devstral-small-2505" | "open-mixtral-8x7b" | "magistral-medium-latest" | "mistral-small-latest" | "devstral-medium-2507" | "mistral-medium-latest";
|
|
3
|
+
export type ModelName="Mistral Large 2.1" | "Mistral Medium 3.1" | "Devstral 2 (latest)" | "Mistral Small 4" | "Mistral Medium 3.5" | "Mistral Embed" | "Ministral 8B (latest)" | "Mistral Nemo" | "Mistral Large 3" | "Mistral 7B" | "Devstral Small 2" | "Mistral Large (latest)" | "Mistral Medium 3" | "Magistral Small" | "Devstral 2" | "Mixtral 8x22B" | "Mistral Small 3.2" | "Pixtral 12B" | "Devstral Small" | "Codestral (latest)" | "Pixtral Large (latest)" | "Open Mistral Nemo" | "Ministral 3B (latest)" | "Devstral Small 2505" | "Mixtral 8x7B" | "Magistral Medium (latest)" | "Mistral Small (latest)" | "Devstral Medium" | "Mistral Medium (latest)";
|
|
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="mistral-large-2411" | "mistral-medium-2508" | "devstral-medium-latest" | "mistral-small-2603" | "mistral-medium-2604" | "mistral-embed" | "ministral-8b-latest" | "mistral-nemo" | "mistral-large-2512" | "open-mistral-7b" | "labs-devstral-small-2512" | "mistral-large-latest" | "mistral-medium-2505" | "magistral-small" | "open-mixtral-8x22b" | "mistral-small-2506" | "pixtral-12b" | "devstral-small-2507" | "devstral-2512" | "codestral-latest" | "pixtral-large-latest" | "ministral-3b-latest" | "devstral-small-2505" | "open-mixtral-8x7b" | "magistral-medium-latest" | "mistral-small-latest" | "devstral-medium-2507" | "mistral-medium-latest";
|
|
3
|
-
export type ModelName="Mistral Large 2.1" | "Mistral Medium 3.1" | "Devstral 2 (latest)" | "Mistral Small 4" | "Mistral Medium 3.5" | "Mistral Embed" | "Ministral 8B (latest)" | "Mistral Nemo" | "Mistral Large 3" | "Mistral 7B" | "Devstral Small 2" | "Mistral Large (latest)" | "Mistral Medium 3" | "Magistral Small" | "Mixtral 8x22B" | "Mistral Small 3.2" | "Pixtral 12B" | "Devstral Small" | "
|
|
2
|
+
export type ModelId="mistral-large-2411" | "mistral-medium-2508" | "devstral-medium-latest" | "mistral-small-2603" | "mistral-medium-2604" | "mistral-embed" | "ministral-8b-latest" | "mistral-nemo" | "mistral-large-2512" | "open-mistral-7b" | "labs-devstral-small-2512" | "mistral-large-latest" | "mistral-medium-2505" | "magistral-small" | "devstral-latest" | "open-mixtral-8x22b" | "mistral-small-2506" | "pixtral-12b" | "devstral-small-2507" | "devstral-2512" | "codestral-latest" | "pixtral-large-latest" | "open-mistral-nemo" | "ministral-3b-latest" | "devstral-small-2505" | "open-mixtral-8x7b" | "magistral-medium-latest" | "mistral-small-latest" | "devstral-medium-2507" | "mistral-medium-latest";
|
|
3
|
+
export type ModelName="Mistral Large 2.1" | "Mistral Medium 3.1" | "Devstral 2 (latest)" | "Mistral Small 4" | "Mistral Medium 3.5" | "Mistral Embed" | "Ministral 8B (latest)" | "Mistral Nemo" | "Mistral Large 3" | "Mistral 7B" | "Devstral Small 2" | "Mistral Large (latest)" | "Mistral Medium 3" | "Magistral Small" | "Devstral 2" | "Mixtral 8x22B" | "Mistral Small 3.2" | "Pixtral 12B" | "Devstral Small" | "Codestral (latest)" | "Pixtral Large (latest)" | "Open Mistral Nemo" | "Ministral 3B (latest)" | "Devstral Small 2505" | "Mixtral 8x7B" | "Magistral Medium (latest)" | "Mistral Small (latest)" | "Devstral Medium" | "Mistral Medium (latest)";
|
|
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="kwaipilot/kat-coder-pro-v2" | "z-ai/glm-4-32b" | "upstage/solar-pro-3" | "prime-intellect/intellect-3" | "rekaai/reka-edge" | "rekaai/reka-flash-3" | "nousresearch/hermes-4-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-2-pro-llama-3-8b" | "nousresearch/hermes-4-405b" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/mistral-medium-3.1" | "mistralai/ministral-14b-2512" | "mistralai/mistral-large-2407" | "mistralai/ministral-8b-2512" | "mistralai/mistral-large" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/ministral-3b-2512" | "mistralai/mistral-saba" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-medium-3-5" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/codestral-2508" | "sao10k/l3.1-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-euryale-70b" | "sao10k/l3.1-70b-hanami-x1" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-r1" | "deepseek/deepseek-chat-v3.1" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-r1-distill-qwen-32b" | "inception/mercury-2" | "relace/relace-apply-3" | "relace/relace-search" | "thedrummer/rocinante-12b" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/cydonia-24b-v4.1" | "deepcogito/cogito-v2.1-671b" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "perceptron/perceptron-mk1" | "anthropic/claude-sonnet-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-3.5-haiku" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4.6-fast" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-opus-4" | "ai21/jamba-large-1.7" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-coder:free" | "qwen/qwen3-32b" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3.6-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-max" | "qwen/qwen3-coder-plus" | "qwen/qwen3-14b" | "qwen/qwen3-coder-next" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-8b" | "qwen/qwen3.7-max" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-plus" | "qwen/qwen3.5-9b" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-coder-flash" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.6-flash" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-max-thinking" | "qwen/qwen3.5-27b" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen-plus" | "~moonshotai/kimi-latest" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "liquid/lfm-2-24b-a2b" | "liquid/lfm-2.5-1.2b-instruct:free" | "liquid/lfm-2.5-1.2b-thinking:free" | "essentialai/rnj-1-instruct" | "cohere/command-a" | "openrouter/free" | "openrouter/owl-alpha" | "moonshotai/kimi-k2-0905" | "moonshotai/kimi-k2" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-3.2-3b-instruct" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-3-70b-instruct" | "meta-llama/llama-3-8b-instruct" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-guard-3-8b" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "anthracite-org/magnum-v4-72b" | "mancer/weaver" | "baidu/ernie-4.5-vl-424b-a47b" | "baidu/ernie-4.5-vl-28b-a3b" | "
|
|
3
|
-
export type ModelName="KAT-Coder-Pro V2" | "GLM 4 32B " | "Solar Pro 3" | "INTELLECT-3" | "Reka Edge" | "Reka Flash 3" | "Hermes 4 70B" | "Hermes 3 405B Instruct" | "Hermes 3 405B Instruct (free)" | "Hermes 3 70B Instruct" | "Hermes 2 Pro - Llama-3 8B" | "Hermes 4 405B" | "Mistral Small 3" | "Mistral Medium 3.1" | "Ministral 3 14B 2512" | "Mistral Large 2407" | "Ministral 3 8B 2512" | "Mistral Large" | "Mistral Small 3.1 24B" | "Ministral 3 3B 2512" | "Saba" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Medium 3.5" | "Mixtral 8x22B Instruct" | "Mistral Small 3.2 24B" | "Codestral 2508" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3 8B Lunaris" | "Llama 3.3 Euryale 70B" | "Llama 3 Euryale 70B v2.1" | "Llama 3.1 70B Hanami x1" | "R1 0528" | "DeepSeek V3.2" | "R1" | "DeepSeek V3.1" | "DeepSeek V3 0324" | "R1 Distill Llama 70B" | "DeepSeek V3.1 Terminus" | "DeepSeek V3.2 Exp" | "R1 Distill Qwen 32B" | "Mercury 2" | "Relace Apply 3" | "Relace Search" | "Rocinante 12B" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Cydonia 24B V4.1" | "Cogito v2.1 671B" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Perceptron Mk1" | "Claude Sonnet 4" | "Claude Opus 4.8 (Fast)" | "Claude 3.5 Haiku" | "Claude 3 Haiku" | "Claude Opus 4.6 (Fast)" | "Claude Opus 4.7 (Fast)" | "Claude Opus 4" | "Jamba Large 1.7" | "Qwen3.5 Plus 2026-02-15" | "Qwen Plus 0728" | "Qwen3 30B A3B Instruct 2507" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3.5-122B-A10B" | "Qwen3 Next 80B A3B Instruct" | "Qwen2.5 VL 72B Instruct" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 32B" | "Qwen3 Coder 30B A3B Instruct" | "Qwen3 VL 30B A3B Thinking" | "Qwen2.5 Coder 32B Instruct" | "Qwen3 VL 235B A22B Instruct" | "Qwen3.6 27B" | "Qwen3 235B A22B" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Max" | "Qwen3 Coder Plus" | "Qwen3 14B" | "Qwen3 Coder Next" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 8B" | "Qwen3.7 Max" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 30B A3B" | "Qwen3.6 Plus" | "Qwen3.5-9B" | "Qwen3 VL 8B Instruct" | "Qwen3.5-Flash" | "Qwen3 Next 80B A3B Thinking" | "Qwen3 Coder Flash" | "Qwen3.5-35B-A3B" | "Qwen3.6 Flash" | "Qwen3.6 35B A3B" | "Qwen3 30B A3B Thinking 2507" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Max Preview" | "Qwen3.5 397B A17B" | "Qwen2.5 7B Instruct" | "Qwen3 Max Thinking" | "Qwen3.5-27B" | "Qwen3 VL 8B Thinking" | "Qwen3 VL 235B A22B Thinking" | "Qwen2.5 72B Instruct" | "Qwen3 VL 32B Instruct" | "Qwen-Plus" | "MoonshotAI Kimi Latest" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "LFM2-24B-A2B" | "LFM2.5-1.2B-Instruct (free)" | "LFM2.5-1.2B-Thinking (free)" | "Rnj 1 Instruct" | "Command A" | "Free Models Router" | "Owl Alpha" | "Kimi K2 0905" | "Kimi K2 0711" | "Llama 3.1 70B Instruct" | "Llama 4 Maverick" | "Llama Guard 4 12B" | "Llama 3.2 3B Instruct (free)" | "Llama 3.2 3B Instruct" | "Llama 4 Scout" | "Llama 3.2 11B Vision Instruct" | "Llama 3.2 1B Instruct" | "Llama 3 70B Instruct" | "Llama 3 8B Instruct" | "Llama 3.1 8B Instruct" | "Llama Guard 3 8B" | "Sonar" | "Sonar Pro" | "Sonar Reasoning Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Magnum v4 72B" | "Weaver (alpha)" | "ERNIE 4.5 VL 424B A47B " | "ERNIE 4.5 VL 28B A3B" | "
|
|
2
|
+
export type ModelId="kwaipilot/kat-coder-pro-v2" | "z-ai/glm-4-32b" | "upstage/solar-pro-3" | "prime-intellect/intellect-3" | "rekaai/reka-edge" | "rekaai/reka-flash-3" | "nousresearch/hermes-4-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-2-pro-llama-3-8b" | "nousresearch/hermes-4-405b" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/mistral-medium-3.1" | "mistralai/ministral-14b-2512" | "mistralai/mistral-large-2407" | "mistralai/ministral-8b-2512" | "mistralai/mistral-large" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/ministral-3b-2512" | "mistralai/mistral-saba" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-medium-3-5" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/codestral-2508" | "sao10k/l3.1-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-euryale-70b" | "sao10k/l3.1-70b-hanami-x1" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-r1" | "deepseek/deepseek-chat-v3.1" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-r1-distill-qwen-32b" | "inception/mercury-2" | "relace/relace-apply-3" | "relace/relace-search" | "thedrummer/rocinante-12b" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/cydonia-24b-v4.1" | "deepcogito/cogito-v2.1-671b" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "perceptron/perceptron-mk1" | "anthropic/claude-sonnet-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-3.5-haiku" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4.6-fast" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-opus-4" | "ai21/jamba-large-1.7" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-coder:free" | "qwen/qwen3-32b" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3.6-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-max" | "qwen/qwen3-coder-plus" | "qwen/qwen3-14b" | "qwen/qwen3-coder-next" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-8b" | "qwen/qwen3.7-max" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-plus" | "qwen/qwen3.5-9b" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-coder-flash" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.6-flash" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-max-thinking" | "qwen/qwen3.5-27b" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen-plus" | "~moonshotai/kimi-latest" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "liquid/lfm-2-24b-a2b" | "liquid/lfm-2.5-1.2b-instruct:free" | "liquid/lfm-2.5-1.2b-thinking:free" | "essentialai/rnj-1-instruct" | "cohere/command-a" | "openrouter/free" | "openrouter/owl-alpha" | "moonshotai/kimi-k2-0905" | "moonshotai/kimi-k2" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-3.2-3b-instruct" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-3-70b-instruct" | "meta-llama/llama-3-8b-instruct" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-guard-3-8b" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "anthracite-org/magnum-v4-72b" | "mancer/weaver" | "baidu/ernie-4.5-vl-424b-a47b" | "baidu/ernie-4.5-vl-28b-a3b" | "x-ai/grok-4.20-multi-agent" | "x-ai/grok-4.20" | "~openai/gpt-latest" | "~openai/gpt-mini-latest" | "nvidia/nemotron-3-nano-30b-a3b" | "nvidia/nemotron-nano-9b-v2" | "nvidia/nemotron-3-nano-30b-a3b:free" | "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free" | "nvidia/nemotron-3-super-120b-a12b:free" | "nvidia/nemotron-nano-12b-v2-vl:free" | "nvidia/nemotron-nano-9b-v2:free" | "nvidia/llama-3.3-nemotron-super-49b-v1.5" | "nvidia/nemotron-3-super-120b-a12b" | "switchpoint/router" | "arcee-ai/trinity-mini" | "arcee-ai/trinity-large-thinking" | "arcee-ai/spotlight" | "arcee-ai/maestro-reasoning" | "arcee-ai/coder-large" | "arcee-ai/virtuoso-large" | "gryphe/mythomax-l2-13b" | "cognitivecomputations/dolphin-mistral-24b-venice-edition:free" | "microsoft/phi-4" | "microsoft/wizardlm-2-8x22b" | "microsoft/phi-4-mini-instruct" | "writer/palmyra-x5" | "bytedance-seed/seed-2.0-mini" | "bytedance-seed/seed-1.6-flash" | "bytedance-seed/seed-1.6" | "bytedance-seed/seed-2.0-lite" | "nex-agi/deepseek-v3.1-nex-n1" | "tencent/hy3-preview" | "tencent/hunyuan-a13b-instruct" | "ibm-granite/granite-4.1-8b" | "ibm-granite/granite-4.0-h-micro" | "stepfun/step-3.7-flash" | "stepfun/step-3.5-flash" | "aion-labs/aion-2.0" | "aion-labs/aion-1.0" | "aion-labs/aion-rp-llama-3.1-8b" | "aion-labs/aion-1.0-mini" | "amazon/nova-pro-v1" | "amazon/nova-lite-v1" | "amazon/nova-micro-v1" | "amazon/nova-premier-v1" | "amazon/nova-2-lite-v1" | "inclusionai/ling-2.6-flash" | "inclusionai/ling-2.6-1t" | "inclusionai/ring-2.6-1t" | "morph/morph-v3-fast" | "morph/morph-v3-large" | "undi95/remm-slerp-l2-13b" | "google/lyria-3-clip-preview" | "google/gemini-2.5-pro-preview" | "google/gemini-2.5-pro-preview-05-06" | "google/gemma-3n-e4b-it" | "google/gemma-3-27b-it" | "google/gemma-3-12b-it" | "google/gemini-2.5-flash-lite-preview-09-2025" | "google/gemma-3-4b-it" | "google/lyria-3-pro-preview" | "google/gemma-2-27b-it" | "google/gemini-3-pro-image-preview" | "openai/o3-mini-high" | "openai/o4-mini-high" | "openai/gpt-5-chat" | "openai/gpt-4o-mini-2024-07-18" | "openai/gpt-5-image" | "openai/gpt-4o-mini-search-preview" | "openai/gpt-5.4-image-2" | "openai/gpt-3.5-turbo-16k" | "openai/gpt-oss-20b:free" | "openai/gpt-oss-120b" | "openai/gpt-chat-latest" | "openai/gpt-4-1106-preview" | "openai/gpt-oss-20b" | "openai/gpt-4-0314" | "openai/gpt-4-turbo-preview" | "openai/gpt-audio" | "openai/gpt-5-image-mini" | "openai/gpt-audio-mini" | "openai/gpt-oss-120b:free" | "openai/gpt-5.2-chat" | "openai/gpt-3.5-turbo-instruct" | "openai/gpt-5.1-chat" | "openai/gpt-oss-safeguard-20b" | "openai/gpt-3.5-turbo-0613" | "openai/gpt-5.3-chat" | "openai/gpt-4o-search-preview" | "poolside/laguna-m.1:free" | "poolside/laguna-xs.2:free" | "bytedance/ui-tars-1.5-7b" | "~anthropic/claude-opus-latest" | "~anthropic/claude-haiku-latest" | "~anthropic/claude-sonnet-latest" | "minimax/minimax-m1" | "minimax/minimax-01" | "minimax/minimax-m2-her" | "allenai/olmo-3-32b-think" | "z-ai/glm-4.5-air:free" | "z-ai/glm-4.6" | "z-ai/glm-4.7" | "z-ai/glm-4.5v" | "z-ai/glm-4.6v" | "z-ai/glm-4.7-flash" | "z-ai/glm-5v-turbo" | "z-ai/glm-5" | "z-ai/glm-5-turbo" | "z-ai/glm-4.5" | "z-ai/glm-4.5-air" | "z-ai/glm-5.1" | "mistralai/mistral-small-2603" | "mistralai/mistral-nemo" | "mistralai/mistral-large-2512" | "mistralai/devstral-2512" | "deepseek/deepseek-chat" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v4-pro" | "anthropic/claude-sonnet-4.6" | "anthropic/claude-opus-4.5" | "anthropic/claude-opus-4.7" | "anthropic/claude-sonnet-4.5" | "anthropic/claude-opus-4.6" | "anthropic/claude-haiku-4.5" | "anthropic/claude-opus-4.1" | "anthropic/claude-opus-4.8" | "xiaomi/mimo-v2.5" | "xiaomi/mimo-v2-flash" | "xiaomi/mimo-v2.5-pro" | "cohere/command-r-plus-08-2024" | "cohere/command-r-08-2024" | "cohere/command-r7b-12-2024" | "moonshotai/kimi-k2-thinking" | "moonshotai/kimi-k2.6" | "moonshotai/kimi-k2.6:free" | "moonshotai/kimi-k2.5" | "meta-llama/llama-3.3-70b-instruct:free" | "meta-llama/llama-3.3-70b-instruct" | "x-ai/grok-build-0.1" | "x-ai/grok-4.3" | "google/gemini-2.5-flash-image" | "google/gemma-4-31b-it:free" | "google/gemini-3.1-flash-lite-preview" | "google/gemma-4-31b-it" | "google/gemini-3-flash-preview" | "google/gemma-4-26b-a4b-it:free" | "google/gemini-3.1-pro-preview-customtools" | "google/gemini-2.5-pro" | "google/gemini-3.1-pro-preview" | "google/gemini-3.1-flash-lite" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash" | "google/gemma-4-26b-a4b-it" | "google/gemini-3.5-flash" | "google/gemini-3.1-flash-image-preview" | "openai/gpt-4o-2024-08-06" | "openai/gpt-5-pro" | "openai/gpt-5-mini" | "openai/gpt-4o" | "openai/gpt-5.2" | "openai/gpt-5-codex" | "openai/o3" | "openai/gpt-4o-2024-11-20" | "openai/gpt-5" | "openai/gpt-5.4-pro" | "openai/gpt-4.1-mini" | "openai/gpt-5.2-pro" | "openai/o3-pro" | "openai/o4-mini" | "openai/gpt-5.4" | "openai/o3-mini" | "openai/gpt-5.5" | "openai/gpt-5.1" | "openai/gpt-5-nano" | "openai/gpt-4o-mini" | "openai/gpt-5.1-codex-max" | "openai/gpt-5.1-codex-mini" | "openai/o1-pro" | "openai/o3-deep-research" | "openai/gpt-4.1" | "openai/gpt-5.4-nano" | "openai/gpt-5.3-codex" | "openai/gpt-5.5-pro" | "openai/o4-mini-deep-research" | "openai/gpt-3.5-turbo" | "openai/gpt-5.2-codex" | "openai/gpt-5.1-codex" | "openai/gpt-4o-2024-05-13" | "openai/gpt-5.4-mini" | "openai/gpt-4-turbo" | "openai/o1" | "openai/gpt-4" | "openai/gpt-4.1-nano" | "minimax/minimax-m3" | "minimax/minimax-m2.1" | "minimax/minimax-m2.7" | "minimax/minimax-m2" | "minimax/minimax-m2.5";
|
|
3
|
+
export type ModelName="KAT-Coder-Pro V2" | "GLM 4 32B " | "Solar Pro 3" | "INTELLECT-3" | "Reka Edge" | "Reka Flash 3" | "Hermes 4 70B" | "Hermes 3 405B Instruct" | "Hermes 3 405B Instruct (free)" | "Hermes 3 70B Instruct" | "Hermes 2 Pro - Llama-3 8B" | "Hermes 4 405B" | "Mistral Small 3" | "Mistral Medium 3.1" | "Ministral 3 14B 2512" | "Mistral Large 2407" | "Ministral 3 8B 2512" | "Mistral Large" | "Mistral Small 3.1 24B" | "Ministral 3 3B 2512" | "Saba" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Medium 3.5" | "Mixtral 8x22B Instruct" | "Mistral Small 3.2 24B" | "Codestral 2508" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3 8B Lunaris" | "Llama 3.3 Euryale 70B" | "Llama 3 Euryale 70B v2.1" | "Llama 3.1 70B Hanami x1" | "R1 0528" | "DeepSeek V3.2" | "R1" | "DeepSeek V3.1" | "DeepSeek V3 0324" | "R1 Distill Llama 70B" | "DeepSeek V3.1 Terminus" | "DeepSeek V3.2 Exp" | "R1 Distill Qwen 32B" | "Mercury 2" | "Relace Apply 3" | "Relace Search" | "Rocinante 12B" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Cydonia 24B V4.1" | "Cogito v2.1 671B" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Perceptron Mk1" | "Claude Sonnet 4" | "Claude Opus 4.8 (Fast)" | "Claude 3.5 Haiku" | "Claude 3 Haiku" | "Claude Opus 4.6 (Fast)" | "Claude Opus 4.7 (Fast)" | "Claude Opus 4" | "Jamba Large 1.7" | "Qwen3.5 Plus 2026-02-15" | "Qwen Plus 0728" | "Qwen3 30B A3B Instruct 2507" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3.5-122B-A10B" | "Qwen3 Next 80B A3B Instruct" | "Qwen2.5 VL 72B Instruct" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 32B" | "Qwen3 Coder 30B A3B Instruct" | "Qwen3 VL 30B A3B Thinking" | "Qwen2.5 Coder 32B Instruct" | "Qwen3 VL 235B A22B Instruct" | "Qwen3.6 27B" | "Qwen3 235B A22B" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Max" | "Qwen3 Coder Plus" | "Qwen3 14B" | "Qwen3 Coder Next" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 8B" | "Qwen3.7 Max" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 30B A3B" | "Qwen3.6 Plus" | "Qwen3.5-9B" | "Qwen3 VL 8B Instruct" | "Qwen3.5-Flash" | "Qwen3 Next 80B A3B Thinking" | "Qwen3 Coder Flash" | "Qwen3.5-35B-A3B" | "Qwen3.6 Flash" | "Qwen3.6 35B A3B" | "Qwen3 30B A3B Thinking 2507" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Max Preview" | "Qwen3.5 397B A17B" | "Qwen2.5 7B Instruct" | "Qwen3 Max Thinking" | "Qwen3.5-27B" | "Qwen3 VL 8B Thinking" | "Qwen3 VL 235B A22B Thinking" | "Qwen2.5 72B Instruct" | "Qwen3 VL 32B Instruct" | "Qwen-Plus" | "MoonshotAI Kimi Latest" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "LFM2-24B-A2B" | "LFM2.5-1.2B-Instruct (free)" | "LFM2.5-1.2B-Thinking (free)" | "Rnj 1 Instruct" | "Command A" | "Free Models Router" | "Owl Alpha" | "Kimi K2 0905" | "Kimi K2 0711" | "Llama 3.1 70B Instruct" | "Llama 4 Maverick" | "Llama Guard 4 12B" | "Llama 3.2 3B Instruct (free)" | "Llama 3.2 3B Instruct" | "Llama 4 Scout" | "Llama 3.2 11B Vision Instruct" | "Llama 3.2 1B Instruct" | "Llama 3 70B Instruct" | "Llama 3 8B Instruct" | "Llama 3.1 8B Instruct" | "Llama Guard 3 8B" | "Sonar" | "Sonar Pro" | "Sonar Reasoning Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Magnum v4 72B" | "Weaver (alpha)" | "ERNIE 4.5 VL 424B A47B " | "ERNIE 4.5 VL 28B A3B" | "Grok 4.20 Multi-Agent" | "Grok 4.20" | "OpenAI GPT Latest" | "OpenAI GPT Mini Latest" | "Nemotron 3 Nano 30B A3B" | "Nemotron Nano 9B V2" | "Nemotron 3 Nano 30B A3B (free)" | "Nemotron 3 Nano Omni (free)" | "Nemotron 3 Super (free)" | "Nemotron Nano 12B 2 VL (free)" | "Nemotron Nano 9B V2 (free)" | "Llama 3.3 Nemotron Super 49B V1.5" | "Nemotron 3 Super" | "Switchpoint Router" | "Trinity Mini" | "Trinity Large Thinking" | "Spotlight" | "Maestro Reasoning" | "Coder Large" | "Virtuoso Large" | "MythoMax 13B" | "Uncensored (free)" | "Phi 4" | "WizardLM-2 8x22B" | "Phi 4 Mini Instruct" | "Palmyra X5" | "Seed-2.0-Mini" | "Seed 1.6 Flash" | "Seed 1.6" | "Seed-2.0-Lite" | "DeepSeek V3.1 Nex N1" | "Hy3 preview" | "Hunyuan A13B Instruct" | "Granite 4.1 8B" | "Granite 4.0 Micro" | "Step 3.7 Flash" | "Step 3.5 Flash" | "Aion-2.0" | "Aion-1.0" | "Aion-RP 1.0 (8B)" | "Aion-1.0-Mini" | "Nova Pro 1.0" | "Nova Lite 1.0" | "Nova Micro 1.0" | "Nova Premier 1.0" | "Nova 2 Lite" | "Ling-2.6-flash" | "Ling-2.6-1T" | "Ring-2.6-1T" | "Morph V3 Fast" | "Morph V3 Large" | "ReMM SLERP 13B" | "Lyria 3 Clip Preview" | "Gemini 2.5 Pro Preview 06-05" | "Gemini 2.5 Pro Preview 05-06" | "Gemma 3n 4B" | "Gemma 3 27B" | "Gemma 3 12B" | "Gemini 2.5 Flash Lite Preview 09-2025" | "Gemma 3 4B" | "Lyria 3 Pro Preview" | "Gemma 2 27B" | "Nano Banana Pro (Gemini 3 Pro Image Preview)" | "o3 Mini High" | "o4 Mini High" | "GPT-5 Chat" | "GPT-4o-mini (2024-07-18)" | "GPT-5 Image" | "GPT-4o-mini Search Preview" | "GPT-5.4 Image 2" | "GPT-3.5 Turbo 16k" | "gpt-oss-20b (free)" | "gpt-oss-120b" | "GPT Chat Latest" | "GPT-4 Turbo (older v1106)" | "gpt-oss-20b" | "GPT-4 (older v0314)" | "GPT-4 Turbo Preview" | "GPT Audio" | "GPT-5 Image Mini" | "GPT Audio Mini" | "gpt-oss-120b (free)" | "GPT-5.2 Chat" | "GPT-3.5 Turbo Instruct" | "GPT-5.1 Chat" | "gpt-oss-safeguard-20b" | "GPT-3.5 Turbo (older v0613)" | "GPT-5.3 Chat" | "GPT-4o Search Preview" | "Laguna M.1 (free)" | "Laguna XS.2 (free)" | "UI-TARS 7B " | "Claude Opus Latest" | "Anthropic Claude Haiku Latest" | "Anthropic Claude Sonnet Latest" | "MiniMax M1" | "MiniMax-01" | "MiniMax M2-her" | "Olmo 3 32B Think" | "GLM 4.5 Air (free)" | "GLM-4.6" | "GLM-4.7" | "GLM-4.5V" | "GLM-4.6V" | "GLM-4.7-Flash" | "GLM-5V-Turbo" | "GLM-5" | "GLM-5-Turbo" | "GLM-4.5" | "GLM-4.5-Air" | "GLM-5.1" | "Mistral Small 4" | "Mistral Nemo" | "Mistral Large 3" | "Devstral 2" | "DeepSeek Chat" | "DeepSeek V4 Flash" | "DeepSeek V4 Pro" | "Claude Sonnet 4.6" | "Claude Opus 4.5 (latest)" | "Claude Opus 4.7" | "Claude Sonnet 4.5 (latest)" | "Claude Opus 4.6" | "Claude Haiku 4.5 (latest)" | "Claude Opus 4.1 (latest)" | "Claude Opus 4.8" | "MiMo-V2.5" | "MiMo-V2-Flash" | "MiMo-V2.5-Pro" | "Command R+" | "Command R" | "Command R7B" | "Kimi K2 Thinking" | "Kimi K2.6" | "Kimi K2.6 (free)" | "Kimi K2.5" | "Llama 3.3 70B Instruct (free)" | "Llama-3.3-70B-Instruct" | "Grok Build 0.1" | "Grok 4.3" | "Nano Banana" | "Gemma 4 31B (free)" | "Gemini 3.1 Flash Lite Preview" | "Gemma 4 31B IT" | "Gemini 3 Flash Preview" | "Gemma 4 26B A4B (free)" | "Gemini 3.1 Pro Preview Custom Tools" | "Gemini 2.5 Pro" | "Gemini 3.1 Pro Preview" | "Gemini 3.1 Flash Lite" | "Gemini 2.5 Flash-Lite" | "Gemini 2.5 Flash" | "Gemma 4 26B A4B IT" | "Gemini 3.5 Flash" | "Nano Banana 2" | "GPT-4o (2024-08-06)" | "GPT-5 Pro" | "GPT-5 Mini" | "GPT-4o" | "GPT-5.2" | "GPT-5-Codex" | "o3" | "GPT-4o (2024-11-20)" | "GPT-5" | "GPT-5.4 Pro" | "GPT-4.1 mini" | "GPT-5.2 Pro" | "o3-pro" | "o4-mini" | "GPT-5.4" | "o3-mini" | "GPT-5.5" | "GPT-5.1" | "GPT-5 Nano" | "GPT-4o mini" | "GPT-5.1 Codex Max" | "GPT-5.1 Codex mini" | "o1-pro" | "o3-deep-research" | "GPT-4.1" | "GPT-5.4 nano" | "GPT-5.3 Codex" | "GPT-5.5 Pro" | "o4-mini-deep-research" | "GPT-3.5-turbo" | "GPT-5.2 Codex" | "GPT-5.1 Codex" | "GPT-4o (2024-05-13)" | "GPT-5.4 mini" | "GPT-4 Turbo" | "o1" | "GPT-4" | "GPT-4.1 nano" | "MiniMax-M3" | "MiniMax-M2.1" | "MiniMax-M2.7" | "MiniMax-M2" | "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="kwaipilot/kat-coder-pro-v2" | "z-ai/glm-4-32b" | "upstage/solar-pro-3" | "prime-intellect/intellect-3" | "rekaai/reka-edge" | "rekaai/reka-flash-3" | "nousresearch/hermes-4-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-2-pro-llama-3-8b" | "nousresearch/hermes-4-405b" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/mistral-medium-3.1" | "mistralai/ministral-14b-2512" | "mistralai/mistral-large-2407" | "mistralai/ministral-8b-2512" | "mistralai/mistral-large" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/ministral-3b-2512" | "mistralai/mistral-saba" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-medium-3-5" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/codestral-2508" | "sao10k/l3.1-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-euryale-70b" | "sao10k/l3.1-70b-hanami-x1" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-r1" | "deepseek/deepseek-chat-v3.1" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-r1-distill-qwen-32b" | "inception/mercury-2" | "relace/relace-apply-3" | "relace/relace-search" | "thedrummer/rocinante-12b" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/cydonia-24b-v4.1" | "deepcogito/cogito-v2.1-671b" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "perceptron/perceptron-mk1" | "anthropic/claude-sonnet-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-3.5-haiku" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4.6-fast" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-opus-4" | "ai21/jamba-large-1.7" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-coder:free" | "qwen/qwen3-32b" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3.6-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-max" | "qwen/qwen3-coder-plus" | "qwen/qwen3-14b" | "qwen/qwen3-coder-next" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-8b" | "qwen/qwen3.7-max" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-plus" | "qwen/qwen3.5-9b" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-coder-flash" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.6-flash" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-max-thinking" | "qwen/qwen3.5-27b" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen-plus" | "~moonshotai/kimi-latest" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "liquid/lfm-2-24b-a2b" | "liquid/lfm-2.5-1.2b-instruct:free" | "liquid/lfm-2.5-1.2b-thinking:free" | "essentialai/rnj-1-instruct" | "cohere/command-a" | "openrouter/free" | "openrouter/owl-alpha" | "moonshotai/kimi-k2-0905" | "moonshotai/kimi-k2" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-3.2-3b-instruct" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-3-70b-instruct" | "meta-llama/llama-3-8b-instruct" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-guard-3-8b" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "anthracite-org/magnum-v4-72b" | "mancer/weaver" | "baidu/ernie-4.5-vl-424b-a47b" | "baidu/ernie-4.5-vl-28b-a3b" | "
|
|
3
|
-
export type ModelName="KAT-Coder-Pro V2" | "GLM 4 32B " | "Solar Pro 3" | "INTELLECT-3" | "Reka Edge" | "Reka Flash 3" | "Hermes 4 70B" | "Hermes 3 405B Instruct" | "Hermes 3 405B Instruct (free)" | "Hermes 3 70B Instruct" | "Hermes 2 Pro - Llama-3 8B" | "Hermes 4 405B" | "Mistral Small 3" | "Mistral Medium 3.1" | "Ministral 3 14B 2512" | "Mistral Large 2407" | "Ministral 3 8B 2512" | "Mistral Large" | "Mistral Small 3.1 24B" | "Ministral 3 3B 2512" | "Saba" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Medium 3.5" | "Mixtral 8x22B Instruct" | "Mistral Small 3.2 24B" | "Codestral 2508" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3 8B Lunaris" | "Llama 3.3 Euryale 70B" | "Llama 3 Euryale 70B v2.1" | "Llama 3.1 70B Hanami x1" | "R1 0528" | "DeepSeek V3.2" | "R1" | "DeepSeek V3.1" | "DeepSeek V3 0324" | "R1 Distill Llama 70B" | "DeepSeek V3.1 Terminus" | "DeepSeek V3.2 Exp" | "R1 Distill Qwen 32B" | "Mercury 2" | "Relace Apply 3" | "Relace Search" | "Rocinante 12B" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Cydonia 24B V4.1" | "Cogito v2.1 671B" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Perceptron Mk1" | "Claude Sonnet 4" | "Claude Opus 4.8 (Fast)" | "Claude 3.5 Haiku" | "Claude 3 Haiku" | "Claude Opus 4.6 (Fast)" | "Claude Opus 4.7 (Fast)" | "Claude Opus 4" | "Jamba Large 1.7" | "Qwen3.5 Plus 2026-02-15" | "Qwen Plus 0728" | "Qwen3 30B A3B Instruct 2507" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3.5-122B-A10B" | "Qwen3 Next 80B A3B Instruct" | "Qwen2.5 VL 72B Instruct" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 32B" | "Qwen3 Coder 30B A3B Instruct" | "Qwen3 VL 30B A3B Thinking" | "Qwen2.5 Coder 32B Instruct" | "Qwen3 VL 235B A22B Instruct" | "Qwen3.6 27B" | "Qwen3 235B A22B" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Max" | "Qwen3 Coder Plus" | "Qwen3 14B" | "Qwen3 Coder Next" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 8B" | "Qwen3.7 Max" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 30B A3B" | "Qwen3.6 Plus" | "Qwen3.5-9B" | "Qwen3 VL 8B Instruct" | "Qwen3.5-Flash" | "Qwen3 Next 80B A3B Thinking" | "Qwen3 Coder Flash" | "Qwen3.5-35B-A3B" | "Qwen3.6 Flash" | "Qwen3.6 35B A3B" | "Qwen3 30B A3B Thinking 2507" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Max Preview" | "Qwen3.5 397B A17B" | "Qwen2.5 7B Instruct" | "Qwen3 Max Thinking" | "Qwen3.5-27B" | "Qwen3 VL 8B Thinking" | "Qwen3 VL 235B A22B Thinking" | "Qwen2.5 72B Instruct" | "Qwen3 VL 32B Instruct" | "Qwen-Plus" | "MoonshotAI Kimi Latest" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "LFM2-24B-A2B" | "LFM2.5-1.2B-Instruct (free)" | "LFM2.5-1.2B-Thinking (free)" | "Rnj 1 Instruct" | "Command A" | "Free Models Router" | "Owl Alpha" | "Kimi K2 0905" | "Kimi K2 0711" | "Llama 3.1 70B Instruct" | "Llama 4 Maverick" | "Llama Guard 4 12B" | "Llama 3.2 3B Instruct (free)" | "Llama 3.2 3B Instruct" | "Llama 4 Scout" | "Llama 3.2 11B Vision Instruct" | "Llama 3.2 1B Instruct" | "Llama 3 70B Instruct" | "Llama 3 8B Instruct" | "Llama 3.1 8B Instruct" | "Llama Guard 3 8B" | "Sonar" | "Sonar Pro" | "Sonar Reasoning Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Magnum v4 72B" | "Weaver (alpha)" | "ERNIE 4.5 VL 424B A47B " | "ERNIE 4.5 VL 28B A3B" | "
|
|
2
|
+
export type ModelId="kwaipilot/kat-coder-pro-v2" | "z-ai/glm-4-32b" | "upstage/solar-pro-3" | "prime-intellect/intellect-3" | "rekaai/reka-edge" | "rekaai/reka-flash-3" | "nousresearch/hermes-4-70b" | "nousresearch/hermes-3-llama-3.1-405b" | "nousresearch/hermes-3-llama-3.1-405b:free" | "nousresearch/hermes-3-llama-3.1-70b" | "nousresearch/hermes-2-pro-llama-3-8b" | "nousresearch/hermes-4-405b" | "mistralai/mistral-small-24b-instruct-2501" | "mistralai/mistral-medium-3.1" | "mistralai/ministral-14b-2512" | "mistralai/mistral-large-2407" | "mistralai/ministral-8b-2512" | "mistralai/mistral-large" | "mistralai/mistral-small-3.1-24b-instruct" | "mistralai/ministral-3b-2512" | "mistralai/mistral-saba" | "mistralai/mistral-medium-3" | "mistralai/voxtral-small-24b-2507" | "mistralai/mistral-medium-3-5" | "mistralai/mixtral-8x22b-instruct" | "mistralai/mistral-small-3.2-24b-instruct" | "mistralai/codestral-2508" | "sao10k/l3.1-euryale-70b" | "sao10k/l3-lunaris-8b" | "sao10k/l3.3-euryale-70b" | "sao10k/l3-euryale-70b" | "sao10k/l3.1-70b-hanami-x1" | "deepseek/deepseek-r1-0528" | "deepseek/deepseek-v3.2" | "deepseek/deepseek-r1" | "deepseek/deepseek-chat-v3.1" | "deepseek/deepseek-chat-v3-0324" | "deepseek/deepseek-r1-distill-llama-70b" | "deepseek/deepseek-v3.1-terminus" | "deepseek/deepseek-v3.2-exp" | "deepseek/deepseek-r1-distill-qwen-32b" | "inception/mercury-2" | "relace/relace-apply-3" | "relace/relace-search" | "thedrummer/rocinante-12b" | "thedrummer/skyfall-36b-v2" | "thedrummer/unslopnemo-12b" | "thedrummer/cydonia-24b-v4.1" | "deepcogito/cogito-v2.1-671b" | "inflection/inflection-3-pi" | "inflection/inflection-3-productivity" | "perceptron/perceptron-mk1" | "anthropic/claude-sonnet-4" | "anthropic/claude-opus-4.8-fast" | "anthropic/claude-3.5-haiku" | "anthropic/claude-3-haiku" | "anthropic/claude-opus-4.6-fast" | "anthropic/claude-opus-4.7-fast" | "anthropic/claude-opus-4" | "ai21/jamba-large-1.7" | "qwen/qwen3.5-plus-02-15" | "qwen/qwen-plus-2025-07-28" | "qwen/qwen3-30b-a3b-instruct-2507" | "qwen/qwen3-next-80b-a3b-instruct:free" | "qwen/qwen3.5-122b-a10b" | "qwen/qwen3-next-80b-a3b-instruct" | "qwen/qwen2.5-vl-72b-instruct" | "qwen/qwen3-vl-30b-a3b-instruct" | "qwen/qwen3-coder:free" | "qwen/qwen3-32b" | "qwen/qwen3-coder-30b-a3b-instruct" | "qwen/qwen3-vl-30b-a3b-thinking" | "qwen/qwen-2.5-coder-32b-instruct" | "qwen/qwen3-vl-235b-a22b-instruct" | "qwen/qwen3.6-27b" | "qwen/qwen3-235b-a22b" | "qwen/qwen3.5-plus-20260420" | "qwen/qwen3-max" | "qwen/qwen3-coder-plus" | "qwen/qwen3-14b" | "qwen/qwen3-coder-next" | "qwen/qwen3-235b-a22b-thinking-2507" | "qwen/qwen3-8b" | "qwen/qwen3.7-max" | "qwen/qwen3-235b-a22b-2507" | "qwen/qwen3-30b-a3b" | "qwen/qwen3.6-plus" | "qwen/qwen3.5-9b" | "qwen/qwen3-vl-8b-instruct" | "qwen/qwen3.5-flash-02-23" | "qwen/qwen3-next-80b-a3b-thinking" | "qwen/qwen3-coder-flash" | "qwen/qwen3.5-35b-a3b" | "qwen/qwen3.6-flash" | "qwen/qwen3.6-35b-a3b" | "qwen/qwen3-30b-a3b-thinking-2507" | "qwen/qwen-plus-2025-07-28:thinking" | "qwen/qwen3-coder" | "qwen/qwen3.6-max-preview" | "qwen/qwen3.5-397b-a17b" | "qwen/qwen-2.5-7b-instruct" | "qwen/qwen3-max-thinking" | "qwen/qwen3.5-27b" | "qwen/qwen3-vl-8b-thinking" | "qwen/qwen3-vl-235b-a22b-thinking" | "qwen/qwen-2.5-72b-instruct" | "qwen/qwen3-vl-32b-instruct" | "qwen/qwen-plus" | "~moonshotai/kimi-latest" | "~google/gemini-pro-latest" | "~google/gemini-flash-latest" | "liquid/lfm-2-24b-a2b" | "liquid/lfm-2.5-1.2b-instruct:free" | "liquid/lfm-2.5-1.2b-thinking:free" | "essentialai/rnj-1-instruct" | "cohere/command-a" | "openrouter/free" | "openrouter/owl-alpha" | "moonshotai/kimi-k2-0905" | "moonshotai/kimi-k2" | "meta-llama/llama-3.1-70b-instruct" | "meta-llama/llama-4-maverick" | "meta-llama/llama-guard-4-12b" | "meta-llama/llama-3.2-3b-instruct:free" | "meta-llama/llama-3.2-3b-instruct" | "meta-llama/llama-4-scout" | "meta-llama/llama-3.2-11b-vision-instruct" | "meta-llama/llama-3.2-1b-instruct" | "meta-llama/llama-3-70b-instruct" | "meta-llama/llama-3-8b-instruct" | "meta-llama/llama-3.1-8b-instruct" | "meta-llama/llama-guard-3-8b" | "perplexity/sonar" | "perplexity/sonar-pro" | "perplexity/sonar-reasoning-pro" | "perplexity/sonar-pro-search" | "perplexity/sonar-deep-research" | "anthracite-org/magnum-v4-72b" | "mancer/weaver" | "baidu/ernie-4.5-vl-424b-a47b" | "baidu/ernie-4.5-vl-28b-a3b" | "x-ai/grok-4.20-multi-agent" | "x-ai/grok-4.20" | "~openai/gpt-latest" | "~openai/gpt-mini-latest" | "nvidia/nemotron-3-nano-30b-a3b" | "nvidia/nemotron-nano-9b-v2" | "nvidia/nemotron-3-nano-30b-a3b:free" | "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free" | "nvidia/nemotron-3-super-120b-a12b:free" | "nvidia/nemotron-nano-12b-v2-vl:free" | "nvidia/nemotron-nano-9b-v2:free" | "nvidia/llama-3.3-nemotron-super-49b-v1.5" | "nvidia/nemotron-3-super-120b-a12b" | "switchpoint/router" | "arcee-ai/trinity-mini" | "arcee-ai/trinity-large-thinking" | "arcee-ai/spotlight" | "arcee-ai/maestro-reasoning" | "arcee-ai/coder-large" | "arcee-ai/virtuoso-large" | "gryphe/mythomax-l2-13b" | "cognitivecomputations/dolphin-mistral-24b-venice-edition:free" | "microsoft/phi-4" | "microsoft/wizardlm-2-8x22b" | "microsoft/phi-4-mini-instruct" | "writer/palmyra-x5" | "bytedance-seed/seed-2.0-mini" | "bytedance-seed/seed-1.6-flash" | "bytedance-seed/seed-1.6" | "bytedance-seed/seed-2.0-lite" | "nex-agi/deepseek-v3.1-nex-n1" | "tencent/hy3-preview" | "tencent/hunyuan-a13b-instruct" | "ibm-granite/granite-4.1-8b" | "ibm-granite/granite-4.0-h-micro" | "stepfun/step-3.7-flash" | "stepfun/step-3.5-flash" | "aion-labs/aion-2.0" | "aion-labs/aion-1.0" | "aion-labs/aion-rp-llama-3.1-8b" | "aion-labs/aion-1.0-mini" | "amazon/nova-pro-v1" | "amazon/nova-lite-v1" | "amazon/nova-micro-v1" | "amazon/nova-premier-v1" | "amazon/nova-2-lite-v1" | "inclusionai/ling-2.6-flash" | "inclusionai/ling-2.6-1t" | "inclusionai/ring-2.6-1t" | "morph/morph-v3-fast" | "morph/morph-v3-large" | "undi95/remm-slerp-l2-13b" | "google/lyria-3-clip-preview" | "google/gemini-2.5-pro-preview" | "google/gemini-2.5-pro-preview-05-06" | "google/gemma-3n-e4b-it" | "google/gemma-3-27b-it" | "google/gemma-3-12b-it" | "google/gemini-2.5-flash-lite-preview-09-2025" | "google/gemma-3-4b-it" | "google/lyria-3-pro-preview" | "google/gemma-2-27b-it" | "google/gemini-3-pro-image-preview" | "openai/o3-mini-high" | "openai/o4-mini-high" | "openai/gpt-5-chat" | "openai/gpt-4o-mini-2024-07-18" | "openai/gpt-5-image" | "openai/gpt-4o-mini-search-preview" | "openai/gpt-5.4-image-2" | "openai/gpt-3.5-turbo-16k" | "openai/gpt-oss-20b:free" | "openai/gpt-oss-120b" | "openai/gpt-chat-latest" | "openai/gpt-4-1106-preview" | "openai/gpt-oss-20b" | "openai/gpt-4-0314" | "openai/gpt-4-turbo-preview" | "openai/gpt-audio" | "openai/gpt-5-image-mini" | "openai/gpt-audio-mini" | "openai/gpt-oss-120b:free" | "openai/gpt-5.2-chat" | "openai/gpt-3.5-turbo-instruct" | "openai/gpt-5.1-chat" | "openai/gpt-oss-safeguard-20b" | "openai/gpt-3.5-turbo-0613" | "openai/gpt-5.3-chat" | "openai/gpt-4o-search-preview" | "poolside/laguna-m.1:free" | "poolside/laguna-xs.2:free" | "bytedance/ui-tars-1.5-7b" | "~anthropic/claude-opus-latest" | "~anthropic/claude-haiku-latest" | "~anthropic/claude-sonnet-latest" | "minimax/minimax-m1" | "minimax/minimax-01" | "minimax/minimax-m2-her" | "allenai/olmo-3-32b-think" | "z-ai/glm-4.5-air:free" | "z-ai/glm-4.6" | "z-ai/glm-4.7" | "z-ai/glm-4.5v" | "z-ai/glm-4.6v" | "z-ai/glm-4.7-flash" | "z-ai/glm-5v-turbo" | "z-ai/glm-5" | "z-ai/glm-5-turbo" | "z-ai/glm-4.5" | "z-ai/glm-4.5-air" | "z-ai/glm-5.1" | "mistralai/mistral-small-2603" | "mistralai/mistral-nemo" | "mistralai/mistral-large-2512" | "mistralai/devstral-2512" | "deepseek/deepseek-chat" | "deepseek/deepseek-v4-flash" | "deepseek/deepseek-v4-pro" | "anthropic/claude-sonnet-4.6" | "anthropic/claude-opus-4.5" | "anthropic/claude-opus-4.7" | "anthropic/claude-sonnet-4.5" | "anthropic/claude-opus-4.6" | "anthropic/claude-haiku-4.5" | "anthropic/claude-opus-4.1" | "anthropic/claude-opus-4.8" | "xiaomi/mimo-v2.5" | "xiaomi/mimo-v2-flash" | "xiaomi/mimo-v2.5-pro" | "cohere/command-r-plus-08-2024" | "cohere/command-r-08-2024" | "cohere/command-r7b-12-2024" | "moonshotai/kimi-k2-thinking" | "moonshotai/kimi-k2.6" | "moonshotai/kimi-k2.6:free" | "moonshotai/kimi-k2.5" | "meta-llama/llama-3.3-70b-instruct:free" | "meta-llama/llama-3.3-70b-instruct" | "x-ai/grok-build-0.1" | "x-ai/grok-4.3" | "google/gemini-2.5-flash-image" | "google/gemma-4-31b-it:free" | "google/gemini-3.1-flash-lite-preview" | "google/gemma-4-31b-it" | "google/gemini-3-flash-preview" | "google/gemma-4-26b-a4b-it:free" | "google/gemini-3.1-pro-preview-customtools" | "google/gemini-2.5-pro" | "google/gemini-3.1-pro-preview" | "google/gemini-3.1-flash-lite" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash" | "google/gemma-4-26b-a4b-it" | "google/gemini-3.5-flash" | "google/gemini-3.1-flash-image-preview" | "openai/gpt-4o-2024-08-06" | "openai/gpt-5-pro" | "openai/gpt-5-mini" | "openai/gpt-4o" | "openai/gpt-5.2" | "openai/gpt-5-codex" | "openai/o3" | "openai/gpt-4o-2024-11-20" | "openai/gpt-5" | "openai/gpt-5.4-pro" | "openai/gpt-4.1-mini" | "openai/gpt-5.2-pro" | "openai/o3-pro" | "openai/o4-mini" | "openai/gpt-5.4" | "openai/o3-mini" | "openai/gpt-5.5" | "openai/gpt-5.1" | "openai/gpt-5-nano" | "openai/gpt-4o-mini" | "openai/gpt-5.1-codex-max" | "openai/gpt-5.1-codex-mini" | "openai/o1-pro" | "openai/o3-deep-research" | "openai/gpt-4.1" | "openai/gpt-5.4-nano" | "openai/gpt-5.3-codex" | "openai/gpt-5.5-pro" | "openai/o4-mini-deep-research" | "openai/gpt-3.5-turbo" | "openai/gpt-5.2-codex" | "openai/gpt-5.1-codex" | "openai/gpt-4o-2024-05-13" | "openai/gpt-5.4-mini" | "openai/gpt-4-turbo" | "openai/o1" | "openai/gpt-4" | "openai/gpt-4.1-nano" | "minimax/minimax-m3" | "minimax/minimax-m2.1" | "minimax/minimax-m2.7" | "minimax/minimax-m2" | "minimax/minimax-m2.5";
|
|
3
|
+
export type ModelName="KAT-Coder-Pro V2" | "GLM 4 32B " | "Solar Pro 3" | "INTELLECT-3" | "Reka Edge" | "Reka Flash 3" | "Hermes 4 70B" | "Hermes 3 405B Instruct" | "Hermes 3 405B Instruct (free)" | "Hermes 3 70B Instruct" | "Hermes 2 Pro - Llama-3 8B" | "Hermes 4 405B" | "Mistral Small 3" | "Mistral Medium 3.1" | "Ministral 3 14B 2512" | "Mistral Large 2407" | "Ministral 3 8B 2512" | "Mistral Large" | "Mistral Small 3.1 24B" | "Ministral 3 3B 2512" | "Saba" | "Mistral Medium 3" | "Voxtral Small 24B 2507" | "Mistral Medium 3.5" | "Mixtral 8x22B Instruct" | "Mistral Small 3.2 24B" | "Codestral 2508" | "Llama 3.1 Euryale 70B v2.2" | "Llama 3 8B Lunaris" | "Llama 3.3 Euryale 70B" | "Llama 3 Euryale 70B v2.1" | "Llama 3.1 70B Hanami x1" | "R1 0528" | "DeepSeek V3.2" | "R1" | "DeepSeek V3.1" | "DeepSeek V3 0324" | "R1 Distill Llama 70B" | "DeepSeek V3.1 Terminus" | "DeepSeek V3.2 Exp" | "R1 Distill Qwen 32B" | "Mercury 2" | "Relace Apply 3" | "Relace Search" | "Rocinante 12B" | "Skyfall 36B V2" | "UnslopNemo 12B" | "Cydonia 24B V4.1" | "Cogito v2.1 671B" | "Inflection 3 Pi" | "Inflection 3 Productivity" | "Perceptron Mk1" | "Claude Sonnet 4" | "Claude Opus 4.8 (Fast)" | "Claude 3.5 Haiku" | "Claude 3 Haiku" | "Claude Opus 4.6 (Fast)" | "Claude Opus 4.7 (Fast)" | "Claude Opus 4" | "Jamba Large 1.7" | "Qwen3.5 Plus 2026-02-15" | "Qwen Plus 0728" | "Qwen3 30B A3B Instruct 2507" | "Qwen3 Next 80B A3B Instruct (free)" | "Qwen3.5-122B-A10B" | "Qwen3 Next 80B A3B Instruct" | "Qwen2.5 VL 72B Instruct" | "Qwen3 VL 30B A3B Instruct" | "Qwen3 Coder 480B A35B (free)" | "Qwen3 32B" | "Qwen3 Coder 30B A3B Instruct" | "Qwen3 VL 30B A3B Thinking" | "Qwen2.5 Coder 32B Instruct" | "Qwen3 VL 235B A22B Instruct" | "Qwen3.6 27B" | "Qwen3 235B A22B" | "Qwen3.5 Plus 2026-04-20" | "Qwen3 Max" | "Qwen3 Coder Plus" | "Qwen3 14B" | "Qwen3 Coder Next" | "Qwen3 235B A22B Thinking 2507" | "Qwen3 8B" | "Qwen3.7 Max" | "Qwen3 235B A22B Instruct 2507" | "Qwen3 30B A3B" | "Qwen3.6 Plus" | "Qwen3.5-9B" | "Qwen3 VL 8B Instruct" | "Qwen3.5-Flash" | "Qwen3 Next 80B A3B Thinking" | "Qwen3 Coder Flash" | "Qwen3.5-35B-A3B" | "Qwen3.6 Flash" | "Qwen3.6 35B A3B" | "Qwen3 30B A3B Thinking 2507" | "Qwen Plus 0728 (thinking)" | "Qwen3 Coder 480B A35B" | "Qwen3.6 Max Preview" | "Qwen3.5 397B A17B" | "Qwen2.5 7B Instruct" | "Qwen3 Max Thinking" | "Qwen3.5-27B" | "Qwen3 VL 8B Thinking" | "Qwen3 VL 235B A22B Thinking" | "Qwen2.5 72B Instruct" | "Qwen3 VL 32B Instruct" | "Qwen-Plus" | "MoonshotAI Kimi Latest" | "Google Gemini Pro Latest" | "Google Gemini Flash Latest" | "LFM2-24B-A2B" | "LFM2.5-1.2B-Instruct (free)" | "LFM2.5-1.2B-Thinking (free)" | "Rnj 1 Instruct" | "Command A" | "Free Models Router" | "Owl Alpha" | "Kimi K2 0905" | "Kimi K2 0711" | "Llama 3.1 70B Instruct" | "Llama 4 Maverick" | "Llama Guard 4 12B" | "Llama 3.2 3B Instruct (free)" | "Llama 3.2 3B Instruct" | "Llama 4 Scout" | "Llama 3.2 11B Vision Instruct" | "Llama 3.2 1B Instruct" | "Llama 3 70B Instruct" | "Llama 3 8B Instruct" | "Llama 3.1 8B Instruct" | "Llama Guard 3 8B" | "Sonar" | "Sonar Pro" | "Sonar Reasoning Pro" | "Sonar Pro Search" | "Sonar Deep Research" | "Magnum v4 72B" | "Weaver (alpha)" | "ERNIE 4.5 VL 424B A47B " | "ERNIE 4.5 VL 28B A3B" | "Grok 4.20 Multi-Agent" | "Grok 4.20" | "OpenAI GPT Latest" | "OpenAI GPT Mini Latest" | "Nemotron 3 Nano 30B A3B" | "Nemotron Nano 9B V2" | "Nemotron 3 Nano 30B A3B (free)" | "Nemotron 3 Nano Omni (free)" | "Nemotron 3 Super (free)" | "Nemotron Nano 12B 2 VL (free)" | "Nemotron Nano 9B V2 (free)" | "Llama 3.3 Nemotron Super 49B V1.5" | "Nemotron 3 Super" | "Switchpoint Router" | "Trinity Mini" | "Trinity Large Thinking" | "Spotlight" | "Maestro Reasoning" | "Coder Large" | "Virtuoso Large" | "MythoMax 13B" | "Uncensored (free)" | "Phi 4" | "WizardLM-2 8x22B" | "Phi 4 Mini Instruct" | "Palmyra X5" | "Seed-2.0-Mini" | "Seed 1.6 Flash" | "Seed 1.6" | "Seed-2.0-Lite" | "DeepSeek V3.1 Nex N1" | "Hy3 preview" | "Hunyuan A13B Instruct" | "Granite 4.1 8B" | "Granite 4.0 Micro" | "Step 3.7 Flash" | "Step 3.5 Flash" | "Aion-2.0" | "Aion-1.0" | "Aion-RP 1.0 (8B)" | "Aion-1.0-Mini" | "Nova Pro 1.0" | "Nova Lite 1.0" | "Nova Micro 1.0" | "Nova Premier 1.0" | "Nova 2 Lite" | "Ling-2.6-flash" | "Ling-2.6-1T" | "Ring-2.6-1T" | "Morph V3 Fast" | "Morph V3 Large" | "ReMM SLERP 13B" | "Lyria 3 Clip Preview" | "Gemini 2.5 Pro Preview 06-05" | "Gemini 2.5 Pro Preview 05-06" | "Gemma 3n 4B" | "Gemma 3 27B" | "Gemma 3 12B" | "Gemini 2.5 Flash Lite Preview 09-2025" | "Gemma 3 4B" | "Lyria 3 Pro Preview" | "Gemma 2 27B" | "Nano Banana Pro (Gemini 3 Pro Image Preview)" | "o3 Mini High" | "o4 Mini High" | "GPT-5 Chat" | "GPT-4o-mini (2024-07-18)" | "GPT-5 Image" | "GPT-4o-mini Search Preview" | "GPT-5.4 Image 2" | "GPT-3.5 Turbo 16k" | "gpt-oss-20b (free)" | "gpt-oss-120b" | "GPT Chat Latest" | "GPT-4 Turbo (older v1106)" | "gpt-oss-20b" | "GPT-4 (older v0314)" | "GPT-4 Turbo Preview" | "GPT Audio" | "GPT-5 Image Mini" | "GPT Audio Mini" | "gpt-oss-120b (free)" | "GPT-5.2 Chat" | "GPT-3.5 Turbo Instruct" | "GPT-5.1 Chat" | "gpt-oss-safeguard-20b" | "GPT-3.5 Turbo (older v0613)" | "GPT-5.3 Chat" | "GPT-4o Search Preview" | "Laguna M.1 (free)" | "Laguna XS.2 (free)" | "UI-TARS 7B " | "Claude Opus Latest" | "Anthropic Claude Haiku Latest" | "Anthropic Claude Sonnet Latest" | "MiniMax M1" | "MiniMax-01" | "MiniMax M2-her" | "Olmo 3 32B Think" | "GLM 4.5 Air (free)" | "GLM-4.6" | "GLM-4.7" | "GLM-4.5V" | "GLM-4.6V" | "GLM-4.7-Flash" | "GLM-5V-Turbo" | "GLM-5" | "GLM-5-Turbo" | "GLM-4.5" | "GLM-4.5-Air" | "GLM-5.1" | "Mistral Small 4" | "Mistral Nemo" | "Mistral Large 3" | "Devstral 2" | "DeepSeek Chat" | "DeepSeek V4 Flash" | "DeepSeek V4 Pro" | "Claude Sonnet 4.6" | "Claude Opus 4.5 (latest)" | "Claude Opus 4.7" | "Claude Sonnet 4.5 (latest)" | "Claude Opus 4.6" | "Claude Haiku 4.5 (latest)" | "Claude Opus 4.1 (latest)" | "Claude Opus 4.8" | "MiMo-V2.5" | "MiMo-V2-Flash" | "MiMo-V2.5-Pro" | "Command R+" | "Command R" | "Command R7B" | "Kimi K2 Thinking" | "Kimi K2.6" | "Kimi K2.6 (free)" | "Kimi K2.5" | "Llama 3.3 70B Instruct (free)" | "Llama-3.3-70B-Instruct" | "Grok Build 0.1" | "Grok 4.3" | "Nano Banana" | "Gemma 4 31B (free)" | "Gemini 3.1 Flash Lite Preview" | "Gemma 4 31B IT" | "Gemini 3 Flash Preview" | "Gemma 4 26B A4B (free)" | "Gemini 3.1 Pro Preview Custom Tools" | "Gemini 2.5 Pro" | "Gemini 3.1 Pro Preview" | "Gemini 3.1 Flash Lite" | "Gemini 2.5 Flash-Lite" | "Gemini 2.5 Flash" | "Gemma 4 26B A4B IT" | "Gemini 3.5 Flash" | "Nano Banana 2" | "GPT-4o (2024-08-06)" | "GPT-5 Pro" | "GPT-5 Mini" | "GPT-4o" | "GPT-5.2" | "GPT-5-Codex" | "o3" | "GPT-4o (2024-11-20)" | "GPT-5" | "GPT-5.4 Pro" | "GPT-4.1 mini" | "GPT-5.2 Pro" | "o3-pro" | "o4-mini" | "GPT-5.4" | "o3-mini" | "GPT-5.5" | "GPT-5.1" | "GPT-5 Nano" | "GPT-4o mini" | "GPT-5.1 Codex Max" | "GPT-5.1 Codex mini" | "o1-pro" | "o3-deep-research" | "GPT-4.1" | "GPT-5.4 nano" | "GPT-5.3 Codex" | "GPT-5.5 Pro" | "o4-mini-deep-research" | "GPT-3.5-turbo" | "GPT-5.2 Codex" | "GPT-5.1 Codex" | "GPT-4o (2024-05-13)" | "GPT-5.4 mini" | "GPT-4 Turbo" | "o1" | "GPT-4" | "GPT-4.1 nano" | "MiniMax-M3" | "MiniMax-M2.1" | "MiniMax-M2.7" | "MiniMax-M2" | "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;
|