pygpt-net 2.7.6__py3-none-any.whl → 2.7.8__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 (120) hide show
  1. pygpt_net/CHANGELOG.txt +13 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +5 -1
  4. pygpt_net/controller/assistant/batch.py +2 -2
  5. pygpt_net/controller/assistant/files.py +7 -6
  6. pygpt_net/controller/assistant/threads.py +0 -0
  7. pygpt_net/controller/chat/command.py +0 -0
  8. pygpt_net/controller/chat/remote_tools.py +3 -9
  9. pygpt_net/controller/chat/stream.py +2 -2
  10. pygpt_net/controller/chat/{handler/worker.py → stream_worker.py} +13 -35
  11. pygpt_net/controller/dialogs/confirm.py +35 -58
  12. pygpt_net/controller/lang/mapping.py +9 -9
  13. pygpt_net/controller/remote_store/{google/batch.py → batch.py} +209 -252
  14. pygpt_net/controller/remote_store/remote_store.py +982 -13
  15. pygpt_net/core/command/command.py +0 -0
  16. pygpt_net/core/db/viewer.py +1 -1
  17. pygpt_net/core/debug/models.py +2 -2
  18. pygpt_net/core/realtime/worker.py +3 -1
  19. pygpt_net/{controller/remote_store/google → core/remote_store/anthropic}/__init__.py +0 -1
  20. pygpt_net/core/remote_store/anthropic/files.py +211 -0
  21. pygpt_net/core/remote_store/anthropic/store.py +208 -0
  22. pygpt_net/core/remote_store/openai/store.py +5 -4
  23. pygpt_net/core/remote_store/remote_store.py +5 -1
  24. pygpt_net/{controller/remote_store/openai → core/remote_store/xai}/__init__.py +0 -1
  25. pygpt_net/core/remote_store/xai/files.py +225 -0
  26. pygpt_net/core/remote_store/xai/store.py +219 -0
  27. pygpt_net/data/config/config.json +18 -5
  28. pygpt_net/data/config/models.json +193 -4
  29. pygpt_net/data/config/settings.json +179 -36
  30. pygpt_net/data/icons/folder_eye.svg +1 -0
  31. pygpt_net/data/icons/folder_eye_filled.svg +1 -0
  32. pygpt_net/data/icons/folder_open.svg +1 -0
  33. pygpt_net/data/icons/folder_open_filled.svg +1 -0
  34. pygpt_net/data/locale/locale.de.ini +6 -3
  35. pygpt_net/data/locale/locale.en.ini +46 -12
  36. pygpt_net/data/locale/locale.es.ini +6 -3
  37. pygpt_net/data/locale/locale.fr.ini +6 -3
  38. pygpt_net/data/locale/locale.it.ini +6 -3
  39. pygpt_net/data/locale/locale.pl.ini +7 -4
  40. pygpt_net/data/locale/locale.uk.ini +6 -3
  41. pygpt_net/data/locale/locale.zh.ini +6 -3
  42. pygpt_net/icons.qrc +4 -0
  43. pygpt_net/icons_rc.py +282 -138
  44. pygpt_net/plugin/cmd_mouse_control/worker.py +2 -1
  45. pygpt_net/plugin/cmd_mouse_control/worker_sandbox.py +2 -1
  46. pygpt_net/provider/api/anthropic/__init__.py +10 -3
  47. pygpt_net/provider/api/anthropic/chat.py +342 -11
  48. pygpt_net/provider/api/anthropic/computer.py +844 -0
  49. pygpt_net/provider/api/anthropic/remote_tools.py +172 -0
  50. pygpt_net/provider/api/anthropic/store.py +307 -0
  51. pygpt_net/{controller/chat/handler/anthropic_stream.py → provider/api/anthropic/stream.py} +99 -10
  52. pygpt_net/provider/api/anthropic/tools.py +32 -77
  53. pygpt_net/provider/api/anthropic/utils.py +30 -0
  54. pygpt_net/{controller/chat/handler → provider/api/anthropic/worker}/__init__.py +0 -0
  55. pygpt_net/provider/api/anthropic/worker/importer.py +278 -0
  56. pygpt_net/provider/api/google/chat.py +62 -9
  57. pygpt_net/provider/api/google/store.py +124 -3
  58. pygpt_net/{controller/chat/handler/google_stream.py → provider/api/google/stream.py} +92 -25
  59. pygpt_net/provider/api/google/utils.py +185 -0
  60. pygpt_net/provider/api/google/worker/importer.py +16 -28
  61. pygpt_net/provider/api/langchain/__init__.py +0 -0
  62. pygpt_net/{controller/chat/handler/langchain_stream.py → provider/api/langchain/stream.py} +1 -1
  63. pygpt_net/provider/api/llama_index/__init__.py +0 -0
  64. pygpt_net/{controller/chat/handler/llamaindex_stream.py → provider/api/llama_index/stream.py} +1 -1
  65. pygpt_net/provider/api/openai/assistants.py +2 -2
  66. pygpt_net/provider/api/openai/image.py +2 -2
  67. pygpt_net/provider/api/openai/store.py +4 -1
  68. pygpt_net/{controller/chat/handler/openai_stream.py → provider/api/openai/stream.py} +1 -1
  69. pygpt_net/provider/api/openai/utils.py +69 -3
  70. pygpt_net/provider/api/openai/worker/importer.py +19 -61
  71. pygpt_net/provider/api/openai/worker/importer_assistants.py +230 -0
  72. pygpt_net/provider/api/x_ai/__init__.py +138 -15
  73. pygpt_net/provider/api/x_ai/audio.py +43 -11
  74. pygpt_net/provider/api/x_ai/chat.py +92 -4
  75. pygpt_net/provider/api/x_ai/image.py +149 -47
  76. pygpt_net/provider/api/x_ai/realtime/__init__.py +12 -0
  77. pygpt_net/provider/api/x_ai/realtime/client.py +1825 -0
  78. pygpt_net/provider/api/x_ai/realtime/realtime.py +198 -0
  79. pygpt_net/provider/api/x_ai/{remote.py → remote_tools.py} +183 -70
  80. pygpt_net/provider/api/x_ai/responses.py +507 -0
  81. pygpt_net/provider/api/x_ai/store.py +610 -0
  82. pygpt_net/{controller/chat/handler/xai_stream.py → provider/api/x_ai/stream.py} +42 -10
  83. pygpt_net/provider/api/x_ai/tools.py +59 -8
  84. pygpt_net/{controller/chat/handler → provider/api/x_ai}/utils.py +1 -2
  85. pygpt_net/provider/api/x_ai/vision.py +1 -4
  86. pygpt_net/provider/api/x_ai/worker/importer.py +308 -0
  87. pygpt_net/provider/audio_input/xai_grok_voice.py +390 -0
  88. pygpt_net/provider/audio_output/xai_tts.py +325 -0
  89. pygpt_net/provider/core/config/patch.py +39 -3
  90. pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +2 -2
  91. pygpt_net/provider/core/model/patch.py +39 -1
  92. pygpt_net/tools/image_viewer/tool.py +334 -34
  93. pygpt_net/tools/image_viewer/ui/dialogs.py +319 -22
  94. pygpt_net/tools/text_editor/ui/dialogs.py +3 -2
  95. pygpt_net/tools/text_editor/ui/widgets.py +0 -0
  96. pygpt_net/ui/dialog/assistant.py +1 -1
  97. pygpt_net/ui/dialog/plugins.py +13 -5
  98. pygpt_net/ui/dialog/remote_store.py +552 -0
  99. pygpt_net/ui/dialogs.py +3 -5
  100. pygpt_net/ui/layout/ctx/ctx_list.py +58 -7
  101. pygpt_net/ui/menu/tools.py +6 -13
  102. pygpt_net/ui/widget/dialog/base.py +16 -5
  103. pygpt_net/ui/widget/dialog/{remote_store_google.py → remote_store.py} +10 -10
  104. pygpt_net/ui/widget/element/button.py +4 -4
  105. pygpt_net/ui/widget/image/display.py +2 -2
  106. pygpt_net/ui/widget/lists/context.py +2 -2
  107. pygpt_net/ui/widget/textarea/editor.py +0 -0
  108. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/METADATA +15 -2
  109. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/RECORD +107 -89
  110. pygpt_net/controller/remote_store/google/store.py +0 -615
  111. pygpt_net/controller/remote_store/openai/batch.py +0 -524
  112. pygpt_net/controller/remote_store/openai/store.py +0 -699
  113. pygpt_net/ui/dialog/remote_store_google.py +0 -539
  114. pygpt_net/ui/dialog/remote_store_openai.py +0 -539
  115. pygpt_net/ui/widget/dialog/remote_store_openai.py +0 -56
  116. pygpt_net/ui/widget/lists/remote_store_google.py +0 -248
  117. pygpt_net/ui/widget/lists/remote_store_openai.py +0 -317
  118. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/LICENSE +0 -0
  119. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/WHEEL +0 -0
  120. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/entry_points.txt +0 -0
