model-library 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. model_library/base/base.py +13 -6
  2. model_library/base/output.py +55 -0
  3. model_library/base/utils.py +3 -2
  4. model_library/config/README.md +169 -0
  5. model_library/config/ai21labs_models.yaml +11 -10
  6. model_library/config/alibaba_models.yaml +21 -22
  7. model_library/config/all_models.json +4708 -2471
  8. model_library/config/amazon_models.yaml +100 -102
  9. model_library/config/anthropic_models.yaml +59 -45
  10. model_library/config/cohere_models.yaml +25 -24
  11. model_library/config/deepseek_models.yaml +28 -25
  12. model_library/config/dummy_model.yaml +9 -7
  13. model_library/config/fireworks_models.yaml +86 -56
  14. model_library/config/google_models.yaml +156 -102
  15. model_library/config/inception_models.yaml +6 -6
  16. model_library/config/kimi_models.yaml +13 -14
  17. model_library/config/minimax_models.yaml +37 -0
  18. model_library/config/mistral_models.yaml +85 -29
  19. model_library/config/openai_models.yaml +192 -159
  20. model_library/config/perplexity_models.yaml +8 -23
  21. model_library/config/together_models.yaml +115 -103
  22. model_library/config/xai_models.yaml +85 -57
  23. model_library/config/zai_models.yaml +23 -15
  24. model_library/exceptions.py +12 -17
  25. model_library/file_utils.py +1 -1
  26. model_library/providers/amazon.py +32 -17
  27. model_library/providers/anthropic.py +2 -6
  28. model_library/providers/google/google.py +35 -29
  29. model_library/providers/minimax.py +33 -0
  30. model_library/providers/mistral.py +10 -1
  31. model_library/providers/openai.py +10 -8
  32. model_library/providers/together.py +18 -211
  33. model_library/register_models.py +36 -38
  34. model_library/registry_utils.py +18 -16
  35. model_library/utils.py +2 -2
  36. {model_library-0.1.2.dist-info → model_library-0.1.4.dist-info}/METADATA +3 -4
  37. model_library-0.1.4.dist-info/RECORD +64 -0
  38. model_library-0.1.2.dist-info/RECORD +0 -61
  39. {model_library-0.1.2.dist-info → model_library-0.1.4.dist-info}/WHEEL +0 -0
  40. {model_library-0.1.2.dist-info → model_library-0.1.4.dist-info}/licenses/LICENSE +0 -0
  41. {model_library-0.1.2.dist-info → model_library-0.1.4.dist-info}/top_level.txt +0 -0
@@ -1,34 +1,41 @@
1
1
  base-config:
2
2
  company: Amazon
3
3
  open_source: false
4
- class_properties:
5
- supports_images: false
4
+ supports:
5
+ images: false
6
+ files: false
7
+ tools: true
8
+ temperature: true
9
+ metadata:
6
10
  available_as_evaluator: false
7
- supports_files: false
8
- supports_tools: true
9
11
  available_for_everyone: true
10
12
  ignored_for_cost: false
11
13
  properties:
12
14
  reasoning_model: false
15
+
13
16
  nova-models:
14
17
  base-config:
15
18
  documentation_url: https://www.aboutamazon.com/news/aws/amazon-nova-artificial-intelligence-bedrock-aws
19
+
16
20
  amazon/amazon.nova-pro-v1:0:
17
21
  label: Nova Pro
18
22
  description: Highly capable multimodal model offering the best combination of accuracy, speed, and cost for a wide range of tasks.
19
23
  release_date: 2024-12-03
20
24
  properties:
21
25
  context_window: 300_000
22
- max_token_output: 10_000
26
+ max_tokens: 10_000
23
27
  training_cutoff: null
24
- class_properties:
25
- supports_images: true
26
- supports_files: true
27
- supports_videos: true
28
+ supports:
29
+ images: true
30
+ files: true
31
+ videos: true
28
32
  costs_per_million_token:
29
33
  input: 0.8
30
34
  output: 3.2
35
+ cache:
36
+ read: 0.2
31
37
  documentation_url: https://docs.aws.amazon.com/nova/latest/userguide/what-is-nova.html
38
+
32
39
  amazon/amazon.nova-lite-v1:0:
33
40
  label: Nova Lite
34
41
  description:
@@ -38,16 +45,19 @@ nova-models:
38
45
  release_date: 2024-12-03
