pygpt-net 2.6.66__py3-none-any.whl → 2.7.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. pygpt_net/CHANGELOG.txt +18 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/controller/assistant/assistant.py +13 -8
  4. pygpt_net/controller/assistant/batch.py +29 -15
  5. pygpt_net/controller/assistant/files.py +19 -14
  6. pygpt_net/controller/assistant/store.py +63 -41
  7. pygpt_net/controller/attachment/attachment.py +45 -35
  8. pygpt_net/controller/chat/attachment.py +50 -39
  9. pygpt_net/controller/config/field/dictionary.py +26 -14
  10. pygpt_net/controller/config/field/textarea.py +2 -2
  11. pygpt_net/controller/ctx/common.py +27 -17
  12. pygpt_net/controller/ctx/ctx.py +182 -101
  13. pygpt_net/controller/dialogs/info.py +2 -2
  14. pygpt_net/controller/files/files.py +101 -41
  15. pygpt_net/controller/idx/indexer.py +87 -31
  16. pygpt_net/controller/kernel/kernel.py +13 -2
  17. pygpt_net/controller/media/media.py +29 -1
  18. pygpt_net/controller/mode/mode.py +3 -3
  19. pygpt_net/controller/model/editor.py +141 -21
  20. pygpt_net/controller/model/importer.py +153 -54
  21. pygpt_net/controller/painter/painter.py +2 -2
  22. pygpt_net/controller/presets/experts.py +68 -15
  23. pygpt_net/controller/presets/presets.py +72 -36
  24. pygpt_net/controller/settings/editor.py +25 -1
  25. pygpt_net/controller/settings/profile.py +76 -35
  26. pygpt_net/controller/settings/workdir.py +70 -39
  27. pygpt_net/core/assistants/files.py +20 -18
  28. pygpt_net/core/filesystem/actions.py +111 -10
  29. pygpt_net/core/filesystem/filesystem.py +2 -1
  30. pygpt_net/core/idx/idx.py +12 -11
  31. pygpt_net/core/idx/worker.py +13 -1
  32. pygpt_net/core/models/models.py +4 -4
  33. pygpt_net/core/profile/profile.py +13 -3
  34. pygpt_net/core/types/image.py +10 -1
  35. pygpt_net/core/video/video.py +43 -3
  36. pygpt_net/data/config/config.json +3 -3
  37. pygpt_net/data/config/models.json +25 -14
  38. pygpt_net/data/css/style.dark.css +39 -1
  39. pygpt_net/data/css/style.light.css +39 -1
  40. pygpt_net/data/locale/locale.de.ini +4 -1
  41. pygpt_net/data/locale/locale.en.ini +4 -1
  42. pygpt_net/data/locale/locale.es.ini +4 -1
  43. pygpt_net/data/locale/locale.fr.ini +4 -1
  44. pygpt_net/data/locale/locale.it.ini +4 -1
  45. pygpt_net/data/locale/locale.pl.ini +5 -2
  46. pygpt_net/data/locale/locale.uk.ini +4 -1
  47. pygpt_net/data/locale/locale.zh.ini +4 -1
  48. pygpt_net/item/model.py +1 -1
  49. pygpt_net/provider/api/openai/__init__.py +4 -2
  50. pygpt_net/provider/api/openai/video.py +2 -2
  51. pygpt_net/provider/core/config/patch.py +9 -1
  52. pygpt_net/provider/core/model/patch.py +26 -1
  53. pygpt_net/tools/image_viewer/tool.py +17 -0
  54. pygpt_net/tools/text_editor/tool.py +9 -0
  55. pygpt_net/ui/__init__.py +2 -2
  56. pygpt_net/ui/dialog/models.py +10 -1
  57. pygpt_net/ui/layout/ctx/ctx_list.py +16 -6
  58. pygpt_net/ui/layout/toolbox/video.py +14 -6
  59. pygpt_net/ui/main.py +3 -1
  60. pygpt_net/ui/widget/calendar/select.py +3 -3
  61. pygpt_net/ui/widget/filesystem/explorer.py +1082 -142
  62. pygpt_net/ui/widget/lists/assistant.py +185 -24
  63. pygpt_net/ui/widget/lists/assistant_store.py +245 -42
  64. pygpt_net/ui/widget/lists/attachment.py +230 -47
  65. pygpt_net/ui/widget/lists/attachment_ctx.py +189 -33
  66. pygpt_net/ui/widget/lists/base_list_combo.py +2 -2
  67. pygpt_net/ui/widget/lists/context.py +1253 -70
  68. pygpt_net/ui/widget/lists/experts.py +110 -8
  69. pygpt_net/ui/widget/lists/model_editor.py +217 -14
  70. pygpt_net/ui/widget/lists/model_importer.py +125 -6
  71. pygpt_net/ui/widget/lists/preset.py +460 -71
  72. pygpt_net/ui/widget/lists/profile.py +149 -27
  73. pygpt_net/ui/widget/lists/uploaded.py +230 -38
  74. pygpt_net/ui/widget/option/combo.py +1046 -32
  75. pygpt_net/ui/widget/option/dictionary.py +35 -7
  76. pygpt_net/ui/widget/option/input.py +3 -1
  77. {pygpt_net-2.6.66.dist-info → pygpt_net-2.7.0.dist-info}/METADATA +20 -57
  78. {pygpt_net-2.6.66.dist-info → pygpt_net-2.7.0.dist-info}/RECORD +81 -81
  79. {pygpt_net-2.6.66.dist-info → pygpt_net-2.7.0.dist-info}/LICENSE +0 -0
  80. {pygpt_net-2.6.66.dist-info → pygpt_net-2.7.0.dist-info}/WHEEL +0 -0
  81. {pygpt_net-2.6.66.dist-info → pygpt_net-2.7.0.dist-info}/entry_points.txt +0 -0
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2025.09.01 23:00:00 #
9
+ # Updated Date: 2025.12.26 12:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import uuid
@@ -18,7 +18,10 @@ from time import strftime
18
18
 
19
19
  from PySide6.QtCore import Slot, QObject
20
20
 
21
- from pygpt_net.core.types import VIDEO_AVAILABLE_ASPECT_RATIOS
21
+ from pygpt_net.core.types import (
22
+ VIDEO_AVAILABLE_ASPECT_RATIOS,
23
+ VIDEO_AVAILABLE_RESOLUTIONS,
24
+ )
22
25
  from pygpt_net.item.ctx import CtxItem