@@ -306,11 +306,11 @@ confirm.profile.delete_all = Are you sure you want to delete the profile with al
306
306
  confirm.profile.reset = Are you sure you want to restore the profile to default settings? WARNING: All configuration files and context database will be removed! The data directory will be kept - to remove it, you must delete it manually or use the delete option.
307
307
  confirm.remote_store.clear = Clear vector stores (local only)?
308
308
  confirm.remote_store.file.delete = Delete selected file in API?
309
+ confirm.remote_store.files.truncate = Are you sure you want to remove all files from all Assistants?
310
+ confirm.remote_store.files.truncate.store = Are you sure you want to remove all files from the selected store?
309
311
  confirm.remote_store.import = Import all vector stores from API?
310
312
  confirm.remote_store.import_files = Import all files from API?
311
313
  confirm.remote_store.import_files.store = Import current store files from API?
312
- confirm.remote_store.openai.files.truncate = Are you sure you want to remove all files from all Assistants?
313
- confirm.remote_store.openai.files.truncate.store = Are you sure you want to remove all files from the selected store?
314
314
  confirm.remote_store.refresh = Refresh all stores?
315
315
  confirm.remote_store.truncate = Delete all vector stores in API?
316
316
  context.btn.clear = Clear memory
@@ -454,6 +454,7 @@ dialog.profile.status.removed = Profile removed from list
454
454
  dialog.profile.status.updated = Profile updated.
455
455
  dialog.profile.tip = By creating new profiles, you can use separate settings, different context histories, and user data, and quickly switch between them.
456
456
  dialog.profile.workdir.label = Workdir (directory for config files and user data)
457
+ dialog.remote_store = Remote vector stores (OpenAI, Google, xAI)
457
458
  dialog.remote_store.alert.assign = Please assign a vector store for the Assistant first.
458
459
  dialog.remote_store.alert.select = Please select a vector store first.
459
460
  dialog.remote_store.btn.close = Cancel
@@ -1158,11 +1159,14 @@ profile.current.suffix = (current)
1158
1159
  remote_store.expire_days = Expire days
1159
1160
  remote_store.expire_days.desc = 0 = Never
1160
1161
  remote_store.files.suffix = files
1161
- remote_store.google.hide_threads = Hide threads vector stores
1162
+ remote_store.google.hide_threads = Hide thread vector stores
1163
+ remote_store.hide_threads = Hide thread vector stores
1162
1164
  remote_store.id = ID
1165
+ remote_store.id.description = Use this ID in Remote tool config
1163
1166
  remote_store.menu.file.delete = Delete file
1164
1167
  remote_store.name = Name
1165
- remote_store.openai.hide_threads = Hide threads vector stores
1168
+ remote_store.provider = Provider
1169
+ remote_store.provider.desc = Select the provider first
1166
1170
  remote_store.status = Status
1167
1171
  remote_store.thread_only = (current thread only)
1168
1172
  remote_tool.openai.code_interpreter = Code Interpreter
