pygpt-net 2.6.29__py3-none-any.whl → 2.6.31__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 (182) hide show
  1. pygpt_net/CHANGELOG.txt +15 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +4 -0
  4. pygpt_net/{container.py → app_core.py} +5 -6
  5. pygpt_net/controller/__init__.py +5 -2
  6. pygpt_net/controller/access/control.py +1 -9
  7. pygpt_net/controller/assistant/assistant.py +4 -4
  8. pygpt_net/controller/assistant/batch.py +7 -7
  9. pygpt_net/controller/assistant/files.py +4 -4
  10. pygpt_net/controller/assistant/threads.py +3 -3
  11. pygpt_net/controller/attachment/attachment.py +4 -7
  12. pygpt_net/controller/audio/audio.py +25 -1
  13. pygpt_net/controller/audio/ui.py +2 -2
  14. pygpt_net/controller/chat/audio.py +1 -8
  15. pygpt_net/controller/chat/common.py +30 -4
  16. pygpt_net/controller/chat/handler/stream_worker.py +1124 -0
  17. pygpt_net/controller/chat/output.py +8 -3
  18. pygpt_net/controller/chat/stream.py +4 -405
  19. pygpt_net/controller/chat/text.py +3 -2
  20. pygpt_net/controller/chat/vision.py +11 -19
  21. pygpt_net/controller/config/placeholder.py +1 -1
  22. pygpt_net/controller/ctx/ctx.py +1 -1
  23. pygpt_net/controller/ctx/summarizer.py +1 -1
  24. pygpt_net/controller/kernel/kernel.py +11 -3
  25. pygpt_net/controller/kernel/reply.py +5 -1
  26. pygpt_net/controller/mode/mode.py +21 -12
  27. pygpt_net/controller/plugins/settings.py +3 -2
  28. pygpt_net/controller/presets/editor.py +112 -99
  29. pygpt_net/controller/realtime/__init__.py +12 -0
  30. pygpt_net/controller/realtime/manager.py +53 -0
  31. pygpt_net/controller/realtime/realtime.py +268 -0
  32. pygpt_net/controller/theme/theme.py +3 -2
  33. pygpt_net/controller/ui/mode.py +7 -0
  34. pygpt_net/controller/ui/ui.py +19 -1
  35. pygpt_net/controller/ui/vision.py +4 -4
  36. pygpt_net/core/agents/legacy.py +2 -2
  37. pygpt_net/core/agents/runners/openai_workflow.py +2 -2
  38. pygpt_net/core/assistants/files.py +5 -5
  39. pygpt_net/core/assistants/store.py +4 -4
  40. pygpt_net/core/audio/audio.py +6 -1
  41. pygpt_net/core/audio/backend/native/__init__.py +12 -0
  42. pygpt_net/core/audio/backend/{native.py → native/native.py} +426 -127
  43. pygpt_net/core/audio/backend/native/player.py +139 -0
  44. pygpt_net/core/audio/backend/native/realtime.py +250 -0
  45. pygpt_net/core/audio/backend/pyaudio/__init__.py +12 -0
  46. pygpt_net/core/audio/backend/pyaudio/playback.py +194 -0
  47. pygpt_net/core/audio/backend/pyaudio/pyaudio.py +923 -0
  48. pygpt_net/core/audio/backend/pyaudio/realtime.py +275 -0
  49. pygpt_net/core/audio/backend/pygame/__init__.py +12 -0
  50. pygpt_net/core/audio/backend/{pygame.py → pygame/pygame.py} +130 -19
  51. pygpt_net/core/audio/backend/shared/__init__.py +38 -0
  52. pygpt_net/core/audio/backend/shared/conversions.py +211 -0
  53. pygpt_net/core/audio/backend/shared/envelope.py +38 -0
  54. pygpt_net/core/audio/backend/shared/player.py +137 -0
  55. pygpt_net/core/audio/backend/shared/rt.py +52 -0
  56. pygpt_net/core/audio/capture.py +5 -0
  57. pygpt_net/core/audio/output.py +13 -2
  58. pygpt_net/core/audio/whisper.py +6 -2
  59. pygpt_net/core/bridge/bridge.py +4 -3
  60. pygpt_net/core/bridge/worker.py +31 -9
  61. pygpt_net/core/debug/console/console.py +2 -2
  62. pygpt_net/core/debug/presets.py +2 -2
  63. pygpt_net/core/dispatcher/dispatcher.py +37 -1
  64. pygpt_net/core/events/__init__.py +2 -1
  65. pygpt_net/core/events/realtime.py +55 -0
  66. pygpt_net/core/experts/experts.py +2 -2
  67. pygpt_net/core/image/image.py +51 -1
  68. pygpt_net/core/modes/modes.py +2 -2
  69. pygpt_net/core/presets/presets.py +3 -3
  70. pygpt_net/core/realtime/options.py +87 -0
  71. pygpt_net/core/realtime/shared/__init__.py +0 -0
  72. pygpt_net/core/realtime/shared/audio.py +213 -0
  73. pygpt_net/core/realtime/shared/loop.py +64 -0
  74. pygpt_net/core/realtime/shared/session.py +59 -0
  75. pygpt_net/core/realtime/shared/text.py +37 -0
  76. pygpt_net/core/realtime/shared/tools.py +276 -0
  77. pygpt_net/core/realtime/shared/turn.py +38 -0
  78. pygpt_net/core/realtime/shared/types.py +16 -0
  79. pygpt_net/core/realtime/worker.py +164 -0
  80. pygpt_net/core/tokens/tokens.py +4 -4
  81. pygpt_net/core/types/__init__.py +1 -0
  82. pygpt_net/core/types/image.py +48 -0
  83. pygpt_net/core/types/mode.py +5 -2
  84. pygpt_net/core/vision/analyzer.py +1 -1
  85. pygpt_net/data/config/config.json +13 -4
  86. pygpt_net/data/config/models.json +219 -101
  87. pygpt_net/data/config/modes.json +3 -9
  88. pygpt_net/data/config/settings.json +135 -27
  89. pygpt_net/data/config/settings_section.json +2 -2
  90. pygpt_net/data/locale/locale.de.ini +7 -7
  91. pygpt_net/data/locale/locale.en.ini +25 -12
  92. pygpt_net/data/locale/locale.es.ini +7 -7
  93. pygpt_net/data/locale/locale.fr.ini +7 -7
  94. pygpt_net/data/locale/locale.it.ini +7 -7
  95. pygpt_net/data/locale/locale.pl.ini +8 -8
  96. pygpt_net/data/locale/locale.uk.ini +7 -7
  97. pygpt_net/data/locale/locale.zh.ini +3 -3
  98. pygpt_net/data/locale/plugin.audio_input.en.ini +4 -0
  99. pygpt_net/data/locale/plugin.audio_output.en.ini +4 -0
  100. pygpt_net/item/model.py +23 -3
  101. pygpt_net/plugin/audio_input/plugin.py +37 -4
  102. pygpt_net/plugin/audio_input/simple.py +57 -8
  103. pygpt_net/plugin/cmd_files/worker.py +3 -0
  104. pygpt_net/plugin/openai_dalle/plugin.py +4 -4
  105. pygpt_net/plugin/openai_vision/plugin.py +12 -13
  106. pygpt_net/provider/agents/openai/agent.py +5 -5
  107. pygpt_net/provider/agents/openai/agent_b2b.py +5 -5
  108. pygpt_net/provider/agents/openai/agent_planner.py +5 -6
  109. pygpt_net/provider/agents/openai/agent_with_experts.py +5 -5
  110. pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +4 -4
  111. pygpt_net/provider/agents/openai/agent_with_feedback.py +4 -4
  112. pygpt_net/provider/agents/openai/bot_researcher.py +2 -2
  113. pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py +1 -1
  114. pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py +1 -1
  115. pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py +1 -1
  116. pygpt_net/provider/agents/openai/evolve.py +5 -5
  117. pygpt_net/provider/agents/openai/supervisor.py +4 -4
  118. pygpt_net/provider/api/__init__.py +27 -0
  119. pygpt_net/provider/api/anthropic/__init__.py +68 -0
  120. pygpt_net/provider/api/google/__init__.py +295 -0
  121. pygpt_net/provider/api/google/audio.py +121 -0
  122. pygpt_net/provider/api/google/chat.py +591 -0
  123. pygpt_net/provider/api/google/image.py +427 -0
  124. pygpt_net/provider/api/google/realtime/__init__.py +12 -0
  125. pygpt_net/provider/api/google/realtime/client.py +1945 -0
  126. pygpt_net/provider/api/google/realtime/realtime.py +186 -0
  127. pygpt_net/provider/api/google/tools.py +222 -0
  128. pygpt_net/provider/api/google/vision.py +129 -0
  129. pygpt_net/provider/{gpt → api/openai}/__init__.py +24 -4
  130. pygpt_net/provider/api/openai/agents/__init__.py +0 -0
  131. pygpt_net/provider/{gpt → api/openai}/agents/computer.py +1 -1
  132. pygpt_net/provider/{gpt → api/openai}/agents/experts.py +1 -1
  133. pygpt_net/provider/{gpt → api/openai}/agents/response.py +1 -1
  134. pygpt_net/provider/{gpt → api/openai}/assistants.py +1 -1
  135. pygpt_net/provider/{gpt → api/openai}/chat.py +15 -8
  136. pygpt_net/provider/{gpt → api/openai}/completion.py +1 -1
  137. pygpt_net/provider/{gpt → api/openai}/image.py +1 -1
  138. pygpt_net/provider/api/openai/realtime/__init__.py +12 -0
  139. pygpt_net/provider/api/openai/realtime/client.py +1828 -0
  140. pygpt_net/provider/api/openai/realtime/realtime.py +194 -0
  141. pygpt_net/provider/{gpt → api/openai}/remote_tools.py +1 -1
  142. pygpt_net/provider/{gpt → api/openai}/responses.py +34 -20
  143. pygpt_net/provider/{gpt → api/openai}/store.py +2 -2
  144. pygpt_net/provider/{gpt → api/openai}/vision.py +1 -1
  145. pygpt_net/provider/api/openai/worker/__init__.py +0 -0
  146. pygpt_net/provider/{gpt → api/openai}/worker/assistants.py +4 -4
  147. pygpt_net/provider/{gpt → api/openai}/worker/importer.py +10 -10
  148. pygpt_net/provider/audio_input/google_genai.py +103 -0
  149. pygpt_net/provider/audio_input/openai_whisper.py +1 -1
  150. pygpt_net/provider/audio_output/google_genai_tts.py +229 -0
  151. pygpt_net/provider/audio_output/openai_tts.py +9 -6
  152. pygpt_net/provider/core/config/patch.py +26 -0
  153. pygpt_net/provider/core/model/patch.py +20 -0
  154. pygpt_net/provider/core/preset/json_file.py +2 -4
  155. pygpt_net/provider/llms/anthropic.py +2 -5
  156. pygpt_net/provider/llms/base.py +4 -3
  157. pygpt_net/provider/llms/google.py +8 -9
  158. pygpt_net/provider/llms/openai.py +1 -1
  159. pygpt_net/provider/loaders/hub/image_vision/base.py +1 -1
  160. pygpt_net/ui/dialog/preset.py +71 -55
  161. pygpt_net/ui/layout/toolbox/footer.py +16 -0
  162. pygpt_net/ui/layout/toolbox/image.py +5 -0
  163. pygpt_net/ui/main.py +6 -4
  164. pygpt_net/ui/widget/option/combo.py +15 -1
  165. pygpt_net/utils.py +9 -0
  166. {pygpt_net-2.6.29.dist-info → pygpt_net-2.6.31.dist-info}/METADATA +55 -55
  167. {pygpt_net-2.6.29.dist-info → pygpt_net-2.6.31.dist-info}/RECORD +181 -135
  168. pygpt_net/core/audio/backend/pyaudio.py +0 -554
  169. /pygpt_net/{provider/gpt/agents → controller/chat/handler}/__init__.py +0 -0
  170. /pygpt_net/{provider/gpt/worker → core/realtime}/__init__.py +0 -0
  171. /pygpt_net/provider/{gpt → api/openai}/agents/client.py +0 -0
  172. /pygpt_net/provider/{gpt → api/openai}/agents/remote_tools.py +0 -0
  173. /pygpt_net/provider/{gpt → api/openai}/agents/utils.py +0 -0
  174. /pygpt_net/provider/{gpt → api/openai}/audio.py +0 -0
  175. /pygpt_net/provider/{gpt → api/openai}/computer.py +0 -0
  176. /pygpt_net/provider/{gpt → api/openai}/container.py +0 -0
  177. /pygpt_net/provider/{gpt → api/openai}/summarizer.py +0 -0
  178. /pygpt_net/provider/{gpt → api/openai}/tools.py +0 -0
  179. /pygpt_net/provider/{gpt → api/openai}/utils.py +0 -0
  180. {pygpt_net-2.6.29.dist-info → pygpt_net-2.6.31.dist-info}/LICENSE +0 -0
  181. {pygpt_net-2.6.29.dist-info → pygpt_net-2.6.31.dist-info}/WHEEL +0 -0
  182. {pygpt_net-2.6.29.dist-info → pygpt_net-2.6.31.dist-info}/entry_points.txt +0 -0