23
26
  from pygpt_net.utils import trans
24
27
 
@@ -267,7 +270,7 @@ class Video(QObject):
267
270
 
268
271
  def get_aspect_ratio_option(self) -> dict:
269
272
  """
270
- Get image resolution option for UI
273
+ Get video aspect ratio option for UI
271
274
 
272
275
  :return: dict
273
276
  """
@@ -279,6 +282,34 @@ class Video(QObject):
279
282
  "keys": self.get_available_aspect_ratio(),
280
283
  }
281
284
 
285
+ def get_resolution_option(self) -> dict:
286
+ """
287
+ Get video resolution option for UI
288
+
289
+ :return: dict
290
+ """
291
+ return {
292
+ "type": "combo",
293
+ "slider": True,
294
+ "label": "video.resolution",
295
+ "value": "720p",
296
+ "keys": self.get_available_resolutions(),
297
+ }
298
+
299
+ def get_duration_option(self) -> dict:
300
+ """
301
+ Get video duration option for UI
302
+
303
+ :return: dict
304
+ """
305
+ return {
306
+ "type": "int",
307
+ "slider": False,
308
+ "label": "video.duration",
309
+ "value": 8,
310
+ "placeholder": "s",
311
+ }
312
+
282
313
  def get_available_aspect_ratio(self, model: str = None) -> Dict[str, str]:
283
314
  """
284
315
  Get available image resolutions
@@ -288,3 +319,12 @@ class Video(QObject):
288
319
  """
289
320
  return VIDEO_AVAILABLE_ASPECT_RATIOS
290
321
 
322
+ def get_available_resolutions(self, model: str = None) -> Dict[str, str]:
323
+ """
324
+ Get available image resolutions
325
+
326
+ :param model: model name
327
+ :return: dict of available resolutions
328
+ """
329
+ return VIDEO_AVAILABLE_RESOLUTIONS
330
+
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.6.66",
4
- "app.version": "2.6.66",
5
- "updated_at": "2025-12-15T00:00:00"
3
+ "version": "2.7.0",
4
+ "app.version": "2.7.0",
5
+ "updated_at": "2025-12-28T00:00:00"
6
6
  },
7
7
  "access.audio.event.speech": false,
8
8
  "access.audio.event.speech.disabled": [],
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.6.66",
4
- "app.version": "2.6.66",
5
- "updated_at": "2025-12-25T00:00:00"
3
+ "version": "2.7.0",
4
+ "app.version": "2.7.0",
5
+ "updated_at": "2025-12-28T00:00:00"
6
6
  },
7
7
  "items": {
8
8
  "SpeakLeash/bielik-11b-v2.3-instruct:Q4_K_M": {
@@ -293,7 +293,8 @@
293
293
  "tokens": 64000,
294
294
  "default": false,
295
295
  "input": [
296
- "text"
296
+ "text",
297
+ "image"
297
298
  ],
298
299
  "output": [
299
300
  "text"
@@ -379,7 +380,8 @@
379
380
  "text"
380
381
  ],
381
382
  "output": [
382
- "text"
383
+ "text",
384
+ "image"
383
385
  ],
384
386
  "extra": {},
385
387
  "imported": false,
@@ -1066,7 +1068,8 @@
1066
1068
  "tokens": 0,
1067
1069
  "default": false,
1068
1070
  "input": [
1069
- "text"
1071
+ "text",
1072
+ "image"
1070
1073
  ],
1071
1074
  "output": [
1072
1075
  "text"
@@ -1144,7 +1147,8 @@
1144
1147
  "tokens": 0,
1145
1148
  "default": false,
1146
1149
  "input": [
1147
- "text"
1150
+ "text",
1151
+ "image"
1148
1152
  ],
1149
1153
  "output": [
1150
1154
  "text"
@@ -2399,7 +2403,8 @@
2399
2403
  "tokens": 128000,
2400
2404
  "default": false,
2401
2405
  "input": [
2402
- "text"
2406
+ "text",
2407
+ "image"
2403
2408
  ],
2404
2409
  "output": [
2405
2410
  "text"
@@ -2457,7 +2462,8 @@
2457
2462
  "tokens": 128000,
2458
2463
  "default": false,
2459
2464
  "input": [
2460
- "text"
2465
+ "text",
2466
+ "image"
2461
2467
  ],
2462
2468
  "output": [
2463
2469
  "text"
@@ -2516,7 +2522,8 @@
2516
2522
  "tokens": 128000,
2517
2523
  "default": false,
2518
2524
  "input": [
2519
- "text"
2525
+ "text",
2526
+ "image"
2520
2527
  ],
2521
2528
  "output": [
2522
2529
  "text"
@@ -3468,7 +3475,8 @@
3468
3475
  "tokens": 0,
3469
3476
  "default": false,
3470
3477
  "input": [
3471
- "text"
3478
+ "text",
3479
+ "image"
3472
3480
  ],
3473
3481
  "output": [
3474
3482
  "image"
@@ -4564,7 +4572,8 @@
4564
4572
  "tokens": 0,
4565
4573
  "default": false,
4566
4574
  "input": [
4567
- "text"
4575
+ "text",
4576
+ "image"
4568
4577
  ],
4569
4578
  "output": [
4570
4579
  "video"
@@ -4672,7 +4681,8 @@
4672
4681
  "tokens": 0,
4673
4682
  "default": false,
4674
4683
  "input": [
4675
- "text"
4684
+ "text",
4685
+ "image"
4676
4686
  ],
4677
4687
  "output": [
4678
4688
  "video"
@@ -4708,7 +4718,8 @@
4708
4718
  "tokens": 0,
4709
4719
  "default": false,
4710
4720
  "input": [
4711
- "text"
4721
+ "text",
4722
+ "image"
4712
4723
  ],
4713
4724
  "output": [
4714
4725
  "video"
@@ -174,4 +174,42 @@ NodeEditor {{
174
174
  /* Status Bar */
175
175
  #StatusBarTimer {{
176
176
  color: #999 !important;
177
- }}
177
+ }}
178
+
179
+ /* ComboBox */
180
+ QComboBox QAbstractItemView {{
181
+ border: 1px solid rgba(0,0,0,0.18);
182
+ border-radius: 0;
183
+ outline: 0;
184
+ }}
185
+
186
+ QListView#ComboPopupList {{
187
+ border-radius: 0;
188
+ outline: 0;
189
+ }}
190
+
191
+ QComboBox QAbstractItemView::item,
192
+ QListView#ComboPopupList::item {{
193
+ min-height: 20px;
194
+ padding: 8px 33px;
195
+ margin: 0;
196
+ color: #fff;
197
+ }}
198
+
199
+ QComboBox QAbstractItemView::item:selected,
200
+ QListView#ComboPopupList::item:selected {{
201
+ background: #fff;
202
+ color: #000;
203
+ selection-color: #000;
204
+ font-weight: bold;
205
+ }}
206
+
207
+ QListView#ComboPopupList::item:disabled {{
208
+ color: #c9c9c9;
209
+ background: #363d42;
210
+ padding: 15px;
211
+ }}
212
+
213
+ QComboBox QAbstractItemView::item:hover,
214
+ QListView#ComboPopupList::item:hover {{ }}
215
+ QListView#ComboPopupList > QWidget#ComboPopupViewport {{ }}
@@ -290,4 +290,42 @@ NodeEditor {{
290
290
  /* Status Bar */
291
291
  #StatusBarTimer {{
292
292
  color: #5d5d5d !important;
293
- }}
293
+ }}
294
+
295
+ /* ComboBox */
296
+ QComboBox QAbstractItemView {{
297
+ border: 1px solid rgba(0,0,0,0.18);
298
+ border-radius: 0;
299
+ outline: 0;
300
+ }}
301
+
302
+ QListView#ComboPopupList {{
303
+ border-radius: 0;
304
+ outline: 0;
305
+ }}
306
+
307
+ QComboBox QAbstractItemView::item,
308
+ QListView#ComboPopupList::item {{
309
+ min-height: 20px;
310
+ padding: 8px 32px;
311
+ margin: 0;
312
+ color: #000;
313
+ }}
314
+
315
+ QComboBox QAbstractItemView::item:selected,
316
+ QListView#ComboPopupList::item:selected {{
317
+ background: #fff;
318
+ color: #000;
319
+ selection-color: #000;
320
+ font-weight: bold;
321
+ }}
322
+
323
+ QListView#ComboPopupList::item:disabled {{
324
+ color: #3f3f3f;
325
+ background: #d9d9d9;
326
+ padding: 15px;
327
+ }}
328
+
329
+ QComboBox QAbstractItemView::item:hover,
330
+ QListView#ComboPopupList::item:hover {{ }}
331
+ QListView#ComboPopupList > QWidget#ComboPopupViewport {{ }}
@@ -16,6 +16,7 @@ action.ctx.indexed = Zuletzt indiziert am
16
16
  action.ctx.new = Neuer Kontext...