@@ -1245,6 +1249,8 @@ settings.api_key.google = Google API KEY
1245
1249
  settings.api_key.google.desc = Required for the Google API and Gemini models.
1246
1250
  settings.api_key.hugging_face = HuggingFace API KEY
1247
1251
  settings.api_key.hugging_face.desc = Required for the HuggingFace API.
1252
+ settings.api_key_management.xai = Management API KEY
1253
+ settings.api_key_management.xai.desc = xAI Management API KEY. Required for Collections management via Remote vector stores tool.
1248
1254
  settings.api_key.mistral = Mistral AI API KEY
1249
1255
  settings.api_key.mistral.desc = Required for the Mistral AI API.
1250
1256
  settings.api_key.open_router = OpenRouter API KEY
@@ -1330,7 +1336,9 @@ settings.ctx.attachment.verbose = Verbose mode
1330
1336
  settings.ctx.attachment.verbose.desc = Log attachments usage to the console
1331
1337
  settings.ctx.audio = Always show audio icon
1332
1338
  settings.ctx.auto_summary = Context auto-summary
1339
+ settings.ctx.auto_summary.desc = Enable automatic summarization of the context on the conversation list on the left.
1333
1340
  settings.ctx.auto_summary.model = Model used for auto-summary
1341
+ settings.ctx.auto_summary.model.desc = Choose a model used for summarizing the context and preparing the title on the conversation list on the left.
1334
1342
  settings.ctx.code_interpreter = Show Code Interpreter output
1335
1343
  settings.ctx.code_interpreter.desc = If enabled, output from the code interpreter in the Assistant API will be displayed in real-time (in stream mode).
1336
1344
  settings.ctx.convert_lists = Convert lists to paragraphs
@@ -1478,34 +1486,56 @@ settings.prompt.img = Image generation
1478
1486
  settings.prompt.img.desc = Prompt for generating prompts for image model (if raw-mode is disabled). Image / Video modes only.
1479
1487
  settings.prompt.video = Video generation
1480
1488
  settings.prompt.video.desc = Prompt for generating prompts for video model (if raw-mode is disabled). Image / Videos mode only.
1489
+ settings.remote_tools.anthropic.code_execution = Code Execution
1490
+ settings.remote_tools.anthropic.code_execution.desc = Enable Code Execution remote tool.
1491
+ settings.remote_tools.anthropic.file_search = Web Search
1492
+ settings.remote_tools.anthropic.file_search.desc = Enable Web Search remote tool.
1493
+ settings.remote_tools.anthropic.mcp = Remote MCP
1494
+ settings.remote_tools.anthropic.mcp.desc = Enable MCP remote tool/connector.
1495
+ settings.remote_tools.anthropic.mcp.mcp_servers = Remote MCP configuration (mcp_servers)
1496
+ settings.remote_tools.anthropic.mcp.mcp_servers.desc = Configuration in JSON format (will be used in request)
1497
+ settings.remote_tools.anthropic.mcp.tools = Remote MCP configuration (tools)
1498
+ settings.remote_tools.anthropic.mcp.tools.desc = Configuration in JSON format (will be used in request)
1499
+ settings.remote_tools.anthropic.web_fetch = Web Fetch
1500
+ settings.remote_tools.anthropic.web_fetch.desc = Enable Web Fetch remote tool.
1481
1501
  settings.remote_tools.anthropic.web_search = Web Search
1482
1502
  settings.remote_tools.anthropic.web_search.desc = Enable Web Search remote tool.
1483
1503
  settings.remote_tools.code_interpreter = Code Interpreter
1484
- settings.remote_tools.code_interpreter.desc = Enable `code_interpreter` remote tool - Responses API only.
1504
+ settings.remote_tools.code_interpreter.desc = Enable Code Interpreter remote tool - Responses API only.
1485
1505
  settings.remote_tools.file_search = File search
1486
1506
  settings.remote_tools.file_search.args = File search vector store IDs
1487
1507
  settings.remote_tools.file_search.args.desc = Vector store IDs, separated by comma (,)
1488
- settings.remote_tools.file_search.desc = Enable `file_search` remote tool - Responses API only.
1508
+ settings.remote_tools.file_search.desc = Enable File Search remote tool - Responses API only.
1489
1509
  settings.remote_tools.google.code_interpreter = Code Interpreter
1490
1510
  settings.remote_tools.google.code_interpreter.desc = Enable Code Interpreter remote tool.
1491
1511
  settings.remote_tools.google.file_search = File search
1492
1512
  settings.remote_tools.google.file_search.args = File search vector store IDs
1493
1513
  settings.remote_tools.google.file_search.args.desc = Vector store IDs, separated by comma (,)
1494
- settings.remote_tools.google.file_search.desc = Enable `file_search` remote tool - Responses API only.
1514
+ settings.remote_tools.google.file_search.desc = Enable File Search remote tool - Responses API only.
1495
1515
  settings.remote_tools.google.maps = Google Maps
1496
1516
  settings.remote_tools.google.maps.desc = Enable Google Maps remote tool.
1497
1517
  settings.remote_tools.google.url_ctx = URL Context
1498
1518
  settings.remote_tools.google.url_ctx.desc = Enable URL Context remote tool.
1499
- settings.remote_tools.google.web_search = Google Search
1500
- settings.remote_tools.google.web_search.desc = Enable Google Search remote tool.
1519
+ settings.remote_tools.google.web_search = Web Search
1520
+ settings.remote_tools.google.web_search.desc = Enable Web Search remote tool.
1501
1521
  settings.remote_tools.image = Image generation
1502
- settings.remote_tools.image.desc = Enable `image_generation` remote tool - Responses API only.
1522
+ settings.remote_tools.image.desc = Enable Image generation remote tool - Responses API only.
1503
1523
  settings.remote_tools.mcp = Remote MCP
1504
1524
  settings.remote_tools.mcp.args = Remote MCP configuration
1505
1525
  settings.remote_tools.mcp.args.desc = Configuration in JSON format (will be used in request)