@@ -133,6 +133,21 @@
133
133
  "advanced": false,
134
134
  "tab": "Google"
135
135
  },
136
+ "api_native_google": {
137
+ "section": "api_keys",
138
+ "type": "bool",
139
+ "slider": false,
140
+ "label": "settings.api_native_google",
141
+ "description": "settings.api_native_google.desc",
142
+ "value": true,
143
+ "min": null,
144
+ "max": null,
145
+ "multiplier": null,
146
+ "step": null,
147
+ "secret": false,
148
+ "advanced": false,
149
+ "tab": "Google"
150
+ },
136
151
  "api_key_anthropic": {
137
152
  "section": "api_keys",
138
153
  "type": "text",
@@ -1263,7 +1278,22 @@
1263
1278
  {"1024x1024": "[DALL-E 3] 1024x1024"},
1264
1279
  {"1024x1024": "[DALL-E 2] 1024x1024"},
1265
1280
  {"512x512": "[DALL-E 2] 512x512"},
1266
- {"256x256": "[DALL-E 2] 256x256"}
1281
+ {"256x256": "[DALL-E 2] 256x256"},
1282
+ {"1024x1024": "[Imagen 3.0] 1024x1024"},
1283
+ {"896x1280": "[Imagen 3.0] 896x1280"},
1284
+ {"1280x896": "[Imagen 3.0] 1280x896"},
1285
+ {"768x1408": "[Imagen 3.0] 768x1408"},
1286
+ {"1408x768": "[Imagen 3.0] 1408x768"},
1287
+ {"1024x1024": "[Imagen 4.0] 1024x1024"},
1288
+ {"896x1280": "[Imagen 4.0] 896x1280"},
1289
+ {"1280x896": "[Imagen 4.0] 1280x896"},
1290
+ {"768x1408": "[Imagen 4.0] 768x1408"},
1291
+ {"1408x768": "[Imagen 4.0] 1408x768"},
1292
+ {"2048x2048": "[Imagen 4.0] 2048x2048"},
1293
+ {"1792x2560": "[Imagen 4.0] 1792x2560"},
1294
+ {"2560x1792": "[Imagen 4.0] 2560x1792"},
1295
+ {"1536x2816": "[Imagen 4.0] 1536x2816"},
1296
+ {"2816x1536": "[Imagen 4.0] 2816x1536"}
1267
1297
  ]
