@fifthrevision/axle 0.26.0 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{accumulator-BQ_1i4qv.d.ts → accumulator-B2Zr6tOY.d.ts} +6 -0
- package/dist/{accumulator-jZHrnyOF.js → accumulator-BQuyGJN_.js} +1 -1
- package/dist/index.d.ts +12 -114
- package/dist/index.js +18 -18
- package/dist/models.d.ts +125 -0
- package/dist/models.js +1 -0
- package/dist/ui.d.ts +1 -1
- package/dist/ui.js +1 -1
- package/package.json +3 -3
- package/dist/models-CT626Bau.js +0 -1
- package/dist/models-Zonc7MFB.d.ts +0 -119
- package/dist/providers/models.d.ts +0 -2
- package/dist/providers/models.js +0 -1
package/dist/models.d.ts
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
//#region src/models.d.ts
|
|
2
|
+
interface ModelMetadata {
|
|
3
|
+
contextWindow?: number;
|
|
4
|
+
maxOutputTokens?: number;
|
|
5
|
+
multimodal: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare const Models: {
|
|
8
|
+
readonly Anthropic: {
|
|
9
|
+
readonly CLAUDE_FABLE_5: "anthropic/claude-fable-5";
|
|
10
|
+
readonly CLAUDE_HAIKU_4_5: "anthropic/claude-haiku-4-5";
|
|
11
|
+
readonly CLAUDE_HAIKU_4_5_20251001: "anthropic/claude-haiku-4-5-20251001";
|
|
12
|
+
readonly CLAUDE_OPUS_4_5: "anthropic/claude-opus-4-5";
|
|
13
|
+
readonly CLAUDE_OPUS_4_5_20251101: "anthropic/claude-opus-4-5-20251101";
|
|
14
|
+
readonly CLAUDE_OPUS_4_6: "anthropic/claude-opus-4-6";
|
|
15
|
+
readonly CLAUDE_OPUS_4_7: "anthropic/claude-opus-4-7";
|
|
16
|
+
readonly CLAUDE_OPUS_4_8: "anthropic/claude-opus-4-8";
|
|
17
|
+
readonly CLAUDE_SONNET_4_5: "anthropic/claude-sonnet-4-5";
|
|
18
|
+
readonly CLAUDE_SONNET_4_5_20250929: "anthropic/claude-sonnet-4-5-20250929";
|
|
19
|
+
readonly CLAUDE_SONNET_4_6: "anthropic/claude-sonnet-4-6";
|
|
20
|
+
readonly CLAUDE_SONNET_5: "anthropic/claude-sonnet-5";
|
|
21
|
+
};
|
|
22
|
+
readonly DeepSeek: {
|
|
23
|
+
readonly DEEPSEEK_V4_FLASH: "deepseek/deepseek-v4-flash";
|
|
24
|
+
readonly DEEPSEEK_V4_PRO: "deepseek/deepseek-v4-pro";
|
|
25
|
+
};
|
|
26
|
+
readonly Google: {
|
|
27
|
+
readonly GEMINI_2_5_FLASH: "google/gemini-2.5-flash";
|
|
28
|
+
readonly GEMINI_2_5_FLASH_LITE: "google/gemini-2.5-flash-lite";
|
|
29
|
+
readonly GEMINI_2_5_PRO: "google/gemini-2.5-pro";
|
|
30
|
+
readonly GEMINI_3_FLASH_PREVIEW: "google/gemini-3-flash-preview";
|
|
31
|
+
readonly GEMINI_3_1_FLASH_LITE: "google/gemini-3.1-flash-lite";
|
|
32
|
+
readonly GEMINI_3_1_PRO_PREVIEW: "google/gemini-3.1-pro-preview";
|
|
33
|
+
readonly GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS: "google/gemini-3.1-pro-preview-customtools";
|
|
34
|
+
readonly GEMINI_3_5_FLASH: "google/gemini-3.5-flash";
|
|
35
|
+
readonly GEMINI_FLASH_LATEST: "google/gemini-flash-latest";
|
|
36
|
+
readonly GEMINI_FLASH_LITE_LATEST: "google/gemini-flash-lite-latest";
|
|
37
|
+
readonly GEMMA_4_26B_A4B_IT: "google/gemma-4-26b-a4b-it";
|
|
38
|
+
readonly GEMMA_4_31B_IT: "google/gemma-4-31b-it";
|
|
39
|
+
};
|
|
40
|
+
readonly MiniMax: {
|
|
41
|
+
readonly MINIMAX_M2_7: "minimax/MiniMax-M2.7";
|
|
42
|
+
readonly MINIMAX_M2_7_HIGHSPEED: "minimax/MiniMax-M2.7-highspeed";
|
|
43
|
+
readonly MINIMAX_M3: "minimax/MiniMax-M3";
|
|
44
|
+
};
|
|
45
|
+
readonly Mistral: {
|
|
46
|
+
readonly MAGISTRAL_MEDIUM_LATEST: "mistral/magistral-medium-latest";
|
|
47
|
+
readonly MAGISTRAL_SMALL: "mistral/magistral-small";
|
|
48
|
+
readonly MINISTRAL_3B_LATEST: "mistral/ministral-3b-latest";
|
|
49
|
+
readonly MINISTRAL_8B_LATEST: "mistral/ministral-8b-latest";
|
|
50
|
+
readonly MISTRAL_LARGE_LATEST: "mistral/mistral-large-latest";
|
|
51
|
+
readonly MISTRAL_MEDIUM_LATEST: "mistral/mistral-medium-latest";
|
|
52
|
+
readonly MISTRAL_SMALL_LATEST: "mistral/mistral-small-latest";
|
|
53
|
+
};
|
|
54
|
+
readonly Moonshot: {
|
|
55
|
+
readonly KIMI_K2_6: "moonshotai/kimi-k2.6";
|
|
56
|
+
readonly KIMI_K2_7_CODE: "moonshotai/kimi-k2.7-code";
|
|
57
|
+
readonly KIMI_K2_7_CODE_HIGHSPEED: "moonshotai/kimi-k2.7-code-highspeed";
|
|
58
|
+
};
|
|
59
|
+
readonly OpenAI: {
|
|
60
|
+
readonly GPT_4_1: "openai/gpt-4.1";
|
|
61
|
+
readonly GPT_4_1_MINI: "openai/gpt-4.1-mini";
|
|
62
|
+
readonly GPT_4_1_NANO: "openai/gpt-4.1-nano";
|
|
63
|
+
readonly GPT_4O_2024_08_06: "openai/gpt-4o-2024-08-06";
|
|
64
|
+
readonly GPT_4O_2024_11_20: "openai/gpt-4o-2024-11-20";
|
|
65
|
+
readonly GPT_4O_MINI: "openai/gpt-4o-mini";
|
|
66
|
+
readonly GPT_5: "openai/gpt-5";
|
|
67
|
+
readonly GPT_5_CHAT_LATEST: "openai/gpt-5-chat-latest";
|
|
68
|
+
readonly GPT_5_CODEX: "openai/gpt-5-codex";
|
|
69
|
+
readonly GPT_5_MINI: "openai/gpt-5-mini";
|
|
70
|
+
readonly GPT_5_NANO: "openai/gpt-5-nano";
|
|
71
|
+
readonly GPT_5_PRO: "openai/gpt-5-pro";
|
|
72
|
+
readonly GPT_5_1: "openai/gpt-5.1";
|
|
73
|
+
readonly GPT_5_1_CHAT_LATEST: "openai/gpt-5.1-chat-latest";
|
|
74
|
+
readonly GPT_5_1_CODEX: "openai/gpt-5.1-codex";
|
|
75
|
+
readonly GPT_5_1_CODEX_MAX: "openai/gpt-5.1-codex-max";
|
|
76
|
+
readonly GPT_5_1_CODEX_MINI: "openai/gpt-5.1-codex-mini";
|
|
77
|
+
readonly GPT_5_2: "openai/gpt-5.2";
|
|
78
|
+
readonly GPT_5_2_CHAT_LATEST: "openai/gpt-5.2-chat-latest";
|
|
79
|
+
readonly GPT_5_2_CODEX: "openai/gpt-5.2-codex";
|
|
80
|
+
readonly GPT_5_2_PRO: "openai/gpt-5.2-pro";
|
|
81
|
+
readonly GPT_5_3_CHAT_LATEST: "openai/gpt-5.3-chat-latest";
|
|
82
|
+
readonly GPT_5_3_CODEX: "openai/gpt-5.3-codex";
|
|
83
|
+
readonly GPT_5_3_CODEX_SPARK: "openai/gpt-5.3-codex-spark";
|
|
84
|
+
readonly GPT_5_4: "openai/gpt-5.4";
|
|
85
|
+
readonly GPT_5_4_MINI: "openai/gpt-5.4-mini";
|
|
86
|
+
readonly GPT_5_4_NANO: "openai/gpt-5.4-nano";
|
|
87
|
+
readonly GPT_5_4_PRO: "openai/gpt-5.4-pro";
|
|
88
|
+
readonly GPT_5_5: "openai/gpt-5.5";
|
|
89
|
+
readonly GPT_5_5_PRO: "openai/gpt-5.5-pro";
|
|
90
|
+
readonly GPT_5_6: "openai/gpt-5.6";
|
|
91
|
+
readonly GPT_5_6_LUNA: "openai/gpt-5.6-luna";
|
|
92
|
+
readonly GPT_5_6_SOL: "openai/gpt-5.6-sol";
|
|
93
|
+
readonly GPT_5_6_TERRA: "openai/gpt-5.6-terra";
|
|
94
|
+
readonly O1: "openai/o1";
|
|
95
|
+
readonly O1_PRO: "openai/o1-pro";
|
|
96
|
+
readonly O3: "openai/o3";
|
|
97
|
+
readonly O3_MINI: "openai/o3-mini";
|
|
98
|
+
readonly O3_PRO: "openai/o3-pro";
|
|
99
|
+
readonly O4_MINI: "openai/o4-mini";
|
|
100
|
+
};
|
|
101
|
+
readonly Qwen: {
|
|
102
|
+
readonly QWEN3_5_122B_A10B: "qwen/qwen3.5-122b-a10b";
|
|
103
|
+
readonly QWEN3_5_27B: "qwen/qwen3.5-27b";
|
|
104
|
+
readonly QWEN3_5_35B_A3B: "qwen/qwen3.5-35b-a3b";
|
|
105
|
+
readonly QWEN3_5_397B_A17B: "qwen/qwen3.5-397b-a17b";
|
|
106
|
+
readonly QWEN3_5_9B: "qwen/qwen3.5-9b";
|
|
107
|
+
readonly QWEN3_5_FLASH_02_23: "qwen/qwen3.5-flash-02-23";
|
|
108
|
+
readonly QWEN3_5_PLUS_02_15: "qwen/qwen3.5-plus-02-15";
|
|
109
|
+
readonly QWEN3_5_PLUS_20260420: "qwen/qwen3.5-plus-20260420";
|
|
110
|
+
readonly QWEN3_6_27B: "qwen/qwen3.6-27b";
|
|
111
|
+
readonly QWEN3_6_35B_A3B: "qwen/qwen3.6-35b-a3b";
|
|
112
|
+
readonly QWEN3_6_FLASH: "qwen/qwen3.6-flash";
|
|
113
|
+
readonly QWEN3_6_MAX_PREVIEW: "qwen/qwen3.6-max-preview";
|
|
114
|
+
readonly QWEN3_6_PLUS: "qwen/qwen3.6-plus";
|
|
115
|
+
readonly QWEN3_7_MAX: "qwen/qwen3.7-max";
|
|
116
|
+
readonly QWEN3_7_PLUS: "qwen/qwen3.7-plus";
|
|
117
|
+
};
|
|
118
|
+
readonly ZAI: {
|
|
119
|
+
readonly GLM_5_1: "zai/glm-5.1";
|
|
120
|
+
readonly GLM_5_2: "zai/glm-5.2";
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
declare const ModelInfo: Readonly<Record<string, ModelMetadata>>;
|
|
124
|
+
//#endregion
|
|
125
|
+
export { ModelInfo, ModelMetadata, Models };
|
package/dist/models.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e={Anthropic:{CLAUDE_FABLE_5:`anthropic/claude-fable-5`,CLAUDE_HAIKU_4_5:`anthropic/claude-haiku-4-5`,CLAUDE_HAIKU_4_5_20251001:`anthropic/claude-haiku-4-5-20251001`,CLAUDE_OPUS_4_5:`anthropic/claude-opus-4-5`,CLAUDE_OPUS_4_5_20251101:`anthropic/claude-opus-4-5-20251101`,CLAUDE_OPUS_4_6:`anthropic/claude-opus-4-6`,CLAUDE_OPUS_4_7:`anthropic/claude-opus-4-7`,CLAUDE_OPUS_4_8:`anthropic/claude-opus-4-8`,CLAUDE_SONNET_4_5:`anthropic/claude-sonnet-4-5`,CLAUDE_SONNET_4_5_20250929:`anthropic/claude-sonnet-4-5-20250929`,CLAUDE_SONNET_4_6:`anthropic/claude-sonnet-4-6`,CLAUDE_SONNET_5:`anthropic/claude-sonnet-5`},DeepSeek:{DEEPSEEK_V4_FLASH:`deepseek/deepseek-v4-flash`,DEEPSEEK_V4_PRO:`deepseek/deepseek-v4-pro`},Google:{GEMINI_2_5_FLASH:`google/gemini-2.5-flash`,GEMINI_2_5_FLASH_LITE:`google/gemini-2.5-flash-lite`,GEMINI_2_5_PRO:`google/gemini-2.5-pro`,GEMINI_3_FLASH_PREVIEW:`google/gemini-3-flash-preview`,GEMINI_3_1_FLASH_LITE:`google/gemini-3.1-flash-lite`,GEMINI_3_1_PRO_PREVIEW:`google/gemini-3.1-pro-preview`,GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS:`google/gemini-3.1-pro-preview-customtools`,GEMINI_3_5_FLASH:`google/gemini-3.5-flash`,GEMINI_FLASH_LATEST:`google/gemini-flash-latest`,GEMINI_FLASH_LITE_LATEST:`google/gemini-flash-lite-latest`,GEMMA_4_26B_A4B_IT:`google/gemma-4-26b-a4b-it`,GEMMA_4_31B_IT:`google/gemma-4-31b-it`},MiniMax:{MINIMAX_M2_7:`minimax/MiniMax-M2.7`,MINIMAX_M2_7_HIGHSPEED:`minimax/MiniMax-M2.7-highspeed`,MINIMAX_M3:`minimax/MiniMax-M3`},Mistral:{MAGISTRAL_MEDIUM_LATEST:`mistral/magistral-medium-latest`,MAGISTRAL_SMALL:`mistral/magistral-small`,MINISTRAL_3B_LATEST:`mistral/ministral-3b-latest`,MINISTRAL_8B_LATEST:`mistral/ministral-8b-latest`,MISTRAL_LARGE_LATEST:`mistral/mistral-large-latest`,MISTRAL_MEDIUM_LATEST:`mistral/mistral-medium-latest`,MISTRAL_SMALL_LATEST:`mistral/mistral-small-latest`},Moonshot:{KIMI_K2_6:`moonshotai/kimi-k2.6`,KIMI_K2_7_CODE:`moonshotai/kimi-k2.7-code`,KIMI_K2_7_CODE_HIGHSPEED:`moonshotai/kimi-k2.7-code-highspeed`},OpenAI:{GPT_4_1:`openai/gpt-4.1`,GPT_4_1_MINI:`openai/gpt-4.1-mini`,GPT_4_1_NANO:`openai/gpt-4.1-nano`,GPT_4O_2024_08_06:`openai/gpt-4o-2024-08-06`,GPT_4O_2024_11_20:`openai/gpt-4o-2024-11-20`,GPT_4O_MINI:`openai/gpt-4o-mini`,GPT_5:`openai/gpt-5`,GPT_5_CHAT_LATEST:`openai/gpt-5-chat-latest`,GPT_5_CODEX:`openai/gpt-5-codex`,GPT_5_MINI:`openai/gpt-5-mini`,GPT_5_NANO:`openai/gpt-5-nano`,GPT_5_PRO:`openai/gpt-5-pro`,GPT_5_1:`openai/gpt-5.1`,GPT_5_1_CHAT_LATEST:`openai/gpt-5.1-chat-latest`,GPT_5_1_CODEX:`openai/gpt-5.1-codex`,GPT_5_1_CODEX_MAX:`openai/gpt-5.1-codex-max`,GPT_5_1_CODEX_MINI:`openai/gpt-5.1-codex-mini`,GPT_5_2:`openai/gpt-5.2`,GPT_5_2_CHAT_LATEST:`openai/gpt-5.2-chat-latest`,GPT_5_2_CODEX:`openai/gpt-5.2-codex`,GPT_5_2_PRO:`openai/gpt-5.2-pro`,GPT_5_3_CHAT_LATEST:`openai/gpt-5.3-chat-latest`,GPT_5_3_CODEX:`openai/gpt-5.3-codex`,GPT_5_3_CODEX_SPARK:`openai/gpt-5.3-codex-spark`,GPT_5_4:`openai/gpt-5.4`,GPT_5_4_MINI:`openai/gpt-5.4-mini`,GPT_5_4_NANO:`openai/gpt-5.4-nano`,GPT_5_4_PRO:`openai/gpt-5.4-pro`,GPT_5_5:`openai/gpt-5.5`,GPT_5_5_PRO:`openai/gpt-5.5-pro`,GPT_5_6:`openai/gpt-5.6`,GPT_5_6_LUNA:`openai/gpt-5.6-luna`,GPT_5_6_SOL:`openai/gpt-5.6-sol`,GPT_5_6_TERRA:`openai/gpt-5.6-terra`,O1:`openai/o1`,O1_PRO:`openai/o1-pro`,O3:`openai/o3`,O3_MINI:`openai/o3-mini`,O3_PRO:`openai/o3-pro`,O4_MINI:`openai/o4-mini`},Qwen:{QWEN3_5_122B_A10B:`qwen/qwen3.5-122b-a10b`,QWEN3_5_27B:`qwen/qwen3.5-27b`,QWEN3_5_35B_A3B:`qwen/qwen3.5-35b-a3b`,QWEN3_5_397B_A17B:`qwen/qwen3.5-397b-a17b`,QWEN3_5_9B:`qwen/qwen3.5-9b`,QWEN3_5_FLASH_02_23:`qwen/qwen3.5-flash-02-23`,QWEN3_5_PLUS_02_15:`qwen/qwen3.5-plus-02-15`,QWEN3_5_PLUS_20260420:`qwen/qwen3.5-plus-20260420`,QWEN3_6_27B:`qwen/qwen3.6-27b`,QWEN3_6_35B_A3B:`qwen/qwen3.6-35b-a3b`,QWEN3_6_FLASH:`qwen/qwen3.6-flash`,QWEN3_6_MAX_PREVIEW:`qwen/qwen3.6-max-preview`,QWEN3_6_PLUS:`qwen/qwen3.6-plus`,QWEN3_7_MAX:`qwen/qwen3.7-max`,QWEN3_7_PLUS:`qwen/qwen3.7-plus`},ZAI:{GLM_5_1:`zai/glm-5.1`,GLM_5_2:`zai/glm-5.2`}},t={[e.Anthropic.CLAUDE_FABLE_5]:{contextWindow:1e6,maxOutputTokens:128e3,multimodal:!0},[e.Anthropic.CLAUDE_HAIKU_4_5]:{contextWindow:2e5,maxOutputTokens:64e3,multimodal:!0},[e.Anthropic.CLAUDE_HAIKU_4_5_20251001]:{contextWindow:2e5,maxOutputTokens:64e3,multimodal:!0},[e.Anthropic.CLAUDE_OPUS_4_5]:{contextWindow:2e5,maxOutputTokens:64e3,multimodal:!0},[e.Anthropic.CLAUDE_OPUS_4_5_20251101]:{contextWindow:2e5,maxOutputTokens:64e3,multimodal:!0},[e.Anthropic.CLAUDE_OPUS_4_6]:{contextWindow:1e6,maxOutputTokens:128e3,multimodal:!0},[e.Anthropic.CLAUDE_OPUS_4_7]:{contextWindow:1e6,maxOutputTokens:128e3,multimodal:!0},[e.Anthropic.CLAUDE_OPUS_4_8]:{contextWindow:1e6,maxOutputTokens:128e3,multimodal:!0},[e.Anthropic.CLAUDE_SONNET_4_5]:{contextWindow:1e6,maxOutputTokens:64e3,multimodal:!0},[e.Anthropic.CLAUDE_SONNET_4_5_20250929]:{contextWindow:1e6,maxOutputTokens:64e3,multimodal:!0},[e.Anthropic.CLAUDE_SONNET_4_6]:{contextWindow:1e6,maxOutputTokens:128e3,multimodal:!0},[e.Anthropic.CLAUDE_SONNET_5]:{contextWindow:1e6,maxOutputTokens:128e3,multimodal:!0},[e.DeepSeek.DEEPSEEK_V4_FLASH]:{contextWindow:1e6,maxOutputTokens:384e3,multimodal:!1},[e.DeepSeek.DEEPSEEK_V4_PRO]:{contextWindow:1e6,maxOutputTokens:384e3,multimodal:!1},[e.Google.GEMINI_2_5_FLASH]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_2_5_FLASH_LITE]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_2_5_PRO]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_3_FLASH_PREVIEW]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_3_1_FLASH_LITE]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_3_1_PRO_PREVIEW]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_3_5_FLASH]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_FLASH_LATEST]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMINI_FLASH_LITE_LATEST]:{contextWindow:1048576,maxOutputTokens:65536,multimodal:!0},[e.Google.GEMMA_4_26B_A4B_IT]:{contextWindow:262144,maxOutputTokens:32768,multimodal:!0},[e.Google.GEMMA_4_31B_IT]:{contextWindow:262144,maxOutputTokens:32768,multimodal:!0},[e.MiniMax.MINIMAX_M2_7]:{contextWindow:204800,maxOutputTokens:131072,multimodal:!1},[e.MiniMax.MINIMAX_M2_7_HIGHSPEED]:{contextWindow:204800,maxOutputTokens:131072,multimodal:!1},[e.MiniMax.MINIMAX_M3]:{contextWindow:1e6,maxOutputTokens:128e3,multimodal:!0},[e.Mistral.MAGISTRAL_MEDIUM_LATEST]:{contextWindow:128e3,maxOutputTokens:16384,multimodal:!1},[e.Mistral.MAGISTRAL_SMALL]:{contextWindow:128e3,maxOutputTokens:128e3,multimodal:!1},[e.Mistral.MINISTRAL_3B_LATEST]:{contextWindow:128e3,maxOutputTokens:128e3,multimodal:!1},[e.Mistral.MINISTRAL_8B_LATEST]:{contextWindow:128e3,maxOutputTokens:128e3,multimodal:!1},[e.Mistral.MISTRAL_LARGE_LATEST]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.Mistral.MISTRAL_MEDIUM_LATEST]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.Mistral.MISTRAL_SMALL_LATEST]:{contextWindow:256e3,maxOutputTokens:256e3,multimodal:!0},[e.Moonshot.KIMI_K2_6]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.Moonshot.KIMI_K2_7_CODE]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.Moonshot.KIMI_K2_7_CODE_HIGHSPEED]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.OpenAI.GPT_4_1]:{contextWindow:1047576,maxOutputTokens:32768,multimodal:!0},[e.OpenAI.GPT_4_1_MINI]:{contextWindow:1047576,maxOutputTokens:32768,multimodal:!0},[e.OpenAI.GPT_4_1_NANO]:{contextWindow:1047576,maxOutputTokens:32768,multimodal:!0},[e.OpenAI.GPT_4O_2024_08_06]:{contextWindow:128e3,maxOutputTokens:16384,multimodal:!0},[e.OpenAI.GPT_4O_2024_11_20]:{contextWindow:128e3,maxOutputTokens:16384,multimodal:!0},[e.OpenAI.GPT_4O_MINI]:{contextWindow:128e3,maxOutputTokens:16384,multimodal:!0},[e.OpenAI.GPT_5]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_CHAT_LATEST]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_CODEX]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_MINI]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_NANO]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_PRO]:{contextWindow:4e5,maxOutputTokens:272e3,multimodal:!0},[e.OpenAI.GPT_5_1]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_1_CHAT_LATEST]:{contextWindow:128e3,maxOutputTokens:16384,multimodal:!0},[e.OpenAI.GPT_5_1_CODEX]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_1_CODEX_MAX]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_1_CODEX_MINI]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_2]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_2_CHAT_LATEST]:{contextWindow:128e3,maxOutputTokens:16384,multimodal:!0},[e.OpenAI.GPT_5_2_CODEX]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_2_PRO]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_3_CHAT_LATEST]:{contextWindow:128e3,maxOutputTokens:16384,multimodal:!0},[e.OpenAI.GPT_5_3_CODEX]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_3_CODEX_SPARK]:{contextWindow:128e3,maxOutputTokens:32e3,multimodal:!0},[e.OpenAI.GPT_5_4]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_4_MINI]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_4_NANO]:{contextWindow:4e5,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_4_PRO]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_5]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_5_PRO]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_6]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_6_LUNA]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_6_SOL]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.GPT_5_6_TERRA]:{contextWindow:105e4,maxOutputTokens:128e3,multimodal:!0},[e.OpenAI.O1]:{contextWindow:2e5,maxOutputTokens:1e5,multimodal:!0},[e.OpenAI.O1_PRO]:{contextWindow:2e5,maxOutputTokens:1e5,multimodal:!0},[e.OpenAI.O3]:{contextWindow:2e5,maxOutputTokens:1e5,multimodal:!0},[e.OpenAI.O3_MINI]:{contextWindow:2e5,maxOutputTokens:1e5,multimodal:!1},[e.OpenAI.O3_PRO]:{contextWindow:2e5,maxOutputTokens:1e5,multimodal:!0},[e.OpenAI.O4_MINI]:{contextWindow:2e5,maxOutputTokens:1e5,multimodal:!0},[e.Qwen.QWEN3_5_122B_A10B]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.Qwen.QWEN3_5_27B]:{contextWindow:262144,maxOutputTokens:65536,multimodal:!0},[e.Qwen.QWEN3_5_35B_A3B]:{contextWindow:262144,maxOutputTokens:81920,multimodal:!0},[e.Qwen.QWEN3_5_397B_A17B]:{contextWindow:131072,maxOutputTokens:64e3,multimodal:!0},[e.Qwen.QWEN3_5_9B]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.Qwen.QWEN3_5_FLASH_02_23]:{contextWindow:1e6,maxOutputTokens:65536,multimodal:!0},[e.Qwen.QWEN3_5_PLUS_02_15]:{contextWindow:1e6,maxOutputTokens:65536,multimodal:!0},[e.Qwen.QWEN3_5_PLUS_20260420]:{contextWindow:1e6,maxOutputTokens:65536,multimodal:!0},[e.Qwen.QWEN3_6_27B]:{contextWindow:262140,maxOutputTokens:262140,multimodal:!0},[e.Qwen.QWEN3_6_35B_A3B]:{contextWindow:262144,maxOutputTokens:262144,multimodal:!0},[e.Qwen.QWEN3_6_FLASH]:{contextWindow:1e6,maxOutputTokens:65536,multimodal:!0},[e.Qwen.QWEN3_6_MAX_PREVIEW]:{contextWindow:262144,maxOutputTokens:65536,multimodal:!1},[e.Qwen.QWEN3_6_PLUS]:{contextWindow:1e6,maxOutputTokens:65536,multimodal:!0},[e.Qwen.QWEN3_7_MAX]:{contextWindow:1e6,maxOutputTokens:65536,multimodal:!1},[e.Qwen.QWEN3_7_PLUS]:{contextWindow:1e6,maxOutputTokens:65536,multimodal:!0},[e.ZAI.GLM_5_1]:{contextWindow:2e5,maxOutputTokens:131072,multimodal:!1},[e.ZAI.GLM_5_2]:{contextWindow:1e6,maxOutputTokens:131072,multimodal:!1}};export{t as ModelInfo,e as Models};
|
package/dist/ui.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { A as TurnMetadata, B as Citation, C as ProviderToolAction, D as TimingInfo, E as ThinkingPart, H as CitationSource, M as TurnStatus, N as CompactionRecord, O as ToolAction, Q as ThinkingContinuity, S as FilePart, T as TextPart, V as CitationOutputSpan, X as DocumentLocator, _ as Annotation, a as UnknownEvent, b as CitationPart, bt as TokenStats, dt as FileInfo, f as AnnotationEvent, g as ActionResult, h as ActionPart, i as TurnAccumulatorState, j as TurnPart, k as Turn, m as TurnEvent, n as TurnAccumulator, p as AnnotationTarget, r as TurnAccumulatorResult, t as AccumulatableEvent, v as AnnotationPlacement, w as SubagentAction, x as CompactionPart, xt as UsageEntry, y as AnnotationStatus, yt as Stats } from "./accumulator-
|
|
1
|
+
import { A as TurnMetadata, B as Citation, C as ProviderToolAction, D as TimingInfo, E as ThinkingPart, H as CitationSource, M as TurnStatus, N as CompactionRecord, O as ToolAction, Q as ThinkingContinuity, S as FilePart, T as TextPart, V as CitationOutputSpan, X as DocumentLocator, _ as Annotation, a as UnknownEvent, b as CitationPart, bt as TokenStats, dt as FileInfo, f as AnnotationEvent, g as ActionResult, h as ActionPart, i as TurnAccumulatorState, j as TurnPart, k as Turn, m as TurnEvent, n as TurnAccumulator, p as AnnotationTarget, r as TurnAccumulatorResult, t as AccumulatableEvent, v as AnnotationPlacement, w as SubagentAction, x as CompactionPart, xt as UsageEntry, y as AnnotationStatus, yt as Stats } from "./accumulator-B2Zr6tOY.js";
|
|
2
2
|
export { type AccumulatableEvent, type ActionPart, type ActionResult, type Annotation, type AnnotationEvent, type AnnotationPlacement, type AnnotationStatus, type AnnotationTarget, type Citation, type CitationOutputSpan, type CitationPart, type CitationSource, type CompactionPart, type CompactionRecord, type DocumentLocator, type FileInfo, type FilePart, type ProviderToolAction, type Stats, type SubagentAction, type TextPart, type ThinkingContinuity, type ThinkingPart, type TimingInfo, type TokenStats, type ToolAction, type Turn, TurnAccumulator, type TurnAccumulatorResult, type TurnAccumulatorState, type TurnEvent, type TurnMetadata, type TurnPart, type TurnStatus, type UnknownEvent, type UsageEntry };
|
package/dist/ui.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{t as e}from"./accumulator-
|
|
1
|
+
import{t as e}from"./accumulator-BQuyGJN_.js";export{e as TurnAccumulator};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fifthrevision/axle",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/johncch/axle.git"
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"import": "./dist/ui.js"
|
|
18
18
|
},
|
|
19
19
|
"./models": {
|
|
20
|
-
"types": "./dist/
|
|
21
|
-
"import": "./dist/
|
|
20
|
+
"types": "./dist/models.d.ts",
|
|
21
|
+
"import": "./dist/models.js"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
package/dist/models-CT626Bau.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const e={CLAUDE_SONNET_5:`claude-sonnet-5`,CLAUDE_FABLE_5:`claude-fable-5`,CLAUDE_OPUS_4_8:`claude-opus-4-8`,CLAUDE_OPUS_4_7:`claude-opus-4-7`,CLAUDE_SONNET_4_6:`claude-sonnet-4-6`,CLAUDE_OPUS_4_6:`claude-opus-4-6`,CLAUDE_OPUS_4_5_20251101:`claude-opus-4-5-20251101`,CLAUDE_OPUS_4_5:`claude-opus-4-5-20251101`,CLAUDE_SONNET_4_5_20250929:`claude-sonnet-4-5-20250929`,CLAUDE_SONNET_4_5:`claude-sonnet-4-5-20250929`,CLAUDE_HAIKU_4_5_20251001:`claude-haiku-4-5-20251001`,CLAUDE_HAIKU_4_5:`claude-haiku-4-5-20251001`,CLAUDE_OPUS_4_1_20250805:`claude-opus-4-1-20250805`,CLAUDE_OPUS_4_1:`claude-opus-4-1-20250805`,CLAUDE_OPUS_4_20250514:`claude-opus-4-20250514`,CLAUDE_OPUS_4:`claude-opus-4-20250514`,CLAUDE_SONNET_4_20250514:`claude-sonnet-4-20250514`,CLAUDE_SONNET_4:`claude-sonnet-4-20250514`},t=[e.CLAUDE_SONNET_5,e.CLAUDE_FABLE_5,e.CLAUDE_OPUS_4_8,e.CLAUDE_OPUS_4_7,e.CLAUDE_SONNET_4_6,e.CLAUDE_OPUS_4_6,e.CLAUDE_OPUS_4_5,e.CLAUDE_SONNET_4_5,e.CLAUDE_HAIKU_4_5,e.CLAUDE_OPUS_4_1,e.CLAUDE_OPUS_4,e.CLAUDE_SONNET_4],n={[e.CLAUDE_SONNET_5]:128e3,[e.CLAUDE_FABLE_5]:128e3,[e.CLAUDE_OPUS_4_8]:128e3,[e.CLAUDE_OPUS_4_7]:128e3,[e.CLAUDE_OPUS_4_6]:128e3,[e.CLAUDE_SONNET_4_6]:64e3,[e.CLAUDE_OPUS_4_5]:64e3,[e.CLAUDE_SONNET_4_5]:64e3,[e.CLAUDE_HAIKU_4_5]:64e3,[e.CLAUDE_SONNET_4]:64e3,[e.CLAUDE_OPUS_4_1]:32e3,[e.CLAUDE_OPUS_4]:32e3},r=e.CLAUDE_HAIKU_4_5,i={QWEN_3_6_35B_A3B:`qwen/qwen3.6-35b-a3b`,QWEN_3_6_PLUS:`qwen/qwen3.6-plus`,GEMMA_4_26B_A4B_IT:`google/gemma-4-26b-a4b-it`,MINISTRAL_3_8B:`mistralai/ministral-8b-2512`,MISTRAL_SMALL_4:`mistralai/mistral-small-2603`,DEEPSEEK_V4_FLASH:`deepseek/deepseek-v4-flash`,MINIMAX_M2:`minimax/minimax-m2`},a=[i.QWEN_3_6_35B_A3B,i.GEMMA_4_26B_A4B_IT,i.MINISTRAL_3_8B,i.MISTRAL_SMALL_4,i.DEEPSEEK_V4_FLASH,i.MINIMAX_M2],o=i.QWEN_3_6_35B_A3B,s={GEMINI_3_5_PRO:`gemini-3.5-pro`,GEMINI_3_5_FLASH:`gemini-3.5-flash`,GEMINI_3_1_PRO_PREVIEW:`gemini-3.1-pro-preview`,GEMINI_3_1_PRO:`gemini-3.1-pro-preview`,GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS:`gemini-3.1-pro-preview-customtools`,GEMINI_3_1_FLASH_LITE_PREVIEW:`gemini-3.1-flash-lite-preview`,GEMINI_3_1_FLASH_LITE:`gemini-3.1-flash-lite-preview`,GEMINI_3_PRO_PREVIEW:`gemini-3-pro-preview`,GEMINI_3_PRO:`gemini-3-pro-preview`,GEMINI_3_FLASH_PREVIEW:`gemini-3-flash-preview`,GEMINI_3_FLASH:`gemini-3-flash-preview`,GEMINI_2_5_PRO:`gemini-2.5-pro`,GEMINI_2_5_FLASH:`gemini-2.5-flash`,GEMINI_2_5_FLASH_LITE:`gemini-2.5-flash-lite`,GEMINI_2_0_FLASH:`gemini-2.0-flash`,GEMINI_2_0_FLASH_001:`gemini-2.0-flash-001`,GEMINI_2_0_FLASH_LITE:`gemini-2.0-flash-lite`,GEMINI_2_0_FLASH_LITE_001:`gemini-2.0-flash-lite-001`,GEMINI_FLASH_LATEST:`gemini-flash-latest`,GEMINI_FLASH_LITE_LATEST:`gemini-flash-lite-latest`,GEMINI_PRO_LATEST:`gemini-pro-latest`},c=[s.GEMINI_3_5_PRO,s.GEMINI_3_5_FLASH,s.GEMINI_3_1_PRO,s.GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS,s.GEMINI_3_1_FLASH_LITE,s.GEMINI_3_PRO,s.GEMINI_3_FLASH,s.GEMINI_2_5_PRO,s.GEMINI_2_5_FLASH,s.GEMINI_2_5_FLASH_LITE,s.GEMINI_2_0_FLASH,s.GEMINI_2_0_FLASH_LITE,s.GEMINI_FLASH_LATEST,s.GEMINI_FLASH_LITE_LATEST,s.GEMINI_PRO_LATEST],l=s.GEMINI_3_5_FLASH,u={GPT_5_5_2026_04_23:`gpt-5.5-2026-04-23`,GPT_5_5:`gpt-5.5`,GPT_5_5_PRO_2026_04_23:`gpt-5.5-pro-2026-04-23`,GPT_5_5_PRO:`gpt-5.5-pro`,GPT_5_4_2026_03_05:`gpt-5.4-2026-03-05`,GPT_5_4:`gpt-5.4`,GPT_5_4_PRO_2026_03_05:`gpt-5.4-pro-2026-03-05`,GPT_5_4_PRO:`gpt-5.4-pro`,GPT_5_4_MINI_2026_03_17:`gpt-5.4-mini-2026-03-17`,GPT_5_4_MINI:`gpt-5.4-mini`,GPT_5_4_NANO_2026_03_17:`gpt-5.4-nano-2026-03-17`,GPT_5_4_NANO:`gpt-5.4-nano`,GPT_5_3_CHAT_LATEST:`gpt-5.3-chat-latest`,GPT_5_2_2025_12_11:`gpt-5.2-2025-12-11`,GPT_5_2:`gpt-5.2`,GPT_5_2_CHAT_LATEST:`gpt-5.2-chat-latest`,GPT_5_2_PRO_2025_12_11:`gpt-5.2-pro-2025-12-11`,GPT_5_2_PRO:`gpt-5.2-pro`,GPT_5_1_2025_11_13:`gpt-5.1-2025-11-13`,GPT_5_1:`gpt-5.1`,GPT_5_1_CHAT_LATEST:`gpt-5.1-chat-latest`,GPT_5_2025_08_07:`gpt-5-2025-08-07`,GPT_5:`gpt-5`,GPT_5_CHAT_LATEST:`gpt-5-chat-latest`,GPT_5_PRO_2025_10_06:`gpt-5-pro-2025-10-06`,GPT_5_PRO:`gpt-5-pro`,GPT_5_MINI_2025_08_07:`gpt-5-mini-2025-08-07`,GPT_5_MINI:`gpt-5-mini`,GPT_5_NANO_2025_08_07:`gpt-5-nano-2025-08-07`,GPT_5_NANO:`gpt-5-nano`,GPT_4_1_2025_04_14:`gpt-4.1-2025-04-14`,GPT_4_1:`gpt-4.1`,GPT_4_1_MINI_2025_04_14:`gpt-4.1-mini-2025-04-14`,GPT_4_1_MINI:`gpt-4.1-mini`,GPT_4_1_NANO_2025_04_14:`gpt-4.1-nano-2025-04-14`,GPT_4_1_NANO:`gpt-4.1-nano`,GPT_4O_2024_11_20:`gpt-4o-2024-11-20`,GPT_4O:`gpt-4o`,GPT_4O_MINI_2024_07_18:`gpt-4o-mini-2024-07-18`,GPT_4O_MINI:`gpt-4o-mini`,O4_MINI_2025_04_16:`o4-mini-2025-04-16`,O4_MINI:`o4-mini`,O3_2025_04_16:`o3-2025-04-16`,O3:`o3`,O3_PRO_2025_06_10:`o3-pro-2025-06-10`,O3_PRO:`o3-pro`,O3_MINI_2025_01_31:`o3-mini-2025-01-31`,O3_MINI:`o3-mini`},d=[u.GPT_5_5,u.GPT_5_5_PRO,u.GPT_5_4,u.GPT_5_4_PRO,u.GPT_5_4_MINI,u.GPT_5_4_NANO,u.GPT_5_3_CHAT_LATEST,u.GPT_5_2,u.GPT_5_2_CHAT_LATEST,u.GPT_5_2_PRO,u.GPT_5_1,u.GPT_5_1_CHAT_LATEST,u.GPT_5,u.GPT_5_CHAT_LATEST,u.GPT_5_PRO,u.GPT_5_MINI,u.GPT_5_NANO,u.GPT_4_1,u.GPT_4_1_MINI,u.GPT_4_1_NANO,u.GPT_4O,u.GPT_4O_MINI,u.O4_MINI,u.O3,u.O3_PRO,u.O3_MINI],f=u.GPT_5_4_MINI;export{c as a,i as c,n as d,t as f,l as i,a as l,d as n,s as o,e as p,u as r,o as s,f as t,r as u};
|
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
//#region src/providers/anthropic/models.d.ts
|
|
2
|
-
declare const Models$3: {
|
|
3
|
-
readonly CLAUDE_SONNET_5: "claude-sonnet-5";
|
|
4
|
-
readonly CLAUDE_FABLE_5: "claude-fable-5";
|
|
5
|
-
readonly CLAUDE_OPUS_4_8: "claude-opus-4-8";
|
|
6
|
-
readonly CLAUDE_OPUS_4_7: "claude-opus-4-7";
|
|
7
|
-
readonly CLAUDE_SONNET_4_6: "claude-sonnet-4-6";
|
|
8
|
-
readonly CLAUDE_OPUS_4_6: "claude-opus-4-6";
|
|
9
|
-
readonly CLAUDE_OPUS_4_5_20251101: "claude-opus-4-5-20251101";
|
|
10
|
-
readonly CLAUDE_OPUS_4_5: "claude-opus-4-5-20251101";
|
|
11
|
-
readonly CLAUDE_SONNET_4_5_20250929: "claude-sonnet-4-5-20250929";
|
|
12
|
-
readonly CLAUDE_SONNET_4_5: "claude-sonnet-4-5-20250929";
|
|
13
|
-
readonly CLAUDE_HAIKU_4_5_20251001: "claude-haiku-4-5-20251001";
|
|
14
|
-
readonly CLAUDE_HAIKU_4_5: "claude-haiku-4-5-20251001";
|
|
15
|
-
readonly CLAUDE_OPUS_4_1_20250805: "claude-opus-4-1-20250805";
|
|
16
|
-
readonly CLAUDE_OPUS_4_1: "claude-opus-4-1-20250805";
|
|
17
|
-
readonly CLAUDE_OPUS_4_20250514: "claude-opus-4-20250514";
|
|
18
|
-
readonly CLAUDE_OPUS_4: "claude-opus-4-20250514";
|
|
19
|
-
readonly CLAUDE_SONNET_4_20250514: "claude-sonnet-4-20250514";
|
|
20
|
-
readonly CLAUDE_SONNET_4: "claude-sonnet-4-20250514";
|
|
21
|
-
};
|
|
22
|
-
declare const MULTIMODAL_MODELS$2: readonly ["claude-sonnet-5", "claude-fable-5", "claude-opus-4-8", "claude-opus-4-7", "claude-sonnet-4-6", "claude-opus-4-6", "claude-opus-4-5-20251101", "claude-sonnet-4-5-20250929", "claude-haiku-4-5-20251001", "claude-opus-4-1-20250805", "claude-opus-4-20250514", "claude-sonnet-4-20250514"];
|
|
23
|
-
declare const DEFAULT_MODEL$3: "claude-haiku-4-5-20251001";
|
|
24
|
-
//#endregion
|
|
25
|
-
//#region src/providers/chatcompletions/models.d.ts
|
|
26
|
-
declare const Models$2: {
|
|
27
|
-
readonly QWEN_3_6_35B_A3B: "qwen/qwen3.6-35b-a3b";
|
|
28
|
-
readonly QWEN_3_6_PLUS: "qwen/qwen3.6-plus";
|
|
29
|
-
readonly GEMMA_4_26B_A4B_IT: "google/gemma-4-26b-a4b-it";
|
|
30
|
-
readonly MINISTRAL_3_8B: "mistralai/ministral-8b-2512";
|
|
31
|
-
readonly MISTRAL_SMALL_4: "mistralai/mistral-small-2603";
|
|
32
|
-
readonly DEEPSEEK_V4_FLASH: "deepseek/deepseek-v4-flash";
|
|
33
|
-
readonly MINIMAX_M2: "minimax/minimax-m2";
|
|
34
|
-
};
|
|
35
|
-
declare const SMALL_OPEN_WEIGHT_MODELS: readonly ["qwen/qwen3.6-35b-a3b", "google/gemma-4-26b-a4b-it", "mistralai/ministral-8b-2512", "mistralai/mistral-small-2603", "deepseek/deepseek-v4-flash", "minimax/minimax-m2"];
|
|
36
|
-
declare const DEFAULT_MODEL$2: "qwen/qwen3.6-35b-a3b";
|
|
37
|
-
//#endregion
|
|
38
|
-
//#region src/providers/gemini/models.d.ts
|
|
39
|
-
declare const Models$1: {
|
|
40
|
-
readonly GEMINI_3_5_PRO: "gemini-3.5-pro";
|
|
41
|
-
readonly GEMINI_3_5_FLASH: "gemini-3.5-flash";
|
|
42
|
-
readonly GEMINI_3_1_PRO_PREVIEW: "gemini-3.1-pro-preview";
|
|
43
|
-
readonly GEMINI_3_1_PRO: "gemini-3.1-pro-preview";
|
|
44
|
-
readonly GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS: "gemini-3.1-pro-preview-customtools";
|
|
45
|
-
readonly GEMINI_3_1_FLASH_LITE_PREVIEW: "gemini-3.1-flash-lite-preview";
|
|
46
|
-
readonly GEMINI_3_1_FLASH_LITE: "gemini-3.1-flash-lite-preview";
|
|
47
|
-
readonly GEMINI_3_PRO_PREVIEW: "gemini-3-pro-preview";
|
|
48
|
-
readonly GEMINI_3_PRO: "gemini-3-pro-preview";
|
|
49
|
-
readonly GEMINI_3_FLASH_PREVIEW: "gemini-3-flash-preview";
|
|
50
|
-
readonly GEMINI_3_FLASH: "gemini-3-flash-preview";
|
|
51
|
-
readonly GEMINI_2_5_PRO: "gemini-2.5-pro";
|
|
52
|
-
readonly GEMINI_2_5_FLASH: "gemini-2.5-flash";
|
|
53
|
-
readonly GEMINI_2_5_FLASH_LITE: "gemini-2.5-flash-lite";
|
|
54
|
-
readonly GEMINI_2_0_FLASH: "gemini-2.0-flash";
|
|
55
|
-
readonly GEMINI_2_0_FLASH_001: "gemini-2.0-flash-001";
|
|
56
|
-
readonly GEMINI_2_0_FLASH_LITE: "gemini-2.0-flash-lite";
|
|
57
|
-
readonly GEMINI_2_0_FLASH_LITE_001: "gemini-2.0-flash-lite-001";
|
|
58
|
-
readonly GEMINI_FLASH_LATEST: "gemini-flash-latest";
|
|
59
|
-
readonly GEMINI_FLASH_LITE_LATEST: "gemini-flash-lite-latest";
|
|
60
|
-
readonly GEMINI_PRO_LATEST: "gemini-pro-latest";
|
|
61
|
-
};
|
|
62
|
-
declare const MULTIMODAL_MODELS$1: readonly ["gemini-3.5-pro", "gemini-3.5-flash", "gemini-3.1-pro-preview", "gemini-3.1-pro-preview-customtools", "gemini-3.1-flash-lite-preview", "gemini-3-pro-preview", "gemini-3-flash-preview", "gemini-2.5-pro", "gemini-2.5-flash", "gemini-2.5-flash-lite", "gemini-2.0-flash", "gemini-2.0-flash-lite", "gemini-flash-latest", "gemini-flash-lite-latest", "gemini-pro-latest"];
|
|
63
|
-
declare const DEFAULT_MODEL$1: "gemini-3.5-flash";
|
|
64
|
-
//#endregion
|
|
65
|
-
//#region src/providers/openai/models.d.ts
|
|
66
|
-
declare const Models: {
|
|
67
|
-
readonly GPT_5_5_2026_04_23: "gpt-5.5-2026-04-23";
|
|
68
|
-
readonly GPT_5_5: "gpt-5.5";
|
|
69
|
-
readonly GPT_5_5_PRO_2026_04_23: "gpt-5.5-pro-2026-04-23";
|
|
70
|
-
readonly GPT_5_5_PRO: "gpt-5.5-pro";
|
|
71
|
-
readonly GPT_5_4_2026_03_05: "gpt-5.4-2026-03-05";
|
|
72
|
-
readonly GPT_5_4: "gpt-5.4";
|
|
73
|
-
readonly GPT_5_4_PRO_2026_03_05: "gpt-5.4-pro-2026-03-05";
|
|
74
|
-
readonly GPT_5_4_PRO: "gpt-5.4-pro";
|
|
75
|
-
readonly GPT_5_4_MINI_2026_03_17: "gpt-5.4-mini-2026-03-17";
|
|
76
|
-
readonly GPT_5_4_MINI: "gpt-5.4-mini";
|
|
77
|
-
readonly GPT_5_4_NANO_2026_03_17: "gpt-5.4-nano-2026-03-17";
|
|
78
|
-
readonly GPT_5_4_NANO: "gpt-5.4-nano";
|
|
79
|
-
readonly GPT_5_3_CHAT_LATEST: "gpt-5.3-chat-latest";
|
|
80
|
-
readonly GPT_5_2_2025_12_11: "gpt-5.2-2025-12-11";
|
|
81
|
-
readonly GPT_5_2: "gpt-5.2";
|
|
82
|
-
readonly GPT_5_2_CHAT_LATEST: "gpt-5.2-chat-latest";
|
|
83
|
-
readonly GPT_5_2_PRO_2025_12_11: "gpt-5.2-pro-2025-12-11";
|
|
84
|
-
readonly GPT_5_2_PRO: "gpt-5.2-pro";
|
|
85
|
-
readonly GPT_5_1_2025_11_13: "gpt-5.1-2025-11-13";
|
|
86
|
-
readonly GPT_5_1: "gpt-5.1";
|
|
87
|
-
readonly GPT_5_1_CHAT_LATEST: "gpt-5.1-chat-latest";
|
|
88
|
-
readonly GPT_5_2025_08_07: "gpt-5-2025-08-07";
|
|
89
|
-
readonly GPT_5: "gpt-5";
|
|
90
|
-
readonly GPT_5_CHAT_LATEST: "gpt-5-chat-latest";
|
|
91
|
-
readonly GPT_5_PRO_2025_10_06: "gpt-5-pro-2025-10-06";
|
|
92
|
-
readonly GPT_5_PRO: "gpt-5-pro";
|
|
93
|
-
readonly GPT_5_MINI_2025_08_07: "gpt-5-mini-2025-08-07";
|
|
94
|
-
readonly GPT_5_MINI: "gpt-5-mini";
|
|
95
|
-
readonly GPT_5_NANO_2025_08_07: "gpt-5-nano-2025-08-07";
|
|
96
|
-
readonly GPT_5_NANO: "gpt-5-nano";
|
|
97
|
-
readonly GPT_4_1_2025_04_14: "gpt-4.1-2025-04-14";
|
|
98
|
-
readonly GPT_4_1: "gpt-4.1";
|
|
99
|
-
readonly GPT_4_1_MINI_2025_04_14: "gpt-4.1-mini-2025-04-14";
|
|
100
|
-
readonly GPT_4_1_MINI: "gpt-4.1-mini";
|
|
101
|
-
readonly GPT_4_1_NANO_2025_04_14: "gpt-4.1-nano-2025-04-14";
|
|
102
|
-
readonly GPT_4_1_NANO: "gpt-4.1-nano";
|
|
103
|
-
readonly GPT_4O_2024_11_20: "gpt-4o-2024-11-20";
|
|
104
|
-
readonly GPT_4O: "gpt-4o";
|
|
105
|
-
readonly GPT_4O_MINI_2024_07_18: "gpt-4o-mini-2024-07-18";
|
|
106
|
-
readonly GPT_4O_MINI: "gpt-4o-mini";
|
|
107
|
-
readonly O4_MINI_2025_04_16: "o4-mini-2025-04-16";
|
|
108
|
-
readonly O4_MINI: "o4-mini";
|
|
109
|
-
readonly O3_2025_04_16: "o3-2025-04-16";
|
|
110
|
-
readonly O3: "o3";
|
|
111
|
-
readonly O3_PRO_2025_06_10: "o3-pro-2025-06-10";
|
|
112
|
-
readonly O3_PRO: "o3-pro";
|
|
113
|
-
readonly O3_MINI_2025_01_31: "o3-mini-2025-01-31";
|
|
114
|
-
readonly O3_MINI: "o3-mini";
|
|
115
|
-
};
|
|
116
|
-
declare const MULTIMODAL_MODELS: readonly ["gpt-5.5", "gpt-5.5-pro", "gpt-5.4", "gpt-5.4-pro", "gpt-5.4-mini", "gpt-5.4-nano", "gpt-5.3-chat-latest", "gpt-5.2", "gpt-5.2-chat-latest", "gpt-5.2-pro", "gpt-5.1", "gpt-5.1-chat-latest", "gpt-5", "gpt-5-chat-latest", "gpt-5-pro", "gpt-5-mini", "gpt-5-nano", "gpt-4.1", "gpt-4.1-mini", "gpt-4.1-nano", "gpt-4o", "gpt-4o-mini", "o4-mini", "o3", "o3-pro", "o3-mini"];
|
|
117
|
-
declare const DEFAULT_MODEL: "gpt-5.4-mini";
|
|
118
|
-
//#endregion
|
|
119
|
-
export { MULTIMODAL_MODELS$1 as a, Models$2 as c, MULTIMODAL_MODELS$2 as d, Models$3 as f, DEFAULT_MODEL$1 as i, SMALL_OPEN_WEIGHT_MODELS as l, MULTIMODAL_MODELS as n, Models$1 as o, Models as r, DEFAULT_MODEL$2 as s, DEFAULT_MODEL as t, DEFAULT_MODEL$3 as u };
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import { a as MULTIMODAL_MODELS$1, c as Models$1, d as MULTIMODAL_MODELS, f as Models, i as DEFAULT_MODEL$2, l as SMALL_OPEN_WEIGHT_MODELS, n as MULTIMODAL_MODELS$2, o as Models$2, r as Models$3, s as DEFAULT_MODEL$1, t as DEFAULT_MODEL$3, u as DEFAULT_MODEL } from "../models-Zonc7MFB.js";
|
|
2
|
-
export { DEFAULT_MODEL as ANTHROPIC_DEFAULT_MODEL, MULTIMODAL_MODELS as ANTHROPIC_MULTIMODAL_MODELS, Models as AnthropicModels, DEFAULT_MODEL$1 as CHAT_COMPLETIONS_DEFAULT_MODEL, SMALL_OPEN_WEIGHT_MODELS as CHAT_COMPLETIONS_SMALL_OPEN_WEIGHT_MODELS, Models$1 as ChatCompletionsModels, DEFAULT_MODEL$2 as GEMINI_DEFAULT_MODEL, MULTIMODAL_MODELS$1 as GEMINI_MULTIMODAL_MODELS, Models$2 as GeminiModels, DEFAULT_MODEL$3 as OPENAI_DEFAULT_MODEL, MULTIMODAL_MODELS$2 as OPENAI_MULTIMODAL_MODELS, Models$3 as OpenAIModels };
|
package/dist/providers/models.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{a as e,c as t,f as n,i as r,l as i,n as a,o,p as s,r as c,s as l,t as u,u as d}from"../models-CT626Bau.js";export{d as ANTHROPIC_DEFAULT_MODEL,n as ANTHROPIC_MULTIMODAL_MODELS,s as AnthropicModels,l as CHAT_COMPLETIONS_DEFAULT_MODEL,i as CHAT_COMPLETIONS_SMALL_OPEN_WEIGHT_MODELS,t as ChatCompletionsModels,r as GEMINI_DEFAULT_MODEL,e as GEMINI_MULTIMODAL_MODELS,o as GeminiModels,u as OPENAI_DEFAULT_MODEL,a as OPENAI_MULTIMODAL_MODELS,c as OpenAIModels};
|