1506
- settings.remote_tools.mcp.desc = Enable `mcp` remote tool - Responses API only.
1526
+ settings.remote_tools.mcp.desc = Enable MCP remote tool - Responses API only.
1507
1527
  settings.remote_tools.web_search = Web Search
1508
- settings.remote_tools.web_search.desc = Enable `web_search` remote tool - Responses API only.
1528
+ settings.remote_tools.web_search.desc = Enable Web Search remote tool - Responses API only.
1529
+ settings.remote_tools.xai.code_execution = Code Execution
1530
+ settings.remote_tools.xai.code_execution.desc = Enable Code Execution remote tool.
1531
+ settings.remote_tools.xai.collections = Collections Search
1532
+ settings.remote_tools.xai.collections.args = Collection IDs
1533
+ settings.remote_tools.xai.collections.args.desc = Collection IDs, separated by comma (,)\nNOTE: Management API KEY is required for managing collections in Remote vector stores tool.
1534
+ settings.remote_tools.xai.collections.desc = Enable Collections Search remote tool.
1535
+ settings.remote_tools.xai.mcp = Remote MCP
1536
+ settings.remote_tools.xai.mcp.args = Remote MCP configuration
1537
+ settings.remote_tools.xai.mcp.args.desc = Configuration in JSON format (will be used in request)
1538
+ settings.remote_tools.xai.mcp.desc = Enable MCP remote tool - Responses API only.
1509
1539
  settings.remote_tools.xai.mode = Live Search mode
1510
1540
  settings.remote_tools.xai.mode.desc = Select mode: auto|on|off
1511
1541
  settings.remote_tools.xai.sources.news = Source: News
@@ -1514,6 +1544,10 @@ settings.remote_tools.xai.sources.web = Source: Web
1514
1544
  settings.remote_tools.xai.sources.web.desc = Enable Web in Live Search
1515
1545
  settings.remote_tools.xai.sources.x = Source: X / Twitter
1516
1546
  settings.remote_tools.xai.sources.x.desc = Enable X / Twitter in Live Search
1547
+ settings.remote_tools.xai.web_search = Web Search
1548
+ settings.remote_tools.xai.web_search.desc = Enable Web Search remote tool.
1549
+ settings.remote_tools.xai.x_search = X Search
1550
+ settings.remote_tools.xai.x_search.desc = Enable X Search remote tool.
1517
1551
  settings.render.code_syntax = Code syntax highlight
1518
1552
  settings.render.code_syntax.disabled = Disable syntax highlight
1519
1553
  settings.render.code_syntax.final_max_chars = Max chars to highlight (static)
@@ -291,11 +291,11 @@ confirm.profile.delete = ¿Estás seguro de querer eliminar el perfil? Se elimin
291
291
  confirm.profile.delete_all = ¿Estás seguro de querer eliminar el perfil junto con todos los archivos de configuración y datos de usuario en el directorio de trabajo del perfil?
292
292
  confirm.profile.reset = ¿Está seguro de que desea restaurar el perfil a la configuración predeterminada? ADVERTENCIA: ¡Todos los archivos de configuración y la base de datos de contexto serán eliminados! El directorio de datos se conservará: para eliminarlo, debe hacerlo manualmente o utilizar la opción de eliminación.
293
293
  confirm.remote_store.clear = ¿Limpiar bases vectoriales (solo local)?
294
+ confirm.remote_store.files.truncate = ¿Está seguro de eliminar todos los archivos de todas las bases?
295
+ confirm.remote_store.files.truncate.store = ¿Está seguro de eliminar todos los archivos de la base seleccionada?
294
296
  confirm.remote_store.import = ¿Importar todas las bases vectoriales desde la API?
295
297
  confirm.remote_store.import_files = ¿Importar todos los archivos desde la API?
296
298
  confirm.remote_store.import_files.store = ¿Importar los archivos de la base actual desde la API?
297
- confirm.remote_store.openai.files.truncate = ¿Está seguro de eliminar todos los archivos de todas las bases?
298
- confirm.remote_store.openai.files.truncate.store = ¿Está seguro de eliminar todos los archivos de la base seleccionada?
299
299
  confirm.remote_store.refresh = ¿Actualizar todas las bases?
300
300
  confirm.remote_store.truncate = ¿Eliminar todas las bases vectoriales en la API?
301
301
  context.btn.clear = Limpiar memoria
@@ -440,6 +440,7 @@ dialog.profile.status.removed = Perfil eliminado de la lista
440
440
  dialog.profile.status.updated = Perfil actualizado.
441
441
  dialog.profile.tip = Al crear nuevos perfiles, puedes usar configuraciones separadas, diferentes historiales de contexto y datos de usuario, y cambiar rápidamente entre ellos.
442
442
  dialog.profile.workdir.label = Directorio de trabajo (directorio para archivos de configuración y datos de usuario)
443
+ dialog.remote_store = Bases de vectores remotas (OpenAI, Google, etc.)
443
444
  dialog.remote_store.alert.assign = Por favor, asigne primero la base vectorial al Asistente.
444
445
  dialog.remote_store.alert.select = Por favor, seleccione primero la base vectorial.
445
446
  dialog.remote_store.btn.close = Cancelar
@@ -1141,9 +1142,9 @@ profile.current.suffix = (actual)
1141
1142
  remote_store.expire_days = Días de expiración
1142
1143
  remote_store.expire_days.desc = 0 = Nunca
1143
1144
  remote_store.files.suffix = Archivos
1145
+ remote_store.hide_threads = Ocultar almacenes de vectores de hilos
1144
1146
  remote_store.id = ID
1145
1147
  remote_store.name = Nombre
1146
- remote_store.openai.hide_threads = Ocultar almacenes de vectores de hilos
1147
1148
  remote_store.status = Estado
1148
1149
  remote_store.thread_only = (solo el hilo actual)
1149
1150
  reset.description = Descripción
@@ -1280,7 +1281,9 @@ settings.ctx.attachment.verbose = Modo detallado
1280
1281
  settings.ctx.attachment.verbose.desc = Registrar el uso de adjuntos en la consola