17
17
  action.ctx.new.in_group = Neuer Kontext in: {group}...
18
18
  action.ctx_reset = Zurücksetzen (löschen)
19
+ action.cut = Schneiden
19
20
  action.delete = Löschen
20
21
  action.download = Herunterladen
21
22
  action.duplicate = Duplizieren
@@ -26,6 +27,7 @@ action.group.new = Neue Gruppe
26
27
  action.group.remove = Aus Gruppe entfernen
27
28
  action.idx = Index with LlamaIndex...
28
29
  action.idx.remove = Entfernen aus
30
+ action.import = Importieren
29
31
  action.mkdir = Verzeichnis erstellen...
30
32
  action.move_to = Verschieben nach
31
33
  action.new = Neu...
@@ -789,6 +791,7 @@ ipython.docker.install = Für die Ausführung von IPython muss Docker installier
789
791
  ipython.docker.install.snap = \n\nSNAP VERSION: \nSie sind nicht mit dem eingebauten Docker-Daemon verbunden. Bitte verbinden Sie die Slots mit:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...und starten Sie die Anwendung neu.
790
792
  ipython.image.build = Das Docker-Image für IPython wurde noch nicht erstellt. Dies wird jetzt geschehen und es kann eine Weile dauern (aber es ist ein einmaliger Vorgang). Die Ausführung des Befehls wurde pausiert. Sobald das Image erstellt ist, führen Sie den Befehl bitte erneut aus.
791
793
  layout.split = Bildschirm teilen
794
+ list.all = --- ALLE ---
792
795
  menu.audio = Audio / Stimme
793
796
  menu.audio.cache.clear = Audio-Cache löschen...
794
797
  menu.audio.control.global = Sprachsteuerung (global)
@@ -1569,7 +1572,7 @@ tip.input.attachments.ctx = Poniżej znajdują się załączone i zindeksowane z
1569
1572
  tip.input.attachments.uploaded = Hier ist eine Liste von Dateien, die im Assistant-Modus auf den Server hochgeladen wurden. Diese Dateien befinden sich auf einem entfernten Server und nicht auf Ihrem lokalen Computer, sodass das Modell sie mit extern auf dem entfernten Server verfügbaren Werkzeugen verwenden und analysieren kann.
1570
1573
  tip.output.tab.calendar = Mit dem Kalender können Sie zu ausgewählten Gesprächen von einem bestimmten Tag navigieren. Klicken Sie in den Kalender auf einen Tag, um die Anzeige des Chat-Verlaufs auf diesen Tag zu beschränken. Sie können auch Tagesnotizen erstellen und ihnen farbige Etiketten zuweisen.
1571
1574
  tip.output.tab.draw = Sie können das Zeichenwerkzeug für schnelle Skizzen oder das Erfassen eines Bildes von der Kamera verwenden, und dann solche Bilder im Vision-Modus zur Analyse an die KI senden. Sie können hier ein Bild mit der Kamera erfassen oder ein Bild von der Festplatte öffnen. Wenn Sie ein Bild verwenden, wird es als Anhang in der gesendeten Nachricht enthalten sein.
1572
- tip.output.tab.files = Dieses Verzeichnis mit Arbeitsdateien befindet sich auf Ihrer Festplatte. Die Dateien hier sind für KI zum Lesen zugänglich. KI kann Dateien lesen und schreiben sowie Code aus diesem Verzeichnis ausführen. Sie können dieses Verzeichnis lokal auf Ihrem System öffnen und beliebige Dateien hierhin verschieben. Sie können auch die Dateien mit Llama-Index indizieren, damit sie als zusätzliche Wissens Quelle dienen.
1575
+ tip.output.tab.files = Dieses Verzeichnis mit Arbeitsdateien befindet sich auf Ihrer Festplatte. Die Dateien hier sind für KI zum Lesen zugänglich. KI kann Dateien lesen und schreiben sowie Code aus diesem Verzeichnis ausführen. Sie können dieses Verzeichnis lokal auf Ihrem System öffnen und beliebige Dateien hierhin verschieben. Sie können auch die Dateien mit Llama-Index indizieren, damit sie als zusätzliche Wissens Quelle dienen. Verwenden Sie CTRL/SHIFT für die Mehrfachauswahl.
1573
1576
  tip.output.tab.notepad = Der Notizblock kann als Werkzeug zum Notieren und Speichern von Informationen dienen. Sie können hier beliebigen Text speichern, Text aus dem Chatfenster kopieren und alle Informationen werden automatisch gespeichert. Sie können weitere Notizblöcke erstellen, indem Sie einen neuen Tab erstellen.