39
46
  properties:
40
47
  context_window: 300_000
41
- max_token_output: null
48
+ max_tokens: null
42
49
  training_cutoff: null
43
- class_properties:
44
- supports_images: true
45
- supports_files: true
46
- supports_videos: true
50
+ supports:
51
+ images: true
52
+ files: true
53
+ videos: true
47
54
  costs_per_million_token:
48
55
  input: 0.06
49
56
  output: 0.24
57
+ cache:
58
+ read: 0.015
50
59
  documentation_url: https://docs.aws.amazon.com/nova/latest/userguide/what-is-nova.html
60
+
51
61
  amazon/amazon.nova-micro-v1:0:
52
62
  label: Nova Micro
53
63
  description:
@@ -57,19 +67,23 @@ nova-models:
57
67
  release_date: 2024-12-03
58
68
  properties:
59
69
  context_window: 128_000
60
- max_token_output: null
70
+ max_tokens: null
61
71
  training_cutoff: null
62
72
  costs_per_million_token:
63
73
  input: 0.035
64
74
  output: 0.14
75
+ cache:
76
+ read: 0.00875
65
77
  documentation_url: https://docs.aws.amazon.com/nova/latest/userguide/what-is-nova.html
78
+
66
79
  claude-models:
67
80
  base-config:
68
81
  documentation_url: https://docs.anthropic.com/en/docs/models/claude-3-5-sonnet
69
- class_properties:
70
- supports_temperature: true
82
+ supports:
83
+ temperature: true
71
84
  default_parameters:
72
85
  temperature: 1
86
+
73
87
  bedrock/claude-3-5-sonnet-20240620-v2:
74
88
  label: Claude 3.5 Sonnet (Bedrock)
75
89
  description:
@@ -78,26 +92,29 @@ claude-models:
78
92
  release_date: 2024-10-22
79
93
  properties:
80
94
  context_window: 100_000
81
- max_token_output: null
95
+ max_tokens: null
82
96
  training_cutoff: null
83
- class_properties:
84
- supports_images: false
97
+ supports:
98
+ images: false
99
+ metadata:
85
100
  available_as_evaluator: true
86
101
  available_for_everyone: false
87
102
  costs_per_million_token:
88
103
  input: 3.0
89
104
  output: 15.0
90
105
  provider_endpoint: us.anthropic.claude-3-5-sonnet-20241022-v2:0
106
+
91
107
  bedrock/claude-3-7-sonnet-20250219-v1:
92
108
  label: Claude 3.7 Sonnet (Bedrock)
93
109
  description: Claude 3.7 Sonnet, hosted on Bedrock.
94
110
  release_date: 2025-02-19
95
111
  properties:
96
112
  context_window: 200_000
97
- max_token_output: null
113
+ max_tokens: null
98
114
  training_cutoff: null
99
- class_properties:
100
- supports_images: true
115
+ supports:
116
+ images: true
117
+ metadata:
101
118
  available_as_evaluator: true
102
119
  available_for_everyone: false
103
120
  costs_per_million_token:
@@ -107,6 +124,7 @@ claude-models:
107
124
  read: 0.3
108
125
  write: 3.75
109
126
  provider_endpoint: us.anthropic.claude-3-7-sonnet-20250219-v1:0
127
+
110
128
  bedrock/claude-sonnet-4-20250514-v1:
111
129
  label: Claude Sonnet 4 (Nonthinking)
112
130
  description:
@@ -116,113 +134,88 @@ claude-models:
116
134
  documentation_url: https://www.anthropic.com/claude/sonnet
117
135
  properties:
118
136
  context_window: 200_000
119
- max_token_output: 64_000
120
- extending_thinking: 64_000
137
+ max_tokens: 64_000
121
138
  training_cutoff: 2025-03
122
- class_properties:
139
+ reasoning_model: false
140
+ metadata:
123
141
  available_as_evaluator: true
124
142
  available_for_everyone: true
125
143
  costs_per_million_token:
126
144
  input: 3.0
127
145
  output: 15.0
146
+ cache:
147
+ read: 0.3
148
+ write: 3.75
149
+ context:
150
+ threshold: 200_000
151
+ input: 6.00
152
+ output: 22.5
153
+ cache:
154
+ read: 0.6
155
+ write: 7.50
128
156
  provider_endpoint: us.anthropic.claude-sonnet-4-20250514-v1:0