1281
1282
  settings.ctx.audio = Siempre mostrar el ícono de audio
1282
1283
  settings.ctx.auto_summary = Resumen automático del contexto
1284
+ settings.ctx.auto_summary.desc = Habilite la resumena automática del contexto en la lista de conversaciones a la izquierda.
1283
1285
  settings.ctx.auto_summary.model = Modelo utilizado para el resumen automático
1286
+ settings.ctx.auto_summary.model.desc = Elija un modelo utilizado para resumir el contexto y preparar el título en la lista de conversaciones a la izquierda.
1284
1287
  settings.ctx.code_interpreter = Mostrar salida del intérprete de código
1285
1288
  settings.ctx.code_interpreter.desc = Si está habilitado, la salida del intérprete de código en la API del Asistente se mostrará en tiempo real (en modo de transmisión).
1286
1289
  settings.ctx.convert_lists = Convertir listas en párrafos
@@ -291,11 +291,11 @@ confirm.profile.delete = Êtes-vous sûr de vouloir supprimer le profil ? Il ser
291
291
  confirm.profile.delete_all = Êtes-vous sûr de vouloir supprimer le profil avec tous les fichiers de configuration et les fichiers de données utilisateur dans le répertoire de travail du profil ?
292
292
  confirm.profile.reset = Êtes-vous sûr de vouloir restaurer le profil aux paramètres par défaut? ATTENTION: Tous les fichiers de configuration et la base de données de contexte seront supprimés! Le répertoire des données sera conservé - pour le supprimer, vous devez le faire manuellement ou utiliser l'option de suppression.
293
293
  confirm.remote_store.clear = Effacer les bases vectorielles (seulement local) ?
294
+ confirm.remote_store.files.truncate = Êtes-vous sûr de vouloir supprimer tous les fichiers de toutes les bases ?
295
+ confirm.remote_store.files.truncate.store = Êtes-vous sûr de vouloir supprimer tous les fichiers de la base sélectionnée ?
294
296
  confirm.remote_store.import = Importer toutes les bases vectorielles de l'API ?
295
297
  confirm.remote_store.import_files = Importer tous les fichiers de l'API ?
296
298
  confirm.remote_store.import_files.store = Importer les fichiers de la base actuelle de l'API ?
297
- confirm.remote_store.openai.files.truncate = Êtes-vous sûr de vouloir supprimer tous les fichiers de toutes les bases ?
298
- confirm.remote_store.openai.files.truncate.store = Êtes-vous sûr de vouloir supprimer tous les fichiers de la base sélectionnée ?
299
299
  confirm.remote_store.refresh = Actualiser toutes les bases ?
300
300
  confirm.remote_store.truncate = Supprimer toutes les bases vectorielles dans l'API ?
301
301
  context.btn.clear = Effacer la mémoire
@@ -439,6 +439,7 @@ dialog.profile.status.removed = Profil retiré de la liste
439
439
  dialog.profile.status.updated = Profil mis à jour.
440
440
  dialog.profile.tip = En créant de nouveaux profils, vous pouvez utiliser des paramètres séparés, des historiques de contextes différents et des données utilisateur, et basculer rapidement entre eux.
441
441
  dialog.profile.workdir.label = Répertoire de travail (dossier pour les fichiers de configuration et les données utilisateur)
442
+ dialog.remote_store = Bases de vecteurs distantes (OpenAI, Google, etc.)
442
443
  dialog.remote_store.alert.assign = Veuillez d'abord attribuer une base vectorielle à l'Assistant.
443
444
  dialog.remote_store.alert.select = Veuillez d'abord sélectionner une base vectorielle.
444
445
  dialog.remote_store.btn.close = Annuler
@@ -1140,9 +1141,9 @@ profile.current.suffix = (actuel)
1140
1141
  remote_store.expire_days = Jours d'expiration
1141
1142
  remote_store.expire_days.desc = 0 = Jamais
1142
1143
  remote_store.files.suffix = Fichiers
1144
+ remote_store.hide_threads = Masquer les bases de vecteurs de threads
1143
1145
  remote_store.id = ID
1144
1146
  remote_store.name = Nom
1145
- remote_store.openai.hide_threads = Masquer les bases de vecteurs de threads
1146
1147
  remote_store.status = Statut
1147
1148
  remote_store.thread_only = (uniquement le fil actuel)
1148
1149
  reset.description = Description
@@ -1279,7 +1280,9 @@ settings.ctx.attachment.verbose = Mode verbose
1279
1280
  settings.ctx.attachment.verbose.desc = Enregistrer l'utilisation des pièces jointes dans la console
1280
1281
  settings.ctx.audio = Toujours afficher l'icône audio
1281
1282
  settings.ctx.auto_summary = Résumé automatique du contexte
1283
+ settings.ctx.auto_summary.desc = Activez la synthèse automatique du contexte dans la liste de conversation à gauche.
1282
1284
  settings.ctx.auto_summary.model = Modèle utilisé pour le résumé automatique
1285
+ settings.ctx.auto_summary.model.desc = Choisissez un modèle utilisé pour résumer le contexte et préparer le titre dans la liste de conversation à gauche.
1283
1286
  settings.ctx.code_interpreter = Afficher la sortie de l'interprèteur de code
1284
1287
  settings.ctx.code_interpreter.desc = Si activé, la sortie de l'interpréteur de code dans l'API Assistant sera affichée en temps réel (en mode flux).
1285
1288
  settings.ctx.convert_lists = Convertir les listes en paragraphes
@@ -291,11 +291,11 @@ confirm.profile.delete = Sei sicuro di voler eliminare il profilo? Sarà rimosso
291
291
  confirm.profile.delete_all = Sei sicuro di voler eliminare il profilo insieme a tutti i file di configurazione e i file dati utente nella directory di lavoro del profilo?
292
292
  confirm.profile.reset = Sei sicuro di voler ripristinare il profilo alle impostazioni predefinite? ATTENZIONE: Tutti i file di configurazione e il database di contesto saranno rimossi! La directory dei dati verrà mantenuta - per rimuoverla, devi cancellarla manualmente o utilizzare l'opzione di cancellazione.