1574
1577
  tip.tokens.ctx = Kontext (Erinnerung): in Gebrauch / alle - Token
1575
1578
  tip.tokens.input = Token: Benutzereingabeaufforderung + Systemaufforderung + Kontext + extra + Anhänge = Summe / Maximum
@@ -16,6 +16,7 @@ action.ctx.indexed = Last indexed at
16
16
  action.ctx.new = New context...
17
17
  action.ctx.new.in_group = New context in: {group}...
18
18
  action.ctx_reset = Reset (clear)
19
+ action.cut = Cut
19
20
  action.delete = Delete
20
21
  action.download = Download
21
22
  action.duplicate = Duplicate
@@ -26,6 +27,7 @@ action.group.new = New group
26
27
  action.group.remove = Remove from group
27
28
  action.idx = Index with LlamaIndex...
28
29
  action.idx.remove = Remove from
30
+ action.import = Import
29
31
  action.mkdir = Create directory...
30
32
  action.move_to = Move to
31
33
  action.new = New...
@@ -803,6 +805,7 @@ ipython.docker.install = Running IPython requires Docker to be installed. Docker
803
805
  ipython.docker.install.snap = \n\nSNAP VERSION: \nYou are not connected to built-in Docker daemon. Please connect the slots with:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...and restart the application.
