@wrongstack/cli 0.270.0 → 0.272.1
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/data/providers.json +163 -7
- package/dist/index.js +4102 -2040
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
package/data/providers.json
CHANGED
|
@@ -5,17 +5,173 @@
|
|
|
5
5
|
"npm": "@ai-sdk/openai",
|
|
6
6
|
"env": ["OPENAI_API_KEY"],
|
|
7
7
|
"models": {
|
|
8
|
+
"gpt-4.1": {
|
|
9
|
+
"id": "gpt-4.1",
|
|
10
|
+
"name": "GPT-4.1",
|
|
11
|
+
"tool_call": true,
|
|
12
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
13
|
+
"limit": { "context": 1050000, "output": 32000 },
|
|
14
|
+
"cost": { "input": 2, "output": 8 }
|
|
15
|
+
},
|
|
16
|
+
"gpt-4.1-mini": {
|
|
17
|
+
"id": "gpt-4.1-mini",
|
|
18
|
+
"name": "GPT-4.1 Mini",
|
|
19
|
+
"tool_call": true,
|
|
20
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
21
|
+
"limit": { "context": 1050000, "output": 32000 },
|
|
22
|
+
"cost": { "input": 0.4, "output": 1.6 }
|
|
23
|
+
},
|
|
24
|
+
"gpt-4.1-nano": {
|
|
25
|
+
"id": "gpt-4.1-nano",
|
|
26
|
+
"name": "GPT-4.1 Nano",
|
|
27
|
+
"tool_call": true,
|
|
28
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
29
|
+
"limit": { "context": 1050000, "output": 32000 },
|
|
30
|
+
"cost": { "input": 0.1, "output": 0.4 }
|
|
31
|
+
},
|
|
32
|
+
"o4-mini": {
|
|
33
|
+
"id": "o4-mini",
|
|
34
|
+
"name": "o4-mini",
|
|
35
|
+
"reasoning": true,
|
|
36
|
+
"tool_call": true,
|
|
37
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
38
|
+
"limit": { "context": 200000, "output": 100000 },
|
|
39
|
+
"cost": { "input": 1.1, "output": 4.4 }
|
|
40
|
+
},
|
|
8
41
|
"gpt-5.5": {
|
|
9
42
|
"id": "gpt-5.5",
|
|
10
43
|
"name": "GPT-5.5",
|
|
44
|
+
"reasoning": true,
|
|
45
|
+
"tool_call": true,
|
|
46
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
47
|
+
"limit": { "context": 1050000 },
|
|
48
|
+
"cost": { "input": 10, "output": 40 }
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"anthropic": {
|
|
53
|
+
"id": "anthropic",
|
|
54
|
+
"name": "Anthropic",
|
|
55
|
+
"npm": "@ai-sdk/anthropic",
|
|
56
|
+
"env": ["ANTHROPIC_API_KEY"],
|
|
57
|
+
"models": {
|
|
58
|
+
"claude-sonnet-4-20250514": {
|
|
59
|
+
"id": "claude-sonnet-4-20250514",
|
|
60
|
+
"name": "Claude Sonnet 4",
|
|
61
|
+
"tool_call": true,
|
|
62
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
63
|
+
"limit": { "context": 200000, "output": 8192 },
|
|
64
|
+
"cost": { "input": 3, "output": 15 }
|
|
65
|
+
},
|
|
66
|
+
"claude-haiku-4-20250514": {
|
|
67
|
+
"id": "claude-haiku-4-20250514",
|
|
68
|
+
"name": "Claude Haiku 4",
|
|
69
|
+
"tool_call": true,
|
|
70
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
71
|
+
"limit": { "context": 200000, "output": 8192 },
|
|
72
|
+
"cost": { "input": 0.8, "output": 4 }
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"google": {
|
|
77
|
+
"id": "google",
|
|
78
|
+
"name": "Google",
|
|
79
|
+
"npm": "@ai-sdk/google",
|
|
80
|
+
"env": ["GEMINI_API_KEY"],
|
|
81
|
+
"models": {
|
|
82
|
+
"gemini-2.5-flash": {
|
|
83
|
+
"id": "gemini-2.5-flash",
|
|
84
|
+
"name": "Gemini 2.5 Flash",
|
|
85
|
+
"tool_call": true,
|
|
86
|
+
"modalities": { "input": ["text", "image", "audio"], "output": ["text"] },
|
|
87
|
+
"limit": { "context": 1000000, "output": 8192 },
|
|
88
|
+
"cost": { "input": 0.15, "output": 0.6 }
|
|
89
|
+
},
|
|
90
|
+
"gemini-2.5-pro": {
|
|
91
|
+
"id": "gemini-2.5-pro",
|
|
92
|
+
"name": "Gemini 2.5 Pro",
|
|
93
|
+
"reasoning": true,
|
|
94
|
+
"tool_call": true,
|
|
95
|
+
"modalities": { "input": ["text", "image", "audio"], "output": ["text"] },
|
|
96
|
+
"limit": { "context": 1000000, "output": 65536 },
|
|
97
|
+
"cost": { "input": 1.25, "output": 5 }
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"deepseek": {
|
|
102
|
+
"id": "deepseek",
|
|
103
|
+
"name": "DeepSeek",
|
|
104
|
+
"npm": "@ai-sdk/openai-compatible",
|
|
105
|
+
"api": "https://api.deepseek.com/v1",
|
|
106
|
+
"env": ["DEEPSEEK_API_KEY"],
|
|
107
|
+
"models": {
|
|
108
|
+
"deepseek-v4-pro": {
|
|
109
|
+
"id": "deepseek-v4-pro",
|
|
110
|
+
"name": "DeepSeek V4 Pro",
|
|
111
|
+
"reasoning": true,
|
|
112
|
+
"tool_call": true,
|
|
113
|
+
"modalities": { "input": ["text"], "output": ["text"] },
|
|
114
|
+
"limit": { "context": 128000, "output": 16384 },
|
|
115
|
+
"cost": { "input": 2, "output": 8 }
|
|
116
|
+
},
|
|
117
|
+
"deepseek-v4-flash": {
|
|
118
|
+
"id": "deepseek-v4-flash",
|
|
119
|
+
"name": "DeepSeek V4 Flash",
|
|
120
|
+
"reasoning": true,
|
|
121
|
+
"tool_call": true,
|
|
122
|
+
"modalities": { "input": ["text"], "output": ["text"] },
|
|
123
|
+
"limit": { "context": 128000, "output": 16384 },
|
|
124
|
+
"cost": { "input": 0.5, "output": 1.5 }
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"mistral": {
|
|
129
|
+
"id": "mistral",
|
|
130
|
+
"name": "Mistral",
|
|
131
|
+
"npm": "@ai-sdk/mistral",
|
|
132
|
+
"env": ["MISTRAL_API_KEY"],
|
|
133
|
+
"models": {
|
|
134
|
+
"mistral-small-2506": {
|
|
135
|
+
"id": "mistral-small-2506",
|
|
136
|
+
"name": "Mistral Small",
|
|
137
|
+
"tool_call": true,
|
|
138
|
+
"modalities": { "input": ["text"], "output": ["text"] },
|
|
139
|
+
"limit": { "context": 128000, "output": 16384 },
|
|
140
|
+
"cost": { "input": 0.2, "output": 0.6 }
|
|
141
|
+
},
|
|
142
|
+
"mistral-large-2506": {
|
|
143
|
+
"id": "mistral-large-2506",
|
|
144
|
+
"name": "Mistral Large",
|
|
145
|
+
"tool_call": true,
|
|
146
|
+
"modalities": { "input": ["text"], "output": ["text"] },
|
|
147
|
+
"limit": { "context": 128000, "output": 16384 },
|
|
148
|
+
"cost": { "input": 2, "output": 6 }
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"xai": {
|
|
153
|
+
"id": "xai",
|
|
154
|
+
"name": "xAI",
|
|
155
|
+
"npm": "@ai-sdk/xai",
|
|
156
|
+
"env": ["XAI_API_KEY"],
|
|
157
|
+
"models": {
|
|
158
|
+
"grok-3": {
|
|
159
|
+
"id": "grok-3",
|
|
160
|
+
"name": "Grok 3",
|
|
161
|
+
"reasoning": true,
|
|
162
|
+
"tool_call": true,
|
|
163
|
+
"modalities": { "input": ["text", "image"], "output": ["text"] },
|
|
164
|
+
"limit": { "context": 131072, "output": 16384 },
|
|
165
|
+
"cost": { "input": 3, "output": 15 }
|
|
166
|
+
},
|
|
167
|
+
"grok-3-mini": {
|
|
168
|
+
"id": "grok-3-mini",
|
|
169
|
+
"name": "Grok 3 Mini",
|
|
170
|
+
"reasoning": true,
|
|
11
171
|
"tool_call": true,
|
|
12
|
-
"modalities": {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
},
|
|
16
|
-
"limit": {
|
|
17
|
-
"context": 1050000
|
|
18
|
-
}
|
|
172
|
+
"modalities": { "input": ["text"], "output": ["text"] },
|
|
173
|
+
"limit": { "context": 131072, "output": 16384 },
|
|
174
|
+
"cost": { "input": 0.3, "output": 0.5 }
|
|
19
175
|
}
|
|
20
176
|
}
|
|
21
177
|
}
|