293
293
  confirm.remote_store.clear = Vuoi cancellare le basi vettoriali (solo locale)?
294
+ confirm.remote_store.files.truncate = Sei sicuro di voler rimuovere tutti i file da tutte le basi?
295
+ confirm.remote_store.files.truncate.store = Sei sicuro di voler rimuovere tutti i file dalla base selezionata?
294
296
  confirm.remote_store.import = Importare tutte le basi vettoriali da API?
295
297
  confirm.remote_store.import_files = Importare tutti i file da API?
296
298
  confirm.remote_store.import_files.store = Importare i file della base corrente da API?
297
- confirm.remote_store.openai.files.truncate = Sei sicuro di voler rimuovere tutti i file da tutte le basi?
298
- confirm.remote_store.openai.files.truncate.store = Sei sicuro di voler rimuovere tutti i file dalla base selezionata?
299
299
  confirm.remote_store.refresh = Aggiornare tutte le basi?
300
300
  confirm.remote_store.truncate = Cancellare tutte le basi vettoriali in API?
301
301
  context.btn.clear = Pulisci memoria
@@ -439,6 +439,7 @@ dialog.profile.status.removed = Profilo rimosso dall'elenco
439
439
  dialog.profile.status.updated = Profilo aggiornato.
440
440
  dialog.profile.tip = Creando nuovi profili, puoi utilizzare impostazioni separate, diverse cronologie di contesto e dati utente, e passare rapidamente da uno all'altro.
441
441
  dialog.profile.workdir.label = Workdir (directory per file di configurazione e dati utente)
442
+ dialog.remote_store = Basi vettoriali remote (OpenAI, Google, etc.)
442
443
  dialog.remote_store.alert.assign = Assegnare prima una base vettoriale all'Assistente.
443
444
  dialog.remote_store.alert.select = Selezionare prima una base vettoriale.
444
445
  dialog.remote_store.btn.close = Annulla
@@ -1140,9 +1141,9 @@ profile.current.suffix = (corrente)
1140
1141
  remote_store.expire_days = Giorni di scadenza
1141
1142
  remote_store.expire_days.desc = 0 = Mai
1142
1143
  remote_store.files.suffix = File
1144
+ remote_store.hide_threads = Nascondi archivi vettoriali dei thread
1143
1145
  remote_store.id = ID
1144
1146
  remote_store.name = Nome
1145
- remote_store.openai.hide_threads = Nascondi archivi vettoriali dei thread
1146
1147
  remote_store.status = Stato
1147
1148
  remote_store.thread_only = (solo il thread corrente)
1148
1149
  reset.description = Descrizione
@@ -1279,7 +1280,9 @@ settings.ctx.attachment.verbose = Modalità Verbose
1279
1280
  settings.ctx.attachment.verbose.desc = Log utilizzo degli allegati nella console
1280
1281
  settings.ctx.audio = Mostra sempre l'icona audio
1281
1282
  settings.ctx.auto_summary = Riassunto automatico del contesto
1283
+ settings.ctx.auto_summary.desc = Abilita il riassunto automatico del contesto nella lista delle conversazioni a sinistra.
1282
1284
  settings.ctx.auto_summary.model = Modello utilizzato per riassunto automatico
1285
+ settings.ctx.auto_summary.model.desc = Scegli un modello utilizzato per riassumere il contesto e preparare il titolo nella lista delle conversazioni a sinistra.
1283
1286
  settings.ctx.code_interpreter = Mostra l'output dell'interprete del codice
1284
1287
  settings.ctx.code_interpreter.desc = Se abilitato, l'output dell'interprete del codice nell'API dell'Assistente verrà visualizzato in tempo reale (in modalità streaming).
1285
1288
  settings.ctx.convert_lists = Converti liste in paragrafi
@@ -291,11 +291,11 @@ confirm.profile.delete = Czy na pewno chcesz usunąć profil? Zostanie on usuni
291
291
  confirm.profile.delete_all = Czy jesteś pewien, że chcesz usunąć profil wraz ze wszystkimi plikami konfiguracyjnymi i plikami danych użytkownika w katalogu roboczym profilu?
292
292
  confirm.profile.reset = Czy na pewno chcesz przywrócić profil do ustawień domyślnych? UWAGA: Wszystkie pliki konfiguracyjne oraz baza danych kontekstów zostaną usunięte! Katalog z danymi zostanie zachowany - aby go usunąć, musisz zrobić to ręcznie lub użyć opcji usuwania.
293
293
  confirm.remote_store.clear = Wyczyścić bazy wektorowe (tylko lokalnie)?
294
+ confirm.remote_store.files.truncate = Czy na pewno usunąć wszystkie pliki ze wszystkich baz?
295
+ confirm.remote_store.files.truncate.store = Czy na pewno usunąć wszystkie pliki z wybranej bazy?
294
296
  confirm.remote_store.import = Zaimportować wszystkie bazy wektorowe z API?
295
297
  confirm.remote_store.import_files = Zaimportować wszystkie pliki z API?
296
298
  confirm.remote_store.import_files.store = Zaimportować bieżące pliki bazy z API?
297
- confirm.remote_store.openai.files.truncate = Czy na pewno usunąć wszystkie pliki ze wszystkich baz?
298
- confirm.remote_store.openai.files.truncate.store = Czy na pewno usunąć wszystkie pliki z wybranej bazy?
299
299
  confirm.remote_store.refresh = Odświeżyć wszystkie bazy?
300
300
  confirm.remote_store.truncate = Usunąć wszystkie bazy wektorowe w API?
301
301
  context.btn.clear = Wyczyść pamięć
@@ -303,7 +303,7 @@ context.items = elementy
303
303
  context.label = Kontekst
304
304
  context_menu.zoom = Powiększenie
305
305
  context_menu.zoom.in = Powiększ
