pygpt-net 2.6.30__py3-none-any.whl → 2.6.32__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 +15 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +7 -1
- pygpt_net/app_core.py +3 -1
- pygpt_net/config.py +3 -1
- pygpt_net/controller/__init__.py +9 -2
- pygpt_net/controller/audio/audio.py +38 -1
- pygpt_net/controller/audio/ui.py +2 -2
- pygpt_net/controller/chat/audio.py +1 -8
- pygpt_net/controller/chat/common.py +23 -62
- pygpt_net/controller/chat/handler/__init__.py +0 -0
- pygpt_net/controller/chat/handler/stream_worker.py +1124 -0
- pygpt_net/controller/chat/output.py +8 -3
- pygpt_net/controller/chat/stream.py +3 -1071
- pygpt_net/controller/chat/text.py +3 -2
- pygpt_net/controller/kernel/kernel.py +11 -3
- pygpt_net/controller/kernel/reply.py +5 -1
- pygpt_net/controller/lang/custom.py +2 -2
- pygpt_net/controller/media/__init__.py +12 -0
- pygpt_net/controller/media/media.py +115 -0
- pygpt_net/controller/realtime/__init__.py +12 -0
- pygpt_net/controller/realtime/manager.py +53 -0
- pygpt_net/controller/realtime/realtime.py +293 -0
- pygpt_net/controller/ui/mode.py +23 -2
- pygpt_net/controller/ui/ui.py +19 -1
- pygpt_net/core/audio/audio.py +6 -1
- pygpt_net/core/audio/backend/native/__init__.py +12 -0
- pygpt_net/core/audio/backend/{native.py → native/native.py} +426 -127
- pygpt_net/core/audio/backend/native/player.py +139 -0
- pygpt_net/core/audio/backend/native/realtime.py +250 -0
- pygpt_net/core/audio/backend/pyaudio/__init__.py +12 -0
- pygpt_net/core/audio/backend/pyaudio/playback.py +194 -0
- pygpt_net/core/audio/backend/pyaudio/pyaudio.py +923 -0
- pygpt_net/core/audio/backend/pyaudio/realtime.py +312 -0
- pygpt_net/core/audio/backend/pygame/__init__.py +12 -0
- pygpt_net/core/audio/backend/{pygame.py → pygame/pygame.py} +130 -19
- pygpt_net/core/audio/backend/shared/__init__.py +38 -0
- pygpt_net/core/audio/backend/shared/conversions.py +211 -0
- pygpt_net/core/audio/backend/shared/envelope.py +38 -0
- pygpt_net/core/audio/backend/shared/player.py +137 -0
- pygpt_net/core/audio/backend/shared/rt.py +52 -0
- pygpt_net/core/audio/capture.py +5 -0
- pygpt_net/core/audio/output.py +14 -2
- pygpt_net/core/audio/whisper.py +6 -2
- pygpt_net/core/bridge/bridge.py +2 -1
- pygpt_net/core/bridge/worker.py +4 -1
- pygpt_net/core/dispatcher/dispatcher.py +37 -1
- pygpt_net/core/events/__init__.py +2 -1
- pygpt_net/core/events/realtime.py +55 -0
- pygpt_net/core/image/image.py +56 -5
- pygpt_net/core/realtime/__init__.py +0 -0
- pygpt_net/core/realtime/options.py +87 -0
- pygpt_net/core/realtime/shared/__init__.py +0 -0
- pygpt_net/core/realtime/shared/audio.py +213 -0
- pygpt_net/core/realtime/shared/loop.py +64 -0
- pygpt_net/core/realtime/shared/session.py +59 -0
- pygpt_net/core/realtime/shared/text.py +37 -0
- pygpt_net/core/realtime/shared/tools.py +276 -0
- pygpt_net/core/realtime/shared/turn.py +38 -0
- pygpt_net/core/realtime/shared/types.py +16 -0
- pygpt_net/core/realtime/worker.py +160 -0
- pygpt_net/core/render/web/body.py +24 -3
- pygpt_net/core/text/utils.py +54 -2
- pygpt_net/core/types/__init__.py +1 -0
- pygpt_net/core/types/image.py +54 -0
- pygpt_net/core/video/__init__.py +12 -0
- pygpt_net/core/video/video.py +290 -0
- pygpt_net/data/config/config.json +26 -5
- pygpt_net/data/config/models.json +221 -103
- pygpt_net/data/config/settings.json +244 -6
- pygpt_net/data/css/web-blocks.css +6 -0
- pygpt_net/data/css/web-chatgpt.css +6 -0
- pygpt_net/data/css/web-chatgpt_wide.css +6 -0
- pygpt_net/data/locale/locale.de.ini +35 -7
- pygpt_net/data/locale/locale.en.ini +56 -17
- pygpt_net/data/locale/locale.es.ini +35 -7
- pygpt_net/data/locale/locale.fr.ini +35 -7
- pygpt_net/data/locale/locale.it.ini +35 -7
- pygpt_net/data/locale/locale.pl.ini +38 -7
- pygpt_net/data/locale/locale.uk.ini +35 -7
- pygpt_net/data/locale/locale.zh.ini +31 -3
- pygpt_net/data/locale/plugin.audio_input.en.ini +4 -0
- pygpt_net/data/locale/plugin.audio_output.en.ini +4 -0
- pygpt_net/data/locale/plugin.cmd_web.en.ini +8 -0
- pygpt_net/item/model.py +22 -1
- pygpt_net/plugin/audio_input/plugin.py +37 -4
- pygpt_net/plugin/audio_input/simple.py +57 -8
- pygpt_net/plugin/cmd_files/worker.py +3 -0
- pygpt_net/provider/api/google/__init__.py +76 -7
- pygpt_net/provider/api/google/audio.py +8 -1
- pygpt_net/provider/api/google/chat.py +45 -6
- pygpt_net/provider/api/google/image.py +226 -86
- pygpt_net/provider/api/google/realtime/__init__.py +12 -0
- pygpt_net/provider/api/google/realtime/client.py +1945 -0
- pygpt_net/provider/api/google/realtime/realtime.py +186 -0
- pygpt_net/provider/api/google/video.py +364 -0
- pygpt_net/provider/api/openai/__init__.py +22 -2
- pygpt_net/provider/api/openai/realtime/__init__.py +12 -0
- pygpt_net/provider/api/openai/realtime/client.py +1828 -0
- pygpt_net/provider/api/openai/realtime/realtime.py +193 -0
- pygpt_net/provider/audio_input/google_genai.py +103 -0
- pygpt_net/provider/audio_output/google_genai_tts.py +229 -0
- pygpt_net/provider/audio_output/google_tts.py +0 -12
- pygpt_net/provider/audio_output/openai_tts.py +8 -5
- pygpt_net/provider/core/config/patch.py +241 -178
- pygpt_net/provider/core/model/patch.py +28 -2
- pygpt_net/provider/llms/google.py +8 -9
- pygpt_net/provider/web/duckduck_search.py +212 -0
- pygpt_net/ui/layout/toolbox/audio.py +55 -0
- pygpt_net/ui/layout/toolbox/footer.py +14 -42
- pygpt_net/ui/layout/toolbox/image.py +7 -13
- pygpt_net/ui/layout/toolbox/raw.py +52 -0
- pygpt_net/ui/layout/toolbox/split.py +48 -0
- pygpt_net/ui/layout/toolbox/toolbox.py +8 -8
- pygpt_net/ui/layout/toolbox/video.py +49 -0
- pygpt_net/ui/widget/option/combo.py +15 -1
- {pygpt_net-2.6.30.dist-info → pygpt_net-2.6.32.dist-info}/METADATA +46 -22
- {pygpt_net-2.6.30.dist-info → pygpt_net-2.6.32.dist-info}/RECORD +121 -73
- pygpt_net/core/audio/backend/pyaudio.py +0 -554
- {pygpt_net-2.6.30.dist-info → pygpt_net-2.6.32.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.30.dist-info → pygpt_net-2.6.32.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.30.dist-info → pygpt_net-2.6.32.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.32",
|
|
4
|
+
"app.version": "2.6.32",
|
|
5
|
+
"updated_at": "2025-09-02T23:07:35"
|
|
6
6
|
},
|
|
7
7
|
"items": {
|
|
8
8
|
"SpeakLeash/bielik-11b-v2.3-instruct:Q4_K_M": {
|
|
@@ -873,6 +873,44 @@
|
|
|
873
873
|
"provider": "google",
|
|
874
874
|
"tool_calls": true
|
|
875
875
|
},
|
|
876
|
+
"gemini-2.5-flash-preview-native-audio-dialog": {
|
|
877
|
+
"id": "gemini-2.5-flash-preview-native-audio-dialog",
|
|
878
|
+
"name": "gemini-2.5-flash-preview-native-audio-dialog",
|
|
879
|
+
"mode": [
|
|
880
|
+
"audio"
|
|
881
|
+
],
|
|
882
|
+
"llama_index": {
|
|
883
|
+
"args": [
|
|
884
|
+
{
|
|
885
|
+
"name": "model",
|
|
886
|
+
"value": "models/gemini-2.5-flash-preview-native-audio-dialog",
|
|
887
|
+
"type": "str"
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"env": [
|
|
891
|
+
{
|
|
892
|
+
"name": "GOOGLE_API_KEY",
|
|
893
|
+
"value": "{api_key_google}",
|
|
894
|
+
"type": "str"
|
|
895
|
+
}
|
|
896
|
+
]
|
|
897
|
+
},
|
|
898
|
+
"ctx": 128000,
|
|
899
|
+
"tokens": 8000,
|
|
900
|
+
"default": false,
|
|
901
|
+
"input": [
|
|
902
|
+
"text",
|
|
903
|
+
"audio"
|
|
904
|
+
],
|
|
905
|
+
"output": [
|
|
906
|
+
"text",
|
|
907
|
+
"audio"
|
|
908
|
+
],
|
|
909
|
+
"extra": {},
|
|
910
|
+
"imported": true,
|
|
911
|
+
"provider": "google",
|
|
912
|
+
"tool_calls": true
|
|
913
|
+
},
|
|
876
914
|
"gemini-2.5-pro": {
|
|
877
915
|
"id": "gemini-2.5-pro",
|
|
878
916
|
"name": "gemini-2.5-pro",
|
|
@@ -1457,55 +1495,6 @@
|
|
|
1457
1495
|
"provider": "openai",
|
|
1458
1496
|
"tool_calls": true
|
|
1459
1497
|
},
|
|
1460
|
-
"gpt-4o-audio-preview": {
|
|
1461
|
-
"id": "gpt-4o-audio-preview",
|
|
1462
|
-
"name": "gpt-4o-audio-preview",
|
|
1463
|
-
"mode": [
|
|
1464
|
-
"audio"
|
|
1465
|
-
],
|
|
1466
|
-
"llama_index": {
|
|
1467
|
-
"args": [
|
|
1468
|
-
{
|
|
1469
|
-
"name": "model",
|
|
1470
|
-
"value": "gpt-4o-audio-preview",
|
|
1471
|
-
"type": "str"
|
|
1472
|
-
}
|
|
1473
|
-
],
|
|
1474
|
-
"env": [
|
|
1475
|
-
{
|
|
1476
|
-
"name": "OPENAI_API_KEY",
|
|
1477
|
-
"value": "{api_key}"
|
|
1478
|
-
},
|
|
1479
|
-
{
|
|
1480
|
-
"name": "OPENAI_API_BASE",
|
|
1481
|
-
"value": "{api_endpoint}"
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
"name": "AZURE_OPENAI_ENDPOINT",
|
|
1485
|
-
"value": "{api_azure_endpoint}"
|
|
1486
|
-
},
|
|
1487
|
-
{
|
|
1488
|
-
"name": "OPENAI_API_VERSION",
|
|
1489
|
-
"value": "{api_azure_version}"
|
|
1490
|
-
}
|
|
1491
|
-
]
|
|
1492
|
-
},
|
|
1493
|
-
"ctx": 128000,
|
|
1494
|
-
"tokens": 16384,
|
|
1495
|
-
"default": false,
|
|
1496
|
-
"input": [
|
|
1497
|
-
"text",
|
|
1498
|
-
"audio"
|
|
1499
|
-
],
|
|
1500
|
-
"output": [
|
|
1501
|
-
"text",
|
|
1502
|
-
"audio"
|
|
1503
|
-
],
|
|
1504
|
-
"extra": {},
|
|
1505
|
-
"imported": false,
|
|
1506
|
-
"provider": "openai",
|
|
1507
|
-
"tool_calls": true
|
|
1508
|
-
},
|
|
1509
1498
|
"gpt-4o-mini": {
|
|
1510
1499
|
"id": "gpt-4o-mini",
|
|
1511
1500
|
"name": "gpt-4o-mini",
|
|
@@ -1561,55 +1550,6 @@
|
|
|
1561
1550
|
"provider": "openai",
|
|
1562
1551
|
"tool_calls": true
|
|
1563
1552
|
},
|
|
1564
|
-
"gpt-4o-mini-audio-preview": {
|
|
1565
|
-
"id": "gpt-4o-mini-audio-preview",
|
|
1566
|
-
"name": "gpt-4o-mini-audio-preview",
|
|
1567
|
-
"mode": [
|
|
1568
|
-
"audio"
|
|
1569
|
-
],
|
|
1570
|
-
"llama_index": {
|
|
1571
|
-
"args": [
|
|
1572
|
-
{
|
|
1573
|
-
"name": "model",
|
|
1574
|
-
"value": "gpt-4o-mini-audio-preview",
|
|
1575
|
-
"type": "str"
|
|
1576
|
-
}
|
|
1577
|
-
],
|
|
1578
|
-
"env": [
|
|
1579
|
-
{
|
|
1580
|
-
"name": "OPENAI_API_KEY",
|
|
1581
|
-
"value": "{api_key}"
|
|
1582
|
-
},
|
|
1583
|
-
{
|
|
1584
|
-
"name": "OPENAI_API_BASE",
|
|
1585
|
-
"value": "{api_endpoint}"
|
|
1586
|
-
},
|
|
1587
|
-
{
|
|
1588
|
-
"name": "AZURE_OPENAI_ENDPOINT",
|
|
1589
|
-
"value": "{api_azure_endpoint}"
|
|
1590
|
-
},
|
|
1591
|
-
{
|
|
1592
|
-
"name": "OPENAI_API_VERSION",
|
|
1593
|
-
"value": "{api_azure_version}"
|
|
1594
|
-
}
|
|
1595
|
-
]
|
|
1596
|
-
},
|
|
1597
|
-
"ctx": 128000,
|
|
1598
|
-
"tokens": 16384,
|
|
1599
|
-
"default": false,
|
|
1600
|
-
"input": [
|
|
1601
|
-
"text",
|
|
1602
|
-
"audio"
|
|
1603
|
-
],
|
|
1604
|
-
"output": [
|
|
1605
|
-
"text",
|
|
1606
|
-
"audio"
|
|
1607
|
-
],
|
|
1608
|
-
"extra": {},
|
|
1609
|
-
"imported": false,
|
|
1610
|
-
"provider": "openai",
|
|
1611
|
-
"tool_calls": true
|
|
1612
|
-
},
|
|
1613
1553
|
"gpt-5": {
|
|
1614
1554
|
"id": "gpt-5",
|
|
1615
1555
|
"name": "gpt-5 (medium)",
|
|
@@ -2303,6 +2243,112 @@
|
|
|
2303
2243
|
"provider": "ollama",
|
|
2304
2244
|
"tool_calls": true
|
|
2305
2245
|
},
|
|
2246
|
+
"gpt-realtime": {
|
|
2247
|
+
"id": "gpt-realtime",
|
|
2248
|
+
"name": "gpt-realtime",
|
|
2249
|
+
"mode": [
|
|
2250
|
+
"audio"
|
|
2251
|
+
],
|
|
2252
|
+
"llama_index": {
|
|
2253
|
+
"args": [
|
|
2254
|
+
{
|
|
2255
|
+
"name": "model",
|
|
2256
|
+
"value": "gpt-realtime",
|
|
2257
|
+
"type": "str"
|
|
2258
|
+
}
|
|
2259
|
+
],
|
|
2260
|
+
"env": [
|
|
2261
|
+
{
|
|
2262
|
+
"name": "OPENAI_API_KEY",
|
|
2263
|
+
"value": "{api_key}",
|
|
2264
|
+
"type": "str"
|
|
2265
|
+
},
|
|
2266
|
+
{
|
|
2267
|
+
"name": "OPENAI_API_BASE",
|
|
2268
|
+
"value": "{api_endpoint}",
|
|
2269
|
+
"type": "str"
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2273
|
+
"value": "{api_azure_endpoint}",
|
|
2274
|
+
"type": "str"
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
"name": "OPENAI_API_VERSION",
|
|
2278
|
+
"value": "{api_azure_version}",
|
|
2279
|
+
"type": "str"
|
|
2280
|
+
}
|
|
2281
|
+
]
|
|
2282
|
+
},
|
|
2283
|
+
"ctx": 32000,
|
|
2284
|
+
"tokens": 4096,
|
|
2285
|
+
"default": true,
|
|
2286
|
+
"input": [
|
|
2287
|
+
"text",
|
|
2288
|
+
"audio"
|
|
2289
|
+
],
|
|
2290
|
+
"output": [
|
|
2291
|
+
"text",
|
|
2292
|
+
"audio"
|
|
2293
|
+
],
|
|
2294
|
+
"extra": {},
|
|
2295
|
+
"imported": false,
|
|
2296
|
+
"provider": "openai",
|
|
2297
|
+
"tool_calls": true
|
|
2298
|
+
},
|
|
2299
|
+
"gpt-4o-realtime-preview": {
|
|
2300
|
+
"id": "gpt-4o-realtime-preview",
|
|
2301
|
+
"name": "gpt-4o-realtime-preview",
|
|
2302
|
+
"mode": [
|
|
2303
|
+
"audio"
|
|
2304
|
+
],
|
|
2305
|
+
"llama_index": {
|
|
2306
|
+
"args": [
|
|
2307
|
+
{
|
|
2308
|
+
"name": "model",
|
|
2309
|
+
"value": "gpt-4o-realtime-preview",
|
|
2310
|
+
"type": "str"
|
|
2311
|
+
}
|
|
2312
|
+
],
|
|
2313
|
+
"env": [
|
|
2314
|
+
{
|
|
2315
|
+
"name": "OPENAI_API_KEY",
|
|
2316
|
+
"value": "{api_key}",
|
|
2317
|
+
"type": "str"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"name": "OPENAI_API_BASE",
|
|
2321
|
+
"value": "{api_endpoint}",
|
|
2322
|
+
"type": "str"
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2326
|
+
"value": "{api_azure_endpoint}",
|
|
2327
|
+
"type": "str"
|
|
2328
|
+
},
|
|
2329
|
+
{
|
|
2330
|
+
"name": "OPENAI_API_VERSION",
|
|
2331
|
+
"value": "{api_azure_version}",
|
|
2332
|
+
"type": "str"
|
|
2333
|
+
}
|
|
2334
|
+
]
|
|
2335
|
+
},
|
|
2336
|
+
"ctx": 32000,
|
|
2337
|
+
"tokens": 4096,
|
|
2338
|
+
"default": false,
|
|
2339
|
+
"input": [
|
|
2340
|
+
"text",
|
|
2341
|
+
"audio"
|
|
2342
|
+
],
|
|
2343
|
+
"output": [
|
|
2344
|
+
"text",
|
|
2345
|
+
"audio"
|
|
2346
|
+
],
|
|
2347
|
+
"extra": {},
|
|
2348
|
+
"imported": true,
|
|
2349
|
+
"provider": "openai",
|
|
2350
|
+
"tool_calls": true
|
|
2351
|
+
},
|
|
2306
2352
|
"grok-2-vision": {
|
|
2307
2353
|
"id": "grok-2-vision",
|
|
2308
2354
|
"name": "grok-2-vision",
|
|
@@ -2597,7 +2643,7 @@
|
|
|
2597
2643
|
"image"
|
|
2598
2644
|
],
|
|
2599
2645
|
"extra": {},
|
|
2600
|
-
"imported":
|
|
2646
|
+
"imported": false,
|
|
2601
2647
|
"provider": "google",
|
|
2602
2648
|
"tool_calls": true
|
|
2603
2649
|
},
|
|
@@ -2633,7 +2679,7 @@
|
|
|
2633
2679
|
"image"
|
|
2634
2680
|
],
|
|
2635
2681
|
"extra": {},
|
|
2636
|
-
"imported":
|
|
2682
|
+
"imported": false,
|
|
2637
2683
|
"provider": "google",
|
|
2638
2684
|
"tool_calls": true
|
|
2639
2685
|
},
|
|
@@ -3927,6 +3973,78 @@
|
|
|
3927
3973
|
"imported": false,
|
|
3928
3974
|
"provider": "perplexity",
|
|
3929
3975
|
"tool_calls": true
|
|
3976
|
+
},
|
|
3977
|
+
"veo-3.0-generate-preview": {
|
|
3978
|
+
"id": "veo-3.0-generate-preview",
|
|
3979
|
+
"name": "veo-3.0-generate-preview",
|
|
3980
|
+
"mode": [
|
|
3981
|
+
"img"
|
|
3982
|
+
],
|
|
3983
|
+
"llama_index": {
|
|
3984
|
+
"args": [
|
|
3985
|
+
{
|
|
3986
|
+
"name": "model",
|
|
3987
|
+
"value": "models/veo-3.0-generate-preview",
|
|
3988
|
+
"type": "str"
|
|
3989
|
+
}
|
|
3990
|
+
],
|
|
3991
|
+
"env": [
|
|
3992
|
+
{
|
|
3993
|
+
"name": "GOOGLE_API_KEY",
|
|
3994
|
+
"value": "{api_key_google}",
|
|
3995
|
+
"type": "str"
|
|
3996
|
+
}
|
|
3997
|
+
]
|
|
3998
|
+
},
|
|
3999
|
+
"ctx": 128000,
|
|
4000
|
+
"tokens": 0,
|
|
4001
|
+
"default": false,
|
|
4002
|
+
"input": [
|
|
4003
|
+
"text"
|
|
4004
|
+
],
|
|
4005
|
+
"output": [
|
|
4006
|
+
"video"
|
|
4007
|
+
],
|
|
4008
|
+
"extra": {},
|
|
4009
|
+
"imported": true,
|
|
4010
|
+
"provider": "google",
|
|
4011
|
+
"tool_calls": true
|
|
4012
|
+
},
|
|
4013
|
+
"veo-3.0-fast-generate-preview": {
|
|
4014
|
+
"id": "veo-3.0-fast-generate-preview",
|
|
4015
|
+
"name": "veo-3.0-fast-generate-preview",
|
|
4016
|
+
"mode": [
|
|
4017
|
+
"img"
|
|
4018
|
+
],
|
|
4019
|
+
"llama_index": {
|
|
4020
|
+
"args": [
|
|
4021
|
+
{
|
|
4022
|
+
"name": "model",
|
|
4023
|
+
"value": "models/veo-3.0-fast-generate-preview",
|
|
4024
|
+
"type": "str"
|
|
4025
|
+
}
|
|
4026
|
+
],
|
|
4027
|
+
"env": [
|
|
4028
|
+
{
|
|
4029
|
+
"name": "GOOGLE_API_KEY",
|
|
4030
|
+
"value": "{api_key_google}",
|
|
4031
|
+
"type": "str"
|
|
4032
|
+
}
|
|
4033
|
+
]
|
|
4034
|
+
},
|
|
4035
|
+
"ctx": 128000,
|
|
4036
|
+
"tokens": 0,
|
|
4037
|
+
"default": false,
|
|
4038
|
+
"input": [
|
|
4039
|
+
"text"
|
|
4040
|
+
],
|
|
4041
|
+
"output": [
|
|
4042
|
+
"video"
|
|
4043
|
+
],
|
|
4044
|
+
"extra": {},
|
|
4045
|
+
"imported": true,
|
|
4046
|
+
"provider": "google",
|
|
4047
|
+
"tool_calls": true
|
|
3930
4048
|
}
|
|
3931
4049
|
}
|
|
3932
4050
|
}
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"multiplier": null,
|
|
82
82
|
"step": null,
|
|
83
83
|
"secret": false,
|
|
84
|
-
"advanced":
|
|
84
|
+
"advanced": true,
|
|
85
85
|
"tab": "OpenAI"
|
|
86
86
|
},
|
|
87
87
|
"api_use_responses_llama": {
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"multiplier": null,
|
|
97
97
|
"step": null,
|
|
98
98
|
"secret": false,
|
|
99
|
-
"advanced":
|
|
99
|
+
"advanced": true,
|
|
100
100
|
"tab": "OpenAI"
|
|
101
101
|
},
|
|
102
102
|
"api_key_google": {
|
|
@@ -148,6 +148,66 @@
|
|
|
148
148
|
"advanced": false,
|
|
149
149
|
"tab": "Google"
|
|
150
150
|
},
|
|
151
|
+
"api_native_google.use_vertex": {
|
|
152
|
+
"section": "api_keys",
|
|
153
|
+
"type": "bool",
|
|
154
|
+
"slider": false,
|
|
155
|
+
"label": "settings.api_native_google.use_vertex",
|
|
156
|
+
"description": "settings.api_native_google.use_vertex.desc",
|
|
157
|
+
"value": true,
|
|
158
|
+
"min": null,
|
|
159
|
+
"max": null,
|
|
160
|
+
"multiplier": null,
|
|
161
|
+
"step": null,
|
|
162
|
+
"secret": false,
|
|
163
|
+
"advanced": true,
|
|
164
|
+
"tab": "Google"
|
|
165
|
+
},
|
|
166
|
+
"api_native_google.cloud_project": {
|
|
167
|
+
"section": "api_keys",
|
|
168
|
+
"type": "text",
|
|
169
|
+
"slider": false,
|
|
170
|
+
"label": "settings.api_native_google.cloud_project",
|
|
171
|
+
"description": "settings.api_native_google.cloud_project.desc",
|
|
172
|
+
"value": "",
|
|
173
|
+
"min": null,
|
|
174
|
+
"max": null,
|
|
175
|
+
"multiplier": null,
|
|
176
|
+
"step": null,
|
|
177
|
+
"secret": false,
|
|
178
|
+
"advanced": true,
|
|
179
|
+
"tab": "Google"
|
|
180
|
+
},
|
|
181
|
+
"api_native_google.cloud_location": {
|
|
182
|
+
"section": "api_keys",
|
|
183
|
+
"type": "text",
|
|
184
|
+
"slider": false,
|
|
185
|
+
"label": "settings.api_native_google.cloud_location",
|
|
186
|
+
"description": "settings.api_native_google.cloud_location.desc",
|
|
187
|
+
"value": "us-central1",
|
|
188
|
+
"min": null,
|
|
189
|
+
"max": null,
|
|
190
|
+
"multiplier": null,
|
|
191
|
+
"step": null,
|
|
192
|
+
"secret": false,
|
|
193
|
+
"advanced": true,
|
|
194
|
+
"tab": "Google"
|
|
195
|
+
},
|
|
196
|
+
"api_native_google.app_credentials": {
|
|
197
|
+
"section": "api_keys",
|
|
198
|
+
"type": "text",
|
|
199
|
+
"slider": false,
|
|
200
|
+
"label": "settings.api_native_google.app_credentials",
|
|
201
|
+
"description": "settings.api_native_google.app_credentials.desc",
|
|
202
|
+
"value": "us-central1",
|
|
203
|
+
"min": null,
|
|
204
|
+
"max": null,
|
|
205
|
+
"multiplier": null,
|
|
206
|
+
"step": null,
|
|
207
|
+
"secret": false,
|
|
208
|
+
"advanced": true,
|
|
209
|
+
"tab": "Google"
|
|
210
|
+
},
|
|
151
211
|
"api_key_anthropic": {
|
|
152
212
|
"section": "api_keys",
|
|
153
213
|
"type": "text",
|
|
@@ -1256,6 +1316,19 @@
|
|
|
1256
1316
|
"step": null,
|
|
1257
1317
|
"advanced": false
|
|
1258
1318
|
},
|
|
1319
|
+
"prompt.video": {
|
|
1320
|
+
"section": "prompts",
|
|
1321
|
+
"type": "textarea",
|
|
1322
|
+
"slider": false,
|
|
1323
|
+
"label": "settings.prompt.video",
|
|
1324
|
+
"description": "settings.prompt.video.desc",
|
|
1325
|
+
"value": "",
|
|
1326
|
+
"min": null,
|
|
1327
|
+
"max": null,
|
|
1328
|
+
"multiplier": null,
|
|
1329
|
+
"step": null,
|
|
1330
|
+
"advanced": false
|
|
1331
|
+
},
|
|
1259
1332
|
"img_resolution": {
|
|
1260
1333
|
"section": "images",
|
|
1261
1334
|
"type": "combo",
|
|
@@ -1294,7 +1367,8 @@
|
|
|
1294
1367
|
{"2560x1792": "[Imagen 4.0] 2560x1792"},
|
|
1295
1368
|
{"1536x2816": "[Imagen 4.0] 1536x2816"},
|
|
1296
1369
|
{"2816x1536": "[Imagen 4.0] 2816x1536"}
|
|
1297
|
-
]
|
|
1370
|
+
],
|
|
1371
|
+
"tab": "image"
|
|
1298
1372
|
},
|
|
1299
1373
|
"img_quality": {
|
|
1300
1374
|
"section": "images",
|
|
@@ -1315,7 +1389,8 @@
|
|
|
1315
1389
|
{"standard": "[DALL-E 3] standard"},
|
|
1316
1390
|
{"hd": "[DALL-E 3] hd"},
|
|
1317
1391
|
{"standard": "[DALL-E 2] standard"}
|
|
1318
|
-
]
|
|
1392
|
+
],
|
|
1393
|
+
"tab": "image"
|
|
1319
1394
|
},
|
|
1320
1395
|
"img_prompt_model": {
|
|
1321
1396
|
"section": "images",
|
|
@@ -1323,12 +1398,125 @@
|
|
|
1323
1398
|
"use": "models",
|
|
1324
1399
|
"slider": false,
|
|
1325
1400
|
"label": "settings.img_prompt_model",
|
|
1326
|
-
"
|
|
1401
|
+
"description": "settings.img_prompt_model.desc",
|
|
1402
|
+
"value": "gpt-4o",
|
|
1327
1403
|
"min": null,
|
|
1328
1404
|
"max": null,
|
|
1329
1405
|
"multiplier": null,
|
|
1330
1406
|
"step": null,
|
|
1331
|
-
"
|
|
1407
|
+
"tab": "image"
|
|
1408
|
+
},
|
|
1409
|
+
"video.aspect_ratio": {
|
|
1410
|
+
"section": "images",
|
|
1411
|
+
"type": "text",
|
|
1412
|
+
"slider": false,
|
|
1413
|
+
"label": "settings.video.aspect_ratio",
|
|
1414
|
+
"description": "settings.video.aspect_ratio.desc",
|
|
1415
|
+
"value": "",
|
|
1416
|
+
"min": null,
|
|
1417
|
+
"max": null,
|
|
1418
|
+
"multiplier": null,
|
|
1419
|
+
"step": null,
|
|
1420
|
+
"advanced": false,
|
|
1421
|
+
"tab": "video"
|
|
1422
|
+
},
|
|
1423
|
+
"video.duration": {
|
|
1424
|
+
"section": "images",
|
|
1425
|
+
"type": "int",
|
|
1426
|
+
"slider": false,
|
|
1427
|
+
"label": "settings.video.duration",
|
|
1428
|
+
"description": "settings.video.duration.desc",
|
|
1429
|
+
"value": "",
|
|
1430
|
+
"min": 1,
|
|
1431
|
+
"max": null,
|
|
1432
|
+
"multiplier": null,
|
|
1433
|
+
"step": null,
|
|
1434
|
+
"advanced": false,
|
|
1435
|
+
"tab": "video"
|
|
1436
|
+
},
|
|
1437
|
+
"video.fps": {
|
|
1438
|
+
"section": "images",
|
|
1439
|
+
"type": "int",
|
|
1440
|
+
"slider": false,
|
|
1441
|
+
"label": "settings.video.fps",
|
|
1442
|
+
"description": "settings.video.fps.desc",
|
|
1443
|
+
"value": "",
|
|
1444
|
+
"min": null,
|
|
1445
|
+
"max": null,
|
|
1446
|
+
"multiplier": null,
|
|
1447
|
+
"step": null,
|
|
1448
|
+
"advanced": false,
|
|
1449
|
+
"tab": "video"
|
|
1450
|
+
},
|
|
1451
|
+
"video.seed": {
|
|
1452
|
+
"section": "images",
|
|
1453
|
+
"type": "text",
|
|
1454
|
+
"slider": false,
|
|
1455
|
+
"label": "settings.video.seed",
|
|
1456
|
+
"description": "settings.video.seed.desc",
|
|
1457
|
+
"value": "",
|
|
1458
|
+
"min": null,
|
|
1459
|
+
"max": null,
|
|
1460
|
+
"multiplier": null,
|
|
1461
|
+
"step": null,
|
|
1462
|
+
"advanced": false,
|
|
1463
|
+
"tab": "video"
|
|
1464
|
+
},
|
|
1465
|
+
"video.generate_audio": {
|
|
1466
|
+
"section": "images",
|
|
1467
|
+
"type": "bool",
|
|
1468
|
+
"slider": false,
|
|
1469
|
+
"label": "settings.video.generate_audio",
|
|
1470
|
+
"description": "settings.video.generate_audio.desc",
|
|
1471
|
+
"value": false,
|
|
1472
|
+
"min": null,
|
|
1473
|
+
"max": null,
|
|
1474
|
+
"multiplier": null,
|
|
1475
|
+
"step": null,
|
|
1476
|
+
"advanced": false,
|
|
1477
|
+
"tab": "video"
|
|
1478
|
+
},
|
|
1479
|
+
"video.resolution": {
|
|
1480
|
+
"section": "images",
|
|
1481
|
+
"type": "text",
|
|
1482
|
+
"slider": false,
|
|
1483
|
+
"label": "settings.video.resolution",
|
|
1484
|
+
"description": "settings.video.resolution.desc",
|
|
1485
|
+
"value": "",
|
|
1486
|
+
"min": null,
|
|
1487
|
+
"max": null,
|
|
1488
|
+
"multiplier": null,
|
|
1489
|
+
"step": null,
|
|
1490
|
+
"advanced": false,
|
|
1491
|
+
"tab": "video"
|
|
1492
|
+
},
|
|
1493
|
+
"video.negative_prompt": {
|
|
1494
|
+
"section": "images",
|
|
1495
|
+
"type": "textarea",
|
|
1496
|
+
"slider": false,
|
|
1497
|
+
"label": "settings.video.negative_prompt",
|
|
1498
|
+
"description": "settings.video.negative_prompt.desc",
|
|
1499
|
+
"value": "",
|
|
1500
|
+
"min": null,
|
|
1501
|
+
"max": null,
|
|
1502
|
+
"multiplier": null,
|
|
1503
|
+
"step": null,
|
|
1504
|
+
"advanced": false,
|
|
1505
|
+
"tab": "video"
|
|
1506
|
+
},
|
|
1507
|
+
"video.prompt_model": {
|
|
1508
|
+
"section": "images",
|
|
1509
|
+
"type": "combo",
|
|
1510
|
+
"use": "models",
|
|
1511
|
+
"slider": false,
|
|
1512
|
+
"label": "settings.video.prompt_model",
|
|
1513
|
+
"description": "settings.video.prompt_model.desc",
|
|
1514
|
+
"value": "gemini-2.5-flash",
|
|
1515
|
+
"min": null,
|
|
1516
|
+
"max": null,
|
|
1517
|
+
"multiplier": null,
|
|
1518
|
+
"step": null,
|
|
1519
|
+
"tab": "video"
|
|
1332
1520
|
},
|
|
1333
1521
|
"vision.capture.idx": {
|
|
1334
1522
|
"section": "vision",
|
|
@@ -1501,6 +1689,30 @@
|
|
|
1501
1689
|
"advanced": false,
|
|
1502
1690
|
"tab": "options"
|
|
1503
1691
|
},
|
|
1692
|
+
"audio.input.vad.prefix": {
|
|
1693
|
+
"section": "audio",
|
|
1694
|
+
"type": "int",
|
|
1695
|
+
"slider": false,
|
|
1696
|
+
"label": "settings.audio.input.vad.prefix",
|
|
1697
|
+
"value": 300,
|
|
1698
|
+
"min": 0,
|
|
1699
|
+
"multiplier": 1,
|
|
1700
|
+
"step": 1,
|
|
1701
|
+
"advanced": false,
|
|
1702
|
+
"tab": "options"
|
|
1703
|
+
},
|
|
1704
|
+
"audio.input.vad.silence": {
|
|
1705
|
+
"section": "audio",
|
|
1706
|
+
"type": "int",
|
|
1707
|
+
"slider": false,
|
|
1708
|
+
"label": "settings.audio.input.vad.silence",
|
|
1709
|
+
"value": 2000,
|
|
1710
|
+
"min": 0,
|
|
1711
|
+
"multiplier": 1,
|
|
1712
|
+
"step": 1,
|
|
1713
|
+
"advanced": false,
|
|
1714
|
+
"tab": "options"
|
|
1715
|
+
},
|
|
1504
1716
|
"audio.cache.enabled": {
|
|
1505
1717
|
"section": "audio",
|
|
1506
1718
|
"type": "bool",
|
|
@@ -1655,6 +1867,20 @@
|
|
|
1655
1867
|
"advanced": false,
|
|
1656
1868
|
"tab": "Google"
|
|
1657
1869
|
},
|
|
1870
|
+
"remote_tools.google.url_ctx": {
|
|
1871
|
+
"section": "remote_tools",
|
|
1872
|
+
"type": "bool",
|
|
1873
|
+
"slider": false,
|
|
1874
|
+
"label": "settings.remote_tools.google.url_ctx",
|
|
1875
|
+
"description": "settings.remote_tools.google.url_ctx.desc",
|
|
1876
|
+
"value": true,
|
|
1877
|
+
"min": null,
|
|
1878
|
+
"max": null,
|
|
1879
|
+
"multiplier": null,
|
|
1880
|
+
"step": null,
|
|
1881
|
+
"advanced": false,
|
|
1882
|
+
"tab": "Google"
|
|
1883
|
+
},
|
|
1658
1884
|
"llama.idx.list": {
|
|
1659
1885
|
"section": "llama-index",
|
|
1660
1886
|
"type": "dict",
|
|
@@ -2406,6 +2632,18 @@
|
|
|
2406
2632
|
"step": null,
|
|
2407
2633
|
"advanced": false
|
|
2408
2634
|
},
|
|
2635
|
+
"log.realtime": {
|
|
2636
|
+
"section": "debug",
|
|
2637
|
+
"type": "bool",
|
|
2638
|
+
"slider": false,
|
|
2639
|
+
"label": "Log Realtime sessions to console",
|
|
2640
|
+
"value": false,
|
|
2641
|
+
"min": null,
|
|
2642
|
+
"max": null,
|
|
2643
|
+
"multiplier": null,
|
|
2644
|
+
"step": null,
|
|
2645
|
+
"advanced": false
|
|
2646
|
+
},
|
|
2409
2647
|
"log.assistants": {
|
|
2410
2648
|
"section": "debug",
|
|
2411
2649
|
"type": "bool",
|