pygpt-net 2.7.8__py3-none-any.whl → 2.7.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygpt_net/CHANGELOG.txt +14 -0
- pygpt_net/LICENSE +1 -1
- pygpt_net/__init__.py +3 -3
- pygpt_net/config.py +15 -1
- pygpt_net/controller/chat/common.py +5 -4
- pygpt_net/controller/chat/image.py +3 -3
- pygpt_net/controller/chat/stream.py +76 -41
- pygpt_net/controller/chat/stream_worker.py +3 -3
- pygpt_net/controller/ctx/extra.py +3 -1
- pygpt_net/controller/dialogs/debug.py +37 -8
- pygpt_net/controller/kernel/kernel.py +3 -7
- pygpt_net/controller/lang/custom.py +25 -12
- pygpt_net/controller/lang/lang.py +45 -3
- pygpt_net/controller/lang/mapping.py +15 -2
- pygpt_net/controller/notepad/notepad.py +68 -25
- pygpt_net/controller/presets/editor.py +5 -1
- pygpt_net/controller/presets/presets.py +17 -5
- pygpt_net/controller/realtime/realtime.py +13 -1
- pygpt_net/controller/theme/theme.py +11 -2
- pygpt_net/controller/ui/tabs.py +1 -1
- pygpt_net/core/ctx/output.py +38 -12
- pygpt_net/core/db/database.py +4 -2
- pygpt_net/core/debug/console/console.py +30 -2
- pygpt_net/core/debug/context.py +2 -1
- pygpt_net/core/debug/ui.py +26 -4
- pygpt_net/core/filesystem/filesystem.py +6 -2
- pygpt_net/core/notepad/notepad.py +2 -2
- pygpt_net/core/tabs/tabs.py +79 -19
- pygpt_net/data/config/config.json +4 -3
- pygpt_net/data/config/models.json +37 -22
- pygpt_net/data/config/settings.json +12 -0
- pygpt_net/data/locale/locale.ar.ini +1833 -0
- pygpt_net/data/locale/locale.bg.ini +1833 -0
- pygpt_net/data/locale/locale.cs.ini +1833 -0
- pygpt_net/data/locale/locale.da.ini +1833 -0
- pygpt_net/data/locale/locale.de.ini +4 -1
- pygpt_net/data/locale/locale.en.ini +70 -67
- pygpt_net/data/locale/locale.es.ini +4 -1
- pygpt_net/data/locale/locale.fi.ini +1833 -0
- pygpt_net/data/locale/locale.fr.ini +4 -1
- pygpt_net/data/locale/locale.he.ini +1833 -0
- pygpt_net/data/locale/locale.hi.ini +1833 -0
- pygpt_net/data/locale/locale.hu.ini +1833 -0
- pygpt_net/data/locale/locale.it.ini +4 -1
- pygpt_net/data/locale/locale.ja.ini +1833 -0
- pygpt_net/data/locale/locale.ko.ini +1833 -0
- pygpt_net/data/locale/locale.nl.ini +1833 -0
- pygpt_net/data/locale/locale.no.ini +1833 -0
- pygpt_net/data/locale/locale.pl.ini +5 -2
- pygpt_net/data/locale/locale.pt.ini +1833 -0
- pygpt_net/data/locale/locale.ro.ini +1833 -0
- pygpt_net/data/locale/locale.ru.ini +1833 -0
- pygpt_net/data/locale/locale.sk.ini +1833 -0
- pygpt_net/data/locale/locale.sv.ini +1833 -0
- pygpt_net/data/locale/locale.tr.ini +1833 -0
- pygpt_net/data/locale/locale.uk.ini +4 -1
- pygpt_net/data/locale/locale.zh.ini +4 -1
- pygpt_net/item/notepad.py +8 -2
- pygpt_net/migrations/Version20260121190000.py +25 -0
- pygpt_net/migrations/Version20260122140000.py +25 -0
- pygpt_net/migrations/__init__.py +5 -1
- pygpt_net/preload.py +246 -3
- pygpt_net/provider/api/__init__.py +16 -2
- pygpt_net/provider/api/anthropic/__init__.py +21 -7
- pygpt_net/provider/api/google/__init__.py +21 -7
- pygpt_net/provider/api/google/image.py +89 -2
- pygpt_net/provider/api/google/realtime/client.py +70 -24
- pygpt_net/provider/api/google/realtime/realtime.py +48 -12
- pygpt_net/provider/api/google/video.py +2 -2
- pygpt_net/provider/api/openai/__init__.py +26 -11
- pygpt_net/provider/api/openai/image.py +79 -3
- pygpt_net/provider/api/openai/realtime/realtime.py +26 -6
- pygpt_net/provider/api/openai/responses.py +11 -31
- pygpt_net/provider/api/openai/video.py +2 -2
- pygpt_net/provider/api/x_ai/__init__.py +21 -10
- pygpt_net/provider/api/x_ai/realtime/client.py +185 -146
- pygpt_net/provider/api/x_ai/realtime/realtime.py +30 -15
- pygpt_net/provider/api/x_ai/remote_tools.py +83 -0
- pygpt_net/provider/api/x_ai/tools.py +51 -0
- pygpt_net/provider/core/config/patch.py +12 -1
- pygpt_net/provider/core/model/patch.py +36 -1
- pygpt_net/provider/core/notepad/db_sqlite/storage.py +53 -10
- pygpt_net/tools/agent_builder/ui/dialogs.py +2 -1
- pygpt_net/tools/audio_transcriber/ui/dialogs.py +2 -1
- pygpt_net/tools/code_interpreter/ui/dialogs.py +2 -1
- pygpt_net/tools/html_canvas/ui/dialogs.py +2 -1
- pygpt_net/tools/image_viewer/ui/dialogs.py +3 -5
- pygpt_net/tools/indexer/ui/dialogs.py +2 -1
- pygpt_net/tools/media_player/ui/dialogs.py +2 -1
- pygpt_net/tools/translator/ui/dialogs.py +2 -1
- pygpt_net/tools/translator/ui/widgets.py +6 -2
- pygpt_net/ui/dialog/about.py +2 -2
- pygpt_net/ui/dialog/db.py +2 -1
- pygpt_net/ui/dialog/debug.py +169 -6
- pygpt_net/ui/dialog/logger.py +6 -2
- pygpt_net/ui/dialog/models.py +36 -3
- pygpt_net/ui/dialog/preset.py +5 -1
- pygpt_net/ui/dialog/remote_store.py +2 -1
- pygpt_net/ui/main.py +3 -2
- pygpt_net/ui/widget/dialog/editor_file.py +2 -1
- pygpt_net/ui/widget/lists/debug.py +12 -7
- pygpt_net/ui/widget/option/checkbox.py +2 -8
- pygpt_net/ui/widget/option/combo.py +10 -2
- pygpt_net/ui/widget/textarea/console.py +156 -7
- pygpt_net/ui/widget/textarea/highlight.py +66 -0
- pygpt_net/ui/widget/textarea/input.py +624 -57
- pygpt_net/ui/widget/textarea/notepad.py +294 -27
- {pygpt_net-2.7.8.dist-info → pygpt_net-2.7.10.dist-info}/LICENSE +1 -1
- {pygpt_net-2.7.8.dist-info → pygpt_net-2.7.10.dist-info}/METADATA +16 -64
- {pygpt_net-2.7.8.dist-info → pygpt_net-2.7.10.dist-info}/RECORD +112 -91
- {pygpt_net-2.7.8.dist-info → pygpt_net-2.7.10.dist-info}/WHEEL +0 -0
- {pygpt_net-2.7.8.dist-info → pygpt_net-2.7.10.dist-info}/entry_points.txt +0 -0
|
@@ -28,6 +28,7 @@ action.group.remove = Usuń z grupy
|
|
|
28
28
|
action.idx = Indeksuj w LlamaIndex...
|
|
29
29
|
action.idx.remove = Usuń z
|
|
30
30
|
action.import = Importuj
|
|
31
|
+
action.mark = Zaznacz
|
|
31
32
|
action.mkdir = Utwórz katalog...
|
|
32
33
|
action.move_to = Przenieś do
|
|
33
34
|
action.new = Nowy...
|
|
@@ -67,6 +68,7 @@ action.tab.move.right = Przenieś do prawej kolumny
|
|
|
67
68
|
action.touch = Utwórz plik...
|
|
68
69
|
action.truncate = Wyczyść wszystko
|
|
69
70
|
action.undo = Cofnij
|
|
71
|
+
action.unmark = Usuń zaznaczenie
|
|
70
72
|
action.unpack = Rozpakuj
|
|
71
73
|
action.unpin = Odepnij
|
|
72
74
|
action.upload = Prześlij tutaj pliki...
|
|
@@ -439,7 +441,7 @@ dialog.profile.status.removed = Profil usunięty z listy
|
|
|
439
441
|
dialog.profile.status.updated = Profil zaktualizowany.
|
|
440
442
|
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
443
|
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.)
|
|
444
|
+
dialog.remote_store = Zdalne bazy wektorowe (OpenAI, Google, etc.)
|
|
443
445
|
dialog.remote_store.alert.assign = Proszę najpierw przypisać bazę wektorową dla Asystenta.
|
|
444
446
|
dialog.remote_store.alert.select = Proszę najpierw wybrać bazę wektorową.
|
|
445
447
|
dialog.remote_store.btn.close = Anuluj
|
|
@@ -691,7 +693,7 @@ event.control.voice_cmd.toggle = Kontrola głosowa: Przełącz
|
|
|
691
693
|
event.control.voice_msg.start = Wejście głosowe: Rozpocznij
|
|
692
694
|
event.control.voice_msg.stop = Wejście głosowe: Zatrzymaj
|
|
693
695
|
event.control.voice_msg.toggle = Wejście głosowe: Przełącz
|
|
694
|
-
exit.msg =
|
|
696
|
+
exit.msg = Wesprzyj rozwój PyGPT:
|
|
695
697
|
expert.wait.failed: Nie udało się wywołać eksperta
|
|
696
698
|
expert.wait.status: Oczekiwanie na eksperta...
|
|
697
699
|
files.delete.confirm = Usunąć plik/katalog?
|
|
@@ -763,6 +765,7 @@ input.btn.send = Wyślij
|
|
|
763
765
|
input.btn.stop = Stop
|
|
764
766
|
input.btn.update = Zaktualizuj
|
|
765
767
|
input.label = Wejście (Twój prompt)
|
|
768
|
+
input.placeholder = Naciśnij CTRL + strzałki w górę/dół, aby wyświetlić historię promptów...
|
|
766
769
|
input.radio.enter = Enter
|
|
767
770
|
input.radio.enter_shift = Shift+Enter
|
|
768
771
|
input.radio.none = Wył.
|