129
- bedrock/claude-sonnet-4-20250514-v1-thinking:
130
- label: Claude Sonnet 4 (Thinking)
131
- description:
132
- Anthropic's latest-generation workhorse model, offering a balance
133
- of performance and speed.
134
- release_date: 2025-05-22
135
- documentation_url: https://www.anthropic.com/claude/sonnet
136
- properties:
137
- context_window: 200_000
138
- max_token_output: 64_000
139
- extending_thinking: 64_000
140
- training_cutoff: 2025-03
141
- class_properties:
142
- supports_temperature: false
143
- supports_tools: true
144
- available_as_evaluator: true
145
- available_for_everyone: true
146
- costs_per_million_token:
147
- input: 3.0
148
- output: 15.0
149
- provider_endpoint: us.anthropic.claude-sonnet-4-20250514-v1:0-thinking
157
+ alternative_keys:
158
+ - bedrock/claude-sonnet-4-20250514-v1-thinking:
159
+ properties:
160
+ reasoning_model: true
161
+
150
162
  bedrock/claude-opus-4-20250514-v1:
151
163
  label: Claude Opus 4 (Nonthinking)
152
164
  description: Anthropic's most powerful model.
153
165
  release_date: 2025-05-22
154
166
  properties:
155
167
  context_window: 200_000
156
- max_token_output: 32_000
157
- extending_thinking: 32_000
168
+ max_tokens: 32_000
158
169
  training_cutoff: 2025-03
159
- class_properties:
160
- supports_tools: true
170
+ reasoning_model: false
171
+ supports:
172
+ tools: true
173
+ metadata:
161
174
  available_for_everyone: false
162
175
  costs_per_million_token:
163
176
  input: 15.0
164
177
  output: 75.0
178
+ cache:
179
+ read: 1.5
180
+ write: 18.75
165
181
  provider_endpoint: us.anthropic.claude-opus-4-20250514-v1:0
166
- bedrock/claude-opus-4-20250514-v1-thinking:
167
- label: Claude Opus 4 (Thinking)
168
- description: Anthropic's most powerful model.
169
- release_date: 2025-05-22
170
- properties:
171
- context_window: 200_000
172
- max_token_output: 32_000
173
- extending_thinking: 32_000
174
- training_cutoff: 2025-03
175
- class_properties:
176
- supports_temperature: false
177
- available_for_everyone: false
178
- supports_tools: true
179
- costs_per_million_token:
180
- input: 15.0
181
- output: 75.0
182
- provider_endpoint: us.anthropic.claude-opus-4-20250514-v1:0-thinking
182
+ alternative_keys:
183
+ - bedrock/claude-opus-4-20250514-v1-thinking:
184
+ properties:
185
+ reasoning_model: true
186
+
183
187
  bedrock/claude-opus-4-1-20250805-v1:
184
188
  label: Claude Opus 4.1 (Nonthinking)
185
189
  description:
186
190
  release_date: 2025-08-05
187
191
  properties:
188
192
  context_window: 200_000
189
- max_token_output: 32_000
190
- extending_thinking: 32_000
193
+ max_tokens: 32_000
191
194
  training_cutoff: 2025-03
192
- class_properties:
195
+ supports:
196
+ tools: true
197
+ metadata:
193
198
  available_for_everyone: false
194
- supports_tools: true
195
199
  costs_per_million_token:
196
200
  input: 15.0
197
201
  output: 75.0
198
202
  provider_endpoint: us.anthropic.claude-opus-4-1-20250805-v1:0
199
- bedrock/claude-opus-4-1-20250805-v1-thinking:
200
- label: Claude Opus 4.1 (Thinking)
201
- description:
202
- release_date: 2025-08-05
203
- properties:
204
- context_window: 200_000
205
- max_token_output: 32_000
206
- extending_thinking: 32_000
207
- training_cutoff: 2025-03
208
- class_properties:
209
- supports_temperature: false
210
- available_for_everyone: false
211
- supports_tools: true
212
- costs_per_million_token:
213
- input: 15.0
214
- output: 75.0
215
- provider_endpoint: us.anthropic.claude-opus-4-1-20250805-v1:0-thinking
203
+ alternative_keys:
204
+ - bedrock/claude-opus-4-1-20250805-v1-thinking:
205
+ properties:
206
+ reasoning_model: true
207
+
216
208
  bedrock/claude-3-5-haiku-20241022-v1:
217
209
  label: Claude 3.5 Haiku (Bedrock)
218
210
  description: Claude 3.5 Haiku, hosted on Bedrock.
219
211
  release_date: 2024-10-22
220
212
  properties:
221
213
  context_window: 200_000
222
- max_token_output: null
214
+ max_tokens: null
223
215
  training_cutoff: null
224
- class_properties:
225
- supports_images: false
216
+ supports:
217
+ images: false
218
+ metadata:
226
219
  available_for_everyone: false
227
220
  costs_per_million_token:
228
221
  input: 0.8
@@ -231,43 +224,48 @@ claude-models:
231
224
  read: 0.08
232
225
  write: 1
233
226
  provider_endpoint: us.anthropic.claude-3-5-haiku-20241022-v1:0
227
+
234
228
  deepseek_models:
235
229
  base-config:
236
230
  documentation_url: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-deepseek.html
237
- class_properties:
238
- supports_temperature: true
231
+ supports:
232
+ temperature: true
239
233
  default_parameters:
240
234
  temperature: 1
235
+
241
236
  bedrock/deepseek-r1-v1:
242
237
  label: DeepSeek R1 (Bedrock)
243
238
  description: DeepSeek R1, hosted on Bedrock.
244
239
  release_date: 2025-03-03
245
240
  properties:
246
241
  context_window: 128_000
247
- max_token_output: null
242
+ max_tokens: null
248
243
  training_cutoff: null
249
- class_properties:
250
- supports_images: false
244
+ supports:
245
+ images: false
246
+ metadata:
251
247
  available_for_everyone: false
252
248
  costs_per_million_token:
253
249
  input: 1.35
254
250
  output: 5.4
255
251
  provider_endpoint: us.deepseek.r1-v1:0
252
+
256
253
  llama_models:
257
254
  base-config:
258
255
  documentation_url: https://aws.amazon.com/bedrock/meta/
259
- class_properties:
260
- supports_temperature: true
256
+ supports:
257
+ temperature: true
261
258
  bedrock/llama3-3-70b-instruct-v1:
262
259
  label: Llama 3.3 70B Instruct (Bedrock)
263
260
  description: Llama 3.3 70B Instruct, hosted on Bedrock.
264
261
  release_date: 2024-12-18
265
262
  properties:
266
263
  context_window: 128_000
267
- max_token_output: null
264
+ max_tokens: null
268
265
  training_cutoff: null
269
- class_properties:
270
- supports_images: false
266
+ supports:
267
+ images: false
268
+ metadata:
271
269
  available_as_evaluator: true
272
270
  available_for_everyone: false
273
271
  costs_per_million_token:
@@ -1,11 +1,12 @@
1
1
  base-config:
2
2
  company: Anthropic
3
3
  open_source: false
4
- class_properties:
5
- supports_images: true
6
- supports_files: true
7
- supports_tools: true
8
- supports_temperature: true
4
+ supports:
5
+ images: true
6
+ files: true
7
+ tools: true
8
+ temperature: true
9
+ metadata:
9
10
  available_for_everyone: true
10
11
  available_as_evaluator: false
11
12
  ignored_for_cost: false
@@ -24,8 +25,25 @@ base-config:
24
25
 
25
26
  claude-4-models:
26
27
  base-config:
27
- class_properties:
28
- supports_batch_requests: true
28
+ supports:
29
+ batch: true
30
+
31
+ anthropic/claude-opus-4-5-20251101:
32
+ label: Claude Opus 4.5 (Nonthinking)
33
+ release_date: 2025-11-24
34
+ properties:
35
+ context_window: 200_000
36
+ max_tokens: 64_000
37
+ costs_per_million_token:
38
+ input: 5.0
39
+ output: 25.0
40
+ cache:
41
+ read: 0.5
42
+ write: 6.25
43
+ alternative_keys:
44
+ - anthropic/claude-opus-4-5-20251101-thinking:
45
+ properties:
46
+ reasoning_model: true
29
47
 
30
48
  anthropic/claude-opus-4-1-20250805:
31
49
  label: Claude Opus 4.1 (Nonthinking)
@@ -34,10 +52,9 @@ claude-4-models:
34
52
  release_date: 2025-08-05