306
- context_menu.zoom.out = Pomniejsz
306
+ context_menu.zoom.out = Pomniejsz
307
307
  context.tokens = tokeny
308
308
  ctx.delete.all.confirm = Czy na pewno usunąć CAŁĄ historię?
309
309
  ctx.delete.confirm = Czy na pewno usunąć?
@@ -439,6 +439,7 @@ dialog.profile.status.removed = Profil usunięty z listy
439
439
  dialog.profile.status.updated = Profil zaktualizowany.
440
440
  dialog.profile.tip = Tworząc nowe profile, możesz używać oddzielnych ustawień, różnych historii kontekstów i danych użytkownika, oraz szybko przełączać się między nimi.
441
441
  dialog.profile.workdir.label = Katalog roboczy (katalog dla plików konfiguracyjnych i danych użytkownika)
442
+ dialog.remote_store = Zdalne bazy wektorowe (OpenAI, Google, etc.)
442
443
  dialog.remote_store.alert.assign = Proszę najpierw przypisać bazę wektorową dla Asystenta.
443
444
  dialog.remote_store.alert.select = Proszę najpierw wybrać bazę wektorową.
444
445
  dialog.remote_store.btn.close = Anuluj
@@ -1141,9 +1142,9 @@ profile.current.suffix = (bieżący)
1141
1142
  remote_store.expire_days = Dni ważności
1142
1143
  remote_store.expire_days.desc = 0 = Nigdy
1143
1144
  remote_store.files.suffix = Pliki
1145
+ remote_store.hide_threads = Ukryj bazy wątków
1144
1146
  remote_store.id = ID
1145
1147
  remote_store.name = Nazwa
1146
- remote_store.openai.hide_threads = Ukryj bazy wątków
1147
1148
  remote_store.status = Status
1148
1149
  remote_store.thread_only = (tylko bieżący wątek)
1149
1150
  reset.description = Opis
@@ -1280,7 +1281,9 @@ settings.ctx.attachment.verbose = Tryb szczegółowy
1280
1281
  settings.ctx.attachment.verbose.desc = Loguj użycie załączników do konsoli
1281
1282
  settings.ctx.audio = Zawsze pokazuj ikonę audio
1282
1283
  settings.ctx.auto_summary = Kontekst: auto-podsumowanie
1284
+ settings.ctx.auto_summary.desc = Włącz automatyczne podsumowywanie kontekstu na liście konwersacji po lewej.
1283
1285
  settings.ctx.auto_summary.model = Model używany do auto-podsumowania
1286
+ settings.ctx.auto_summary.model.desc = Wybierz model używany do podsumowywania kontekstu i przygotowywania tytułu na liście konwersacji po lewej.
1284
1287
  settings.ctx.code_interpreter = Pokaż wyniki interpretacji kodu
1285
1288
  settings.ctx.code_interpreter.desc = Jeśli ta opcja jest włączona, wyniki z interpretacji kodu w API Asystenta będą wyświetlane w czasie rzeczywistym (w trybie strumienia).
1286
1289
  settings.ctx.convert_lists = Konwertuj listy na akapity
@@ -291,11 +291,11 @@ confirm.profile.delete = Ви впевнені, що хочете видалит
291
291
  confirm.profile.delete_all = Ви впевнені, що хочете видалити профіль разом зі всіма конфігураційними файлами та файлами даних користувача у робочій директорії профілю?
292
292
  confirm.profile.reset = Ви впевнені, що хочете відновити профіль до налаштувань за замовчуванням? УВАГА: Всі файли конфігурації та база даних контекстів будуть видалені! Директорія даних залишиться - щоб видалити її, вам доведеться зробити це вручну або скористатися опцією видалення.
293
293
  confirm.remote_store.clear = Очистити векторні бази (лише локально)?
294
+ confirm.remote_store.files.truncate = Ви впевнені, що хочете видалити усі файли з усіх баз?
295
+ confirm.remote_store.files.truncate.store = Ви впевнені, що хочете видалити усі файли з обраної бази?
294
296
  confirm.remote_store.import = Імпортувати всі векторні бази з API?
295
297
  confirm.remote_store.import_files = Імпортувати всі файли з API?
296
298
  confirm.remote_store.import_files.store = Імпортувати файли поточної бази з API?
297
- confirm.remote_store.openai.files.truncate = Ви впевнені, що хочете видалити усі файли з усіх баз?
298
- confirm.remote_store.openai.files.truncate.store = Ви впевнені, що хочете видалити усі файли з обраної бази?
299
299
  confirm.remote_store.refresh = Оновити всі бази?
300
300
  confirm.remote_store.truncate = Видалити всі векторні бази в API?
301
301
  context.btn.clear = Очистити пам'ять
@@ -439,6 +439,7 @@ dialog.profile.status.removed = Профіль видалено зі списк
439
439
  dialog.profile.status.updated = Профіль оновлено.
440
440
  dialog.profile.tip = Створюючи нові профілі, ви можете використовувати окремі налаштування, різні історії контекстів та дані користувачів, а також швидко перемикатися між ними.
441
441
  dialog.profile.workdir.label = Робоча директорія (директорія для конфігураційних файлів та даних користувача)
442
+ dialog.remote_store = Віддалені векторні бази (OpenAI, Google, тощо.)
442
443
  dialog.remote_store.alert.assign = Будь ласка, спочатку призначте векторну базу Асистенту.
443
444
  dialog.remote_store.alert.select = Будь ласка, спочатку виберіть векторну базу.
444
445
  dialog.remote_store.btn.close = Скасувати
@@ -1140,9 +1141,9 @@ profile.current.suffix = (поточний)
1140
1141
  remote_store.expire_days = Дні до закінчення
1141
1142
  remote_store.expire_days.desc = 0 = Ніколи
1142
1143
  remote_store.files.suffix = Файли
1144
+ remote_store.hide_threads = Приховати векторні сховища тем
1143
1145
  remote_store.id = ID
1144
1146
  remote_store.name = Назва
1145
- remote_store.openai.hide_threads = Приховати векторні сховища тем
1146
1147
  remote_store.status = Статус