1268
1298
  },
1269
1299
  "img_quality": {
@@ -1471,6 +1501,30 @@
1471
1501
  "advanced": false,
1472
1502
  "tab": "options"
1473
1503
  },
1504
+ "audio.input.vad.prefix": {
1505
+ "section": "audio",
1506
+ "type": "int",
1507
+ "slider": false,
1508
+ "label": "settings.audio.input.vad.prefix",
1509
+ "value": 300,
1510
+ "min": 0,
1511
+ "multiplier": 1,
1512
+ "step": 1,
1513
+ "advanced": false,
1514
+ "tab": "options"
1515
+ },
1516
+ "audio.input.vad.silence": {
1517
+ "section": "audio",
1518
+ "type": "int",
1519
+ "slider": false,
1520
+ "label": "settings.audio.input.vad.silence",
1521
+ "value": 2000,
1522
+ "min": 0,
1523
+ "multiplier": 1,
1524
+ "step": 1,
1525
+ "advanced": false,
1526
+ "tab": "options"
1527
+ },
1474
1528
  "audio.cache.enabled": {
1475
1529
  "section": "audio",
1476
1530
  "type": "bool",
@@ -1597,6 +1651,48 @@
1597
1651
  "OpenAI Docs": "https://platform.openai.com/docs/guides/tools-file-search"
1598
1652
  }
1599
1653
  },
1654
+ "remote_tools.google.web_search": {
1655
+ "section": "remote_tools",
1656
+ "type": "bool",
1657
+ "slider": false,
1658
+ "label": "settings.remote_tools.google.web_search",
1659
+ "description": "settings.remote_tools.google.web_search.desc",
1660
+ "value": true,
1661
+ "min": null,
1662
+ "max": null,
1663
+ "multiplier": null,
1664
+ "step": null,
1665
+ "advanced": false,
1666
+ "tab": "Google"
1667
+ },
1668
+ "remote_tools.google.code_interpreter": {
1669
+ "section": "remote_tools",
1670
+ "type": "bool",
1671
+ "slider": false,
1672
+ "label": "settings.remote_tools.google.code_interpreter",
1673
+ "description": "settings.remote_tools.google.code_interpreter.desc",
1674
+ "value": true,
1675
+ "min": null,
1676
+ "max": null,
1677
+ "multiplier": null,
1678
+ "step": null,
1679
+ "advanced": false,
1680
+ "tab": "Google"
1681
+ },
1682
+ "remote_tools.google.url_ctx": {
1683
+ "section": "remote_tools",
1684
+ "type": "bool",
1685
+ "slider": false,
1686
+ "label": "settings.remote_tools.google.url_ctx",
1687
+ "description": "settings.remote_tools.google.url_ctx.desc",
1688
+ "value": true,
1689
+ "min": null,
1690
+ "max": null,
1691
+ "multiplier": null,
1692
+ "step": null,
1693
+ "advanced": false,
1694
+ "tab": "Google"
1695
+ },
1600
1696
  "llama.idx.list": {
1601
1697
  "section": "llama-index",
1602
1698
  "type": "dict",
@@ -2233,10 +2329,10 @@
2233
2329
  "advanced": false
2234
2330
  },
2235
2331
  "debug": {
2236
- "section": "developer",
2332
+ "section": "debug",
2237
2333
  "type": "bool",
2238
2334
  "slider": false,
2239
- "label": "settings.developer.debug",
2335
+ "label": "settings.debug.show_menu",
2240
2336
  "value": false,
2241
2337
  "min": 0,
2242
2338
  "max": 0,
@@ -2244,8 +2340,27 @@
2244
2340
  "step": 1,
2245
2341
  "advanced": false
2246
2342
  },
2343
+ "log.level": {
2344
+ "section": "debug",
2345
+ "description": "Tip: Running application with --debug=1 or --debug=2 command line arguments overwrites this settings and force enables logging to %workdir%/app.log file. Log levels: 1 = INFO, 2 = DEBUG",
2346
+ "type": "combo",
2347
+ "slider": false,
2348
+ "label": "Log Level",
2349
+ "value": "",
2350
+ "min": null,
2351
+ "max": null,
2352
+ "multiplier": null,
2353
+ "step": null,
2354
+ "advanced": false,
2355
+ "keys": [
2356
+ {"error": "ERROR (default)"},
2357
+ {"warning": "WARNING"},
2358
+ {"info": "INFO"},
2359
+ {"debug": "DEBUG"}
2360
+ ]
2361
+ },
2247
2362
  "log.ctx": {
2248
- "section": "developer",
2363
+ "section": "debug",
2249
2364
  "type": "bool",
2250
2365
  "slider": false,
2251
2366
  "label": "Log and debug context",
@@ -2257,7 +2372,7 @@
2257
2372
  "advanced": false
2258
2373
  },
2259
2374
  "log.events": {
2260
- "section": "developer",
2375
+ "section": "debug",
2261
2376
  "type": "bool",
2262
2377
  "slider": false,
2263
2378
  "label": "Log and debug events",
@@ -2269,7 +2384,7 @@
2269
2384
  "advanced": false
2270
2385
  },
2271
2386
  "log.plugins": {
2272
- "section": "developer",
2387
+ "section": "debug",
2273
2388
  "type": "bool",
2274
2389
  "slider": false,
2275
2390
  "label": "Log plugin usage to console",
@@ -2281,7 +2396,7 @@
2281
2396
  "advanced": false
2282
2397
  },