804
806
  ipython.image.build = The Docker image for IPython has not been built yet. This will happen now, and it may take a while (but it's a one-time procedure). The execution of the command has been paused. Once the image is built, please execute the command again.
805
807
  layout.split = Split screen
808
+ list.all = --- ALL ---
806
809
  menu.audio = Audio / Voice
807
810
  menu.audio.cache.clear = Clear audio cache...
808
811
  menu.audio.control.global = Voice control (global)
@@ -1648,7 +1651,7 @@ tip.input.attachments.ctx = Below are the uploaded and indexed attachments avail
1648
1651
  tip.input.attachments.uploaded = Here is a list of files uploaded to the server in Assistant mode. These files are located on a remote server, not on your local computer, so the model can use and analyze them using tools available externally on the remote server.
1649
1652
  tip.output.tab.calendar = Using the calendar, you can navigate back to selected conversations from a specific day. Click on a day in the calendar to limit the display of chat history to that day. You can also create day notes and assign them colorful labels.
1650
1653
  tip.output.tab.draw = You can use the drawing tool for quick sketching or capturing an image from the camera, and then send such images to the AI in Vision mode for analysis. You can capture an image with the camera here or open an image from the disk. When using an image, it will be included in the sent message as an attachment.
1651
- tip.output.tab.files = This working files directory is on your disk. The files here are accessible for AI. AI can write and read files, as well as run code from this directory. You can open this directory locally on your system and place any files here. You can also index the files from here with LlamaIndex, so they serve as an additional knowledge source.
1654
+ tip.output.tab.files = This working files directory is on your disk. The files here are accessible for AI. AI can write and read files, as well as run code from this directory. You can open this directory locally on your system and place any files here. You can also index the files from here with LlamaIndex, so they serve as an additional knowledge source. Use CTRL/SHIFT for multiple selection.
1652
1655
  tip.output.tab.notepad = The notepad can serve as a tool for taking notes and storing information. You can keep any text here, copy text from the chat window, and all information will be automatically saved. You can create more notepads by creating a new Tab.
1653
1656
  tip.tokens.ctx = Context (memory): in use / all - tokens
1654
1657
  tip.tokens.input = Tokens: input prompt + system prompt + context + extra + attachments = sum / max
@@ -16,6 +16,7 @@ action.ctx.indexed = Última indexación el
16
16
  action.ctx.new = Nuevo contexto...
17
17
  action.ctx.new.in_group = Nuevo contexto en: {group}...
18
18
  action.ctx_reset = Restablecer (borrar)
19
+ action.cut = Cortar
19
20
  action.delete = Eliminar
20
21
  action.download = Descargar
21
22
  action.duplicate = Duplicar
@@ -26,6 +27,7 @@ action.group.new = Nuevo grupo
26
27
  action.group.remove = Quitar del grupo
27
28
  action.idx = Indexar con LlamaIndex...
28
29
  action.idx.remove = Eliminar de
30
+ action.import = Importar
29
31
  action.mkdir = Crear directorio...
30
32
  action.move_to = Mover a
31
33
  action.new = Nuevo...
@@ -790,6 +792,7 @@ ipython.docker.install = Ejecutar IPython requiere que Docker esté instalado. D
790
792
  ipython.docker.install.snap = \n\nVERSIÓN SNAP: \nNo está conectado al demonio Docker incorporado. Por favor conecte los espacios con:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...y reinicie la aplicación.
791
793
  ipython.image.build = La imagen de Docker para IPython aún no ha sido construida. Esto sucederá ahora, y puede tardar un tiempo (pero es un procedimiento único). La ejecución del comando ha sido pausada. Una vez que la imagen esté construida, por favor ejecute el comando nuevamente.
792
794
  layout.split = Pantalla dividida
795
+ list.all = --- TODOS ---
793
796
  menu.audio = Audio / Voz
794
797
  menu.audio.cache.clear = Limpiar caché de audio...
795
798
  menu.audio.control.global = Control de voz (global)
@@ -1570,7 +1573,7 @@ tip.input.attachments.ctx = A continuación se detallan los archivos adjuntos su
1570
1573
  tip.input.attachments.uploaded = Aquí tienes una lista de archivos subidos al servidor en el modo Asistente. Estos archivos están ubicados en un servidor remoto, no en tu computadora local, por lo que el modelo puede usarlos y analizarlos utilizando herramientas disponibles externamente en el servidor remoto.
1571
1574
  tip.output.tab.calendar = Usando el calendario, puedes navegar de vuelta a conversaciones seleccionadas de un día específico. Haz clic en un día en el calendario para limitar la visualización del historial de chat a ese día. También puedes crear notas diarias y asignarles etiquetas de colores.
1572
1575
  tip.output.tab.draw = Puedes usar la herramienta de dibujo para hacer bocetos rápidos o capturar una imagen de la cámara, y luego enviar dichas imágenes a la IA en modo Visión para su análisis. Puedes capturar una imagen con la cámara aquí o abrir una imagen desde el disco. Al usar una imagen, se incluirá en el mensaje enviado como un adjunto.
1573
- tip.output.tab.files = Este directorio de archivos de trabajo se encuentra en tu disco. Los archivos aquí son accesibles para que la IA los lea. La IA puede escribir y leer archivos, así como ejecutar código desde este directorio. Puedes abrir este directorio localmente en tu sistema y colocar cualquier archivo aquí. También puedes indexar los archivos con LlamaIndex, para que sirvan como una fuente de conocimiento adicional.
1576
+ tip.output.tab.files = Este directorio de archivos de trabajo se encuentra en tu disco. Los archivos aquí son accesibles para que la IA los lea. La IA puede escribir y leer archivos, así como ejecutar código desde este directorio. Puedes abrir este directorio localmente en tu sistema y colocar cualquier archivo aquí. También puedes indexar los archivos con LlamaIndex, para que sirvan como una fuente de conocimiento adicional. Usa CTRL/SHIFT para la selección múltiple.
1574
1577
  tip.output.tab.notepad = El bloc de notas puede servir como una herramienta para tomar notas y almacenar información. Puedes mantener cualquier texto aquí, copiar texto desde la ventana de chat, y toda la información se guardará automáticamente. Puedes crear más blocs de notas creando una nueva pestaña.
1575
1578
  tip.tokens.ctx = Contexto (memoria): en uso / todos - tokens
1576
1579
  tip.tokens.input = Fichas: indicación del usuario + indicación del sistema + contexto + adicional + adjuntos = suma / máximo
@@ -16,6 +16,7 @@ action.ctx.indexed = Dernière indexation le
16
16
  action.ctx.new = Nouveau contexte...
17
17
  action.ctx.new.in_group = Nouveau contexte dans : {group}...
18
18
  action.ctx_reset = Réinitialiser (effacer)
19
+ action.cut = Couper
19
20
  action.delete = Supprimer
20
21
  action.download = Télécharger
21
22
  action.duplicate = Dupliquer
@@ -26,6 +27,7 @@ action.group.new = Nouveau groupe
26
27
  action.group.remove = Retirer du groupe
27
28
  action.idx = Indexer avec LlamaIndex...
28
29
  action.idx.remove = Retirer de
30
+ action.import = Importer
29
31
  action.mkdir = Créer un répertoire...
30
32
  action.move_to = Déplacer vers
31
33
  action.new = Nouveau...
@@ -789,6 +791,7 @@ ipython.docker.install = L'exécution d'IPython nécessite l'installation de Doc
789
791
  ipython.docker.install.snap = \n\nVERSION SNAP : \nVous n'êtes pas connecté au démon Docker intégré. Veuillez connecter les slots avec :\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...et redémarrez l'application.
790
792
  ipython.image.build = L'image Docker pour IPython n'a pas encore été construite. Cela va se produire maintenant, et cela peut prendre un certain temps (mais c'est une procédure unique). L'exécution de la commande a été mise en pause. Une fois l'image construite, veuillez exécuter à nouveau la commande.
791
793
  layout.split = Écran scindé
794
+ list.all = --- TOUS ---
792
795
  menu.audio = Audio / Voix
793
796
  menu.audio.cache.clear = Effacer le cache audio...
794
797
  menu.audio.control.global = Contrôle vocal (global)
@@ -1569,7 +1572,7 @@ tip.input.attachments.ctx = Vous trouverez ci-dessous les pièces jointes télé
1569
1572
  tip.input.attachments.uploaded = Voici une liste de fichiers téléchargés sur le serveur en mode Assistant. Ces fichiers sont situés sur un serveur distant, pas sur votre ordinateur local, donc le modèle peut les utiliser et les analyser à l'aide des outils disponibles à l'extérieur sur le serveur distant.
1570
1573
  tip.output.tab.calendar = En utilisant le calendrier, vous pouvez revenir à des conversations sélectionnées d'un jour spécifique. Cliquez sur un jour dans le calendrier pour limiter l'affichage de l'historique de chat à ce jour. Vous pouvez également créer des notes de jour et leur attribuer des étiquettes colorées.
1571
1574
  tip.output.tab.draw = Vous pouvez utiliser l'outil de dessin pour esquisser rapidement ou capturer une image de la caméra, puis envoyer de telles images à l'IA en mode Vision pour analyse. Vous pouvez capturer une image avec la caméra ici ou ouvrir une image du disque. Lors de l'utilisation d'une image, elle sera incluse dans le message envoyé en tant que pièce jointe.
1572
- tip.output.tab.files = Ce répertoire de fichiers de travail se trouve sur votre disque. Les fichiers ici sont accessibles pour l'IA à lire. L'IA peut lire et écrire des fichiers, ainsi qu'exécuter du code à partir de ce répertoire. Vous pouvez ouvrir ce répertoire localement sur votre système et placer n'importe quels fichiers ici. Vous pouvez également indexer les fichiers avec LlamaIndex, afin qu'ils servent de source de connaissances supplémentaire.
1575
+ tip.output.tab.files = Ce répertoire de fichiers de travail se trouve sur votre disque. Les fichiers ici sont accessibles pour l'IA à lire. L'IA peut lire et écrire des fichiers, ainsi qu'exécuter du code à partir de ce répertoire. Vous pouvez ouvrir ce répertoire localement sur votre système et placer n'importe quels fichiers ici. Vous pouvez également indexer les fichiers avec LlamaIndex, afin qu'ils servent de source de connaissances supplémentaire. Utilisez CTRL/SHIFT pour la sélection multiple.
1573
1576
  tip.output.tab.notepad = Le bloc-notes peut servir d'outil pour prendre des notes et stocker des informations. Vous pouvez garder n'importe quel texte ici, copier du texte depuis la fenêtre de chat, et toutes les informations seront automatiquement enregistrées. Vous pouvez créer plus de blocs-notes en créant un nouvel onglet.
1574
1577
  tip.tokens.ctx = Contexte (mémoire) : en utilisation / total - jetons
1575
1578
  tip.tokens.input = Jetons: invite de l'utilisateur + invite système + contexte + extra + pièces jointes = somme / maximum
@@ -16,6 +16,7 @@ action.ctx.indexed = Ultima indicizzazione il
16
16
  action.ctx.new = Nuovo contesto...
17
17
  action.ctx.new.in_group = Nuovo contesto in: {group}...
18
18
  action.ctx_reset = Reimposta (cancella)
19
+ action.cut = Taglia
19
20
  action.delete = Elimina
20
21
  action.download = Scarica
21
22
  action.duplicate = Duplica
@@ -26,6 +27,7 @@ action.group.new = Nuovo gruppo
26
27
  action.group.remove = Rimuovi dal gruppo
27
28
  action.idx = Indicizzare con LlamaIndex...
28
29
  action.idx.remove = Rimuovi da
30
+ action.import = Importa
29
31
  action.mkdir = Crea directory...
30
32
  action.move_to = Sposta in
31
33
  action.new = Nuovo...
@@ -789,6 +791,7 @@ ipython.docker.install = L'esecuzione di IPython richiede l'installazione di Doc
789
791
  ipython.docker.install.snap = \n\nVERSIONE SNAP: \nNon sei connesso al demone Docker integrato. Connetti gli slot con:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...e riavvia l'applicazione.
790
792
  ipython.image.build = L'immagine Docker per IPython non è stata ancora costruita. Questo avverrà ora e potrebbe richiedere del tempo (ma è una procedura una tantum). L'esecuzione del comando è stata messa in pausa. Una volta costruita l'immagine, esegui nuovamente il comando.
791
793
  layout.split = Schermo diviso
794
+ list.all = --- TUTTI ---
792
795
  menu.audio = Audio / Voce
793
796
  menu.audio.cache.clear = Cancella cache audio...
794
797
  menu.audio.control.global = Controllo vocale (globale)
@@ -1569,7 +1572,7 @@ tip.input.attachments.ctx = Di seguito sono disponibili gli allegati caricati e
1569
1572
  tip.input.attachments.uploaded = Qui è presente un elenco di файлы caricati sul server in modalità Assistant. Questi файлы si trovano su un сервер remoto, non sul tuo computer locale, quindi il modello può utilizzarli e analizzarli utilizzando strumenti disponibili all'esterno sul сервер remoto.
1570
1573
  tip.output.tab.calendar = Utilizzando il calendario, puoi tornare a conversazioni selezionate di un giorno specifico. Clicca su un giorno nel calendario per limitare la visualizzazione della cronologia della chat a quel giorno. Puoi anche creare note giornaliere e assegnarle etichette colorate.
1571
1574
  tip.output.tab.draw = Puoi utilizzare lo strumento di disegno per fare rapidi schizzi o catturare un'immagine dalla fotocamera, e poi inviare tali immagini all'IA in modalità Vision per l'analisi. Puoi catturare un'immagine con la fotocamera qui o aprire un'immagine dal disco. Quando utilizzi un'immagine, questa sarà inclusa nel messaggio inviato come allegato.
1572
- tip.output.tab.files = Questa directory di file di lavoro si trova sul tuo disco. I file qui sono accessibili per l'IA per la lettura. L'IA può scrivere e leggere file, così come eseguire codice da questa directory. Puoi aprire questa directory localmente sul tuo sistema e posizionare qui qualsiasi file. Puoi anche indicizzare i file con LlamaIndex, in modo che servano come fonte di conoscenza aggiuntiva.
1575
+ tip.output.tab.files = Questa directory di file di lavoro si trova sul tuo disco. I file qui sono accessibili per l'IA per la lettura. L'IA può scrivere e leggere file, così come eseguire codice da questa directory. Puoi aprire questa directory localmente sul tuo sistema e posizionare qui qualsiasi file. Puoi anche indicizzare i file con LlamaIndex, in modo che servano come fonte di conoscenza aggiuntiva. Usa CTRL/SHIFT per la selezione multipla.
1573
1576
  tip.output.tab.notepad = Il blocco note può servire come strumento per prendere appunti e memorizzare informazioni. Puoi mantenere qualsiasi testo qui, copiare testo dalla finestra della chat e tutte le informazioni verranno salvate automaticamente. Puoi creare più blocchi note creando una nuova scheda.
1574
1577
  tip.tokens.ctx = Contesto (memoria): in uso / totale - token
1575
1578
  tip.tokens.input = Gettoni: prompt dell'utente + prompt di sistema + contesto + extra + allegati = somma / massimo
@@ -16,6 +16,7 @@ action.ctx.indexed = Ostatnio zindeksowane
16
16
  action.ctx.new = Nowy kontekst...
17
17
  action.ctx.new.in_group = Nowy kontekst w: {group}...
18
18
  action.ctx_reset = Resetuj (wyczyść)
19
+ action.cut = Wytnij
19
20
  action.delete = Usuń
20
21
  action.download = Pobierz
21
22
  action.duplicate = Zduplikuj
@@ -26,6 +27,7 @@ action.group.new = Nowa grupa
26
27
  action.group.remove = Usuń z grupy
27
28
  action.idx = Indeksuj w LlamaIndex...
28
29
  action.idx.remove = Usuń z
30
+ action.import = Importuj
29
31
  action.mkdir = Utwórz katalog...
30
32
  action.move_to = Przenieś do
31
33
  action.new = Nowy...
@@ -51,7 +53,7 @@ action.save = Zapisz
51
53
  action.save_as = Zapisz jako...
52
54
  action.save_selection_as = Zapisz zaznaczenie jako...
53
55
  action.select_all = Wybierz wszystko
54
- action.select_unselect_all = Zaznacz/Odznacz wszystko
56
+ action.select_unselect_all = Zaznacz/Odznacz wszystko
55
57
  action.tab.add.chat: Dodaj nowy czat
56
58
  action.tab.add.chat.tooltip: Dodaj nowy czat (PPM dla więcej opcji...)
57
59
  action.tab.add.notepad = Dodaj nowy notatnik
@@ -790,6 +792,7 @@ ipython.docker.install = Uruchomienie IPython wymaga zainstalowania Dockera. Doc
790
792
  ipython.docker.install.snap = \n\nWERSJA SNAP: \nNie jesteś połączony z wbudowanym daemonem Docker. Połącz sloty za pomocą:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...i uruchom ponownie aplikację.
791
793
  ipython.image.build = Obraz Dockera dla IPython nie został jeszcze zbudowany. Nastąpi to teraz i może to potrwać chwilę (ale to jednorazowa procedura). Wykonywanie polecenia zostało wstrzymane. Po zbudowaniu obrazu możesz ponownie poprosić o wykonanie polecenia.
792
794
  layout.split = Podziel ekran
795
+ list.all = --- WSZYSTKIE ---
793
796
  menu.audio = Audio / Mowa
794
797
  menu.audio.cache.clear = Wyczyść pamięć podręczną audio...
795
798
  menu.audio.control.global = Kontrola głosowa (globalna)
@@ -1570,7 +1573,7 @@ tip.input.attachments.ctx = Poniżej znajdują się załączone i zindeksowane z
1570
1573
  tip.input.attachments.uploaded = Tutaj znajduje się lista plików przesłanych na serwer w trybie Asystenta. Te pliki znajdują się na zdalnym serwerze, a nie na lokalnym komputerze, więc model może używać i analizować je za pomocą narzędzi dostępnych zewnętrznie na zdalnym serwerze.
1571
1574
  tip.output.tab.calendar = Korzystając z kalendarza, możesz wrócić do wybranych rozmów z określonego dnia. Kliknij na dzień w kalendarzu, aby ograniczyć wyświetlanie historii czatu do tego dnia. Możesz również tworzyć notatki dnia i przypisywać im kolorowe etykiety.
1572
1575
  tip.output.tab.draw = Możesz użyć narzędzia do rysowania do szybkiego szkicowania lub przechwytywania obrazu z kamery, a następnie wysyłać takie obrazy do AI w trybie Vision do analizy. Możesz tu przechwycić obraz za pomocą kamery lub otworzyć obraz z dysku. Przy użyciu obrazu zostanie on dołączony do wysłanej wiadomości jako załącznik.
1573
- tip.output.tab.files = Katalog z plikami roboczymi znajduje się na Twoim dysku. Pliki tutaj są dostępne dla AI. AI może czytać i zapisywać pliki, a także uruchamiać kod z tego katalogu. Możesz otworzyć ten katalog lokalnie w swoim systemie i umieścić tutaj dowolne pliki. Możesz także zindeksować pliki tutaj przy użyciu LlamaIndex, aby służyły jako dodatkowe źródło wiedzy.
1576
+ tip.output.tab.files = Katalog z plikami roboczymi znajduje się na Twoim dysku. Pliki tutaj są dostępne dla AI. AI może czytać i zapisywać pliki, a także uruchamiać kod z tego katalogu. Możesz otworzyć ten katalog lokalnie w swoim systemie i umieścić tutaj dowolne pliki. Możesz także zindeksować pliki tutaj przy użyciu LlamaIndex, aby służyły jako dodatkowe źródło wiedzy. Użyj CTRL/SHIFT, aby dokonać wielokrotnego wyboru.
1574
1577
  tip.output.tab.notepad = Notatnik może służyć jako narzędzie do robienia notatek i przechowywania informacji. Możesz tutaj przechowywać dowolny tekst, kopiować tekst z okna czatu, a wszystkie informacje będą automatycznie zapisywane. Możesz tworzyć więcej notatników, tworząc nową kartę.
1575
1578
  tip.tokens.ctx = Kontekst (pamięć): w użyciu / całość - l.tokenów
1576
1579
  tip.tokens.input = Tokeny: prompt użytkownika + systemowy prompt + kontekst + dodatkowe + załączniki = suma / max
@@ -16,6 +16,7 @@ action.ctx.indexed = Останнє індексування в
16
16
  action.ctx.new = Новий контекст...
17
17
  action.ctx.new.in_group = Новий контекст у: {group}...
18
18
  action.ctx_reset = Скинути (очистити)
19
+ action.cut = Вирізати
19
20
  action.delete = Видалити
20
21
  action.download = Завантажити
21
22
  action.duplicate = Дублювати
@@ -26,6 +27,7 @@ action.group.new = Нова група
26
27
  action.group.remove = Видалити з групи
27
28
  action.idx = Індексувати за допомогою LlamaIndex...
28
29
  action.idx.remove = Видалити з
30
+ action.import = Імпорт
29
31
  action.mkdir = Створити каталог...
30
32
  action.move_to = Перемістити до
31
33
  action.new = Новий...
@@ -789,6 +791,7 @@ ipython.docker.install = Для запуску IPython необхідно вст
789
791
  ipython.docker.install.snap = \n\nVERSIÓN SNAP: \nВи не підключені до вбудованого демона Docker. Будь ласка, підключіть слоти з:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...та перезапустіть програму.
790
792
  ipython.image.build = Docker-образ для IPython ще не був створений. Це відбудеться зараз, і це може зайняти деякий час (але це одноразова процедура). Виконання команди було призупинено. Після створення образу, будь ласка, виконайте команду знову.
791
793
  layout.split = Розділити екран
794
+ list.all = --- ВСІ ---
792
795
  menu.audio = Аудіо / Голос
793
796
  menu.audio.cache.clear = Очистити кеш аудіо...
794
797
  menu.audio.control.global = Контроль голосу (глобальний)
@@ -1569,7 +1572,7 @@ tip.input.attachments.ctx = Нижче наведено завантажені
1569
1572
  tip.input.attachments.uploaded = Тут є список файлів, завантажених на сервер у режимі Асистента. Ці файли розташовані на віддаленому сервері, а не на вашому локальному комп'ютері, тому модель може використовувати їх та аналізувати за допомогою інструментів, доступних ззовні на віддаленому сервері.
1570
1573
  tip.output.tab.calendar = Використовуючи календар, ви можете повертатись до обраних розмов з певного дня. Натисніть на день у календарі, щоб обмежити відображення історії чату до цього дня. Ви також можете створювати денні нотатки та присвоювати їм кольорові мітки.
1571
1574
  tip.output.tab.draw = Ви можете використовувати інструмент малювання для швидкого скетчингу або захоплення зображення з камери, а потім надсилати такі зображення ШІ у режимі Vision для аналізу. Ви можете захопити зображення за допомогою камери тут або відкрити зображення з диску. При використанні зображення, воно буде включене в наді слане повідомлення як вкладення.
1572
- tip.output.tab.files = Ця директорія робочих файлів знаходиться на вашому диску. Файли тут доступні для ШІ для читання. ШІ може читати і записувати файли, а також виконувати код з цієї директорії. Ви можете відкрити цю директорію локально на вашій системі та розмістити будь-які файли тут. Ви також можете індексувати файли за допомогою LlamaIndex, щоб вони служили додатковим джерелом знань.
1575
+ tip.output.tab.files = Ця директорія робочих файлів знаходиться на вашому диску. Файли тут доступні для ШІ для читання. ШІ може читати і записувати файли, а також виконувати код з цієї директорії. Ви можете відкрити цю директорію локально на вашій системі та розмістити будь-які файли тут. Ви також можете індексувати файли за допомогою LlamaIndex, щоб вони служили додатковим джерелом знань. Використовуйте CTRL/SHIFT для множинного вибору.
1573
1576
  tip.output.tab.notepad = Блокнот може слугувати інструментом для ведення нотаток та зберігання інформації. Ви можете зберігати тут будь-який текст, копіювати текст із вікна чату, і вся інформація буде автоматично зберігатися. Ви можете створити більше блокнотів, створивши нову вкладку.
1574
1577
  tip.tokens.ctx = Контекст (пам'ять): використано / всього - токени
1575
1578
  tip.tokens.input = Токени: запит користувача + системний запит + контекст + додаткові + вкладення = сума / макс
@@ -16,6 +16,7 @@ action.ctx.indexed = 最後索引於
16
16
  action.ctx.new = 新建上下文...
17
17
  action.ctx.new.in_group = 新的上下文在:{group}...
18
18
  action.ctx_reset = 重置(清除)
19
+ action.cut = 剪切
19
20
  action.delete = 刪除
20
21
  action.download = 下載
21
22
  action.duplicate = 複製
@@ -26,6 +27,7 @@ action.group.new = 新建组
26
27
  action.group.remove = 从组中移除
27
28
  action.idx = 使用LlamaIndex索引...
28
29
  action.idx.remove = 從中移除
30
+ action.import = 导入
29
31
  action.mkdir = 創建目錄...
30
32
  action.move_to = 移动到
31
33
  action.new = 新建...
@@ -789,6 +791,7 @@ ipython.docker.install = 运行 IPython 需要安装 Docker。系统上未检测
789
791
  ipython.docker.install.snap = \n\nSNAP 版本:\n您未连接到内置的 Docker 守护进程。请连接插槽:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...并重启应用程序。
790
792
  ipython.image.build = IPython 的 Docker 镜像尚未构建。这将立即发生,可能需要一段时间(但这是一次性过程)。命令的执行已暂停。镜像构建完成后,请再次执行命令。
791
793
  layout.split = 分屏
794
+ list.all = --- 所有 ---
792
795
  menu.audio = 音頻/語音
793
796
  menu.audio.cache.clear = 清除音频缓存...
794
797
  menu.audio.control.global = 语音控制(全局)
@@ -1569,7 +1572,7 @@ tip.input.attachments.ctx = 以下是上传和索引的附件,可用作上述
1569
1572
  tip.input.attachments.uploaded = 這是已上傳到服務器的文件列表,在助手模式下。這些文件位於遠程服務器上,而不是您的本地計算機上,因此模型可以使用並分析外部遠程服務器上可用的工具。
1570
1573
  tip.output.tab.calendar = 使用日曆,您可以導航回特定日期的選定對話。點擊日曆中的一天以限制聊天歷史顯示到該天。您還可以創建日記並為它們分配彩色標籤。
1571
1574
  tip.output.tab.draw = 您可以使用繪圖工具進行快速素描或從相機捕獲圖像,然後將這些圖像發送到AI在視覺模式下進行分析。您可以在這裡使用相機捕獲圖像或從磁盤打開圖像。使用圖像時,它將作為附件包含在發送的消息中。
1572
- tip.output.tab.files = 此工作文件目錄位於您的磁盤上。這裡的文件可供AI訪問。AI可以寫入和讀取文件,也可以從此目錄運行代碼。您可以在本地系統上打開此目錄並放置任何文件。您還可以使用LlamaIndex對這裡的文件進行索引,以便它們作為額外的知識來源。
1575
+ tip.output.tab.files = 此工作文件目錄位於您的磁盤上。這裡的文件可供AI訪問。AI可以寫入和讀取文件,也可以從此目錄運行代碼。您可以在本地系統上打開此目錄並放置任何文件。您還可以使用LlamaIndex對這裡的文件進行索引,以便它們作為額外的知識來源。使用 CTRL/SHIFT 进行多重选择。
1573
1576
  tip.output.tab.notepad = 记事本可以用作记笔记和存储信息的工具。您可以在这里保留任何文本,从聊天窗口复制文本,所有信息将自动保存。您可以通过创建新选项卡来创建更多记事本。
1574
1577
  tip.tokens.ctx = 上下文(記憶):使用中 / 全部 - 令牌
1575
1578
  tip.tokens.input = 代币:用户输入提示 + 系统提示 + 上下文 + 额外 + 附件 = 总和 / 最大值
pygpt_net/item/model.py CHANGED
@@ -282,7 +282,7 @@ class ModelItem:
282
282
 
283
283
  :return: True if supports image output
284
284
  """
285
- return "image" in self.output or MODE_VISION in self.mode
285
+ return MULTIMODAL_IMAGE in self.output or MODE_VISION in self.mode
286
286
 
287
287
  def is_audio_input(self) -> bool:
288
288
  """
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2025.12.25 20:00:00 #
9
+ # Updated Date: 2025.12.28 00:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  from openai import OpenAI
@@ -83,7 +83,9 @@ class ApiOpenAI:
83
83
  """
84
84
  # prepare client args by mode and model provider
85
85
  args = self.window.core.models.prepare_client_args(mode, model)
86
- return OpenAI(**args)
86
+ self.client = OpenAI(**args)
87
+ self.last_client_args = args # store last args for debug
88
+ return self.client
87
89
 
88
90
  def call(
89
91
  self,
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2025.12.25 20:00:00 #
9
+ # Updated Date: 2025.12.26 12:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import datetime
@@ -328,7 +328,7 @@ class VideoWorker(QRunnable):
328
328
  portrait = ar in ("9:16", "9x16", "portrait")
329
329
 
330
330
  if "sora-2-pro" in model:
331
- if "1024" in res or "1792" in res or "hd" in res:
331
+ if "1024" in res or "1080" in res or "1792" in res or "hd" in res:
332
332
  return "1024x1792" if portrait else "1792x1024"
333
333
 
334
334
  return "720x1280" if portrait else "1280x720"