pygpt-net 2.6.65__py3-none-any.whl → 2.6.67__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.
- pygpt_net/CHANGELOG.txt +17 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +2 -0
- pygpt_net/controller/chat/chat.py +0 -0
- pygpt_net/controller/chat/handler/openai_stream.py +137 -7
- pygpt_net/controller/chat/render.py +0 -0
- pygpt_net/controller/config/field/checkbox_list.py +34 -1
- pygpt_net/controller/config/field/textarea.py +2 -2
- pygpt_net/controller/dialogs/info.py +2 -2
- pygpt_net/controller/media/media.py +48 -1
- pygpt_net/controller/model/editor.py +74 -9
- pygpt_net/controller/presets/presets.py +4 -1
- pygpt_net/controller/settings/editor.py +25 -1
- pygpt_net/controller/ui/mode.py +14 -10
- pygpt_net/controller/ui/ui.py +18 -1
- pygpt_net/core/image/image.py +34 -1
- pygpt_net/core/tabs/tabs.py +0 -0
- pygpt_net/core/types/image.py +70 -3
- pygpt_net/core/video/video.py +43 -3
- pygpt_net/data/config/config.json +4 -3
- pygpt_net/data/config/models.json +637 -38
- pygpt_net/data/locale/locale.de.ini +5 -0
- pygpt_net/data/locale/locale.en.ini +5 -0
- pygpt_net/data/locale/locale.es.ini +5 -0
- pygpt_net/data/locale/locale.fr.ini +5 -0
- pygpt_net/data/locale/locale.it.ini +5 -0
- pygpt_net/data/locale/locale.pl.ini +5 -0
- pygpt_net/data/locale/locale.uk.ini +5 -0
- pygpt_net/data/locale/locale.zh.ini +5 -0
- pygpt_net/item/model.py +15 -19
- pygpt_net/provider/agents/openai/agent.py +0 -0
- pygpt_net/provider/api/google/__init__.py +20 -9
- pygpt_net/provider/api/google/image.py +161 -28
- pygpt_net/provider/api/google/video.py +73 -36
- pygpt_net/provider/api/openai/__init__.py +21 -11
- pygpt_net/provider/api/openai/agents/client.py +0 -0
- pygpt_net/provider/api/openai/video.py +562 -0
- pygpt_net/provider/core/config/patch.py +7 -0
- pygpt_net/provider/core/model/patch.py +54 -3
- pygpt_net/provider/vector_stores/qdrant.py +117 -0
- pygpt_net/ui/dialog/models.py +10 -1
- pygpt_net/ui/layout/toolbox/raw.py +7 -1
- pygpt_net/ui/layout/toolbox/video.py +14 -6
- pygpt_net/ui/widget/option/checkbox_list.py +14 -2
- pygpt_net/ui/widget/option/input.py +3 -1
- {pygpt_net-2.6.65.dist-info → pygpt_net-2.6.67.dist-info}/METADATA +72 -25
- {pygpt_net-2.6.65.dist-info → pygpt_net-2.6.67.dist-info}/RECORD +45 -43
- {pygpt_net-2.6.65.dist-info → pygpt_net-2.6.67.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.65.dist-info → pygpt_net-2.6.67.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.65.dist-info → pygpt_net-2.6.67.dist-info}/entry_points.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__meta__": {
|
|
3
|
-
"version": "2.6.
|
|
4
|
-
"app.version": "2.6.
|
|
5
|
-
"updated_at": "2025-
|
|
3
|
+
"version": "2.6.67",
|
|
4
|
+
"app.version": "2.6.67",
|
|
5
|
+
"updated_at": "2025-12-26T00:00:00"
|
|
6
6
|
},
|
|
7
7
|
"items": {
|
|
8
8
|
"SpeakLeash/bielik-11b-v2.3-instruct:Q4_K_M": {
|
|
@@ -262,6 +262,48 @@
|
|
|
262
262
|
"provider": "anthropic",
|
|
263
263
|
"tool_calls": false
|
|
264
264
|
},
|
|
265
|
+
"claude-opus-4-5": {
|
|
266
|
+
"id": "claude-opus-4-5",
|
|
267
|
+
"name": "claude-opus-4-5",
|
|
268
|
+
"mode": [
|
|
269
|
+
"chat",
|
|
270
|
+
"llama_index",
|
|
271
|
+
"agent",
|
|
272
|
+
"agent_llama",
|
|
273
|
+
"agent_openai",
|
|
274
|
+
"expert"
|
|
275
|
+
],
|
|
276
|
+
"llama_index": {
|
|
277
|
+
"args": [
|
|
278
|
+
{
|
|
279
|
+
"name": "model",
|
|
280
|
+
"value": "claude-opus-4-5",
|
|
281
|
+
"type": "str"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
"env": [
|
|
285
|
+
{
|
|
286
|
+
"name": "ANTHROPIC_API_KEY",
|
|
287
|
+
"value": "{api_key_anthropic}",
|
|
288
|
+
"type": "str"
|
|
289
|
+
}
|
|
290
|
+
]
|
|
291
|
+
},
|
|
292
|
+
"ctx": 200000,
|
|
293
|
+
"tokens": 64000,
|
|
294
|
+
"default": false,
|
|
295
|
+
"input": [
|
|
296
|
+
"text",
|
|
297
|
+
"image"
|
|
298
|
+
],
|
|
299
|
+
"output": [
|
|
300
|
+
"text"
|
|
301
|
+
],
|
|
302
|
+
"extra": {},
|
|
303
|
+
"imported": false,
|
|
304
|
+
"provider": "anthropic",
|
|
305
|
+
"tool_calls": true
|
|
306
|
+
},
|
|
265
307
|
"claude-sonnet-4-0": {
|
|
266
308
|
"id": "claude-sonnet-4-0",
|
|
267
309
|
"name": "claude-sonnet-4-0",
|
|
@@ -304,6 +346,48 @@
|
|
|
304
346
|
"provider": "anthropic",
|
|
305
347
|
"tool_calls": false
|
|
306
348
|
},
|
|
349
|
+
"claude-sonnet-4-5": {
|
|
350
|
+
"id": "claude-sonnet-4-5",
|
|
351
|
+
"name": "claude-sonnet-4-5",
|
|
352
|
+
"mode": [
|
|
353
|
+
"chat",
|
|
354
|
+
"llama_index",
|
|
355
|
+
"agent",
|
|
356
|
+
"agent_llama",
|
|
357
|
+
"agent_openai",
|
|
358
|
+
"expert"
|
|
359
|
+
],
|
|
360
|
+
"llama_index": {
|
|
361
|
+
"args": [
|
|
362
|
+
{
|
|
363
|
+
"name": "model",
|
|
364
|
+
"value": "claude-sonnet-4-5",
|
|
365
|
+
"type": "str"
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"env": [
|
|
369
|
+
{
|
|
370
|
+
"name": "ANTHROPIC_API_KEY",
|
|
371
|
+
"value": "{api_key_anthropic}",
|
|
372
|
+
"type": "str"
|
|
373
|
+
}
|
|
374
|
+
]
|
|
375
|
+
},
|
|
376
|
+
"ctx": 200000,
|
|
377
|
+
"tokens": 64000,
|
|
378
|
+
"default": false,
|
|
379
|
+
"input": [
|
|
380
|
+
"text"
|
|
381
|
+
],
|
|
382
|
+
"output": [
|
|
383
|
+
"text",
|
|
384
|
+
"image"
|
|
385
|
+
],
|
|
386
|
+
"extra": {},
|
|
387
|
+
"imported": false,
|
|
388
|
+
"provider": "anthropic",
|
|
389
|
+
"tool_calls": true
|
|
390
|
+
},
|
|
307
391
|
"codellama": {
|
|
308
392
|
"id": "codellama",
|
|
309
393
|
"name": "codellama",
|
|
@@ -911,7 +995,7 @@
|
|
|
911
995
|
"image"
|
|
912
996
|
],
|
|
913
997
|
"extra": {},
|
|
914
|
-
"imported":
|
|
998
|
+
"imported": false,
|
|
915
999
|
"provider": "google",
|
|
916
1000
|
"tool_calls": true
|
|
917
1001
|
},
|
|
@@ -949,7 +1033,128 @@
|
|
|
949
1033
|
"audio"
|
|
950
1034
|
],
|
|
951
1035
|
"extra": {},
|
|
952
|
-
"imported":
|
|
1036
|
+
"imported": false,
|
|
1037
|
+
"provider": "google",
|
|
1038
|
+
"tool_calls": true
|
|
1039
|
+
},
|
|
1040
|
+
"gemini-3-flash-preview": {
|
|
1041
|
+
"id": "gemini-3-flash-preview",
|
|
1042
|
+
"name": "gemini-3-flash-preview",
|
|
1043
|
+
"mode": [
|
|
1044
|
+
"chat",
|
|
1045
|
+
"llama_index",
|
|
1046
|
+
"agent",
|
|
1047
|
+
"agent_llama",
|
|
1048
|
+
"agent_openai",
|
|
1049
|
+
"expert"
|
|
1050
|
+
],
|
|
1051
|
+
"llama_index": {
|
|
1052
|
+
"args": [
|
|
1053
|
+
{
|
|
1054
|
+
"name": "model",
|
|
1055
|
+
"value": "models/gemini-3-flash-preview",
|
|
1056
|
+
"type": "str"
|
|
1057
|
+
}
|
|
1058
|
+
],
|
|
1059
|
+
"env": [
|
|
1060
|
+
{
|
|
1061
|
+
"name": "GOOGLE_API_KEY",
|
|
1062
|
+
"value": "{api_key_google}",
|
|
1063
|
+
"type": "str"
|
|
1064
|
+
}
|
|
1065
|
+
]
|
|
1066
|
+
},
|
|
1067
|
+
"ctx": 128000,
|
|
1068
|
+
"tokens": 0,
|
|
1069
|
+
"default": false,
|
|
1070
|
+
"input": [
|
|
1071
|
+
"text",
|
|
1072
|
+
"image"
|
|
1073
|
+
],
|
|
1074
|
+
"output": [
|
|
1075
|
+
"text"
|
|
1076
|
+
],
|
|
1077
|
+
"extra": {},
|
|
1078
|
+
"imported": false,
|
|
1079
|
+
"provider": "google",
|
|
1080
|
+
"tool_calls": true
|
|
1081
|
+
},
|
|
1082
|
+
"gemini-3-pro-image-preview": {
|
|
1083
|
+
"id": "gemini-3-pro-image-preview",
|
|
1084
|
+
"name": "gemini-3-pro-image-preview",
|
|
1085
|
+
"mode": [
|
|
1086
|
+
"img"
|
|
1087
|
+
],
|
|
1088
|
+
"llama_index": {
|
|
1089
|
+
"args": [
|
|
1090
|
+
{
|
|
1091
|
+
"name": "model",
|
|
1092
|
+
"value": "models/gemini-3-pro-image-preview",
|
|
1093
|
+
"type": "str"
|
|
1094
|
+
}
|
|
1095
|
+
],
|
|
1096
|
+
"env": [
|
|
1097
|
+
{
|
|
1098
|
+
"name": "GOOGLE_API_KEY",
|
|
1099
|
+
"value": "{api_key_google}",
|
|
1100
|
+
"type": "str"
|
|
1101
|
+
}
|
|
1102
|
+
]
|
|
1103
|
+
},
|
|
1104
|
+
"ctx": 128000,
|
|
1105
|
+
"tokens": 0,
|
|
1106
|
+
"default": false,
|
|
1107
|
+
"input": [
|
|
1108
|
+
"text",
|
|
1109
|
+
"image"
|
|
1110
|
+
],
|
|
1111
|
+
"output": [
|
|
1112
|
+
"image"
|
|
1113
|
+
],
|
|
1114
|
+
"extra": {},
|
|
1115
|
+
"imported": false,
|
|
1116
|
+
"provider": "google",
|
|
1117
|
+
"tool_calls": true
|
|
1118
|
+
},
|
|
1119
|
+
"gemini-3-pro-preview": {
|
|
1120
|
+
"id": "gemini-3-pro-preview",
|
|
1121
|
+
"name": "gemini-3-pro-preview",
|
|
1122
|
+
"mode": [
|
|
1123
|
+
"chat",
|
|
1124
|
+
"llama_index",
|
|
1125
|
+
"agent",
|
|
1126
|
+
"agent_llama",
|
|
1127
|
+
"agent_openai",
|
|
1128
|
+
"expert"
|
|
1129
|
+
],
|
|
1130
|
+
"llama_index": {
|
|
1131
|
+
"args": [
|
|
1132
|
+
{
|
|
1133
|
+
"name": "model",
|
|
1134
|
+
"value": "models/gemini-3-pro-preview",
|
|
1135
|
+
"type": "str"
|
|
1136
|
+
}
|
|
1137
|
+
],
|
|
1138
|
+
"env": [
|
|
1139
|
+
{
|
|
1140
|
+
"name": "GOOGLE_API_KEY",
|
|
1141
|
+
"value": "{api_key_google}",
|
|
1142
|
+
"type": "str"
|
|
1143
|
+
}
|
|
1144
|
+
]
|
|
1145
|
+
},
|
|
1146
|
+
"ctx": 128000,
|
|
1147
|
+
"tokens": 0,
|
|
1148
|
+
"default": false,
|
|
1149
|
+
"input": [
|
|
1150
|
+
"text",
|
|
1151
|
+
"image"
|
|
1152
|
+
],
|
|
1153
|
+
"output": [
|
|
1154
|
+
"text"
|
|
1155
|
+
],
|
|
1156
|
+
"extra": {},
|
|
1157
|
+
"imported": false,
|
|
953
1158
|
"provider": "google",
|
|
954
1159
|
"tool_calls": true
|
|
955
1160
|
},
|
|
@@ -1641,7 +1846,7 @@
|
|
|
1641
1846
|
"audio"
|
|
1642
1847
|
],
|
|
1643
1848
|
"extra": {},
|
|
1644
|
-
"imported":
|
|
1849
|
+
"imported": false,
|
|
1645
1850
|
"provider": "openai",
|
|
1646
1851
|
"tool_calls": true
|
|
1647
1852
|
},
|
|
@@ -2034,55 +2239,228 @@
|
|
|
2034
2239
|
"text"
|
|
2035
2240
|
],
|
|
2036
2241
|
"extra": {
|
|
2037
|
-
"reasoning_effort": "high"
|
|
2242
|
+
"reasoning_effort": "high"
|
|
2243
|
+
},
|
|
2244
|
+
"imported": false,
|
|
2245
|
+
"provider": "openai",
|
|
2246
|
+
"tool_calls": true
|
|
2247
|
+
},
|
|
2248
|
+
"gpt-5-nano-low": {
|
|
2249
|
+
"id": "gpt-5-nano",
|
|
2250
|
+
"name": "gpt-5-nano (low)",
|
|
2251
|
+
"mode": [
|
|
2252
|
+
"chat",
|
|
2253
|
+
"assistant",
|
|
2254
|
+
"llama_index",
|
|
2255
|
+
"vision",
|
|
2256
|
+
"agent",
|
|
2257
|
+
"agent_llama",
|
|
2258
|
+
"expert",
|
|
2259
|
+
"agent_openai"
|
|
2260
|
+
],
|
|
2261
|
+
"llama_index": {
|
|
2262
|
+
"args": [
|
|
2263
|
+
{
|
|
2264
|
+
"name": "model",
|
|
2265
|
+
"value": "gpt-5-nano",
|
|
2266
|
+
"type": "str"
|
|
2267
|
+
}
|
|
2268
|
+
],
|
|
2269
|
+
"env": [
|
|
2270
|
+
{
|
|
2271
|
+
"name": "OPENAI_API_KEY",
|
|
2272
|
+
"value": "{api_key}"
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
"name": "OPENAI_API_BASE",
|
|
2276
|
+
"value": "{api_endpoint}"
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2280
|
+
"value": "{api_azure_endpoint}"
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
"name": "OPENAI_API_VERSION",
|
|
2284
|
+
"value": "{api_azure_version}"
|
|
2285
|
+
}
|
|
2286
|
+
]
|
|
2287
|
+
},
|
|
2288
|
+
"ctx": 400000,
|
|
2289
|
+
"tokens": 128000,
|
|
2290
|
+
"default": true,
|
|
2291
|
+
"input": [
|
|
2292
|
+
"text",
|
|
2293
|
+
"image"
|
|
2294
|
+
],
|
|
2295
|
+
"output": [
|
|
2296
|
+
"text"
|
|
2297
|
+
],
|
|
2298
|
+
"extra": {
|
|
2299
|
+
"reasoning_effort": "low"
|
|
2300
|
+
},
|
|
2301
|
+
"imported": false,
|
|
2302
|
+
"provider": "openai",
|
|
2303
|
+
"tool_calls": true
|
|
2304
|
+
},
|
|
2305
|
+
"gpt-5-nano": {
|
|
2306
|
+
"id": "gpt-5-nano",
|
|
2307
|
+
"name": "gpt-5-nano (medium)",
|
|
2308
|
+
"mode": [
|
|
2309
|
+
"chat",
|
|
2310
|
+
"assistant",
|
|
2311
|
+
"llama_index",
|
|
2312
|
+
"vision",
|
|
2313
|
+
"agent",
|
|
2314
|
+
"agent_llama",
|
|
2315
|
+
"expert",
|
|
2316
|
+
"agent_openai"
|
|
2317
|
+
],
|
|
2318
|
+
"llama_index": {
|
|
2319
|
+
"args": [
|
|
2320
|
+
{
|
|
2321
|
+
"name": "model",
|
|
2322
|
+
"value": "gpt-5-nano",
|
|
2323
|
+
"type": "str"
|
|
2324
|
+
}
|
|
2325
|
+
],
|
|
2326
|
+
"env": [
|
|
2327
|
+
{
|
|
2328
|
+
"name": "OPENAI_API_KEY",
|
|
2329
|
+
"value": "{api_key}"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"name": "OPENAI_API_BASE",
|
|
2333
|
+
"value": "{api_endpoint}"
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2337
|
+
"value": "{api_azure_endpoint}"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"name": "OPENAI_API_VERSION",
|
|
2341
|
+
"value": "{api_azure_version}"
|
|
2342
|
+
}
|
|
2343
|
+
]
|
|
2344
|
+
},
|
|
2345
|
+
"ctx": 400000,
|
|
2346
|
+
"tokens": 128000,
|
|
2347
|
+
"default": true,
|
|
2348
|
+
"input": [
|
|
2349
|
+
"text",
|
|
2350
|
+
"image"
|
|
2351
|
+
],
|
|
2352
|
+
"output": [
|
|
2353
|
+
"text"
|
|
2354
|
+
],
|
|
2355
|
+
"extra": {},
|
|
2356
|
+
"imported": false,
|
|
2357
|
+
"provider": "openai",
|
|
2358
|
+
"tool_calls": true
|
|
2359
|
+
},
|
|
2360
|
+
"gpt-5.2-low": {
|
|
2361
|
+
"id": "gpt-5.2",
|
|
2362
|
+
"name": "gpt-5.2 (low)",
|
|
2363
|
+
"mode": [
|
|
2364
|
+
"chat",
|
|
2365
|
+
"llama_index",
|
|
2366
|
+
"agent",
|
|
2367
|
+
"agent_llama",
|
|
2368
|
+
"agent_openai",
|
|
2369
|
+
"expert"
|
|
2370
|
+
],
|
|
2371
|
+
"llama_index": {
|
|
2372
|
+
"args": [
|
|
2373
|
+
{
|
|
2374
|
+
"name": "model",
|
|
2375
|
+
"value": "gpt-5.2",
|
|
2376
|
+
"type": "str"
|
|
2377
|
+
}
|
|
2378
|
+
],
|
|
2379
|
+
"env": [
|
|
2380
|
+
{
|
|
2381
|
+
"name": "OPENAI_API_KEY",
|
|
2382
|
+
"value": "{api_key}",
|
|
2383
|
+
"type": "str"
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"name": "OPENAI_API_BASE",
|
|
2387
|
+
"value": "{api_endpoint}",
|
|
2388
|
+
"type": "str"
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2392
|
+
"value": "{api_azure_endpoint}",
|
|
2393
|
+
"type": "str"
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"name": "OPENAI_API_VERSION",
|
|
2397
|
+
"value": "{api_azure_version}",
|
|
2398
|
+
"type": "str"
|
|
2399
|
+
}
|
|
2400
|
+
]
|
|
2401
|
+
},
|
|
2402
|
+
"ctx": 400000,
|
|
2403
|
+
"tokens": 128000,
|
|
2404
|
+
"default": false,
|
|
2405
|
+
"input": [
|
|
2406
|
+
"text",
|
|
2407
|
+
"image"
|
|
2408
|
+
],
|
|
2409
|
+
"output": [
|
|
2410
|
+
"text"
|
|
2411
|
+
],
|
|
2412
|
+
"extra": {
|
|
2413
|
+
"reasoning_effort": "low"
|
|
2038
2414
|
},
|
|
2039
2415
|
"imported": false,
|
|
2040
2416
|
"provider": "openai",
|
|
2041
2417
|
"tool_calls": true
|
|
2042
2418
|
},
|
|
2043
|
-
"gpt-5-
|
|
2044
|
-
"id": "gpt-5
|
|
2045
|
-
"name": "gpt-5
|
|
2419
|
+
"gpt-5.2-medium": {
|
|
2420
|
+
"id": "gpt-5.2",
|
|
2421
|
+
"name": "gpt-5.2 (medium)",
|
|
2046
2422
|
"mode": [
|
|
2047
2423
|
"chat",
|
|
2048
|
-
"assistant",
|
|
2049
2424
|
"llama_index",
|
|
2050
|
-
"vision",
|
|
2051
2425
|
"agent",
|
|
2052
2426
|
"agent_llama",
|
|
2053
|
-
"
|
|
2054
|
-
"
|
|
2427
|
+
"agent_openai",
|
|
2428
|
+
"expert"
|
|
2055
2429
|
],
|
|
2056
2430
|
"llama_index": {
|
|
2057
2431
|
"args": [
|
|
2058
2432
|
{
|
|
2059
2433
|
"name": "model",
|
|
2060
|
-
"value": "gpt-5
|
|
2434
|
+
"value": "gpt-5.2",
|
|
2061
2435
|
"type": "str"
|
|
2062
2436
|
}
|
|
2063
2437
|
],
|
|
2064
2438
|
"env": [
|
|
2065
2439
|
{
|
|
2066
2440
|
"name": "OPENAI_API_KEY",
|
|
2067
|
-
"value": "{api_key}"
|
|
2441
|
+
"value": "{api_key}",
|
|
2442
|
+
"type": "str"
|
|
2068
2443
|
},
|
|
2069
2444
|
{
|
|
2070
2445
|
"name": "OPENAI_API_BASE",
|
|
2071
|
-
"value": "{api_endpoint}"
|
|
2446
|
+
"value": "{api_endpoint}",
|
|
2447
|
+
"type": "str"
|
|
2072
2448
|
},
|
|
2073
2449
|
{
|
|
2074
2450
|
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2075
|
-
"value": "{api_azure_endpoint}"
|
|
2451
|
+
"value": "{api_azure_endpoint}",
|
|
2452
|
+
"type": "str"
|
|
2076
2453
|
},
|
|
2077
2454
|
{
|
|
2078
2455
|
"name": "OPENAI_API_VERSION",
|
|
2079
|
-
"value": "{api_azure_version}"
|
|
2456
|
+
"value": "{api_azure_version}",
|
|
2457
|
+
"type": "str"
|
|
2080
2458
|
}
|
|
2081
2459
|
]
|
|
2082
2460
|
},
|
|
2083
2461
|
"ctx": 400000,
|
|
2084
2462
|
"tokens": 128000,
|
|
2085
|
-
"default":
|
|
2463
|
+
"default": false,
|
|
2086
2464
|
"input": [
|
|
2087
2465
|
"text",
|
|
2088
2466
|
"image"
|
|
@@ -2091,55 +2469,58 @@
|
|
|
2091
2469
|
"text"
|
|
2092
2470
|
],
|
|
2093
2471
|
"extra": {
|
|
2094
|
-
"reasoning_effort": "
|
|
2472
|
+
"reasoning_effort": "medium"
|
|
2095
2473
|
},
|
|
2096
2474
|
"imported": false,
|
|
2097
2475
|
"provider": "openai",
|
|
2098
2476
|
"tool_calls": true
|
|
2099
2477
|
},
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
"
|
|
2478
|
+
|
|
2479
|
+
"gpt-5.2-high": {
|
|
2480
|
+
"id": "gpt-5.2",
|
|
2481
|
+
"name": "gpt-5.2 (high)",
|
|
2103
2482
|
"mode": [
|
|
2104
2483
|
"chat",
|
|
2105
|
-
"assistant",
|
|
2106
2484
|
"llama_index",
|
|
2107
|
-
"vision",
|
|
2108
2485
|
"agent",
|
|
2109
2486
|
"agent_llama",
|
|
2110
|
-
"
|
|
2111
|
-
"
|
|
2487
|
+
"agent_openai",
|
|
2488
|
+
"expert"
|
|
2112
2489
|
],
|
|
2113
2490
|
"llama_index": {
|
|
2114
2491
|
"args": [
|
|
2115
2492
|
{
|
|
2116
2493
|
"name": "model",
|
|
2117
|
-
"value": "gpt-5
|
|
2494
|
+
"value": "gpt-5.2",
|
|
2118
2495
|
"type": "str"
|
|
2119
2496
|
}
|
|
2120
2497
|
],
|
|
2121
2498
|
"env": [
|
|
2122
2499
|
{
|
|
2123
2500
|
"name": "OPENAI_API_KEY",
|
|
2124
|
-
"value": "{api_key}"
|
|
2501
|
+
"value": "{api_key}",
|
|
2502
|
+
"type": "str"
|
|
2125
2503
|
},
|
|
2126
2504
|
{
|
|
2127
2505
|
"name": "OPENAI_API_BASE",
|
|
2128
|
-
"value": "{api_endpoint}"
|
|
2506
|
+
"value": "{api_endpoint}",
|
|
2507
|
+
"type": "str"
|
|
2129
2508
|
},
|
|
2130
2509
|
{
|
|
2131
2510
|
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2132
|
-
"value": "{api_azure_endpoint}"
|
|
2511
|
+
"value": "{api_azure_endpoint}",
|
|
2512
|
+
"type": "str"
|
|
2133
2513
|
},
|
|
2134
2514
|
{
|
|
2135
2515
|
"name": "OPENAI_API_VERSION",
|
|
2136
|
-
"value": "{api_azure_version}"
|
|
2516
|
+
"value": "{api_azure_version}",
|
|
2517
|
+
"type": "str"
|
|
2137
2518
|
}
|
|
2138
2519
|
]
|
|
2139
2520
|
},
|
|
2140
2521
|
"ctx": 400000,
|
|
2141
2522
|
"tokens": 128000,
|
|
2142
|
-
"default":
|
|
2523
|
+
"default": false,
|
|
2143
2524
|
"input": [
|
|
2144
2525
|
"text",
|
|
2145
2526
|
"image"
|
|
@@ -2147,7 +2528,9 @@
|
|
|
2147
2528
|
"output": [
|
|
2148
2529
|
"text"
|
|
2149
2530
|
],
|
|
2150
|
-
"extra": {
|
|
2531
|
+
"extra": {
|
|
2532
|
+
"reasoning_effort": "high"
|
|
2533
|
+
},
|
|
2151
2534
|
"imported": false,
|
|
2152
2535
|
"provider": "openai",
|
|
2153
2536
|
"tool_calls": true
|
|
@@ -2166,6 +2549,59 @@
|
|
|
2166
2549
|
"tokens": 0,
|
|
2167
2550
|
"default": true,
|
|
2168
2551
|
"input": [
|
|
2552
|
+
"text",
|
|
2553
|
+
"image"
|
|
2554
|
+
],
|
|
2555
|
+
"output": [
|
|
2556
|
+
"image"
|
|
2557
|
+
],
|
|
2558
|
+
"extra": {},
|
|
2559
|
+
"imported": false,
|
|
2560
|
+
"provider": "openai",
|
|
2561
|
+
"tool_calls": true
|
|
2562
|
+
},
|
|
2563
|
+
"gpt-image-1.5": {
|
|
2564
|
+
"id": "gpt-image-1.5",
|
|
2565
|
+
"name": "gpt-image-1.5",
|
|
2566
|
+
"mode": [
|
|
2567
|
+
"img"
|
|
2568
|
+
],
|
|
2569
|
+
"llama_index": {
|
|
2570
|
+
"args": [
|
|
2571
|
+
{
|
|
2572
|
+
"name": "model",
|
|
2573
|
+
"value": "gpt-image-1.5",
|
|
2574
|
+
"type": "str"
|
|
2575
|
+
}
|
|
2576
|
+
],
|
|
2577
|
+
"env": [
|
|
2578
|
+
{
|
|
2579
|
+
"name": "OPENAI_API_KEY",
|
|
2580
|
+
"value": "{api_key}",
|
|
2581
|
+
"type": "str"
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
"name": "OPENAI_API_BASE",
|
|
2585
|
+
"value": "{api_endpoint}",
|
|
2586
|
+
"type": "str"
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2590
|
+
"value": "{api_azure_endpoint}",
|
|
2591
|
+
"type": "str"
|
|
2592
|
+
},
|
|
2593
|
+
{
|
|
2594
|
+
"name": "OPENAI_API_VERSION",
|
|
2595
|
+
"value": "{api_azure_version}",
|
|
2596
|
+
"type": "str"
|
|
2597
|
+
}
|
|
2598
|
+
]
|
|
2599
|
+
},
|
|
2600
|
+
"ctx": 128000,
|
|
2601
|
+
"tokens": 0,
|
|
2602
|
+
"default": false,
|
|
2603
|
+
"input": [
|
|
2604
|
+
"text",
|
|
2169
2605
|
"image"
|
|
2170
2606
|
],
|
|
2171
2607
|
"output": [
|
|
@@ -2471,7 +2907,7 @@
|
|
|
2471
2907
|
"image"
|
|
2472
2908
|
],
|
|
2473
2909
|
"extra": {},
|
|
2474
|
-
"imported":
|
|
2910
|
+
"imported": false,
|
|
2475
2911
|
"provider": "x_ai",
|
|
2476
2912
|
"tool_calls": true
|
|
2477
2913
|
},
|
|
@@ -3013,6 +3449,43 @@
|
|
|
3013
3449
|
"provider": "ollama",
|
|
3014
3450
|
"tool_calls": false
|
|
3015
3451
|
},
|
|
3452
|
+
"nano-banana-pro-preview": {
|
|
3453
|
+
"id": "nano-banana-pro-preview",
|
|
3454
|
+
"name": "nano-banana-pro-preview",
|
|
3455
|
+
"mode": [
|
|
3456
|
+
"img"
|
|
3457
|
+
],
|
|
3458
|
+
"llama_index": {
|
|
3459
|
+
"args": [
|
|
3460
|
+
{
|
|
3461
|
+
"name": "model",
|
|
3462
|
+
"value": "models/nano-banana-pro-preview",
|
|
3463
|
+
"type": "str"
|
|
3464
|
+
}
|
|
3465
|
+
],
|
|
3466
|
+
"env": [
|
|
3467
|
+
{
|
|
3468
|
+
"name": "GOOGLE_API_KEY",
|
|
3469
|
+
"value": "{api_key_google}",
|
|
3470
|
+
"type": "str"
|
|
3471
|
+
}
|
|
3472
|
+
]
|
|
3473
|
+
},
|
|
3474
|
+
"ctx": 128000,
|
|
3475
|
+
"tokens": 0,
|
|
3476
|
+
"default": false,
|
|
3477
|
+
"input": [
|
|
3478
|
+
"text",
|
|
3479
|
+
"image"
|
|
3480
|
+
],
|
|
3481
|
+
"output": [
|
|
3482
|
+
"image"
|
|
3483
|
+
],
|
|
3484
|
+
"extra": {},
|
|
3485
|
+
"imported": false,
|
|
3486
|
+
"provider": "google",
|
|
3487
|
+
"tool_calls": true
|
|
3488
|
+
},
|
|
3016
3489
|
"o1": {
|
|
3017
3490
|
"id": "o1",
|
|
3018
3491
|
"name": "o1",
|
|
@@ -4058,6 +4531,58 @@
|
|
|
4058
4531
|
"provider": "perplexity",
|
|
4059
4532
|
"tool_calls": true
|
|
4060
4533
|
},
|
|
4534
|
+
"sora-2": {
|
|
4535
|
+
"id": "sora-2",
|
|
4536
|
+
"name": "sora-2",
|
|
4537
|
+
"mode": [
|
|
4538
|
+
"img"
|
|
4539
|
+
],
|
|
4540
|
+
"llama_index": {
|
|
4541
|
+
"args": [
|
|
4542
|
+
{
|
|
4543
|
+
"name": "model",
|
|
4544
|
+
"value": "sora-2",
|
|
4545
|
+
"type": "str"
|
|
4546
|
+
}
|
|
4547
|
+
],
|
|
4548
|
+
"env": [
|
|
4549
|
+
{
|
|
4550
|
+
"name": "OPENAI_API_KEY",
|
|
4551
|
+
"value": "{api_key}",
|
|
4552
|
+
"type": "str"
|
|
4553
|
+
},
|
|
4554
|
+
{
|
|
4555
|
+
"name": "OPENAI_API_BASE",
|
|
4556
|
+
"value": "{api_endpoint}",
|
|
4557
|
+
"type": "str"
|
|
4558
|
+
},
|
|
4559
|
+
{
|
|
4560
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
4561
|
+
"value": "{api_azure_endpoint}",
|
|
4562
|
+
"type": "str"
|
|
4563
|
+
},
|
|
4564
|
+
{
|
|
4565
|
+
"name": "OPENAI_API_VERSION",
|
|
4566
|
+
"value": "{api_azure_version}",
|
|
4567
|
+
"type": "str"
|
|
4568
|
+
}
|
|
4569
|
+
]
|
|
4570
|
+
},
|
|
4571
|
+
"ctx": 128000,
|
|
4572
|
+
"tokens": 0,
|
|
4573
|
+
"default": false,
|
|
4574
|
+
"input": [
|
|
4575
|
+
"text",
|
|
4576
|
+
"image"
|
|
4577
|
+
],
|
|
4578
|
+
"output": [
|
|
4579
|
+
"video"
|
|
4580
|
+
],
|
|
4581
|
+
"extra": {},
|
|
4582
|
+
"imported": false,
|
|
4583
|
+
"provider": "openai",
|
|
4584
|
+
"tool_calls": true
|
|
4585
|
+
},
|
|
4061
4586
|
"veo-3.0-fast-generate-preview": {
|
|
4062
4587
|
"id": "veo-3.0-fast-generate-preview",
|
|
4063
4588
|
"name": "veo-3.0-fast-generate-preview",
|
|
@@ -4090,7 +4615,7 @@
|
|
|
4090
4615
|
"video"
|
|
4091
4616
|
],
|
|
4092
4617
|
"extra": {},
|
|
4093
|
-
"imported":
|
|
4618
|
+
"imported": false,
|
|
4094
4619
|
"provider": "google",
|
|
4095
4620
|
"tool_calls": true
|
|
4096
4621
|
},
|
|
@@ -4126,7 +4651,81 @@
|
|
|
4126
4651
|
"video"
|
|
4127
4652
|
],
|
|
4128
4653
|
"extra": {},
|
|
4129
|
-
"imported":
|
|
4654
|
+
"imported": false,
|
|
4655
|
+
"provider": "google",
|
|
4656
|
+
"tool_calls": true
|
|
4657
|
+
},
|
|
4658
|
+
"veo-3.1-fast-generate-preview": {
|
|
4659
|
+
"id": "veo-3.1-fast-generate-preview",
|
|
4660
|
+
"name": "veo-3.1-fast-generate-preview",
|
|
4661
|
+
"mode": [
|
|
4662
|
+
"img"
|
|
4663
|
+
],
|
|
4664
|
+
"llama_index": {
|
|
4665
|
+
"args": [
|
|
4666
|
+
{
|
|
4667
|
+
"name": "model",
|
|
4668
|
+
"value": "models/veo-3.1-fast-generate-preview",
|
|
4669
|
+
"type": "str"
|
|
4670
|
+
}
|
|
4671
|
+
],
|
|
4672
|
+
"env": [
|
|
4673
|
+
{
|
|
4674
|
+
"name": "GOOGLE_API_KEY",
|
|
4675
|
+
"value": "{api_key_google}",
|
|
4676
|
+
"type": "str"
|
|
4677
|
+
}
|
|
4678
|
+
]
|
|
4679
|
+
},
|
|
4680
|
+
"ctx": 128000,
|
|
4681
|
+
"tokens": 0,
|
|
4682
|
+
"default": false,
|
|
4683
|
+
"input": [
|
|
4684
|
+
"text",
|
|
4685
|
+
"image"
|
|
4686
|
+
],
|
|
4687
|
+
"output": [
|
|
4688
|
+
"video"
|
|
4689
|
+
],
|
|
4690
|
+
"extra": {},
|
|
4691
|
+
"imported": false,
|
|
4692
|
+
"provider": "google",
|
|
4693
|
+
"tool_calls": true
|
|
4694
|
+
},
|
|
4695
|
+
"veo-3.1-generate-preview": {
|
|
4696
|
+
"id": "veo-3.1-generate-preview",
|
|
4697
|
+
"name": "veo-3.1-generate-preview",
|
|
4698
|
+
"mode": [
|
|
4699
|
+
"img"
|
|
4700
|
+
],
|
|
4701
|
+
"llama_index": {
|
|
4702
|
+
"args": [
|
|
4703
|
+
{
|
|
4704
|
+
"name": "model",
|
|
4705
|
+
"value": "models/veo-3.1-generate-preview",
|
|
4706
|
+
"type": "str"
|
|
4707
|
+
}
|
|
4708
|
+
],
|
|
4709
|
+
"env": [
|
|
4710
|
+
{
|
|
4711
|
+
"name": "GOOGLE_API_KEY",
|
|
4712
|
+
"value": "{api_key_google}",
|
|
4713
|
+
"type": "str"
|
|
4714
|
+
}
|
|
4715
|
+
]
|
|
4716
|
+
},
|
|
4717
|
+
"ctx": 128000,
|
|
4718
|
+
"tokens": 0,
|
|
4719
|
+
"default": false,
|
|
4720
|
+
"input": [
|
|
4721
|
+
"text",
|
|
4722
|
+
"image"
|
|
4723
|
+
],
|
|
4724
|
+
"output": [
|
|
4725
|
+
"video"
|
|
4726
|
+
],
|
|
4727
|
+
"extra": {},
|
|
4728
|
+
"imported": false,
|
|
4130
4729
|
"provider": "google",
|
|
4131
4730
|
"tool_calls": true
|
|
4132
4731
|
}
|