2283
2398
  "log.dalle": {
2284
- "section": "developer",
2399
+ "section": "debug",
2285
2400
  "type": "bool",
2286
2401
  "slider": false,
2287
2402
  "label": "Log DALL-E usage to console",
@@ -2293,7 +2408,7 @@
2293
2408
  "advanced": false
2294
2409
  },
2295
2410
  "ctx.attachment.verbose": {
2296
- "section": "developer",
2411
+ "section": "debug",
2297
2412
  "type": "bool",
2298
2413
  "slider": false,
2299
2414
  "label": "Log attachments usage to console",
@@ -2305,7 +2420,7 @@
2305
2420
  "advanced": false
2306
2421
  },
2307
2422
  "agent.llama.verbose": {
2308
- "section": "developer",
2423
+ "section": "debug",
2309
2424
  "type": "bool",
2310
2425
  "slider": false,
2311
2426
  "label": "Log Agents usage to console",
@@ -2318,7 +2433,7 @@
2318
2433
  "tab": "general"
2319
2434
  },
2320
2435
  "log.llama": {
2321
- "section": "developer",
2436
+ "section": "debug",
2322
2437
  "type": "bool",
2323
2438
  "slider": false,
2324
2439
  "label": "Log LlamaIndex usage to console",
@@ -2329,11 +2444,11 @@
2329
2444
  "step": null,
2330
2445
  "advanced": false
2331
2446
  },