35
53
  properties:
36
54
  context_window: 200_000
37
- max_token_output: 32_000
55
+ max_tokens: 32_000
38
56
  training_cutoff: "2025-03"
39
- extending_thinking: 32_000
40
- class_properties:
57
+ metadata:
41
58
  available_for_everyone: false
42
59
  costs_per_million_token:
43
60
  input: 15.0
@@ -57,10 +74,9 @@ claude-4-models:
57
74
  release_date: 2025-05-22
58
75
  properties:
59
76
  context_window: 200_000
60
- max_token_output: 32_000
77
+ max_tokens: 32_000
61
78
  training_cutoff: "2025-03"
62
- extending_thinking: 32_000
63
- class_properties:
79
+ metadata:
64
80
  available_for_everyone: false
65
81
  costs_per_million_token:
66
82
  input: 15.0
@@ -79,10 +95,9 @@ claude-4-models:
79
95
  release_date: 2025-09-29
80
96
  properties:
81
97
  context_window: 1_000_000
82
- max_token_output: 64_000
98
+ max_tokens: 64_000
83
99
  training_cutoff: null
84
- extending_thinking: 64_000
85
- class_properties:
100
+ metadata:
86
101
  available_as_evaluator: true
87
102
  costs_per_million_token:
88
103
  input: 3.0
@@ -109,8 +124,7 @@ claude-4-models:
109
124
  release_date: 2025-05-22
110
125
  properties:
111
126
  context_window: 200_000
112
- max_token_output: 64_000
113
- extending_thinking: 64_000
127
+ max_tokens: 64_000
114
128
  training_cutoff: "2025-03"
115
129
  costs_per_million_token:
116
130
  input: 3.0
@@ -130,17 +144,16 @@ claude-4-models:
130
144
  - anthropic/claude-sonnet-4-20250514-thinking:
131
145
  properties:
132
146
  reasoning_model: true
133
- class_properties:
134
- supports_temperature: false
147
+ supports:
148
+ temperature: false
135
149
 
136
150
  anthropic/claude-haiku-4-5-20251001:
137
151
  label: Claude Haiku 4.5 (Nonthinking)
138
152
  release_date: 2025-10-15
139
153
  properties:
140
154
  context_window: 200_000
141
- max_token_output: 64_000
155
+ max_tokens: 64_000
142
156
  training_cutoff: "2025-07"
143
- extending_thinking: 64_000
144
157
  costs_per_million_token:
145
158
  input: 1.0
146
159
  output: 5.0
@@ -160,9 +173,8 @@ claude-3-7-models:
160
173
  vision inputs, and fast code/content generation.
161
174
  properties:
162
175
  context_window: 200_000
163
- max_token_output: 8_192
176
+ max_tokens: 8_192
164
177
  training_cutoff: "2024-08"
165
- extending_thinking: 64_000
166
178
  costs_per_million_token:
167
179
  input: 3.0
168
180
  output: 15.0
@@ -176,7 +188,7 @@ claude-3-7-models:
176
188
 
177
189
  claude-3-5-models:
178
190
  base-config:
179
- class_properties:
191
+ metadata:
180
192
  deprecated: true
181
193
 
182
194
  anthropic/claude-3-5-sonnet-20241022:
@@ -187,27 +199,28 @@ claude-3-5-models:
187
199
  coding and analysis tasks, supports multilingual and vision input.
188
200
  properties:
189
201
  context_window: 200_000
190
- max_token_output: 8_192
202
+ max_tokens: 8_192
191
203
  training_cutoff: "2024-04"
192
204
  costs_per_million_token:
193
205
  input: 3.0
194
206
  output: 15.0
195
- class_properties:
207
+ metadata:
196
208
  available_as_evaluator: true
197
209
  alternative_keys:
198
210
  - anthropic/claude-3-5-sonnet-latest
199
211
  - anthropic/claude-3.5-sonnet-latest
200
-
212
+
201
213
  anthropic/claude-3-5-sonnet-20240620:
202
214
  label: Claude 3.5 Sonnet
203
215
  release_date: 2024-06-20
204
- description: Claude Sonnet 3.5 (June 2024) variant for code and content generation,
216
+ description:
217
+ Claude Sonnet 3.5 (June 2024) variant for code and content generation,
205
218
  multilingual and vision-capable, deprecated.
