arize-phoenix 10.14.0__py3-none-any.whl → 11.0.0__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.
Potentially problematic release.
This version of arize-phoenix might be problematic. Click here for more details.
- {arize_phoenix-10.14.0.dist-info → arize_phoenix-11.0.0.dist-info}/METADATA +3 -2
- {arize_phoenix-10.14.0.dist-info → arize_phoenix-11.0.0.dist-info}/RECORD +82 -50
- phoenix/config.py +5 -2
- phoenix/datetime_utils.py +8 -1
- phoenix/db/bulk_inserter.py +40 -1
- phoenix/db/facilitator.py +263 -4
- phoenix/db/insertion/helpers.py +15 -0
- phoenix/db/insertion/span.py +3 -1
- phoenix/db/migrations/versions/a20694b15f82_cost.py +196 -0
- phoenix/db/models.py +267 -9
- phoenix/db/types/model_provider.py +1 -0
- phoenix/db/types/token_price_customization.py +29 -0
- phoenix/server/api/context.py +38 -4
- phoenix/server/api/dataloaders/__init__.py +41 -5
- phoenix/server/api/dataloaders/last_used_times_by_generative_model_id.py +35 -0
- phoenix/server/api/dataloaders/span_cost_by_span.py +24 -0
- phoenix/server/api/dataloaders/span_cost_detail_summary_entries_by_generative_model.py +56 -0
- phoenix/server/api/dataloaders/span_cost_detail_summary_entries_by_project_session.py +57 -0
- phoenix/server/api/dataloaders/span_cost_detail_summary_entries_by_span.py +43 -0
- phoenix/server/api/dataloaders/span_cost_detail_summary_entries_by_trace.py +56 -0
- phoenix/server/api/dataloaders/span_cost_details_by_span_cost.py +27 -0
- phoenix/server/api/dataloaders/span_cost_summary_by_experiment.py +58 -0
- phoenix/server/api/dataloaders/span_cost_summary_by_experiment_run.py +58 -0
- phoenix/server/api/dataloaders/span_cost_summary_by_generative_model.py +55 -0
- phoenix/server/api/dataloaders/span_cost_summary_by_project.py +140 -0
- phoenix/server/api/dataloaders/span_cost_summary_by_project_session.py +56 -0
- phoenix/server/api/dataloaders/span_cost_summary_by_trace.py +55 -0
- phoenix/server/api/dataloaders/span_costs.py +35 -0
- phoenix/server/api/dataloaders/types.py +29 -0
- phoenix/server/api/helpers/playground_clients.py +562 -12
- phoenix/server/api/helpers/prompts/conversions/aws.py +83 -0
- phoenix/server/api/helpers/prompts/models.py +67 -0
- phoenix/server/api/input_types/GenerativeModelInput.py +2 -0
- phoenix/server/api/input_types/ProjectSessionSort.py +3 -0
- phoenix/server/api/input_types/SpanSort.py +17 -0
- phoenix/server/api/mutations/__init__.py +2 -0
- phoenix/server/api/mutations/chat_mutations.py +17 -0
- phoenix/server/api/mutations/model_mutations.py +208 -0
- phoenix/server/api/queries.py +82 -41
- phoenix/server/api/routers/v1/traces.py +11 -4
- phoenix/server/api/subscriptions.py +36 -2
- phoenix/server/api/types/CostBreakdown.py +15 -0
- phoenix/server/api/types/Experiment.py +59 -1
- phoenix/server/api/types/ExperimentRun.py +58 -4
- phoenix/server/api/types/GenerativeModel.py +143 -2
- phoenix/server/api/types/GenerativeProvider.py +33 -20
- phoenix/server/api/types/{Model.py → InferenceModel.py} +1 -1
- phoenix/server/api/types/ModelInterface.py +11 -0
- phoenix/server/api/types/PlaygroundModel.py +10 -0
- phoenix/server/api/types/Project.py +42 -0
- phoenix/server/api/types/ProjectSession.py +44 -0
- phoenix/server/api/types/Span.py +137 -0
- phoenix/server/api/types/SpanCostDetailSummaryEntry.py +10 -0
- phoenix/server/api/types/SpanCostSummary.py +10 -0
- phoenix/server/api/types/TokenPrice.py +16 -0
- phoenix/server/api/types/TokenUsage.py +3 -3
- phoenix/server/api/types/Trace.py +41 -0
- phoenix/server/app.py +59 -0
- phoenix/server/cost_tracking/cost_details_calculator.py +190 -0
- phoenix/server/cost_tracking/cost_model_lookup.py +151 -0
- phoenix/server/cost_tracking/helpers.py +68 -0
- phoenix/server/cost_tracking/model_cost_manifest.json +59 -329
- phoenix/server/cost_tracking/regex_specificity.py +397 -0
- phoenix/server/cost_tracking/token_cost_calculator.py +57 -0
- phoenix/server/daemons/__init__.py +0 -0
- phoenix/server/daemons/generative_model_store.py +51 -0
- phoenix/server/daemons/span_cost_calculator.py +103 -0
- phoenix/server/dml_event_handler.py +1 -0
- phoenix/server/static/.vite/manifest.json +36 -36
- phoenix/server/static/assets/components-BnK9kodr.js +5055 -0
- phoenix/server/static/assets/{index-qiubV_74.js → index-S3YKLmbo.js} +13 -13
- phoenix/server/static/assets/{pages-C4V07ozl.js → pages-BW6PBHZb.js} +809 -417
- phoenix/server/static/assets/{vendor-Bfsiga8H.js → vendor-DqQvHbPa.js} +147 -147
- phoenix/server/static/assets/{vendor-arizeai-CQOWsrzm.js → vendor-arizeai-CLX44PFA.js} +1 -1
- phoenix/server/static/assets/{vendor-codemirror-CrcGVhB2.js → vendor-codemirror-Du3XyJnB.js} +1 -1
- phoenix/server/static/assets/{vendor-recharts-Yyg3G-Rq.js → vendor-recharts-B2PJDrnX.js} +25 -25
- phoenix/server/static/assets/{vendor-shiki-OPjag7Hm.js → vendor-shiki-CNbrFjf9.js} +1 -1
- phoenix/version.py +1 -1
- phoenix/server/cost_tracking/cost_lookup.py +0 -255
- phoenix/server/static/assets/components-CUUWyAMo.js +0 -4509
- {arize_phoenix-10.14.0.dist-info → arize_phoenix-11.0.0.dist-info}/WHEEL +0 -0
- {arize_phoenix-10.14.0.dist-info → arize_phoenix-11.0.0.dist-info}/entry_points.txt +0 -0
- {arize_phoenix-10.14.0.dist-info → arize_phoenix-11.0.0.dist-info}/licenses/IP_NOTICE +0 -0
- {arize_phoenix-10.14.0.dist-info → arize_phoenix-11.0.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,88 +1,16 @@
|
|
|
1
1
|
[
|
|
2
|
-
{
|
|
3
|
-
"model":"babbage-002",
|
|
4
|
-
"provider":"openai",
|
|
5
|
-
"input":0.0000004,
|
|
6
|
-
"output":0.0000016,
|
|
7
|
-
"cache_write":null,
|
|
8
|
-
"cache_read":null,
|
|
9
|
-
"regex":"(?i)^(babbage-002)$"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"model":"chat-bison",
|
|
13
|
-
"provider":null,
|
|
14
|
-
"input":0.00000025,
|
|
15
|
-
"output":0.0000005,
|
|
16
|
-
"cache_write":null,
|
|
17
|
-
"cache_read":null,
|
|
18
|
-
"regex":"(?i)^(chat-bison)(@[a-zA-Z0-9]+)?$"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"model":"chat-bison-32k",
|
|
22
|
-
"provider":null,
|
|
23
|
-
"input":0.00000025,
|
|
24
|
-
"output":0.0000005,
|
|
25
|
-
"cache_write":null,
|
|
26
|
-
"cache_read":null,
|
|
27
|
-
"regex":"(?i)^(chat-bison-32k)(@[a-zA-Z0-9]+)?$"
|
|
28
|
-
},
|
|
29
2
|
{
|
|
30
3
|
"model":"chatgpt-4o-latest",
|
|
31
|
-
"provider":
|
|
4
|
+
"provider":null,
|
|
32
5
|
"input":0.000005,
|
|
33
6
|
"output":0.000015,
|
|
34
7
|
"cache_write":null,
|
|
35
8
|
"cache_read":null,
|
|
36
9
|
"regex":"(?i)^(chatgpt-4o-latest)$"
|
|
37
10
|
},
|
|
38
|
-
{
|
|
39
|
-
"model":"claude-1.1",
|
|
40
|
-
"provider":"claude",
|
|
41
|
-
"input":0.000008,
|
|
42
|
-
"output":0.000024,
|
|
43
|
-
"cache_write":null,
|
|
44
|
-
"cache_read":null,
|
|
45
|
-
"regex":"(?i)^(claude-1.1)$"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"model":"claude-1.2",
|
|
49
|
-
"provider":"claude",
|
|
50
|
-
"input":0.000008,
|
|
51
|
-
"output":0.000024,
|
|
52
|
-
"cache_write":null,
|
|
53
|
-
"cache_read":null,
|
|
54
|
-
"regex":"(?i)^(claude-1.2)$"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"model":"claude-1.3",
|
|
58
|
-
"provider":"claude",
|
|
59
|
-
"input":0.000008,
|
|
60
|
-
"output":0.000024,
|
|
61
|
-
"cache_write":null,
|
|
62
|
-
"cache_read":null,
|
|
63
|
-
"regex":"(?i)^(claude-1.3)$"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"model":"claude-2.0",
|
|
67
|
-
"provider":"claude",
|
|
68
|
-
"input":0.000008,
|
|
69
|
-
"output":0.000024,
|
|
70
|
-
"cache_write":null,
|
|
71
|
-
"cache_read":null,
|
|
72
|
-
"regex":"(?i)^(claude-2.0)$"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"model":"claude-2.1",
|
|
76
|
-
"provider":"claude",
|
|
77
|
-
"input":0.000008,
|
|
78
|
-
"output":0.000024,
|
|
79
|
-
"cache_write":null,
|
|
80
|
-
"cache_read":null,
|
|
81
|
-
"regex":"(?i)^(claude-2.1)$"
|
|
82
|
-
},
|
|
83
11
|
{
|
|
84
12
|
"model":"claude-3-5-haiku-20241022",
|
|
85
|
-
"provider":
|
|
13
|
+
"provider":null,
|
|
86
14
|
"input":0.0000008,
|
|
87
15
|
"output":0.000004,
|
|
88
16
|
"cache_write":0.00000008,
|
|
@@ -91,7 +19,7 @@
|
|
|
91
19
|
},
|
|
92
20
|
{
|
|
93
21
|
"model":"claude-3-5-sonnet-20240620",
|
|
94
|
-
"provider":
|
|
22
|
+
"provider":null,
|
|
95
23
|
"input":0.000003,
|
|
96
24
|
"output":0.000015,
|
|
97
25
|
"cache_write":0.0000003,
|
|
@@ -100,7 +28,7 @@
|
|
|
100
28
|
},
|
|
101
29
|
{
|
|
102
30
|
"model":"claude-3-haiku-20240307",
|
|
103
|
-
"provider":
|
|
31
|
+
"provider":null,
|
|
104
32
|
"input":0.00000025,
|
|
105
33
|
"output":0.00000125,
|
|
106
34
|
"cache_write":null,
|
|
@@ -109,7 +37,7 @@
|
|
|
109
37
|
},
|
|
110
38
|
{
|
|
111
39
|
"model":"claude-3-opus-20240229",
|
|
112
|
-
"provider":
|
|
40
|
+
"provider":null,
|
|
113
41
|
"input":0.000015,
|
|
114
42
|
"output":0.000075,
|
|
115
43
|
"cache_write":null,
|
|
@@ -118,7 +46,7 @@
|
|
|
118
46
|
},
|
|
119
47
|
{
|
|
120
48
|
"model":"claude-3-sonnet-20240229",
|
|
121
|
-
"provider":
|
|
49
|
+
"provider":null,
|
|
122
50
|
"input":0.000003,
|
|
123
51
|
"output":0.000015,
|
|
124
52
|
"cache_write":0.0000003,
|
|
@@ -126,8 +54,8 @@
|
|
|
126
54
|
"regex":"(?i)^(claude-3-sonnet-20240229|anthropic\\.claude-3-sonnet-20240229-v1:0|claude-3-sonnet@20240229)$"
|
|
127
55
|
},
|
|
128
56
|
{
|
|
129
|
-
"model":"claude-3
|
|
130
|
-
"provider":
|
|
57
|
+
"model":"claude-3-5-haiku-latest",
|
|
58
|
+
"provider":null,
|
|
131
59
|
"input":0.0000008,
|
|
132
60
|
"output":0.000004,
|
|
133
61
|
"cache_write":0.00000008,
|
|
@@ -135,8 +63,8 @@
|
|
|
135
63
|
"regex":"(?i)^(claude-3-5-haiku-latest)$"
|
|
136
64
|
},
|
|
137
65
|
{
|
|
138
|
-
"model":"claude-3
|
|
139
|
-
"provider":
|
|
66
|
+
"model":"claude-3-5-sonnet-20241022",
|
|
67
|
+
"provider":null,
|
|
140
68
|
"input":0.000003,
|
|
141
69
|
"output":0.000015,
|
|
142
70
|
"cache_write":0.0000003,
|
|
@@ -144,8 +72,8 @@
|
|
|
144
72
|
"regex":"(?i)^(claude-3-5-sonnet-20241022|anthropic\\.claude-3-5-sonnet-20241022-v2:0|claude-3-5-sonnet-V2@20241022)$"
|
|
145
73
|
},
|
|
146
74
|
{
|
|
147
|
-
"model":"claude-3
|
|
148
|
-
"provider":
|
|
75
|
+
"model":"claude-3-5-sonnet-latest",
|
|
76
|
+
"provider":null,
|
|
149
77
|
"input":0.000003,
|
|
150
78
|
"output":0.000015,
|
|
151
79
|
"cache_write":0.0000003,
|
|
@@ -153,8 +81,8 @@
|
|
|
153
81
|
"regex":"(?i)^(claude-3-5-sonnet-latest)$"
|
|
154
82
|
},
|
|
155
83
|
{
|
|
156
|
-
"model":"claude-3
|
|
157
|
-
"provider":
|
|
84
|
+
"model":"claude-3-7-sonnet-20250219",
|
|
85
|
+
"provider":null,
|
|
158
86
|
"input":0.000003,
|
|
159
87
|
"output":0.000015,
|
|
160
88
|
"cache_write":0.0000003,
|
|
@@ -162,17 +90,26 @@
|
|
|
162
90
|
"regex":"(?i)^(claude-3.7-sonnet-20250219|anthropic\\.claude-3.7-sonnet-20250219-v1:0|claude-3-7-sonnet-V1@20250219)$"
|
|
163
91
|
},
|
|
164
92
|
{
|
|
165
|
-
"model":"claude-3
|
|
166
|
-
"provider":
|
|
93
|
+
"model":"claude-3-7-sonnet-latest",
|
|
94
|
+
"provider":null,
|
|
167
95
|
"input":0.000003,
|
|
168
96
|
"output":0.000015,
|
|
169
97
|
"cache_write":0.0000003,
|
|
170
98
|
"cache_read":0.00000375,
|
|
171
99
|
"regex":"(?i)^(claude-3-7-sonnet-latest)$"
|
|
172
100
|
},
|
|
101
|
+
{
|
|
102
|
+
"model":"claude-sonnet-4-20250514",
|
|
103
|
+
"provider":null,
|
|
104
|
+
"input":3e-06,
|
|
105
|
+
"output":1.5e-05,
|
|
106
|
+
"cache_write":3.75e-06,
|
|
107
|
+
"cache_read":3e-07,
|
|
108
|
+
"regex":"(?i)^(claude-sonnet-4-20250514|anthropic\\.claude-sonnet-4-20250514-v1:0|claude-sonnet-4@20250514)$"
|
|
109
|
+
},
|
|
173
110
|
{
|
|
174
111
|
"model":"claude-instant-1",
|
|
175
|
-
"provider":
|
|
112
|
+
"provider":null,
|
|
176
113
|
"input":0.00000163,
|
|
177
114
|
"output":0.00000551,
|
|
178
115
|
"cache_write":null,
|
|
@@ -181,139 +118,13 @@
|
|
|
181
118
|
},
|
|
182
119
|
{
|
|
183
120
|
"model":"claude-instant-1.2",
|
|
184
|
-
"provider":
|
|
121
|
+
"provider":null,
|
|
185
122
|
"input":0.00000163,
|
|
186
123
|
"output":0.00000551,
|
|
187
124
|
"cache_write":null,
|
|
188
125
|
"cache_read":null,
|
|
189
126
|
"regex":"(?i)^(claude-instant-1.2)$"
|
|
190
127
|
},
|
|
191
|
-
{
|
|
192
|
-
"model":"code-bison",
|
|
193
|
-
"provider":null,
|
|
194
|
-
"input":0.00000025,
|
|
195
|
-
"output":0.0000005,
|
|
196
|
-
"cache_write":null,
|
|
197
|
-
"cache_read":null,
|
|
198
|
-
"regex":"(?i)^(code-bison)(@[a-zA-Z0-9]+)?$"
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"model":"code-bison-32k",
|
|
202
|
-
"provider":null,
|
|
203
|
-
"input":0.00000025,
|
|
204
|
-
"output":0.0000005,
|
|
205
|
-
"cache_write":null,
|
|
206
|
-
"cache_read":null,
|
|
207
|
-
"regex":"(?i)^(code-bison-32k)(@[a-zA-Z0-9]+)?$"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"model":"code-gecko",
|
|
211
|
-
"provider":null,
|
|
212
|
-
"input":0.00000025,
|
|
213
|
-
"output":0.0000005,
|
|
214
|
-
"cache_write":null,
|
|
215
|
-
"cache_read":null,
|
|
216
|
-
"regex":"(?i)^(code-gecko)(@[a-zA-Z0-9]+)?$"
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"model":"codechat-bison",
|
|
220
|
-
"provider":null,
|
|
221
|
-
"input":0.00000025,
|
|
222
|
-
"output":0.0000005,
|
|
223
|
-
"cache_write":null,
|
|
224
|
-
"cache_read":null,
|
|
225
|
-
"regex":"(?i)^(codechat-bison)(@[a-zA-Z0-9]+)?$"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"model":"codechat-bison-32k",
|
|
229
|
-
"provider":null,
|
|
230
|
-
"input":0.00000025,
|
|
231
|
-
"output":0.0000005,
|
|
232
|
-
"cache_write":null,
|
|
233
|
-
"cache_read":null,
|
|
234
|
-
"regex":"(?i)^(codechat-bison-32k)(@[a-zA-Z0-9]+)?$"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"model":"davinci-002",
|
|
238
|
-
"provider":"openai",
|
|
239
|
-
"input":0.000006,
|
|
240
|
-
"output":0.000012,
|
|
241
|
-
"cache_write":null,
|
|
242
|
-
"cache_read":null,
|
|
243
|
-
"regex":"(?i)^(davinci-002)$"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"model":"ft:babbage-002",
|
|
247
|
-
"provider":"openai",
|
|
248
|
-
"input":0.0000016,
|
|
249
|
-
"output":0.0000016,
|
|
250
|
-
"cache_write":null,
|
|
251
|
-
"cache_read":null,
|
|
252
|
-
"regex":"(?i)^(ft:)(babbage-002:)(.+)(:)(.*)(:)(.+)$$"
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
"model":"ft:davinci-002",
|
|
256
|
-
"provider":"openai",
|
|
257
|
-
"input":0.000012,
|
|
258
|
-
"output":0.000012,
|
|
259
|
-
"cache_write":null,
|
|
260
|
-
"cache_read":null,
|
|
261
|
-
"regex":"(?i)^(ft:)(davinci-002:)(.+)(:)(.*)(:)(.+)$$"
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"model":"ft:gpt-3.5-turbo-0613",
|
|
265
|
-
"provider":"openai",
|
|
266
|
-
"input":0.000012,
|
|
267
|
-
"output":0.000016,
|
|
268
|
-
"cache_write":null,
|
|
269
|
-
"cache_read":null,
|
|
270
|
-
"regex":"(?i)^(ft:)(gpt-3.5-turbo-0613:)(.+)(:)(.*)(:)(.+)$"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"model":"ft:gpt-3.5-turbo-1106",
|
|
274
|
-
"provider":"openai",
|
|
275
|
-
"input":0.000003,
|
|
276
|
-
"output":0.000006,
|
|
277
|
-
"cache_write":null,
|
|
278
|
-
"cache_read":null,
|
|
279
|
-
"regex":"(?i)^(ft:)(gpt-3.5-turbo-1106:)(.+)(:)(.*)(:)(.+)$"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"model":"gemini-1.0-pro",
|
|
283
|
-
"provider":null,
|
|
284
|
-
"input":0.000000125,
|
|
285
|
-
"output":0.000000375,
|
|
286
|
-
"cache_write":null,
|
|
287
|
-
"cache_read":null,
|
|
288
|
-
"regex":"(?i)^(gemini-1.0-pro)(@[a-zA-Z0-9]+)?$"
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"model":"gemini-1.0-pro-001",
|
|
292
|
-
"provider":null,
|
|
293
|
-
"input":0.000000125,
|
|
294
|
-
"output":0.000000375,
|
|
295
|
-
"cache_write":null,
|
|
296
|
-
"cache_read":null,
|
|
297
|
-
"regex":"(?i)^(gemini-1.0-pro-001)(@[a-zA-Z0-9]+)?$"
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"model":"gemini-1.0-pro-latest",
|
|
301
|
-
"provider":null,
|
|
302
|
-
"input":0.00000025,
|
|
303
|
-
"output":0.0000005,
|
|
304
|
-
"cache_write":null,
|
|
305
|
-
"cache_read":null,
|
|
306
|
-
"regex":"(?i)^(gemini-1.0-pro-latest)(@[a-zA-Z0-9]+)?$"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"model":"gemini-1.5-pro-latest",
|
|
310
|
-
"provider":null,
|
|
311
|
-
"input":0.0000025,
|
|
312
|
-
"output":0.0000075,
|
|
313
|
-
"cache_write":null,
|
|
314
|
-
"cache_read":null,
|
|
315
|
-
"regex":"(?i)^(gemini-1.5-pro-latest)(@[a-zA-Z0-9]+)?$"
|
|
316
|
-
},
|
|
317
128
|
{
|
|
318
129
|
"model":"gemini-2.0-flash",
|
|
319
130
|
"provider":null,
|
|
@@ -332,24 +143,6 @@
|
|
|
332
143
|
"cache_read":null,
|
|
333
144
|
"regex":"(?i)^(gemini-2.0-flash-001)(@[a-zA-Z0-9]+)?$"
|
|
334
145
|
},
|
|
335
|
-
{
|
|
336
|
-
"model":"gemini-2.0-flash-lite-preview",
|
|
337
|
-
"provider":null,
|
|
338
|
-
"input":0.000000075,
|
|
339
|
-
"output":0.0000003,
|
|
340
|
-
"cache_write":null,
|
|
341
|
-
"cache_read":null,
|
|
342
|
-
"regex":"(?i)^(gemini-2.0-flash-lite-preview)(@[a-zA-Z0-9]+)?$"
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
"model":"gemini-2.0-flash-lite-preview-02-05",
|
|
346
|
-
"provider":null,
|
|
347
|
-
"input":0.000000075,
|
|
348
|
-
"output":0.0000003,
|
|
349
|
-
"cache_write":null,
|
|
350
|
-
"cache_read":null,
|
|
351
|
-
"regex":"(?i)^(gemini-2.0-flash-lite-preview-02-05)(@[a-zA-Z0-9]+)?$"
|
|
352
|
-
},
|
|
353
146
|
{
|
|
354
147
|
"model":"gemini-pro",
|
|
355
148
|
"provider":null,
|
|
@@ -361,7 +154,7 @@
|
|
|
361
154
|
},
|
|
362
155
|
{
|
|
363
156
|
"model":"gpt-3.5-turbo",
|
|
364
|
-
"provider":
|
|
157
|
+
"provider":null,
|
|
365
158
|
"input":0.0000005,
|
|
366
159
|
"output":0.0000015,
|
|
367
160
|
"cache_write":null,
|
|
@@ -370,7 +163,7 @@
|
|
|
370
163
|
},
|
|
371
164
|
{
|
|
372
165
|
"model":"gpt-3.5-turbo-0125",
|
|
373
|
-
"provider":
|
|
166
|
+
"provider":null,
|
|
374
167
|
"input":0.0000005,
|
|
375
168
|
"output":0.0000015,
|
|
376
169
|
"cache_write":null,
|
|
@@ -379,7 +172,7 @@
|
|
|
379
172
|
},
|
|
380
173
|
{
|
|
381
174
|
"model":"gpt-3.5-turbo-0301",
|
|
382
|
-
"provider":
|
|
175
|
+
"provider":null,
|
|
383
176
|
"input":0.000002,
|
|
384
177
|
"output":0.000002,
|
|
385
178
|
"cache_write":null,
|
|
@@ -388,7 +181,7 @@
|
|
|
388
181
|
},
|
|
389
182
|
{
|
|
390
183
|
"model":"gpt-3.5-turbo-0613",
|
|
391
|
-
"provider":
|
|
184
|
+
"provider":null,
|
|
392
185
|
"input":0.0000015,
|
|
393
186
|
"output":0.000002,
|
|
394
187
|
"cache_write":null,
|
|
@@ -397,7 +190,7 @@
|
|
|
397
190
|
},
|
|
398
191
|
{
|
|
399
192
|
"model":"gpt-3.5-turbo-1106",
|
|
400
|
-
"provider":
|
|
193
|
+
"provider":null,
|
|
401
194
|
"input":0.000001,
|
|
402
195
|
"output":0.000002,
|
|
403
196
|
"cache_write":null,
|
|
@@ -406,7 +199,7 @@
|
|
|
406
199
|
},
|
|
407
200
|
{
|
|
408
201
|
"model":"gpt-3.5-turbo-16k",
|
|
409
|
-
"provider":
|
|
202
|
+
"provider":null,
|
|
410
203
|
"input":0.0000005,
|
|
411
204
|
"output":0.0000015,
|
|
412
205
|
"cache_write":null,
|
|
@@ -415,7 +208,7 @@
|
|
|
415
208
|
},
|
|
416
209
|
{
|
|
417
210
|
"model":"gpt-3.5-turbo-16k-0613",
|
|
418
|
-
"provider":
|
|
211
|
+
"provider":null,
|
|
419
212
|
"input":0.000003,
|
|
420
213
|
"output":0.000004,
|
|
421
214
|
"cache_write":null,
|
|
@@ -424,7 +217,7 @@
|
|
|
424
217
|
},
|
|
425
218
|
{
|
|
426
219
|
"model":"gpt-3.5-turbo-instruct",
|
|
427
|
-
"provider":
|
|
220
|
+
"provider":null,
|
|
428
221
|
"input":0.0000015,
|
|
429
222
|
"output":0.000002,
|
|
430
223
|
"cache_write":null,
|
|
@@ -433,7 +226,7 @@
|
|
|
433
226
|
},
|
|
434
227
|
{
|
|
435
228
|
"model":"gpt-4",
|
|
436
|
-
"provider":
|
|
229
|
+
"provider":null,
|
|
437
230
|
"input":0.00003,
|
|
438
231
|
"output":0.00006,
|
|
439
232
|
"cache_write":null,
|
|
@@ -442,7 +235,7 @@
|
|
|
442
235
|
},
|
|
443
236
|
{
|
|
444
237
|
"model":"gpt-4-0125-preview",
|
|
445
|
-
"provider":
|
|
238
|
+
"provider":null,
|
|
446
239
|
"input":0.00001,
|
|
447
240
|
"output":0.00003,
|
|
448
241
|
"cache_write":null,
|
|
@@ -451,7 +244,7 @@
|
|
|
451
244
|
},
|
|
452
245
|
{
|
|
453
246
|
"model":"gpt-4-0314",
|
|
454
|
-
"provider":
|
|
247
|
+
"provider":null,
|
|
455
248
|
"input":0.00003,
|
|
456
249
|
"output":0.00006,
|
|
457
250
|
"cache_write":null,
|
|
@@ -460,7 +253,7 @@
|
|
|
460
253
|
},
|
|
461
254
|
{
|
|
462
255
|
"model":"gpt-4-0613",
|
|
463
|
-
"provider":
|
|
256
|
+
"provider":null,
|
|
464
257
|
"input":0.00003,
|
|
465
258
|
"output":0.00006,
|
|
466
259
|
"cache_write":null,
|
|
@@ -469,7 +262,7 @@
|
|
|
469
262
|
},
|
|
470
263
|
{
|
|
471
264
|
"model":"gpt-4-1106-preview",
|
|
472
|
-
"provider":
|
|
265
|
+
"provider":null,
|
|
473
266
|
"input":0.00001,
|
|
474
267
|
"output":0.00003,
|
|
475
268
|
"cache_write":null,
|
|
@@ -478,7 +271,7 @@
|
|
|
478
271
|
},
|
|
479
272
|
{
|
|
480
273
|
"model":"gpt-4-32k",
|
|
481
|
-
"provider":
|
|
274
|
+
"provider":null,
|
|
482
275
|
"input":0.00006,
|
|
483
276
|
"output":0.00012,
|
|
484
277
|
"cache_write":null,
|
|
@@ -487,7 +280,7 @@
|
|
|
487
280
|
},
|
|
488
281
|
{
|
|
489
282
|
"model":"gpt-4-32k-0314",
|
|
490
|
-
"provider":
|
|
283
|
+
"provider":null,
|
|
491
284
|
"input":0.00006,
|
|
492
285
|
"output":0.00012,
|
|
493
286
|
"cache_write":null,
|
|
@@ -496,25 +289,16 @@
|
|
|
496
289
|
},
|
|
497
290
|
{
|
|
498
291
|
"model":"gpt-4-32k-0613",
|
|
499
|
-
"provider":
|
|
292
|
+
"provider":null,
|
|
500
293
|
"input":0.00006,
|
|
501
294
|
"output":0.00012,
|
|
502
295
|
"cache_write":null,
|
|
503
296
|
"cache_read":null,
|
|
504
297
|
"regex":"(?i)^(gpt-4-32k-0613)$"
|
|
505
298
|
},
|
|
506
|
-
{
|
|
507
|
-
"model":"gpt-4-preview",
|
|
508
|
-
"provider":"openai",
|
|
509
|
-
"input":0.00001,
|
|
510
|
-
"output":0.00003,
|
|
511
|
-
"cache_write":null,
|
|
512
|
-
"cache_read":null,
|
|
513
|
-
"regex":"(?i)^(gpt-4-preview)$"
|
|
514
|
-
},
|
|
515
299
|
{
|
|
516
300
|
"model":"gpt-4-turbo",
|
|
517
|
-
"provider":
|
|
301
|
+
"provider":null,
|
|
518
302
|
"input":0.00001,
|
|
519
303
|
"output":0.00003,
|
|
520
304
|
"cache_write":null,
|
|
@@ -523,7 +307,7 @@
|
|
|
523
307
|
},
|
|
524
308
|
{
|
|
525
309
|
"model":"gpt-4-turbo-2024-04-09",
|
|
526
|
-
"provider":
|
|
310
|
+
"provider":null,
|
|
527
311
|
"input":0.00001,
|
|
528
312
|
"output":0.00003,
|
|
529
313
|
"cache_write":null,
|
|
@@ -532,25 +316,16 @@
|
|
|
532
316
|
},
|
|
533
317
|
{
|
|
534
318
|
"model":"gpt-4-turbo-preview",
|
|
535
|
-
"provider":
|
|
319
|
+
"provider":null,
|
|
536
320
|
"input":0.00001,
|
|
537
321
|
"output":0.00003,
|
|
538
322
|
"cache_write":null,
|
|
539
323
|
"cache_read":null,
|
|
540
324
|
"regex":"(?i)^(gpt-4-turbo-preview)$"
|
|
541
325
|
},
|
|
542
|
-
{
|
|
543
|
-
"model":"gpt-4-turbo-vision",
|
|
544
|
-
"provider":"openai",
|
|
545
|
-
"input":0.00001,
|
|
546
|
-
"output":0.00003,
|
|
547
|
-
"cache_write":null,
|
|
548
|
-
"cache_read":null,
|
|
549
|
-
"regex":"(?i)^(gpt-4(-\\d{4})?-vision-preview)$"
|
|
550
|
-
},
|
|
551
326
|
{
|
|
552
327
|
"model":"gpt-4.1",
|
|
553
|
-
"provider":
|
|
328
|
+
"provider":null,
|
|
554
329
|
"input":0.000002,
|
|
555
330
|
"output":0.000008,
|
|
556
331
|
"cache_write":0.0000005,
|
|
@@ -559,7 +334,7 @@
|
|
|
559
334
|
},
|
|
560
335
|
{
|
|
561
336
|
"model":"gpt-4.1-2025-04-14",
|
|
562
|
-
"provider":
|
|
337
|
+
"provider":null,
|
|
563
338
|
"input":0.000002,
|
|
564
339
|
"output":0.000008,
|
|
565
340
|
"cache_write":0.0000005,
|
|
@@ -568,7 +343,7 @@
|
|
|
568
343
|
},
|
|
569
344
|
{
|
|
570
345
|
"model":"gpt-4.1-mini",
|
|
571
|
-
"provider":
|
|
346
|
+
"provider":null,
|
|
572
347
|
"input":0.0000004,
|
|
573
348
|
"output":0.0000016,
|
|
574
349
|
"cache_write":0.0000001,
|
|
@@ -577,7 +352,7 @@
|
|
|
577
352
|
},
|
|
578
353
|
{
|
|
579
354
|
"model":"gpt-4.1-mini-2025-04-14",
|
|
580
|
-
"provider":
|
|
355
|
+
"provider":null,
|
|
581
356
|
"input":0.0000004,
|
|
582
357
|
"output":0.0000016,
|
|
583
358
|
"cache_write":0.0000001,
|
|
@@ -586,7 +361,7 @@
|
|
|
586
361
|
},
|
|
587
362
|
{
|
|
588
363
|
"model":"gpt-4.1-nano",
|
|
589
|
-
"provider":
|
|
364
|
+
"provider":null,
|
|
590
365
|
"input":0.0000001,
|
|
591
366
|
"output":0.0000004,
|
|
592
367
|
"cache_write":0.000000025,
|
|
@@ -595,7 +370,7 @@
|
|
|
595
370
|
},
|
|
596
371
|
{
|
|
597
372
|
"model":"gpt-4.1-nano-2025-04-14",
|
|
598
|
-
"provider":
|
|
373
|
+
"provider":null,
|
|
599
374
|
"input":0.0000001,
|
|
600
375
|
"output":0.0000004,
|
|
601
376
|
"cache_write":0.000000025,
|
|
@@ -622,7 +397,7 @@
|
|
|
622
397
|
},
|
|
623
398
|
{
|
|
624
399
|
"model":"gpt-4o",
|
|
625
|
-
"provider":
|
|
400
|
+
"provider":null,
|
|
626
401
|
"input":0.0000025,
|
|
627
402
|
"output":0.00001,
|
|
628
403
|
"cache_write":0.00000125,
|
|
@@ -631,7 +406,7 @@
|
|
|
631
406
|
},
|
|
632
407
|
{
|
|
633
408
|
"model":"gpt-4o-2024-05-13",
|
|
634
|
-
"provider":
|
|
409
|
+
"provider":null,
|
|
635
410
|
"input":0.000005,
|
|
636
411
|
"output":0.000015,
|
|
637
412
|
"cache_write":null,
|
|
@@ -640,7 +415,7 @@
|
|
|
640
415
|
},
|
|
641
416
|
{
|
|
642
417
|
"model":"gpt-4o-2024-08-06",
|
|
643
|
-
"provider":
|
|
418
|
+
"provider":null,
|
|
644
419
|
"input":0.0000025,
|
|
645
420
|
"output":0.00001,
|
|
646
421
|
"cache_write":0.00000125,
|
|
@@ -649,7 +424,7 @@
|
|
|
649
424
|
},
|
|
650
425
|
{
|
|
651
426
|
"model":"gpt-4o-2024-11-20",
|
|
652
|
-
"provider":
|
|
427
|
+
"provider":null,
|
|
653
428
|
"input":0.0000025,
|
|
654
429
|
"output":0.00001,
|
|
655
430
|
"cache_write":0.00000125,
|
|
@@ -658,7 +433,7 @@
|
|
|
658
433
|
},
|
|
659
434
|
{
|
|
660
435
|
"model":"gpt-4o-mini",
|
|
661
|
-
"provider":
|
|
436
|
+
"provider":null,
|
|
662
437
|
"input":0.00000015,
|
|
663
438
|
"output":0.0000006,
|
|
664
439
|
"cache_write":0.000000075,
|
|
@@ -667,31 +442,13 @@
|
|
|
667
442
|
},
|
|
668
443
|
{
|
|
669
444
|
"model":"gpt-4o-mini-2024-07-18",
|
|
670
|
-
"provider":
|
|
445
|
+
"provider":null,
|
|
671
446
|
"input":0.00000015,
|
|
672
447
|
"output":0.0000006,
|
|
673
448
|
"cache_write":0.000000075,
|
|
674
449
|
"cache_read":null,
|
|
675
450
|
"regex":"(?i)^(gpt-4o-mini-2024-07-18)$"
|
|
676
451
|
},
|
|
677
|
-
{
|
|
678
|
-
"model":"gpt-4o-realtime-preview",
|
|
679
|
-
"provider":null,
|
|
680
|
-
"input":null,
|
|
681
|
-
"output":null,
|
|
682
|
-
"cache_write":0.00002,
|
|
683
|
-
"cache_read":null,
|
|
684
|
-
"regex":"(?i)^(gpt-4o-realtime-preview)$"
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"model":"gpt-4o-realtime-preview-2024-10-01",
|
|
688
|
-
"provider":null,
|
|
689
|
-
"input":null,
|
|
690
|
-
"output":null,
|
|
691
|
-
"cache_write":0.00002,
|
|
692
|
-
"cache_read":null,
|
|
693
|
-
"regex":"(?i)^(gpt-4o-realtime-preview-2024-10-01)$"
|
|
694
|
-
},
|
|
695
452
|
{
|
|
696
453
|
"model":"o1",
|
|
697
454
|
"provider":null,
|
|
@@ -799,32 +556,5 @@
|
|
|
799
556
|
"cache_write":0.000000275,
|
|
800
557
|
"cache_read":null,
|
|
801
558
|
"regex":"(?i)^(o4-mini-2025-04-16)$"
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
"model":"text-bison",
|
|
805
|
-
"provider":null,
|
|
806
|
-
"input":0.00000025,
|
|
807
|
-
"output":0.0000005,
|
|
808
|
-
"cache_write":null,
|
|
809
|
-
"cache_read":null,
|
|
810
|
-
"regex":"(?i)^(text-bison)(@[a-zA-Z0-9]+)?$"
|
|
811
|
-
},
|
|
812
|
-
{
|
|
813
|
-
"model":"text-bison-32k",
|
|
814
|
-
"provider":null,
|
|
815
|
-
"input":0.00000025,
|
|
816
|
-
"output":0.0000005,
|
|
817
|
-
"cache_write":null,
|
|
818
|
-
"cache_read":null,
|
|
819
|
-
"regex":"(?i)^(text-bison-32k)(@[a-zA-Z0-9]+)?$"
|
|
820
|
-
},
|
|
821
|
-
{
|
|
822
|
-
"model":"text-unicorn",
|
|
823
|
-
"provider":null,
|
|
824
|
-
"input":0.0000025,
|
|
825
|
-
"output":0.0000075,
|
|
826
|
-
"cache_write":null,
|
|
827
|
-
"cache_read":null,
|
|
828
|
-
"regex":"(?i)^(text-unicorn)(@[a-zA-Z0-9]+)?$"
|
|
829
559
|
}
|
|
830
|
-
]
|
|
560
|
+
]
|