2332
- "log.assistants": {
2333
- "section": "developer",
2447
+ "log.realtime": {
2448
+ "section": "debug",
2334
2449
  "type": "bool",
2335
2450
  "slider": false,
2336
- "label": "Log Assistants usage to console",
2451
+ "label": "Log Realtime sessions to console",
2337
2452
  "value": false,
2338
2453
  "min": null,
2339
2454
  "max": null,
@@ -2341,25 +2456,18 @@
2341
2456
  "step": null,
2342
2457
  "advanced": false
2343
2458
  },
2344
- "log.level": {
2345
- "section": "developer",
2346
- "description": "Tip: Running application with --debug=1 or --debug=2 command line arguments overwrites this settings and force enables logging to %workdir%/app.log file. Log levels: 1 = INFO, 2 = DEBUG",
2347
- "type": "combo",
2459
+ "log.assistants": {
2460
+ "section": "debug",
2461
+ "type": "bool",
2348
2462
  "slider": false,
2349
- "label": "Log Level",
2350
- "value": "",
2463
+ "label": "Log Assistants usage to console",
2464
+ "value": false,
2351
2465
  "min": null,
2352
2466
  "max": null,
2353
2467
  "multiplier": null,
2354
2468
  "step": null,
2355
- "advanced": false,
2356
- "keys": [
2357
- {"error": "ERROR (default)"},
2358
- {"warning": "WARNING"},
2359
- {"info": "INFO"},
2360
- {"debug": "DEBUG"}
2361
- ]
2362
- },
2469
+ "advanced": false
2470
+ },
2363
2471
  "access.voice_control": {
2364
2472
  "section": "access",
2365
2473
  "type": "bool",
@@ -47,7 +47,7 @@
47
47
  "updates": {
48
48
  "label": "settings.section.updates"
49
49
  },
50
- "developer": {
51
- "label": "settings.section.developer"
50
+ "debug": {
51
+ "label": "settings.section.debug"
52
52
  }
53
53
  }
@@ -845,7 +845,7 @@ mode.agent_openai.tooltip = Fortgeschrittene Agenten (OpenAI)
845
845
  mode.agent.tooltip = Einfache Agenten (legacy)
846
846
  mode.assistant = Assistent
847
847
  mode.assistant.tooltip = Chat mittels Assistants API
848
- mode.audio = Chat mit Audio
848
+ mode.audio = Realtime + audio
849
849
  mode.chat = Chat
850
850
  mode.chat.tooltip = Chatmodus (Standard)
851
851
  mode.completion = Vervollständigung
@@ -1174,9 +1174,9 @@ settings.ctx.sources = Zeige Llama-Indexquellen
1174
1174
  settings.ctx.sources.desc = Falls aktiviert, werden die genutzten Quellen in der Antwort angezeigt (falls verfügbar, funktioniert nicht im gestreamten Chat)
1175
1175
  settings.ctx.use_extra = Verwenden Sie zusätzlichen Kontextoutput
1176
1176
  settings.ctx.use_extra.desc = Wenn aktiviert, wird die einfache Textausgabe (falls verfügbar) aus den Befehlsausgaben zusätzlich zur JSON-Ausgabe angezeigt.
1177
+ settings.debug.show_menu = Debug-Menü anzeigen
1177
1178
  settings.defaults.app.confirm = Werksseitige App-Einstellungen laden?
1178
1179
  settings.defaults.user.confirm = Aktuelle Änderungen rückgängig machen?
1179
- settings.developer.debug = Debug-Menü anzeigen
1180
1180
  settings.dict.delete.confirm = Eintrag aus der Liste entfernen?
1181
1181
  settings.download.dir = Verzeichnis für Dateidownloads
1182
1182
  settings.download.dir.desc = Unterordner für heruntergeladene Dateien, z.B. im Assistentenmodus, innerhalb von "data"
@@ -1197,9 +1197,9 @@ settings.frequency_penalty = Frequenzstrafe
1197
1197
  settings.func_call.native = Native API-Funktionsaufrufe verwenden
1198
1198
  settings.func_call.native.desc = Wenn aktiviert, benutzt die Anwendung native API-Funktionsaufrufe anstelle des internen pygpt-Formats und der unten stehenden Befehlsprompten. Nur Chat- und Assistenz-Modi.
1199
1199
  settings.img_dialog_open = Bild-Dialog nach Generierung öffnen (Bildmodus)
1200
- settings.img_prompt_model = DALL-E: Modell zur Prompterzeugung
1201
- settings.img_quality = DALL-E: image quality
1202
- settings.img_resolution = DALL-E: Bildgröße
1200
+ settings.img_prompt_model = Modell zur Prompterzeugung
1201
+ settings.img_quality = image quality
1202
+ settings.img_resolution = Bildgröße
1203
1203
  settings.layout.animation.disable = Animationen deaktivieren
1204
1204
  settings.layout.animation.disable.desc = Deaktiviert Layout-Animationen, wie animierte Ladegeräte usw.
1205
1205
  settings.layout.density = Layoutdichte
@@ -1294,7 +1294,7 @@ settings.prompt.ctx.auto_summary.user = Kontext: Auto-Zusammenfassung (Benutzern
1294
1294
  settings.prompt.ctx.auto_summary.user.desc = Platzhalter: {input}, {output}
1295
1295
  settings.prompt.expert = Experte: Masteraufforderung
1296
1296
  settings.prompt.expert.desc = Anweisung (Systemaufforderung) für den Master-Experten, wie man Sklavenexperten handhabt. Anweisungen für Sklavenexperten werden aus ihren Voreinstellungen gegeben.
1297
- settings.prompt.img = DALL-E: Bildgenerierung
1297
+ settings.prompt.img = Bildgenerierung
1298
1298
  settings.prompt.img.desc = Aufforderung zur Erzeugung von Anweisungen für DALL-E (falls Rohmodus deaktiviert ist). Nur im Bildmodus.
1299
1299
  settings.remote_tools.code_interpreter = Code-Interpreter
1300
1300
  settings.remote_tools.code_interpreter.desc = Aktivieren Sie das `code_interpreter` Remote-Tool im Chat-Modus / über OpenAI Responses API.
@@ -1336,7 +1336,7 @@ settings.section.audio.cache = Cache
1336
1336
  settings.section.audio.device = Geräte
1337
1337
  settings.section.audio.options = Optionen
1338
1338
  settings.section.ctx = Kontext
1339
- settings.section.developer = Entwickler
1339
+ settings.section.debug = Fehlerbehebung
1340
1340
  settings.section.files = Dateien und Anhänge
1341
1341
  settings.section.general = Allgemein
1342
1342
  settings.section.images = Bilder
@@ -188,6 +188,7 @@ attachments_uploaded.clear.confirm = WARNING: are you sure you want to delete al
188
188
  attachments_uploaded.delete.confirm = WARNING: are you sure you want to delete this file from the remote server?
189
189
  attachments_uploaded.sync.tip = Tip: click on 'Sync' to retrieve the file list from OpenAI
190
190
  attachments_uploaded.tab = Uploaded
191
+ audio.auto_turn = Auto (VAD)
191
192
  audio.cache.clear.confirm = Are you sure you want to delete all cached audio files?
192
193
  audio.cache.clear.success = OK. All audio cache files cleared.
193
194
  audio.control.btn = Voice control
@@ -845,7 +846,7 @@ mode.agent_openai.tooltip = Advanced agents (OpenAI)
845
846
  mode.agent.tooltip = Simple agents (legacy)
846
847
  mode.assistant = Assistants
847
848
  mode.assistant.tooltip = Chat using Assistants API
848
- mode.audio = Chat with Audio
849
+ mode.audio = Realtime + audio
849
850
  mode.chat = Chat
850
851
  mode.chat.tooltip = Chat mode (default)
851
852
  mode.completion = Completion
@@ -1118,6 +1119,8 @@ settings.api_key.voyage = VoyageAI API KEY
1118
1119
  settings.api_key.voyage.desc = Required for the Voyage API - embeddings for Anthropic and DeepSeek API.
1119
1120
  settings.api_key.xai = xAI API KEY
1120
1121
  settings.api_key.xai.desc = Required for the xAI API and Grok models.
1122
+ settings.api_native_google = Use native API SDK
1123
+ settings.api_native_google.desc = Use native GenAI SDK instead of compatible OpenAI client
1121
1124
  settings.api_proxy = Proxy address
1122
1125
  settings.api_proxy.desc = Optional, proxy for OpenAI API, e.g. http://proxy.example.com or socks5://user:pass@host:port
1123
1126
  settings.api_use_responses = Use Responses API in Chat mode
@@ -1192,9 +1195,9 @@ settings.ctx.sources = Show LlamaIndex sources
1192
1195
  settings.ctx.sources.desc = If enabled, sources used will be displayed in the response (if available, it will not work in streamed chat)
1193
1196
  settings.ctx.use_extra = Use extra context output
1194
1197
  settings.ctx.use_extra.desc = If enabled, plain text output (if available) from command results will be displayed alongside the JSON output.
1198
+ settings.debug.show_menu = Show debug menu
1195
1199
  settings.defaults.app.confirm = Load factory app settings?
1196
1200
  settings.defaults.user.confirm = Undo current changes?
1197
- settings.developer.debug = Show debug menu
1198
1201
  settings.dict.delete.confirm = Remove item from list?
1199
1202
  settings.download.dir = Directory for file downloads
1200
1203
  settings.download.dir.desc = Subdirectory for downloaded files, e.g. in Assistants mode, inside "data"
@@ -1217,9 +1220,9 @@ settings.frequency_penalty = Frequency Penalty
1217
1220
  settings.func_call.native = Use native API function calls
1218
1221
  settings.func_call.native.desc = If enabled, the application will use native API function calls instead of the internal pygpt format and the command prompts from below will not be used. Chat and Assistants modes ONLY.
1219
1222
  settings.img_dialog_open = Open image dialog after generation (Image mode)
1220
- settings.img_prompt_model = DALL-E: prompt generation model
1221
- settings.img_quality = DALL-E: image quality
1222
- settings.img_resolution = DALL-E: image size
1223
+ settings.img_prompt_model = Prompt generation model
1224
+ settings.img_quality = Image quality
1225
+ settings.img_resolution = Image size
1223
1226
  settings.layout.animation.disable = Disable animations
1224
1227
  settings.layout.animation.disable.desc = Disables layout animations, like animated loaders, etc.
1225
1228
  settings.layout.density = Layout density
@@ -1316,22 +1319,28 @@ settings.prompt.ctx.auto_summary.user = Context: auto-summary (user message)
1316
1319
  settings.prompt.ctx.auto_summary.user.desc = Placeholders: {input}, {output}
1317
1320
  settings.prompt.expert = Expert: Master prompt
1318
1321
  settings.prompt.expert.desc = Instruction (system prompt) for Master expert on how to handle slave experts. Instructions for slave experts are given from their presets.
1319
- settings.prompt.img = DALL-E: image generation
1322
+ settings.prompt.img = Image generation
1320
1323
  settings.prompt.img.desc = Prompt for generating prompts for DALL-E (if raw-mode is disabled). Image mode only.
1321
1324
  settings.remote_tools.code_interpreter = Code Interpreter
1322
- settings.remote_tools.code_interpreter.desc = Enable `code_interpreter` remote tool in Chat mode / via OpenAI Responses API.
1325
+ settings.remote_tools.code_interpreter.desc = Enable `code_interpreter` remote tool - Responses API only.
1323
1326
  settings.remote_tools.file_search = File search
1324
1327
  settings.remote_tools.file_search.args = File search vector store IDs
1325
1328
  settings.remote_tools.file_search.args.desc = Vector store IDs, separated by comma (,)
1326
- settings.remote_tools.file_search.desc = Enable `file_search` remote tool in Chat mode / via OpenAI Responses API.
1329
+ settings.remote_tools.file_search.desc = Enable `file_search` remote tool - Responses API only.
1330
+ settings.remote_tools.google.code_interpreter = Code Interpreter
1331
+ settings.remote_tools.google.code_interpreter.desc = Enable Code Interpreter remote tool.
1332
+ settings.remote_tools.google.url_ctx = URL Context
1333
+ settings.remote_tools.google.url_ctx.desc = Enable URL Context remote tool.
1334
+ settings.remote_tools.google.web_search = Google Search
1335
+ settings.remote_tools.google.web_search.desc = Enable Google Search remote tool.
1327
1336
  settings.remote_tools.image = Image generation
1328
- settings.remote_tools.image.desc = Enable `image_generation` remote tool in Chat mode / via OpenAI Responses API.
1337
+ settings.remote_tools.image.desc = Enable `image_generation` remote tool - Responses API only.
1329
1338
  settings.remote_tools.mcp = Remote MCP
1330
1339
  settings.remote_tools.mcp.args = Remote MCP configuration
1331
1340
  settings.remote_tools.mcp.args.desc = Configuration in JSON format (will be used in request)
1332
- settings.remote_tools.mcp.desc = Enable `mcp` remote tool in Chat mode / via OpenAI Responses API.
1341
+ settings.remote_tools.mcp.desc = Enable `mcp` remote tool - Responses API only.
1333
1342
  settings.remote_tools.web_search = Web Search
1334
- settings.remote_tools.web_search.desc = Enable `web_search` remote tool in Chat mode / via OpenAI Responses API.
1343
+ settings.remote_tools.web_search.desc = Enable `web_search` remote tool - Responses API only.
1335
1344
  settings.render.code_syntax = Code syntax highlight
1336
1345
  settings.render.engine = Rendering engine
1337
1346
  settings.render.open_gl = OpenGL hardware acceleration
@@ -1360,7 +1369,7 @@ settings.section.audio.cache = Cache
1360
1369
  settings.section.audio.device = Devices
1361
1370
  settings.section.audio.options = Options
1362
1371
  settings.section.ctx = Context
1363
- settings.section.developer = Developer
1372
+ settings.section.debug = Debug
1364
1373
  settings.section.files = Files and attachments
1365
1374
  settings.section.general = General
1366
1375
  settings.section.images = Images
@@ -1376,6 +1385,7 @@ settings.section.model = Models
1376
1385
  settings.section.personalize = Personalize
1377
1386
  settings.section.prompts = Prompts
1378
1387
  settings.section.remote_tools = Remote tools
1388
+ settings.section.remote_tools.google = Google
1379
1389
  settings.section.remote_tools.openai = OpenAI
1380
1390
  settings.section.tab.general = General
1381
1391
  settings.section.updates = Updates
@@ -1565,3 +1575,6 @@ vision.capture.manual.captured.success = Image captured from the camera:
1565
1575
  vision.capture.name.prefix = Camera capture:
1566
1576
  vision.capture.options.title = Video capture
1567
1577
  vision.checkbox.tooltip = If checked, the vision model is active. It will be automatically activated upon image upload. You can deactivate it in real-time.
1578
+
1579
+ settings.audio.input.vad.prefix = VAD prefix padding (in ms)
1580
+ settings.audio.input.vad.silence = VAD end silence (in ms)
@@ -846,7 +846,7 @@ mode.agent_openai.tooltip = Agentes avanzados (OpenAI)
846
846
  mode.agent.tooltip = Agentes simples (legacy)
847
847
  mode.assistant = Asistente
848
848
  mode.assistant.tooltip = Chatear usando la API de Asistentes
849
- mode.audio = Chat con audio
849
+ mode.audio = Realtime + audio
850
850
  mode.chat = Chat
851
851
  mode.chat.tooltip = Modo de chat (predeterminado)
852
852
  mode.completion = Finalización
@@ -1175,9 +1175,9 @@ settings.ctx.sources = Mostrar fuentes del índice Llama
1175
1175
  settings.ctx.sources.desc = Si está habilitado, las fuentes utilizadas se mostrarán en la respuesta (si están disponibles, no funcionará en el chat en vivo)
1176
1176
  settings.ctx.use_extra = Usar salida de contexto extra
1177
1177
  settings.ctx.use_extra.desc = Si está habilitado, la salida de texto sin formato (si está disponible) de los resultados de los comandos se mostrará junto con la salida JSON.
1178
+ settings.debug.show_menu = Mostrar menú de depuración
1178
1179
  settings.defaults.app.confirm = ¿Cargar ajustes predeterminados de la aplicación?
1179
1180
  settings.defaults.user.confirm = ¿Deshacer cambios actuales?
1180
- settings.developer.debug = Mostrar menú de depuración
1181
1181
  settings.dict.delete.confirm = ¿Eliminar elemento de la lista?
1182
1182
  settings.download.dir = Directorio para descargas de archivos
1183
1183
  settings.download.dir.desc = Subdirectorio para archivos descargados, por ejemplo, en modo Asistentes, dentro de "data"
@@ -1198,9 +1198,9 @@ settings.frequency_penalty = Penalización de frecuencia
1198
1198
  settings.func_call.native = Usar llamadas a funciones API nativas
1199
1199
  settings.func_call.native.desc = Si está habilitado, la aplicación usará llamadas a funciones API nativas en lugar del formato pygpt interno y los prompt de comandos a continuación no se usarán. Solo modos de Chat y Asistentes.
1200
1200
  settings.img_dialog_open = Abrir diálogo de imagen después de generar (Modo imagen)
1201
- settings.img_prompt_model = DALL-E: modelo de generación de indicaciones
1202
- settings.img_quality = DALL-E: calidad de imagen
1203
- settings.img_resolution = DALL-E: tamaño de imagen
1201
+ settings.img_prompt_model = Modelo de generación de indicaciones
1202
+ settings.img_quality = Calidad de imagen
1203
+ settings.img_resolution = Tamaño de imagen
1204
1204
  settings.layout.animation.disable = Desactivar animaciones
1205
1205
  settings.layout.animation.disable.desc = Desactivar animaciones de diseño, como cargadores animados, etc.
1206
1206
  settings.layout.density = Densidad de la disposición
@@ -1295,7 +1295,7 @@ settings.prompt.ctx.auto_summary.user = Contexto: resumen automático (mensaje d
1295
1295
  settings.prompt.ctx.auto_summary.user.desc = Marcadores de posición: {input}, {output}
1296
1296
  settings.prompt.expert = Experto: Master prompt
1297
1297
  settings.prompt.expert.desc = Instrucción (prompt del sistema) para el experto Master cómo manejar a los expertos subordinados. Las instrucciones para los expertos subordinados se dan desde sus presets.
1298
- settings.prompt.img = DALL-E: generación de imagen
1298
+ settings.prompt.img = Generación de imagen
1299
1299
  settings.prompt.img.desc = Mensaje para generar comandos para DALL-E (si el modo crudo está desactivado). Solo modo de imagen.
1300
1300
  settings.remote_tools.code_interpreter = Intérprete de Código
1301
1301
  settings.remote_tools.code_interpreter.desc = Habilitar herramienta remota `code_interpreter` en modo Chat / vía API de Respuestas de OpenAI.
@@ -1337,7 +1337,7 @@ settings.section.audio.cache = Caché
1337
1337
  settings.section.audio.device = Dispositivos
1338
1338
  settings.section.audio.options = Opciones
1339
1339
  settings.section.ctx = Contexto
1340
- settings.section.developer = Desarrollador
1340
+ settings.section.debug = Depuración
1341
1341
  settings.section.files = Archivos y adjuntos
1342
1342
  settings.section.general = General
1343
1343
  settings.section.images = Imágenes
@@ -845,7 +845,7 @@ mode.agent_openai.tooltip = Agents avancés (OpenAI)
845
845
  mode.agent.tooltip = Agents simples (legacy)
846
846
  mode.assistant = Assistant
847
847
  mode.assistant.tooltip = Discuter via l'API des Assistants
848
- mode.audio = Chat avec audio
848
+ mode.audio = Realtime + audio
849
849
  mode.chat = Chat
850
850
  mode.chat.tooltip = Mode chat (par défaut)
851
851
  mode.completion = Complétion
@@ -1174,9 +1174,9 @@ settings.ctx.sources = Afficher les sources de l'index Llama
1174
1174
  settings.ctx.sources.desc = Si activé, les sources utilisées seront affichées dans la réponse (si disponibles, cela ne fonctionnera pas dans le chat en continu)
1175
1175
  settings.ctx.use_extra = Utiliser une sortie de contexte supplémentaire
1176
1176
  settings.ctx.use_extra.desc = Si activé, la sortie en texte brut (si disponible) des résultats de commande sera affichée aux côtés de la sortie JSON.
1177
+ settings.debug.show_menu = Afficher le menu de débogage
1177
1178
  settings.defaults.app.confirm = Charger les réglages par défaut de l'application ?
1178
1179
  settings.defaults.user.confirm = Annuler les modifications actuelles ?
1179
- settings.developer.debug = Afficher le menu de débogage
1180
1180
  settings.dict.delete.confirm = Supprimer l'élément de la liste ?
1181
1181
  settings.download.dir = Répertoire pour les téléchargements de fichiers
1182
1182
  settings.download.dir.desc = Sous-répertoire pour les fichiers téléchargés, par exemple en mode Assistants, à l'intérieur de "data"
@@ -1197,9 +1197,9 @@ settings.frequency_penalty = Pénalité de fréquence
1197
1197
  settings.func_call.native = Utiliser les appels de fonction API natives
1198
1198
  settings.func_call.native.desc = Si activé, l'application utilisera les appels de fonction API natives au lieu du format interne de pygpt et les commandes prompt ci-dessous ne seront pas utilisées. Modes uniquement Chat et Assistants.
1199
1199
  settings.img_dialog_open = Ouvrir la boîte de dialogue d'image après la génération (Mode image)
1200
- settings.img_prompt_model = DALL-E : modèle de génération d'invite
1201
- settings.img_quality = DALL-E: qualité d'image
1202
- settings.img_resolution = DALL-E : taille de l'image
1200
+ settings.img_prompt_model = Modèle de génération d'invite
1201
+ settings.img_quality = Qualité d'image
1202
+ settings.img_resolution = Taille de l'image
1203
1203
  settings.layout.animation.disable = Désactiver les animations
1204
1204
  settings.layout.animation.disable.desc = Désactive les animations de mise en page, comme les chargeurs animés, etc.
1205
1205
  settings.layout.density = Densité de la disposition
@@ -1294,7 +1294,7 @@ settings.prompt.ctx.auto_summary.user = Contexte: résumé automatique (message
1294
1294
  settings.prompt.ctx.auto_summary.user.desc = Espaces réservés: {input}, {output}
1295
1295
  settings.prompt.expert = Expert : Master prompt
1296
1296
  settings.prompt.expert.desc = Instruction (prompt système) pour l'expert Master sur comment gérer les experts esclaves. Les instructions pour les experts esclaves sont données à partir de leurs presets.
1297
- settings.prompt.img = DALL-E: génération d'image
1297
+ settings.prompt.img = Génération d'image
1298
1298
  settings.prompt.img.desc = Prompt pour générer des commandes pour DALL-E (si le mode brut est désactivé). Mode image uniquement.
1299
1299
  settings.remote_tools.code_interpreter = Interpréteur de code
1300
1300
  settings.remote_tools.code_interpreter.desc = Activer l'outil distant `code_interpreter` en mode Chat/ via OpenAI Responses API.
@@ -1336,7 +1336,7 @@ settings.section.audio.cache = Cache
1336
1336
  settings.section.audio.device = Appareils
1337
1337
  settings.section.audio.options = Options
1338
1338
  settings.section.ctx = Contexte
1339
- settings.section.developer = Développeur
1339
+ settings.section.debug = Débogage
1340
1340
  settings.section.files = Fichiers et pièces jointes
1341
1341
  settings.section.general = Général
1342
1342
  settings.section.images = Images
@@ -845,7 +845,7 @@ mode.agent_openai.tooltip = Agenti avanzati (OpenAI)
845
845
  mode.agent.tooltip = Agenti semplici (legacy)
846
846
  mode.assistant = Assistente
847
847
  mode.assistant.tooltip = Chattare utilizzando l'API degli Assistenti
848
- mode.audio = Chat con audio
848
+ mode.audio = Realtime + audio
849
849
  mode.chat = Chat
850
850
  mode.chat.tooltip = Modalità chat (predefinita)
851
851
  mode.completion = Completamento
@@ -1174,9 +1174,9 @@ settings.ctx.sources = Mostra le fonti dell'indice Llama
1174
1174
  settings.ctx.sources.desc = Se abilitato, le fonti utilizzate saranno mostrate nella risposta (se disponibili, non funzionerà nella chat in streaming)
1175
1175
  settings.ctx.use_extra = Usa output di contesto extra
1176
1176
  settings.ctx.use_extra.desc = Se abilitato, l'output di testo normale (se disponibile) dai risultati dei comandi sarà visualizzato accanto all'output JSON.
1177
+ settings.debug.show_menu = Mostra menu debug
1177
1178
  settings.defaults.app.confirm = Caricare le impostazioni predefinite dell'applicazione?
1178
1179
  settings.defaults.user.confirm = Annullare le modifiche correnti?
1179
- settings.developer.debug = Mostra menu debug
1180
1180
  settings.dict.delete.confirm = Rimuovere l'elemento dall'elenco?
1181
1181
  settings.download.dir = Directory per il download dei file
1182
1182
  settings.download.dir.desc = Sottodirectory per i file scaricati, ad esempio in modalità Assistenti, all'interno di "data"
@@ -1197,9 +1197,9 @@ settings.frequency_penalty = Penale di frequenza
1197
1197
  settings.func_call.native = Usa chiamate di funzione API native
1198
1198
  settings.func_call.native.desc = Se abilitato, l'applicazione utilizzerà le chiamate di funzione API native invece del formato interno pygpt e i prompt di comando di seguito non saranno utilizzati. Solo modalità chat e assistenti.
1199
1199
  settings.img_dialog_open = Apri la finestra di dialogo dell'immagine dopo la generazione (Modalità immagine)
1200
- settings.img_prompt_model = DALL-E: modello di generazione del prompt
1201
- settings.img_quality = DALL-E: qualità dell'immagine
1202
- settings.img_resolution = DALL-E: dimensione dell'immagine
1200
+ settings.img_prompt_model = Modello di generazione del prompt
1201
+ settings.img_quality = Qualità dell'immagine
1202
+ settings.img_resolution = Dimensione dell'immagine
1203
1203
  settings.layout.animation.disable = Disabilita animazioni
1204
1204
  settings.layout.animation.disable.desc = Disabilita le animazioni del layout, come i caricamenti animati, ecc.
1205
1205
  settings.layout.density = Densità del layout
@@ -1294,7 +1294,7 @@ settings.prompt.ctx.auto_summary.user = Contesto: auto-riassunto (messaggio dell
1294
1294
  settings.prompt.ctx.auto_summary.user.desc = Placeholder: {input}, {output}
1295
1295
  settings.prompt.expert = Esperto: Master prompt
1296
1296
  settings.prompt.expert.desc = Istruzione (prompt del sistema) per l'esperto Master su come gestire gli esperti subalterni. Le istruzioni per gli esperti subalterni sono date dalle loro preimpostazioni.
1297
- settings.prompt.img = DALL-E: generazione immagine
1297
+ settings.prompt.img = Generazione immagine
1298
1298
  settings.prompt.img.desc = Prompt per generare comandi per DALL-E (se la modalità grezza è disabilitata). Solo modalità immagine.
1299
1299
  settings.remote_tools.code_interpreter = Interprete del codice
1300
1300
  settings.remote_tools.code_interpreter.desc = Abilita l'attrezzo remoto `code_interpreter` in modalità Chat / tramite API delle Risposte di OpenAI.
@@ -1336,7 +1336,7 @@ settings.section.audio.cache = Cache
1336
1336
  settings.section.audio.device = Dispositivi
1337
1337
  settings.section.audio.options = Opzioni
1338
1338
  settings.section.ctx = Contesto
1339
- settings.section.developer = Sviluppatore
1339
+ settings.section.debug = Debug
1340
1340
  settings.section.files = File e allegati
1341
1341
  settings.section.general = Generale
1342
1342
  settings.section.images = Immagini
@@ -846,7 +846,7 @@ mode.agent_openai.tooltip = Zaawansowani agenci (OpenAI)
846
846
  mode.agent.tooltip = Prości agenci (legacy)
847
847
  mode.assistant = Asystent
848
848
  mode.assistant.tooltip = Czat przy użyciu API Asystentów
849
- mode.audio = Czat Audio
849
+ mode.audio = Realtime + audio
850
850
  mode.chat = Czat
851
851
  mode.chat.tooltip = Tryb czatu (domyślny)
852
852
  mode.completion = Uzupełnianie
@@ -1118,7 +1118,7 @@ settings.audio.input.backend.desc = Wybierz backend dla wejścia audio.
1118
1118
  settings.audio.input.channels = Kanały
1119
1119
  settings.audio.input.channels.desc = Kanały wejściowe, domyślnie: 1
1120
1120
  settings.audio.input.continuous = Ciągłe Nagrywanie Dźwięku (Kawałki)
1121
- settings.audio.input.continuous.desc = Włącz nagrywanie w kawałkach dla długich nagrań audio w notatniku (notatki głosowe).
1121
+ settings.audio.input.continuous.desc = Włącz nagrywanie w kawałkach dla długich nagrań audio w notatniku (notatki głosowe).
1122
1122
  settings.audio.input.device = Urządzenie do wejścia audio
1123
1123
  settings.audio.input.device.desc = Wybierz urządzenie do wejścia mikrofonu.
1124
1124
  settings.audio.input.rate = Częstotliwość próbkowania
@@ -1175,9 +1175,9 @@ settings.ctx.sources = Pokaż źródła LlamaIndex
1175
1175
  settings.ctx.sources.desc = Jeśli opcja jest włączona, wykorzystane źródła będą wyświetlane w odpowiedzi (jeśli dostępne, nie zadziała w czacie z wł. opcją stream)
1176
1176
  settings.ctx.use_extra = Używaj dodatkowego kontekstu outputu
1177
1177
  settings.ctx.use_extra.desc = Jeśli włączone, zwykły tekst outputu (jeśli dostępny) z wyników poleceń będzie wyświetlany obok outputu JSON.
1178
+ settings.debug.show_menu = Pokaż menu debugowania
1178
1179
  settings.defaults.app.confirm = Wczytać fabryczne ustawienia aplikacji?
1179
1180
  settings.defaults.user.confirm = Przywrócić dokonane zmiany?
1180
- settings.developer.debug = Pokaż menu debugowania
1181
1181
  settings.dict.delete.confirm = Usunąć pozycję z listy?
1182
1182
  settings.download.dir = Katalog na pliki do pobrania
1183
1183
  settings.download.dir.desc = Podkatalog na pobrane pliki, np. w trybie Asystentów, wewnątrz "data"
@@ -1198,9 +1198,9 @@ settings.frequency_penalty = Frequency Penalty
1198
1198
  settings.func_call.native = Używaj natywnych wywołań funkcji API
1199
1199
  settings.func_call.native.desc = Jeśli włączone, aplikacja będzie używać natywnych wywołań funkcji API zamiast wewnętrznego formatu pygpt i poniższych promptów poleceń. Tylko tryby czatu i asystentów.
1200
1200
  settings.img_dialog_open = Otwórz okno dialogowe obrazu po wygenerowaniu (Tryb obrazu)
1201
- settings.img_prompt_model = DALL-E: model do generowania promptów
1202
- settings.img_quality = DALL-E: jakość obrazu
1203
- settings.img_resolution = DALL-E: rozmiar obrazu
1201
+ settings.img_prompt_model = Model do generowania promptów
1202
+ settings.img_quality = Jakość obrazu
1203
+ settings.img_resolution = Rozmiar obrazu
1204
1204
  settings.layout.animation.disable = Wyłącz animacje
1205
1205
  settings.layout.animation.disable.desc = Wyłącza animacje układu, jak animowane ładowarki, itp.
1206
1206
  settings.layout.density = Rozmiar layoutu
@@ -1295,7 +1295,7 @@ settings.prompt.ctx.auto_summary.user = Kontekst: auto-podsumowanie (wiadomość
1295
1295
  settings.prompt.ctx.auto_summary.user.desc = Placeholdery: {input}, {output}
1296
1296
  settings.prompt.expert = Ekspert: Główna wskazówka
1297
1297
  settings.prompt.expert.desc = Instrukcja (systemowa wskazówka) dla głównego eksperta, jak obsługiwać ekspertów pomocniczych. Instrukcje dla ekspertów pomocniczych są podawane z ich ustawień.
1298
- settings.prompt.img = DALL-E: generowanie obrazu
1298
+ settings.prompt.img = Generowanie obrazu
1299
1299
  settings.prompt.img.desc = Prompt do generowania poleceń dla DALL-E (jeśli surowy tryb jest wyłączony). Tylko tryb obrazu.
1300
1300
  settings.remote_tools.code_interpreter = Interpreter kodu
1301
1301
  settings.remote_tools.code_interpreter.desc = Włącz narzędzie `code_interpreter` w trybie Czat / za pośrednictwem OpenAI Responses API.
@@ -1337,7 +1337,7 @@ settings.section.audio.cache = Pamięć podręczna
1337
1337
  settings.section.audio.device = Urządzenia
1338
1338
  settings.section.audio.options = Opcje
1339
1339
  settings.section.ctx = Kontekst
1340
- settings.section.developer = Deweloper
1340
+ settings.section.debug = Debugowanie
1341
1341
  settings.section.files = Pliki i załączniki
1342
1342
  settings.section.general = Ogólne
1343
1343
  settings.section.images = Obrazy