206
- class_properties:
219
+ metadata:
207
220
  deprecated: true
208
221
  properties:
209
222
  context_window: 200_000
210
- max_token_output: 8_192
223
+ max_tokens: 8_192
211
224
  costs_per_million_token:
212
225
  input: 3.0
213
226
  output: 15.0
@@ -222,7 +235,7 @@ claude-3-5-models:
222
235
  instant responses and targeted tasks. Supports vision and text inputs.
223
236
  properties:
224
237
  context_window: 200_000
225
- max_token_output: 8_192
238
+ max_tokens: 8_192
226
239
  training_cutoff: "2024-07"
227
240
  costs_per_million_token:
228
241
  input: 0.8
@@ -230,7 +243,7 @@ claude-3-5-models:
230
243
  cache:
231
244
  read: 0.08
232
245
  write: 1
233
- class_properties:
246
+ metadata:
234
247
  available_as_evaluator: true
235
248
  alternative_keys:
236
249
  - anthropic/claude-3-5-haiku-latest
@@ -238,7 +251,7 @@ claude-3-5-models:
238
251
 
239
252
  claude-3-models:
240
253
  base-config:
241
- class_properties:
254
+ metadata:
242
255
  deprecated: true
243
256
 
244
257
  anthropic/claude-3-opus-20240229:
@@ -249,9 +262,9 @@ claude-3-models:
249
262
  in its generation, supporting multimodal input.
250
263
  properties:
251
264
  context_window: 200_000
252
- max_token_output: 4_096
265
+ max_tokens: 4_096
253
266
  training_cutoff: "2023-08"
254
- class_properties:
267
+ metadata:
255
268
  available_for_everyone: false
256
269
  costs_per_million_token:
257
270
  input: 15.0
@@ -271,7 +284,7 @@ claude-3-models:
271
284
  and image input, with balanced skill for complex NLP tasks.
272
285
  properties:
273
286
  context_window: 200_000
274
- max_token_output: 4_096
287
+ max_tokens: 4_096
275
288
  training_cutoff: "2023-08"
276
289
  costs_per_million_token:
277
290
  input: 3.0
@@ -287,7 +300,7 @@ claude-3-models:
287
300
  responsiveness and targeted queries with text/image input.
288
301
  properties:
289
302
  context_window: 200_000
290
- max_token_output: 4_096
303
+ max_tokens: 4_096
291
304
  training_cutoff: "2023-08"
292
305
  costs_per_million_token:
293
306
  input: 0.25
@@ -301,8 +314,9 @@ claude-3-models:
301
314
  claude-2-models:
302
315
  # retired, will error
303
316
  base-config:
304
- class_properties:
305
- supports_images: false
317
+ supports:
318
+ images: false
319
+ metadata:
306
320
  available_for_everyone: false
307
321
  deprecated: true
308
322
 
@@ -316,7 +330,7 @@ claude-2-models:
316
330
  documentation_url: ""
317
331
  properties:
318
332
  context_window: 200_000
319
- max_token_output: 4_096
333
+ max_tokens: 4_096
320
334
  training_cutoff: "Early 2023"
321
335
  costs_per_million_token:
322
336
  input: 8.0
@@ -334,12 +348,12 @@ claude-2-models:
334
348
  documentation_url: ""
335
349
  properties:
336
350
  context_window: 100_000
337
- max_token_output: 4_096
351
+ max_tokens: 4_096
338
352
  training_cutoff: "Early 2023"
339
353
  costs_per_million_token:
340
354
  input: 8.0
341
355
  output: 24.0
342
-
356
+
343
357
  anthropic/claude-1.3:
344
358
  label: Claude 1.3
345
359
  release_date: null
@@ -347,7 +361,7 @@ claude-2-models:
347
361
  documentation_url: ""
348
362
  properties:
349
363
  context_window: null
350
- max_token_output: null
364
+ max_tokens: null
351
365
  training_cutoff: null
352
366
  costs_per_million_token:
353
367
  input: 0
@@ -365,7 +379,7 @@ claude-2-models:
365
379
  documentation_url: ""
366
380
  properties:
367
381
  context_window: 100_000
368
- max_token_output: 4_096
382
+ max_tokens: 4_096
369
383
  training_cutoff: "Early 2023"
370
384
  costs_per_million_token:
371
385
  input: 0.8