ask-llm-providers 0.6.0 → 0.7.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/lib/ask/llm/catalog.rb +34 -8
- data/lib/ask/llm/cost_calculator.rb +86 -0
- data/lib/ask/llm/models/anthropic.json +382 -65
- data/lib/ask/llm/models/bedrock.json +3629 -1
- data/lib/ask/llm/models/deepseek.json +68 -26
- data/lib/ask/llm/models/gemini.json +701 -35
- data/lib/ask/llm/models/mistral.json +856 -19
- data/lib/ask/llm/models/openai.json +1624 -92
- data/lib/ask/llm/models/perplexity.json +119 -0
- data/lib/ask/llm/models/vertex_ai.json +1347 -0
- data/lib/ask/llm/models/xai.json +274 -0
- data/lib/ask/llm/sources/models_dev.rb +154 -0
- data/lib/ask/llm/version.rb +1 -1
- data/lib/ask-llm-providers.rb +3 -0
- metadata +6 -7
- data/lib/ask/llm/models/cloudflare.json +0 -1
- data/lib/ask/llm/models/mimo.json +0 -22
- data/lib/ask/llm/models/ollama.json +0 -136
- data/lib/ask/llm/models/opencode.json +0 -189
- data/lib/ask/llm/models/opencode_go.json +0 -149
- data/lib/ask/llm/models/openrouter.json +0 -115
|
@@ -1,19 +1,51 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
|
-
"id": "claude-
|
|
4
|
-
"name": "Claude
|
|
5
|
-
"
|
|
3
|
+
"id": "claude-fable-5",
|
|
4
|
+
"name": "Claude Fable 5",
|
|
5
|
+
"provider": "anthropic",
|
|
6
|
+
"family": "claude-fable",
|
|
7
|
+
"context_window": 1000000,
|
|
8
|
+
"max_output_tokens": 128000,
|
|
9
|
+
"capabilities": [
|
|
10
|
+
"function_calling",
|
|
11
|
+
"structured_output",
|
|
12
|
+
"reasoning",
|
|
13
|
+
"vision"
|
|
14
|
+
],
|
|
15
|
+
"modalities": {
|
|
16
|
+
"input": [
|
|
17
|
+
"text",
|
|
18
|
+
"image",
|
|
19
|
+
"pdf"
|
|
20
|
+
],
|
|
21
|
+
"output": [
|
|
22
|
+
"text"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"pricing": {
|
|
26
|
+
"text_tokens": {
|
|
27
|
+
"standard": {
|
|
28
|
+
"input_per_million": 10,
|
|
29
|
+
"output_per_million": 50,
|
|
30
|
+
"cache_read_input_per_million": 1,
|
|
31
|
+
"cache_write_input_per_million": 12.5
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"created_at": "2026-06-07"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "claude-haiku-4-5-20251001",
|
|
39
|
+
"name": "Claude Haiku 4.5",
|
|
40
|
+
"provider": "anthropic",
|
|
41
|
+
"family": "claude-haiku",
|
|
6
42
|
"context_window": 200000,
|
|
7
43
|
"max_output_tokens": 64000,
|
|
8
44
|
"capabilities": [
|
|
9
45
|
"function_calling",
|
|
10
|
-
"streaming",
|
|
11
46
|
"structured_output",
|
|
12
|
-
"vision",
|
|
13
47
|
"reasoning",
|
|
14
|
-
"
|
|
15
|
-
"tool_choice",
|
|
16
|
-
"parallel_tool_calls"
|
|
48
|
+
"vision"
|
|
17
49
|
],
|
|
18
50
|
"modalities": {
|
|
19
51
|
"input": [
|
|
@@ -25,23 +57,31 @@
|
|
|
25
57
|
"text"
|
|
26
58
|
]
|
|
27
59
|
},
|
|
28
|
-
"
|
|
60
|
+
"pricing": {
|
|
61
|
+
"text_tokens": {
|
|
62
|
+
"standard": {
|
|
63
|
+
"input_per_million": 1,
|
|
64
|
+
"output_per_million": 5,
|
|
65
|
+
"cache_read_input_per_million": 0.1,
|
|
66
|
+
"cache_write_input_per_million": 1.25
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"knowledge_cutoff": "2025-02-28",
|
|
71
|
+
"created_at": "2025-10-15"
|
|
29
72
|
},
|
|
30
73
|
{
|
|
31
|
-
"id": "claude-
|
|
32
|
-
"name": "Claude
|
|
33
|
-
"
|
|
74
|
+
"id": "claude-haiku-4-5",
|
|
75
|
+
"name": "Claude Haiku 4.5 (latest)",
|
|
76
|
+
"provider": "anthropic",
|
|
77
|
+
"family": "claude-haiku",
|
|
34
78
|
"context_window": 200000,
|
|
35
79
|
"max_output_tokens": 64000,
|
|
36
80
|
"capabilities": [
|
|
37
81
|
"function_calling",
|
|
38
|
-
"streaming",
|
|
39
82
|
"structured_output",
|
|
40
|
-
"vision",
|
|
41
83
|
"reasoning",
|
|
42
|
-
"
|
|
43
|
-
"tool_choice",
|
|
44
|
-
"parallel_tool_calls"
|
|
84
|
+
"vision"
|
|
45
85
|
],
|
|
46
86
|
"modalities": {
|
|
47
87
|
"input": [
|
|
@@ -53,23 +93,31 @@
|
|
|
53
93
|
"text"
|
|
54
94
|
]
|
|
55
95
|
},
|
|
56
|
-
"
|
|
96
|
+
"pricing": {
|
|
97
|
+
"text_tokens": {
|
|
98
|
+
"standard": {
|
|
99
|
+
"input_per_million": 1,
|
|
100
|
+
"output_per_million": 5,
|
|
101
|
+
"cache_read_input_per_million": 0.1,
|
|
102
|
+
"cache_write_input_per_million": 1.25
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"knowledge_cutoff": "2025-02-28",
|
|
107
|
+
"created_at": "2025-10-15"
|
|
57
108
|
},
|
|
58
109
|
{
|
|
59
|
-
"id": "claude-4-
|
|
60
|
-
"name": "Claude Opus 4",
|
|
61
|
-
"
|
|
110
|
+
"id": "claude-opus-4-1-20250805",
|
|
111
|
+
"name": "Claude Opus 4.1",
|
|
112
|
+
"provider": "anthropic",
|
|
113
|
+
"family": "claude-opus",
|
|
62
114
|
"context_window": 200000,
|
|
63
|
-
"max_output_tokens":
|
|
115
|
+
"max_output_tokens": 32000,
|
|
64
116
|
"capabilities": [
|
|
65
117
|
"function_calling",
|
|
66
|
-
"streaming",
|
|
67
118
|
"structured_output",
|
|
68
|
-
"vision",
|
|
69
119
|
"reasoning",
|
|
70
|
-
"
|
|
71
|
-
"tool_choice",
|
|
72
|
-
"parallel_tool_calls"
|
|
120
|
+
"vision"
|
|
73
121
|
],
|
|
74
122
|
"modalities": {
|
|
75
123
|
"input": [
|
|
@@ -81,23 +129,31 @@
|
|
|
81
129
|
"text"
|
|
82
130
|
]
|
|
83
131
|
},
|
|
84
|
-
"
|
|
132
|
+
"pricing": {
|
|
133
|
+
"text_tokens": {
|
|
134
|
+
"standard": {
|
|
135
|
+
"input_per_million": 15,
|
|
136
|
+
"output_per_million": 75,
|
|
137
|
+
"cache_read_input_per_million": 1.5,
|
|
138
|
+
"cache_write_input_per_million": 18.75
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"knowledge_cutoff": "2025-03-31",
|
|
143
|
+
"created_at": "2025-08-05"
|
|
85
144
|
},
|
|
86
145
|
{
|
|
87
|
-
"id": "claude-
|
|
88
|
-
"name": "Claude
|
|
89
|
-
"
|
|
146
|
+
"id": "claude-opus-4-1",
|
|
147
|
+
"name": "Claude Opus 4.1 (latest)",
|
|
148
|
+
"provider": "anthropic",
|
|
149
|
+
"family": "claude-opus",
|
|
90
150
|
"context_window": 200000,
|
|
91
|
-
"max_output_tokens":
|
|
151
|
+
"max_output_tokens": 32000,
|
|
92
152
|
"capabilities": [
|
|
93
153
|
"function_calling",
|
|
94
|
-
"streaming",
|
|
95
154
|
"structured_output",
|
|
96
|
-
"vision",
|
|
97
155
|
"reasoning",
|
|
98
|
-
"
|
|
99
|
-
"tool_choice",
|
|
100
|
-
"parallel_tool_calls"
|
|
156
|
+
"vision"
|
|
101
157
|
],
|
|
102
158
|
"modalities": {
|
|
103
159
|
"input": [
|
|
@@ -109,23 +165,31 @@
|
|
|
109
165
|
"text"
|
|
110
166
|
]
|
|
111
167
|
},
|
|
112
|
-
"
|
|
168
|
+
"pricing": {
|
|
169
|
+
"text_tokens": {
|
|
170
|
+
"standard": {
|
|
171
|
+
"input_per_million": 15,
|
|
172
|
+
"output_per_million": 75,
|
|
173
|
+
"cache_read_input_per_million": 1.5,
|
|
174
|
+
"cache_write_input_per_million": 18.75
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"knowledge_cutoff": "2025-03-31",
|
|
179
|
+
"created_at": "2025-08-05"
|
|
113
180
|
},
|
|
114
181
|
{
|
|
115
|
-
"id": "claude-opus-4-5",
|
|
182
|
+
"id": "claude-opus-4-5-20251101",
|
|
116
183
|
"name": "Claude Opus 4.5",
|
|
117
|
-
"
|
|
184
|
+
"provider": "anthropic",
|
|
185
|
+
"family": "claude-opus",
|
|
118
186
|
"context_window": 200000,
|
|
119
187
|
"max_output_tokens": 64000,
|
|
120
188
|
"capabilities": [
|
|
121
189
|
"function_calling",
|
|
122
|
-
"streaming",
|
|
123
190
|
"structured_output",
|
|
124
|
-
"vision",
|
|
125
191
|
"reasoning",
|
|
126
|
-
"
|
|
127
|
-
"tool_choice",
|
|
128
|
-
"parallel_tool_calls"
|
|
192
|
+
"vision"
|
|
129
193
|
],
|
|
130
194
|
"modalities": {
|
|
131
195
|
"input": [
|
|
@@ -137,52 +201,305 @@
|
|
|
137
201
|
"text"
|
|
138
202
|
]
|
|
139
203
|
},
|
|
140
|
-
"
|
|
204
|
+
"pricing": {
|
|
205
|
+
"text_tokens": {
|
|
206
|
+
"standard": {
|
|
207
|
+
"input_per_million": 5,
|
|
208
|
+
"output_per_million": 25,
|
|
209
|
+
"cache_read_input_per_million": 0.5,
|
|
210
|
+
"cache_write_input_per_million": 6.25
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"knowledge_cutoff": "2025-05",
|
|
215
|
+
"created_at": "2025-11-24"
|
|
141
216
|
},
|
|
142
217
|
{
|
|
143
|
-
"id": "claude-
|
|
144
|
-
"name": "Claude
|
|
145
|
-
"
|
|
218
|
+
"id": "claude-opus-4-5",
|
|
219
|
+
"name": "Claude Opus 4.5 (latest)",
|
|
220
|
+
"provider": "anthropic",
|
|
221
|
+
"family": "claude-opus",
|
|
146
222
|
"context_window": 200000,
|
|
147
|
-
"max_output_tokens":
|
|
223
|
+
"max_output_tokens": 64000,
|
|
148
224
|
"capabilities": [
|
|
149
225
|
"function_calling",
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
226
|
+
"structured_output",
|
|
227
|
+
"reasoning",
|
|
228
|
+
"vision"
|
|
153
229
|
],
|
|
154
230
|
"modalities": {
|
|
155
231
|
"input": [
|
|
156
232
|
"text",
|
|
157
|
-
"image"
|
|
233
|
+
"image",
|
|
234
|
+
"pdf"
|
|
158
235
|
],
|
|
159
236
|
"output": [
|
|
160
237
|
"text"
|
|
161
238
|
]
|
|
162
239
|
},
|
|
163
|
-
"
|
|
240
|
+
"pricing": {
|
|
241
|
+
"text_tokens": {
|
|
242
|
+
"standard": {
|
|
243
|
+
"input_per_million": 5,
|
|
244
|
+
"output_per_million": 25,
|
|
245
|
+
"cache_read_input_per_million": 0.5,
|
|
246
|
+
"cache_write_input_per_million": 6.25
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"knowledge_cutoff": "2025-05",
|
|
251
|
+
"created_at": "2025-11-24"
|
|
164
252
|
},
|
|
165
253
|
{
|
|
166
|
-
"id": "claude-
|
|
167
|
-
"name": "Claude
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
254
|
+
"id": "claude-opus-4-6",
|
|
255
|
+
"name": "Claude Opus 4.6",
|
|
256
|
+
"provider": "anthropic",
|
|
257
|
+
"family": "claude-opus",
|
|
258
|
+
"context_window": 1000000,
|
|
259
|
+
"max_output_tokens": 128000,
|
|
171
260
|
"capabilities": [
|
|
172
261
|
"function_calling",
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
262
|
+
"structured_output",
|
|
263
|
+
"reasoning",
|
|
264
|
+
"vision"
|
|
176
265
|
],
|
|
177
266
|
"modalities": {
|
|
178
267
|
"input": [
|
|
179
268
|
"text",
|
|
180
|
-
"image"
|
|
269
|
+
"image",
|
|
270
|
+
"pdf"
|
|
181
271
|
],
|
|
182
272
|
"output": [
|
|
183
273
|
"text"
|
|
184
274
|
]
|
|
185
275
|
},
|
|
186
|
-
"
|
|
276
|
+
"pricing": {
|
|
277
|
+
"text_tokens": {
|
|
278
|
+
"standard": {
|
|
279
|
+
"input_per_million": 5,
|
|
280
|
+
"output_per_million": 25,
|
|
281
|
+
"cache_read_input_per_million": 0.5,
|
|
282
|
+
"cache_write_input_per_million": 6.25
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"knowledge_cutoff": "2025-05-31",
|
|
287
|
+
"created_at": "2026-02-04"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"id": "claude-opus-4-7",
|
|
291
|
+
"name": "Claude Opus 4.7",
|
|
292
|
+
"provider": "anthropic",
|
|
293
|
+
"family": "claude-opus",
|
|
294
|
+
"context_window": 1000000,
|
|
295
|
+
"max_output_tokens": 128000,
|
|
296
|
+
"capabilities": [
|
|
297
|
+
"function_calling",
|
|
298
|
+
"structured_output",
|
|
299
|
+
"reasoning",
|
|
300
|
+
"vision"
|
|
301
|
+
],
|
|
302
|
+
"modalities": {
|
|
303
|
+
"input": [
|
|
304
|
+
"text",
|
|
305
|
+
"image",
|
|
306
|
+
"pdf"
|
|
307
|
+
],
|
|
308
|
+
"output": [
|
|
309
|
+
"text"
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
"pricing": {
|
|
313
|
+
"text_tokens": {
|
|
314
|
+
"standard": {
|
|
315
|
+
"input_per_million": 5,
|
|
316
|
+
"output_per_million": 25,
|
|
317
|
+
"cache_read_input_per_million": 0.5,
|
|
318
|
+
"cache_write_input_per_million": 6.25
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"knowledge_cutoff": "2026-01-31",
|
|
323
|
+
"created_at": "2026-04-14"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"id": "claude-opus-4-8",
|
|
327
|
+
"name": "Claude Opus 4.8",
|
|
328
|
+
"provider": "anthropic",
|
|
329
|
+
"family": "claude-opus",
|
|
330
|
+
"context_window": 1000000,
|
|
331
|
+
"max_output_tokens": 128000,
|
|
332
|
+
"capabilities": [
|
|
333
|
+
"function_calling",
|
|
334
|
+
"structured_output",
|
|
335
|
+
"reasoning",
|
|
336
|
+
"vision"
|
|
337
|
+
],
|
|
338
|
+
"modalities": {
|
|
339
|
+
"input": [
|
|
340
|
+
"text",
|
|
341
|
+
"image",
|
|
342
|
+
"pdf"
|
|
343
|
+
],
|
|
344
|
+
"output": [
|
|
345
|
+
"text"
|
|
346
|
+
]
|
|
347
|
+
},
|
|
348
|
+
"pricing": {
|
|
349
|
+
"text_tokens": {
|
|
350
|
+
"standard": {
|
|
351
|
+
"input_per_million": 5,
|
|
352
|
+
"output_per_million": 25,
|
|
353
|
+
"cache_read_input_per_million": 0.5,
|
|
354
|
+
"cache_write_input_per_million": 6.25
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"knowledge_cutoff": "2026-01",
|
|
359
|
+
"created_at": "2026-05-28"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"id": "claude-sonnet-4-5-20250929",
|
|
363
|
+
"name": "Claude Sonnet 4.5",
|
|
364
|
+
"provider": "anthropic",
|
|
365
|
+
"family": "claude-sonnet",
|
|
366
|
+
"context_window": 1000000,
|
|
367
|
+
"max_output_tokens": 64000,
|
|
368
|
+
"capabilities": [
|
|
369
|
+
"function_calling",
|
|
370
|
+
"structured_output",
|
|
371
|
+
"reasoning",
|
|
372
|
+
"vision"
|
|
373
|
+
],
|
|
374
|
+
"modalities": {
|
|
375
|
+
"input": [
|
|
376
|
+
"text",
|
|
377
|
+
"image",
|
|
378
|
+
"pdf"
|
|
379
|
+
],
|
|
380
|
+
"output": [
|
|
381
|
+
"text"
|
|
382
|
+
]
|
|
383
|
+
},
|
|
384
|
+
"pricing": {
|
|
385
|
+
"text_tokens": {
|
|
386
|
+
"standard": {
|
|
387
|
+
"input_per_million": 3,
|
|
388
|
+
"output_per_million": 15,
|
|
389
|
+
"cache_read_input_per_million": 0.3,
|
|
390
|
+
"cache_write_input_per_million": 3.75
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"knowledge_cutoff": "2025-07-31",
|
|
395
|
+
"created_at": "2025-09-29"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"id": "claude-sonnet-4-5",
|
|
399
|
+
"name": "Claude Sonnet 4.5 (latest)",
|
|
400
|
+
"provider": "anthropic",
|
|
401
|
+
"family": "claude-sonnet",
|
|
402
|
+
"context_window": 1000000,
|
|
403
|
+
"max_output_tokens": 64000,
|
|
404
|
+
"capabilities": [
|
|
405
|
+
"function_calling",
|
|
406
|
+
"structured_output",
|
|
407
|
+
"reasoning",
|
|
408
|
+
"vision"
|
|
409
|
+
],
|
|
410
|
+
"modalities": {
|
|
411
|
+
"input": [
|
|
412
|
+
"text",
|
|
413
|
+
"image",
|
|
414
|
+
"pdf"
|
|
415
|
+
],
|
|
416
|
+
"output": [
|
|
417
|
+
"text"
|
|
418
|
+
]
|
|
419
|
+
},
|
|
420
|
+
"pricing": {
|
|
421
|
+
"text_tokens": {
|
|
422
|
+
"standard": {
|
|
423
|
+
"input_per_million": 3,
|
|
424
|
+
"output_per_million": 15,
|
|
425
|
+
"cache_read_input_per_million": 0.3,
|
|
426
|
+
"cache_write_input_per_million": 3.75
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"knowledge_cutoff": "2025-07-31",
|
|
431
|
+
"created_at": "2025-09-29"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"id": "claude-sonnet-4-6",
|
|
435
|
+
"name": "Claude Sonnet 4.6",
|
|
436
|
+
"provider": "anthropic",
|
|
437
|
+
"family": "claude-sonnet",
|
|
438
|
+
"context_window": 1000000,
|
|
439
|
+
"max_output_tokens": 128000,
|
|
440
|
+
"capabilities": [
|
|
441
|
+
"function_calling",
|
|
442
|
+
"structured_output",
|
|
443
|
+
"reasoning",
|
|
444
|
+
"vision"
|
|
445
|
+
],
|
|
446
|
+
"modalities": {
|
|
447
|
+
"input": [
|
|
448
|
+
"text",
|
|
449
|
+
"image",
|
|
450
|
+
"pdf"
|
|
451
|
+
],
|
|
452
|
+
"output": [
|
|
453
|
+
"text"
|
|
454
|
+
]
|
|
455
|
+
},
|
|
456
|
+
"pricing": {
|
|
457
|
+
"text_tokens": {
|
|
458
|
+
"standard": {
|
|
459
|
+
"input_per_million": 3,
|
|
460
|
+
"output_per_million": 15,
|
|
461
|
+
"cache_read_input_per_million": 0.3,
|
|
462
|
+
"cache_write_input_per_million": 3.75
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"knowledge_cutoff": "2025-08-31",
|
|
467
|
+
"created_at": "2026-02-17"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"id": "claude-sonnet-5",
|
|
471
|
+
"name": "Claude Sonnet 5",
|
|
472
|
+
"provider": "anthropic",
|
|
473
|
+
"family": "claude-sonnet",
|
|
474
|
+
"context_window": 1000000,
|
|
475
|
+
"max_output_tokens": 128000,
|
|
476
|
+
"capabilities": [
|
|
477
|
+
"function_calling",
|
|
478
|
+
"structured_output",
|
|
479
|
+
"reasoning",
|
|
480
|
+
"vision"
|
|
481
|
+
],
|
|
482
|
+
"modalities": {
|
|
483
|
+
"input": [
|
|
484
|
+
"text",
|
|
485
|
+
"image",
|
|
486
|
+
"pdf"
|
|
487
|
+
],
|
|
488
|
+
"output": [
|
|
489
|
+
"text"
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
"pricing": {
|
|
493
|
+
"text_tokens": {
|
|
494
|
+
"standard": {
|
|
495
|
+
"input_per_million": 2,
|
|
496
|
+
"output_per_million": 10,
|
|
497
|
+
"cache_read_input_per_million": 0.2,
|
|
498
|
+
"cache_write_input_per_million": 2.5
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
"knowledge_cutoff": "2026-01-31",
|
|
503
|
+
"created_at": "2026-06-29"
|
|
187
504
|
}
|
|
188
505
|
]
|