1147
1148
  remote_store.thread_only = (лише поточний потік)
1148
1149
  reset.description = Опис
@@ -1279,7 +1280,9 @@ settings.ctx.attachment.verbose = Детальний режим
1279
1280
  settings.ctx.attachment.verbose.desc = Реєструвати використання вкладень у консолі
1280
1281
  settings.ctx.audio = Завжди показувати значок аудіо
1281
1282
  settings.ctx.auto_summary = Автоматичне стиснення контексту
1283
+ settings.ctx.auto_summary.desc = Увімкніть автоматичне підсумовування контексту у списку розмов зліва.
1282
1284
  settings.ctx.auto_summary.model = Модель, що використовується для автоматичного стиснення
1285
+ settings.ctx.auto_summary.model.desc = Виберіть модель, що використовується для підсумовування контексту та підготовки заголовка у списку розмов зліва.
1283
1286
  settings.ctx.code_interpreter = Показати вивід інтерпретатора коду
1284
1287
  settings.ctx.code_interpreter.desc = Якщо включено, результати інтерпретатора коду в API Асистента будуть відображатися в реальному часі (в режимі потоку).
1285
1288
  settings.ctx.convert_lists = Конвертувати списки в абзаци
@@ -291,11 +291,11 @@ confirm.profile.delete = 您确定要删除个人资料吗? 仅将从列表中
291
291
  confirm.profile.delete_all = 您确定要删除个人资料及其工作目录中的所有配置文件和用户数据文件吗?
292
292
  confirm.profile.reset = 您确定要将配置文件恢复为默认设置吗?警告:所有配置文件和上下文数据库将被删除!数据目录将被保留 - 要删除它,必须手动操作或使用删除选项。
293
293
  confirm.remote_store.clear = 清空矢量存储(仅本地)?
294
+ confirm.remote_store.files.truncate = 确定要从所有存储中移除所有文件吗?
295
+ confirm.remote_store.files.truncate.store = 确定要从所选存储中移除所有文件吗?
294
296
  confirm.remote_store.import = 从 API 导入所有矢量存储?
295
297
  confirm.remote_store.import_files = 从 API 导入所有文件?
296
298
  confirm.remote_store.import_files.store = 从 API 导入当前存储的文件?
297
- confirm.remote_store.openai.files.truncate = 确定要从所有存储中移除所有文件吗?
298
- confirm.remote_store.openai.files.truncate.store = 确定要从所选存储中移除所有文件吗?
299
299
  confirm.remote_store.refresh = 刷新所有存储?
300
300
  confirm.remote_store.truncate = 删除 API 中的所有矢量存储?
301
301
  context.btn.clear = 清除記憶體
@@ -439,6 +439,7 @@ dialog.profile.status.removed = 个人资料已从列表中移除
439
439
  dialog.profile.status.updated = 个人资料已更新。
440
440
  dialog.profile.tip = 通过创建新的个人资料,您可以使用独立的设置、不同的上下文历史记录和用户数据,并且可以快速在它们之间切换。
441
441
  dialog.profile.workdir.label = 工作目录(配置文件和用户数据的目录)
442
+ dialog.remote_store = 远程向量数据库(OpenAI,Google等)
442
443
  dialog.remote_store.alert.assign = 请先为助手分配矢量存储。
443
444
  dialog.remote_store.alert.select = 请先选择矢量存储。
444
445
  dialog.remote_store.btn.close = 取消
@@ -1140,9 +1141,9 @@ profile.current.suffix = (当前)
1140
1141
  remote_store.expire_days = 过期天数
1141
1142
  remote_store.expire_days.desc = 0 = 永不
1142
1143
  remote_store.files.suffix = 文件
1144
+ remote_store.hide_threads = 隐藏线程向量存储
1143
1145
  remote_store.id = ID
1144
1146
  remote_store.name = 名称
1145
- remote_store.openai.hide_threads = 隐藏线程向量存储
1146
1147
  remote_store.status = 状态
1147
1148
  remote_store.thread_only = (仅当前线程)
1148
1149
  reset.description = 描述
@@ -1279,7 +1280,9 @@ settings.ctx.attachment.verbose = 详细模式
1279
1280
  settings.ctx.attachment.verbose.desc = 将附件使用记录到控制台
1280
1281
  settings.ctx.audio = 总是显示音频图标
1281
1282
  settings.ctx.auto_summary = 上下文自動摘要
1283
+ settings.ctx.auto_summary.desc = 启用左侧对话列表中上下文的自动总结。
1282
1284
  settings.ctx.auto_summary.model = 用於自動摘要的模型
1285
+ settings.ctx.auto_summary.model.desc = 选择用于总结上下文并准备左侧对话列表标题的模型。
1283
1286
  settings.ctx.code_interpreter = 显示代码解释器输出
1284
1287
  settings.ctx.code_interpreter.desc = 如果启用,助手 API 中的代码解释器输出将实时显示(以流模式)。
1285
1288
  settings.ctx.convert_lists = 将列表转换为段落
pygpt_net/icons.qrc CHANGED
@@ -56,7 +56,11 @@
56
56
  <file alias="favorite.svg">data/icons/favorite.svg</file>
57
57
  <file alias="fit.svg">data/icons/fit.svg</file>
58
58
  <file alias="folder.svg">data/icons/folder.svg</file>
59
+ <file alias="folder_eye.svg">data/icons/folder_eye.svg</file>
60
+ <file alias="folder_eye_filled.svg">data/icons/folder_eye_filled.svg</file>
59
61
  <file alias="folder_filled.svg">data/icons/folder_filled.svg</file>
62
+ <file alias="folder_open.svg">data/icons/folder_open.svg</file>
63
+ <file alias="folder_open_filled.svg">data/icons/folder_open_filled.svg</file>
60
64
  <file alias="forward.svg">data/icons/forward.svg</file>
61
65
  <file alias="full.svg">data/icons/full.svg</file>
62
66
  <file alias="fullscreen.svg">data/icons/fullscreen.svg</file>