pygpt-net 2.6.20__py3-none-any.whl → 2.6.22__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 +13 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +3 -1
- pygpt_net/controller/__init__.py +4 -8
- pygpt_net/controller/access/voice.py +2 -2
- pygpt_net/controller/agent/agent.py +130 -2
- pygpt_net/controller/agent/experts.py +93 -96
- pygpt_net/controller/agent/llama.py +2 -1
- pygpt_net/controller/assistant/assistant.py +18 -1
- pygpt_net/controller/assistant/batch.py +2 -3
- pygpt_net/controller/assistant/editor.py +2 -2
- pygpt_net/controller/assistant/files.py +2 -3
- pygpt_net/controller/assistant/store.py +2 -2
- pygpt_net/controller/attachment/attachment.py +17 -1
- pygpt_net/controller/audio/audio.py +2 -2
- pygpt_net/controller/camera/camera.py +15 -7
- pygpt_net/controller/chat/chat.py +2 -2
- pygpt_net/controller/chat/common.py +50 -33
- pygpt_net/controller/chat/image.py +67 -77
- pygpt_net/controller/chat/input.py +94 -166
- pygpt_net/controller/chat/output.py +83 -140
- pygpt_net/controller/chat/response.py +83 -102
- pygpt_net/controller/chat/text.py +116 -149
- pygpt_net/controller/ctx/common.py +2 -1
- pygpt_net/controller/ctx/ctx.py +87 -6
- pygpt_net/controller/files/files.py +13 -1
- pygpt_net/controller/idx/idx.py +26 -2
- pygpt_net/controller/idx/indexer.py +85 -76
- pygpt_net/controller/kernel/reply.py +53 -66
- pygpt_net/controller/kernel/stack.py +16 -16
- pygpt_net/controller/lang/lang.py +52 -34
- pygpt_net/controller/model/importer.py +3 -2
- pygpt_net/controller/model/model.py +62 -3
- pygpt_net/controller/notepad/notepad.py +86 -84
- pygpt_net/controller/plugins/settings.py +3 -4
- pygpt_net/controller/settings/editor.py +4 -4
- pygpt_net/controller/settings/profile.py +105 -124
- pygpt_net/controller/theme/menu.py +154 -57
- pygpt_net/controller/theme/nodes.py +51 -44
- pygpt_net/controller/theme/theme.py +33 -9
- pygpt_net/controller/tools/tools.py +2 -2
- pygpt_net/controller/ui/tabs.py +2 -3
- pygpt_net/controller/ui/ui.py +16 -2
- pygpt_net/core/agents/observer/evaluation.py +3 -3
- pygpt_net/core/agents/provider.py +25 -3
- pygpt_net/core/agents/runner.py +4 -1
- pygpt_net/core/agents/runners/llama_workflow.py +19 -7
- pygpt_net/core/agents/runners/loop.py +3 -1
- pygpt_net/core/agents/runners/openai_workflow.py +17 -3
- pygpt_net/core/agents/tools.py +4 -1
- pygpt_net/core/bridge/context.py +34 -37
- pygpt_net/core/ctx/container.py +13 -12
- pygpt_net/core/ctx/ctx.py +1 -1
- pygpt_net/core/ctx/output.py +7 -4
- pygpt_net/core/db/database.py +2 -2
- pygpt_net/core/debug/console/console.py +2 -2
- pygpt_net/core/debug/debug.py +12 -1
- pygpt_net/core/dispatcher/dispatcher.py +24 -1
- pygpt_net/core/events/app.py +7 -7
- pygpt_net/core/events/control.py +26 -26
- pygpt_net/core/events/event.py +6 -3
- pygpt_net/core/events/kernel.py +2 -2
- pygpt_net/core/events/render.py +13 -13
- pygpt_net/core/experts/experts.py +76 -82
- pygpt_net/core/experts/worker.py +12 -12
- pygpt_net/core/filesystem/actions.py +1 -2
- pygpt_net/core/models/models.py +5 -1
- pygpt_net/core/models/ollama.py +14 -5
- pygpt_net/core/render/plain/helpers.py +2 -5
- pygpt_net/core/render/plain/renderer.py +26 -30
- pygpt_net/core/render/web/body.py +1 -1
- pygpt_net/core/render/web/helpers.py +2 -2
- pygpt_net/core/render/web/renderer.py +4 -4
- pygpt_net/core/settings/settings.py +43 -13
- pygpt_net/core/tabs/tabs.py +20 -13
- pygpt_net/core/types/__init__.py +2 -1
- pygpt_net/core/types/agent.py +4 -4
- pygpt_net/core/types/base.py +19 -0
- pygpt_net/core/types/console.py +6 -6
- pygpt_net/core/types/mode.py +8 -8
- pygpt_net/core/types/multimodal.py +3 -3
- pygpt_net/core/types/openai.py +2 -1
- pygpt_net/data/config/config.json +5 -5
- pygpt_net/data/config/models.json +19 -3
- pygpt_net/data/config/settings.json +14 -14
- pygpt_net/data/locale/locale.de.ini +4 -1
- pygpt_net/data/locale/locale.en.ini +6 -3
- pygpt_net/data/locale/locale.es.ini +4 -1
- pygpt_net/data/locale/locale.fr.ini +4 -1
- pygpt_net/data/locale/locale.it.ini +4 -1
- pygpt_net/data/locale/locale.pl.ini +5 -4
- pygpt_net/data/locale/locale.uk.ini +4 -1
- pygpt_net/data/locale/locale.zh.ini +4 -1
- pygpt_net/item/ctx.py +256 -240
- pygpt_net/item/model.py +59 -116
- pygpt_net/item/preset.py +122 -105
- pygpt_net/plugin/twitter/plugin.py +2 -2
- pygpt_net/provider/agents/llama_index/workflow/planner.py +3 -3
- pygpt_net/provider/agents/openai/agent.py +4 -12
- pygpt_net/provider/agents/openai/agent_b2b.py +10 -15
- pygpt_net/provider/agents/openai/agent_planner.py +4 -4
- pygpt_net/provider/agents/openai/agent_with_experts.py +3 -7
- pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +4 -8
- pygpt_net/provider/agents/openai/agent_with_feedback.py +4 -8
- pygpt_net/provider/agents/openai/bot_researcher.py +2 -18
- pygpt_net/provider/agents/openai/bots/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py +1 -1
- pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py +1 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py +1 -1
- pygpt_net/provider/agents/openai/bots/research_bot/manager.py +1 -10
- pygpt_net/provider/agents/openai/evolve.py +5 -9
- pygpt_net/provider/agents/openai/supervisor.py +4 -8
- pygpt_net/provider/core/config/patch.py +10 -3
- pygpt_net/provider/core/ctx/db_sqlite/utils.py +43 -43
- pygpt_net/provider/core/model/patch.py +11 -1
- pygpt_net/provider/core/preset/json_file.py +47 -49
- pygpt_net/provider/gpt/agents/experts.py +2 -2
- pygpt_net/tools/audio_transcriber/ui/dialogs.py +44 -54
- pygpt_net/tools/code_interpreter/body.py +1 -2
- pygpt_net/tools/code_interpreter/tool.py +7 -4
- pygpt_net/tools/code_interpreter/ui/html.py +1 -3
- pygpt_net/tools/code_interpreter/ui/widgets.py +2 -3
- pygpt_net/tools/html_canvas/ui/widgets.py +1 -3
- pygpt_net/tools/image_viewer/ui/dialogs.py +40 -37
- pygpt_net/tools/indexer/ui/widgets.py +2 -4
- pygpt_net/tools/media_player/tool.py +2 -5
- pygpt_net/tools/media_player/ui/widgets.py +60 -36
- pygpt_net/tools/text_editor/ui/widgets.py +18 -19
- pygpt_net/tools/translator/ui/widgets.py +39 -35
- pygpt_net/ui/base/context_menu.py +9 -4
- pygpt_net/ui/dialog/db.py +1 -3
- pygpt_net/ui/dialog/models.py +1 -3
- pygpt_net/ui/dialog/models_importer.py +2 -4
- pygpt_net/ui/dialogs.py +34 -30
- pygpt_net/ui/layout/chat/attachments.py +72 -84
- pygpt_net/ui/layout/chat/attachments_ctx.py +40 -44
- pygpt_net/ui/layout/chat/attachments_uploaded.py +36 -39
- pygpt_net/ui/layout/chat/calendar.py +100 -70
- pygpt_net/ui/layout/chat/chat.py +23 -17
- pygpt_net/ui/layout/chat/input.py +95 -118
- pygpt_net/ui/layout/chat/output.py +100 -162
- pygpt_net/ui/layout/chat/painter.py +89 -61
- pygpt_net/ui/layout/ctx/ctx_list.py +43 -52
- pygpt_net/ui/layout/status.py +23 -14
- pygpt_net/ui/layout/toolbox/agent.py +27 -38
- pygpt_net/ui/layout/toolbox/agent_llama.py +42 -45
- pygpt_net/ui/layout/toolbox/assistants.py +42 -38
- pygpt_net/ui/layout/toolbox/computer_env.py +32 -23
- pygpt_net/ui/layout/toolbox/footer.py +13 -16
- pygpt_net/ui/layout/toolbox/image.py +18 -21
- pygpt_net/ui/layout/toolbox/indexes.py +46 -89
- pygpt_net/ui/layout/toolbox/mode.py +20 -7
- pygpt_net/ui/layout/toolbox/model.py +12 -10
- pygpt_net/ui/layout/toolbox/presets.py +68 -52
- pygpt_net/ui/layout/toolbox/prompt.py +31 -58
- pygpt_net/ui/layout/toolbox/toolbox.py +25 -21
- pygpt_net/ui/layout/toolbox/vision.py +20 -22
- pygpt_net/ui/main.py +2 -4
- pygpt_net/ui/menu/about.py +64 -84
- pygpt_net/ui/menu/audio.py +87 -63
- pygpt_net/ui/menu/config.py +121 -127
- pygpt_net/ui/menu/debug.py +69 -76
- pygpt_net/ui/menu/file.py +32 -35
- pygpt_net/ui/menu/menu.py +2 -3
- pygpt_net/ui/menu/plugins.py +69 -33
- pygpt_net/ui/menu/theme.py +45 -46
- pygpt_net/ui/menu/tools.py +56 -60
- pygpt_net/ui/menu/video.py +20 -25
- pygpt_net/ui/tray.py +1 -2
- pygpt_net/ui/widget/audio/bar.py +1 -3
- pygpt_net/ui/widget/audio/input_button.py +3 -4
- pygpt_net/ui/widget/calendar/select.py +1 -2
- pygpt_net/ui/widget/dialog/base.py +12 -9
- pygpt_net/ui/widget/dialog/editor_file.py +20 -23
- pygpt_net/ui/widget/dialog/find.py +25 -24
- pygpt_net/ui/widget/dialog/profile.py +57 -53
- pygpt_net/ui/widget/draw/painter.py +62 -93
- pygpt_net/ui/widget/element/button.py +42 -30
- pygpt_net/ui/widget/element/checkbox.py +23 -15
- pygpt_net/ui/widget/element/group.py +6 -5
- pygpt_net/ui/widget/element/labels.py +1 -2
- pygpt_net/ui/widget/filesystem/explorer.py +93 -102
- pygpt_net/ui/widget/image/display.py +1 -2
- pygpt_net/ui/widget/lists/assistant.py +1 -2
- pygpt_net/ui/widget/lists/attachment.py +1 -2
- pygpt_net/ui/widget/lists/attachment_ctx.py +1 -2
- pygpt_net/ui/widget/lists/context.py +2 -4
- pygpt_net/ui/widget/lists/index.py +1 -2
- pygpt_net/ui/widget/lists/model.py +1 -2
- pygpt_net/ui/widget/lists/model_editor.py +1 -2
- pygpt_net/ui/widget/lists/model_importer.py +1 -2
- pygpt_net/ui/widget/lists/preset.py +1 -2
- pygpt_net/ui/widget/lists/preset_plugins.py +1 -2
- pygpt_net/ui/widget/lists/profile.py +1 -2
- pygpt_net/ui/widget/lists/uploaded.py +1 -2
- pygpt_net/ui/widget/option/checkbox.py +2 -4
- pygpt_net/ui/widget/option/checkbox_list.py +1 -4
- pygpt_net/ui/widget/option/cmd.py +1 -4
- pygpt_net/ui/widget/option/dictionary.py +25 -28
- pygpt_net/ui/widget/option/input.py +1 -3
- pygpt_net/ui/widget/tabs/Input.py +16 -12
- pygpt_net/ui/widget/tabs/body.py +5 -3
- pygpt_net/ui/widget/tabs/layout.py +36 -25
- pygpt_net/ui/widget/tabs/output.py +96 -74
- pygpt_net/ui/widget/textarea/calendar_note.py +1 -2
- pygpt_net/ui/widget/textarea/editor.py +41 -73
- pygpt_net/ui/widget/textarea/find.py +11 -10
- pygpt_net/ui/widget/textarea/html.py +3 -6
- pygpt_net/ui/widget/textarea/input.py +63 -64
- pygpt_net/ui/widget/textarea/notepad.py +54 -38
- pygpt_net/ui/widget/textarea/output.py +65 -54
- pygpt_net/ui/widget/textarea/search_input.py +5 -4
- pygpt_net/ui/widget/textarea/web.py +2 -4
- pygpt_net/ui/widget/vision/camera.py +2 -31
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/METADATA +25 -154
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/RECORD +218 -217
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/entry_points.txt +0 -0
|
@@ -1347,6 +1347,9 @@ status.preset.deleted = Preset cancellato.
|
|
|
1347
1347
|
status.preset.duplicated = Preset duplicato.
|
|
1348
1348
|
status.preset.empty_id = ATTENZIONE: ID del preset (nome del file) vuoto! Annullamento...
|
|
1349
1349
|
status.preset.saved = Preset salvato.
|
|
1350
|
+
status.reloading = Aggiornamento in corso... Attendere
|
|
1351
|
+
status.reloading.profile.begin = Aggiornamento dei componenti... attendere...
|
|
1352
|
+
status.reloading.profile.end = [OK] Componenti aggiornati con successo.
|
|
1350
1353
|
status.saved = Salvato.
|
|
1351
1354
|
status.sending = Attendere...
|
|
1352
1355
|
status.started = Pronto.
|
|
@@ -1356,7 +1359,7 @@ status.tokens = Token.
|
|
|
1356
1359
|
status.uploaded = I file sono stati caricati.
|
|
1357
1360
|
status.uploading = Caricamento dei file...
|
|
1358
1361
|
tab.close_all.confirm = Sei sicuro di voler chiudere tutte le schede?
|
|
1359
|
-
text.context_menu.audio.read = Leggi
|
|
1362
|
+
text.context_menu.audio.read = Leggi (sintesi vocale)
|
|
1360
1363
|
text.context_menu.copy_to = Copia a...
|
|
1361
1364
|
text.context_menu.copy_to.calendar = Calendario
|
|
1362
1365
|
text.context_menu.copy_to.input = Input
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
[LOCALE]
|
|
2
|
-
|
|
3
|
-
|
|
4
2
|
about.btn.github = GitHub
|
|
5
3
|
about.btn.support = Wsparcie
|
|
6
4
|
about.btn.website = WWW
|
|
@@ -1344,12 +1342,15 @@ status.evaluating = Proszę czekać... ocena w toku...
|
|
|
1344
1342
|
status.finished = Zakończono.
|
|
1345
1343
|
status.img.generated = Obraz został wygenerowany.
|
|
1346
1344
|
status.img.saved = Obraz został zapisany
|
|
1347
|
-
status.loading = Ładowanie... Proszę czekać
|
|
1345
|
+
status.loading = Ładowanie... Proszę czekać
|
|
1348
1346
|
status.preset.cleared = Preset wyczyszczony
|
|
1349
1347
|
status.preset.deleted = Preset usunięty
|
|
1350
1348
|
status.preset.duplicated = Preset skopiowany
|
|
1351
1349
|
status.preset.empty_id = Uwaga: nie podano ID dla presetu!
|
|
1352
1350
|
status.preset.saved = Preset zapisany
|
|
1351
|
+
status.reloading = Odświeżanie... Proszę czekać
|
|
1352
|
+
status.reloading.profile.begin = Odświeżanie komponentów... proszę czekać...
|
|
1353
|
+
status.reloading.profile.end = [OK] Komponenty zostały pomyślnie odświeżone.
|
|
1353
1354
|
status.saved = Zapisano
|
|
1354
1355
|
status.sending = Czekaj...
|
|
1355
1356
|
status.started = Gotowy
|
|
@@ -1359,7 +1360,7 @@ status.tokens = Tokenów
|
|
|
1359
1360
|
status.uploaded = Pliki wgrane na serwer
|
|
1360
1361
|
status.uploading = Upload plików...
|
|
1361
1362
|
tab.close_all.confirm = Czy na pewno chcesz zamknąć wszystkie karty?
|
|
1362
|
-
text.context_menu.audio.read =
|
|
1363
|
+
text.context_menu.audio.read = Czytaj (synteza mowy)
|
|
1363
1364
|
text.context_menu.copy_to = Kopiuj do...
|
|
1364
1365
|
text.context_menu.copy_to.calendar = Kalendarz
|
|
1365
1366
|
text.context_menu.copy_to.input = Wejście (input)
|
|
@@ -1347,6 +1347,9 @@ status.preset.deleted = Пресет видалено
|
|
|
1347
1347
|
status.preset.duplicated = Пресет дубльовано
|
|
1348
1348
|
status.preset.empty_id = УВАГА: ID пресету (ім'я файлу) порожній! Скасовано...
|
|
1349
1349
|
status.preset.saved = Пресет збережено
|
|
1350
|
+
status.reloading = Оновлення... Будь ласка, зачекайте
|
|
1351
|
+
status.reloading.profile.begin = Оновлення компонентів... будь ласка, зачекайте...
|
|
1352
|
+
status.reloading.profile.end = [OK] Компоненти успішно оновлено.
|
|
1350
1353
|
status.saved = Збережено
|
|
1351
1354
|
status.sending = Будь ласка, зачекайте...
|
|
1352
1355
|
status.started = Готово
|
|
@@ -1356,7 +1359,7 @@ status.tokens = Токени
|
|
|
1356
1359
|
status.uploaded = Файли завантажено
|
|
1357
1360
|
status.uploading = Вивантаження файлів...
|
|
1358
1361
|
tab.close_all.confirm = Ви впевнені, що хочете закрити всі вкладки?
|
|
1359
|
-
text.context_menu.audio.read = Читати
|
|
1362
|
+
text.context_menu.audio.read = Читати (синтез мови)
|
|
1360
1363
|
text.context_menu.copy_to = Копіювати до...
|
|
1361
1364
|
text.context_menu.copy_to.calendar = Календар
|
|
1362
1365
|
text.context_menu.copy_to.input = Введення
|
|
@@ -1347,6 +1347,9 @@ status.preset.deleted = 预设已删除。
|
|
|
1347
1347
|
status.preset.duplicated = 预设已复制。
|
|
1348
1348
|
status.preset.empty_id = 警告:预设 ID(文件名)为空!正在中止...
|
|
1349
1349
|
status.preset.saved = 预设已保存。
|
|
1350
|
+
status.reloading = 正在刷新... 请稍候
|
|
1351
|
+
status.reloading.profile.begin = 正在刷新组件... 请稍候...
|
|
1352
|
+
status.reloading.profile.end = [OK] 组件刷新成功。
|
|
1350
1353
|
status.saved = 已保存
|
|
1351
1354
|
status.sending = 请稍候...
|
|
1352
1355
|
status.started = 准备好
|
|
@@ -1356,7 +1359,7 @@ status.tokens = 令牌
|
|
|
1356
1359
|
status.uploaded = 文件已上傳
|
|
1357
1360
|
status.uploading = 正在上傳文件...
|
|
1358
1361
|
tab.close_all.confirm = 确定要关闭所有标签页吗?
|
|
1359
|
-
text.context_menu.audio.read =
|
|
1362
|
+
text.context_menu.audio.read = 阅读(语音合成)
|
|
1360
1363
|
text.context_menu.copy_to = 複製到...
|
|
1361
1364
|
text.context_menu.copy_to.calendar = 日曆
|
|
1362
1365
|
text.context_menu.copy_to.input = 輸入
|