model-library 0.1.3__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 (36) hide show
  1. model_library/base/base.py +2 -0
  2. model_library/base/output.py +1 -0
  3. model_library/config/README.md +169 -0
  4. model_library/config/ai21labs_models.yaml +11 -11
  5. model_library/config/alibaba_models.yaml +21 -22
  6. model_library/config/all_models.json +4572 -2598
  7. model_library/config/amazon_models.yaml +100 -102
  8. model_library/config/anthropic_models.yaml +43 -52
  9. model_library/config/cohere_models.yaml +25 -24
  10. model_library/config/deepseek_models.yaml +28 -25
  11. model_library/config/dummy_model.yaml +9 -7
  12. model_library/config/fireworks_models.yaml +86 -56
  13. model_library/config/google_models.yaml +131 -126
  14. model_library/config/inception_models.yaml +6 -6
  15. model_library/config/kimi_models.yaml +13 -14
  16. model_library/config/minimax_models.yaml +37 -0
  17. model_library/config/mistral_models.yaml +85 -29
  18. model_library/config/openai_models.yaml +192 -150
  19. model_library/config/perplexity_models.yaml +8 -23
  20. model_library/config/together_models.yaml +115 -104
  21. model_library/config/xai_models.yaml +47 -79
  22. model_library/config/zai_models.yaml +23 -15
  23. model_library/exceptions.py +6 -15
  24. model_library/providers/amazon.py +32 -17
  25. model_library/providers/minimax.py +33 -0
  26. model_library/providers/mistral.py +10 -1
  27. model_library/providers/openai.py +2 -6
  28. model_library/register_models.py +36 -36
  29. model_library/registry_utils.py +18 -16
  30. model_library/utils.py +2 -2
  31. {model_library-0.1.3.dist-info → model_library-0.1.4.dist-info}/METADATA +2 -2
  32. model_library-0.1.4.dist-info/RECORD +64 -0
  33. model_library-0.1.3.dist-info/RECORD +0 -61
  34. {model_library-0.1.3.dist-info → model_library-0.1.4.dist-info}/WHEEL +0 -0
  35. {model_library-0.1.3.dist-info → model_library-0.1.4.dist-info}/licenses/LICENSE +0 -0
  36. {model_library-0.1.3.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,26 +25,21 @@ 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
29
30
 
30
31
  anthropic/claude-opus-4-5-20251101:
31
32
  label: Claude Opus 4.5 (Nonthinking)
32
33
  release_date: 2025-11-24
33
34
  properties:
34
35
  context_window: 200_000
35
- max_token_output: 64_000
36
- extending_thinking: 64_000
37
- class_properties:
38
- available_for_everyone: false
39
- default_parameters:
40
- max_output_tokens: 64_000
36
+ max_tokens: 64_000
41
37
  costs_per_million_token:
42
- input: 15.0
43
- output: 75.0
38
+ input: 5.0
39
+ output: 25.0
44
40
  cache:
45
- read: 1.5
46
- write: 18.75
41
+ read: 0.5
42
+ write: 6.25
47
43
  alternative_keys:
48
44
  - anthropic/claude-opus-4-5-20251101-thinking:
49
45
  properties:
@@ -56,10 +52,9 @@ claude-4-models:
56
52
  release_date: 2025-08-05
57
53
  properties:
58
54
  context_window: 200_000
59
- max_token_output: 32_000
55
+ max_tokens: 32_000
60
56
  training_cutoff: "2025-03"
61
- extending_thinking: 32_000
62
- class_properties:
57
+ metadata:
63
58
  available_for_everyone: false
64
59
  costs_per_million_token:
65
60
  input: 15.0
@@ -79,10 +74,9 @@ claude-4-models:
79
74
  release_date: 2025-05-22
80
75
  properties:
81
76
  context_window: 200_000
82
- max_token_output: 32_000
77
+ max_tokens: 32_000
83
78
  training_cutoff: "2025-03"
84
- extending_thinking: 32_000
85
- class_properties:
79
+ metadata:
86
80
  available_for_everyone: false
87
81
  costs_per_million_token:
88
82
  input: 15.0
@@ -101,10 +95,9 @@ claude-4-models:
101
95
  release_date: 2025-09-29
102
96
  properties:
103
97
  context_window: 1_000_000
104
- max_token_output: 64_000
98
+ max_tokens: 64_000
105
99
  training_cutoff: null
106
- extending_thinking: 64_000
107
- class_properties:
100
+ metadata:
108
101
  available_as_evaluator: true
109
102
  costs_per_million_token:
110
103
  input: 3.0
@@ -131,8 +124,7 @@ claude-4-models:
131
124
  release_date: 2025-05-22
132
125
  properties:
133
126
  context_window: 200_000
134
- max_token_output: 64_000
135
- extending_thinking: 64_000
127
+ max_tokens: 64_000
136
128
  training_cutoff: "2025-03"
137
129
  costs_per_million_token:
138
130
  input: 3.0
@@ -152,17 +144,16 @@ claude-4-models:
152
144
  - anthropic/claude-sonnet-4-20250514-thinking:
153
145
  properties:
154
146
  reasoning_model: true
155
- class_properties:
156
- supports_temperature: false
147
+ supports:
148
+ temperature: false
157
149
 
158
150
  anthropic/claude-haiku-4-5-20251001:
159
151
  label: Claude Haiku 4.5 (Nonthinking)
160
152
  release_date: 2025-10-15
161
153
  properties:
162
154
  context_window: 200_000
163
- max_token_output: 64_000
155
+ max_tokens: 64_000
164
156
  training_cutoff: "2025-07"
165
- extending_thinking: 64_000
166
157
  costs_per_million_token:
167
158
  input: 1.0
168
159
  output: 5.0
@@ -182,9 +173,8 @@ claude-3-7-models:
182
173
  vision inputs, and fast code/content generation.
183
174
  properties:
184
175
  context_window: 200_000
185
- max_token_output: 8_192
176
+ max_tokens: 8_192
186
177
  training_cutoff: "2024-08"
187
- extending_thinking: 64_000
188
178
  costs_per_million_token:
189
179
  input: 3.0
190
180
  output: 15.0
@@ -198,7 +188,7 @@ claude-3-7-models:
198
188
 
199
189
  claude-3-5-models:
200
190
  base-config:
201
- class_properties:
191
+ metadata:
202
192
  deprecated: true
203
193
 
204
194
  anthropic/claude-3-5-sonnet-20241022:
@@ -209,12 +199,12 @@ claude-3-5-models:
209
199
  coding and analysis tasks, supports multilingual and vision input.
210
200
  properties:
211
201
  context_window: 200_000
212
- max_token_output: 8_192
202
+ max_tokens: 8_192
213
203
  training_cutoff: "2024-04"
214
204
  costs_per_million_token:
215
205
  input: 3.0
216
206
  output: 15.0
217
- class_properties:
207
+ metadata:
218
208
  available_as_evaluator: true
219
209
  alternative_keys:
220
210
  - anthropic/claude-3-5-sonnet-latest
@@ -226,11 +216,11 @@ claude-3-5-models:
226
216
  description:
227
217
  Claude Sonnet 3.5 (June 2024) variant for code and content generation,
228
218
  multilingual and vision-capable, deprecated.
229
- class_properties:
219
+ metadata:
230
220
  deprecated: true
231
221
  properties:
232
222
  context_window: 200_000
233
- max_token_output: 8_192
223
+ max_tokens: 8_192
234
224
  costs_per_million_token:
235
225
  input: 3.0
236
226
  output: 15.0
@@ -245,7 +235,7 @@ claude-3-5-models:
245
235
  instant responses and targeted tasks. Supports vision and text inputs.
246
236
  properties:
247
237
  context_window: 200_000
248
- max_token_output: 8_192
238
+ max_tokens: 8_192
249
239
  training_cutoff: "2024-07"
250
240
  costs_per_million_token:
251
241
  input: 0.8
@@ -253,7 +243,7 @@ claude-3-5-models:
253
243
  cache:
254
244
  read: 0.08
255
245
  write: 1
256
- class_properties:
246
+ metadata:
257
247
  available_as_evaluator: true
258
248
  alternative_keys:
259
249
  - anthropic/claude-3-5-haiku-latest
@@ -261,7 +251,7 @@ claude-3-5-models:
261
251
 
262
252
  claude-3-models:
263
253
  base-config:
264
- class_properties:
254
+ metadata:
265
255
  deprecated: true
266
256
 
267
257
  anthropic/claude-3-opus-20240229:
@@ -272,9 +262,9 @@ claude-3-models:
272
262
  in its generation, supporting multimodal input.
273
263
  properties:
274
264
  context_window: 200_000
275
- max_token_output: 4_096
265
+ max_tokens: 4_096
276
266
  training_cutoff: "2023-08"
277
- class_properties:
267
+ metadata:
278
268
  available_for_everyone: false
279
269
  costs_per_million_token:
280
270
  input: 15.0
@@ -294,7 +284,7 @@ claude-3-models:
294
284
  and image input, with balanced skill for complex NLP tasks.
295
285
  properties:
296
286
  context_window: 200_000
297
- max_token_output: 4_096
287
+ max_tokens: 4_096
298
288
  training_cutoff: "2023-08"
299
289
  costs_per_million_token:
300
290
  input: 3.0
@@ -310,7 +300,7 @@ claude-3-models:
310
300
  responsiveness and targeted queries with text/image input.
311
301
  properties:
312
302
  context_window: 200_000
313
- max_token_output: 4_096
303
+ max_tokens: 4_096
314
304
  training_cutoff: "2023-08"
315
305
  costs_per_million_token:
316
306
  input: 0.25
@@ -324,8 +314,9 @@ claude-3-models:
324
314
  claude-2-models:
325
315
  # retired, will error
326
316
  base-config:
327
- class_properties:
328
- supports_images: false
317
+ supports:
318
+ images: false
319
+ metadata:
329
320
  available_for_everyone: false
330
321
  deprecated: true
331
322
 
@@ -339,7 +330,7 @@ claude-2-models:
339
330
  documentation_url: ""
340
331
  properties:
341
332
  context_window: 200_000
342
- max_token_output: 4_096
333
+ max_tokens: 4_096
343
334
  training_cutoff: "Early 2023"
344
335
  costs_per_million_token:
345
336
  input: 8.0
@@ -357,7 +348,7 @@ claude-2-models:
357
348
  documentation_url: ""
358
349
  properties:
359
350
  context_window: 100_000
360
- max_token_output: 4_096
351
+ max_tokens: 4_096
361
352
  training_cutoff: "Early 2023"
362
353
  costs_per_million_token:
363
354
  input: 8.0
@@ -370,7 +361,7 @@ claude-2-models:
370
361
  documentation_url: ""
371
362
  properties:
372
363
  context_window: null
373
- max_token_output: null
364
+ max_tokens: null
374
365
  training_cutoff: null
375
366
  costs_per_million_token:
376
367
  input: 0
@@ -388,7 +379,7 @@ claude-2-models:
388
379
  documentation_url: ""
389
380
  properties:
390
381
  context_window: 100_000
391
- max_token_output: 4_096
382
+ max_tokens: 4_096
392
383
  training_cutoff: "Early 2023"
393
384
  costs_per_million_token:
394
385
  input: 0.8