pygpt-net 2.6.63__py3-none-any.whl → 2.6.64__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 +6 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/controller/attachment/attachment.py +17 -8
- pygpt_net/controller/camera/camera.py +4 -4
- pygpt_net/controller/lang/custom.py +2 -2
- pygpt_net/controller/ui/mode.py +18 -3
- pygpt_net/core/render/web/renderer.py +11 -0
- pygpt_net/data/config/config.json +2 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/config/presets/agent_openai_coder.json +15 -1
- pygpt_net/data/js/app/runtime.js +11 -4
- pygpt_net/data/js/app/scroll.js +14 -0
- pygpt_net/data/js/app.min.js +7 -6
- pygpt_net/data/locale/locale.de.ini +32 -0
- pygpt_net/data/locale/locale.en.ini +34 -2
- pygpt_net/data/locale/locale.es.ini +32 -0
- pygpt_net/data/locale/locale.fr.ini +32 -0
- pygpt_net/data/locale/locale.it.ini +32 -0
- pygpt_net/data/locale/locale.pl.ini +34 -2
- pygpt_net/data/locale/locale.uk.ini +32 -0
- pygpt_net/data/locale/locale.zh.ini +32 -0
- pygpt_net/js_rc.py +7574 -7505
- pygpt_net/provider/agents/llama_index/planner_workflow.py +15 -3
- pygpt_net/provider/agents/llama_index/workflow/planner.py +69 -41
- pygpt_net/provider/agents/openai/agent_planner.py +57 -35
- pygpt_net/provider/agents/openai/evolve.py +0 -3
- pygpt_net/provider/api/google/__init__.py +9 -3
- pygpt_net/provider/api/google/image.py +11 -1
- pygpt_net/provider/api/google/music.py +375 -0
- pygpt_net/ui/widget/option/combo.py +149 -11
- pygpt_net/ui/widget/textarea/web.py +1 -1
- pygpt_net/ui/widget/vision/camera.py +135 -12
- {pygpt_net-2.6.63.dist-info → pygpt_net-2.6.64.dist-info}/METADATA +8 -2
- {pygpt_net-2.6.63.dist-info → pygpt_net-2.6.64.dist-info}/RECORD +37 -36
- {pygpt_net-2.6.63.dist-info → pygpt_net-2.6.64.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.63.dist-info → pygpt_net-2.6.64.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.63.dist-info → pygpt_net-2.6.64.dist-info}/entry_points.txt +0 -0
|
@@ -118,12 +118,40 @@ agent.option.tools.local = Consenti strumenti locali
|
|
|
118
118
|
agent.option.tools.local.desc = Consenti utilizzo strumenti locali per questo agente
|
|
119
119
|
agent.option.tools.remote = Consenti strumenti remoti
|
|
120
120
|
agent.option.tools.remote.desc = Consenti utilizzo strumenti remoti per questo agente
|
|
121
|
+
agent.planner.display.executor = Esecutore
|
|
122
|
+
agent.planner.display.executor_agent = AgenteFunzione
|
|
123
|
+
agent.planner.display.planner = FlussoDiLavoroDelPianificatore
|
|
124
|
+
agent.planner.label.execute = Esegui
|
|
125
|
+
agent.planner.label.plan = Piano
|
|
126
|
+
agent.planner.label.refine = Raffinare
|
|
127
|
+
agent.planner.label.refine.index = Raffinare {index}
|
|
128
|
+
agent.planner.label.refine.index_total = Raffinare {index}/{total}
|
|
129
|
+
agent.planner.label.step = Passo
|
|
130
|
+
agent.planner.label.subtask = Sotto-attività
|
|
131
|
+
agent.planner.label.subtask.index = Sotto-attività {index}
|
|
132
|
+
agent.planner.label.subtask.index_total = Sotto-attività {index}/{total}
|
|
133
|
+
agent.planner.label.with_name = {base}: {name}
|
|
121
134
|
agent.planner.plan.label = Pianificatore (iniziale)
|
|
122
135
|
agent.planner.plan.prompt.desc = Prompt del piano iniziale
|
|
123
136
|
agent.planner.refine.label = Pianificatore (raffinamento)
|
|
124
137
|
agent.planner.refine.prompt.desc = Prompt di raffinamento del piano
|
|
125
138
|
agent.planner.step.label = Esegui prompt
|
|
126
139
|
agent.planner.step.prompt.desc = Esecuzione dei passi del prompt
|
|
140
|
+
agent.planner.ui.current_plan = Piano attuale:
|
|
141
|
+
agent.planner.ui.dependencies = Dipendenze:
|
|
142
|
+
agent.planner.ui.executing_plan = Implementazione del piano...
|
|
143
|
+
agent.planner.ui.execution_stopped = Esecuzione del piano interrotta.
|
|
144
|
+
agent.planner.ui.expected_output = Risultato atteso:
|
|
145
|
+
agent.planner.ui.plan_execution_finished = Esecuzione del piano completata.
|
|
146
|
+
agent.planner.ui.plan_finished = Piano completato.
|
|
147
|
+
agent.planner.ui.plan_marked_complete = Piano contrassegnato come completo: {reason}
|
|
148
|
+
agent.planner.ui.refine_failed_parse = Passo di raffinatezza non riuscito; continuare senza modifiche.
|
|
149
|
+
agent.planner.ui.refining_remaining_plan = Raffinamento del piano rimanente...
|
|
150
|
+
agent.planner.ui.subtask_failed = Sotto-attività fallita: {error}
|
|
151
|
+
agent.planner.ui.subtask_finished = Sotto-attività completata {index}/{total}: {name}
|
|
152
|
+
agent.planner.ui.subtask_header.one = **===== Sotto-attività {index}: {name} =====**
|
|
153
|
+
agent.planner.ui.subtask_header.progress = **===== Sotto-attività {index}/{total}: {name} =====**
|
|
154
|
+
agent.planner.ui.updated_remaining_plan = Piano rimanente aggiornato:
|
|
127
155
|
alert.preset.empty_id = Il nome è richiesto.
|
|
128
156
|
alert.preset.no_chat_completion = È richiesta almeno una delle opzioni: chat, completamento, immagine o visione!
|
|
129
157
|
alert.snap.file_manager = Rilevato Snap. Apri la cartella manualmente nel file manager:
|
|
@@ -183,6 +211,9 @@ attachments.header.path = Percorso
|
|
|
183
211
|
attachments.header.size = Dimensione
|
|
184
212
|
attachments.header.store = Archivio(i) vettoriale(i)
|
|
185
213
|
attachments.options.label = Opzioni
|
|
214
|
+
attachments.paste.file = Allegato dagli appunti
|
|
215
|
+
attachments.paste.img = Immagine dagli appunti
|
|
216
|
+
attachments.paste.success = Allegato aggiunto dagli appunti
|
|
186
217
|
attachments.send_clear = Pulire l'elenco dopo l'invio
|
|
187
218
|
attachments.tab = Allegati
|
|
188
219
|
attachments_uploaded.btn.clear = Pulisci file
|
|
@@ -1552,6 +1583,7 @@ toolbox.agent.llama.loop.label = Ciclo / valuta (fino a punteggio, 0% = infinito
|
|
|
1552
1583
|
toolbox.agent.llama.loop.mode.complete = Min. % completamento
|
|
1553
1584
|
toolbox.agent.llama.loop.mode.score = Min. % valutazione
|
|
1554
1585
|
toolbox.agent.llama.loop.score.tooltip = Punteggio richiesto per terminare, 0% = ciclo infinito
|
|
1586
|
+
toolbox.agent.preset.placeholder = Il prompt di sistema è definibile per ciascun agente nel preset agente
|
|
1555
1587
|
toolbox.agents.label = Agenti
|
|
1556
1588
|
toolbox.assistants.label = Assistenti
|
|
1557
1589
|
toolbox.env.label = Env
|
|
@@ -118,12 +118,40 @@ agent.option.tools.local = Pozwól na lokalne narzędzia
|
|
|
118
118
|
agent.option.tools.local.desc = Pozwól na użycie lokalnych narzędzi dla tego agenta
|
|
119
119
|
agent.option.tools.remote = Pozwól na zdalne narzędzia
|
|
120
120
|
agent.option.tools.remote.desc = Pozwól na użycie zdalnych narzędzi dla tego agenta
|
|
121
|
+
agent.planner.display.executor = Executor
|
|
122
|
+
agent.planner.display.executor_agent = FunctionAgent
|
|
123
|
+
agent.planner.display.planner = PlannerWorkflow
|
|
124
|
+
agent.planner.label.execute = Wykonaj
|
|
125
|
+
agent.planner.label.plan = Plan
|
|
126
|
+
agent.planner.label.refine = Udoskonal
|
|
127
|
+
agent.planner.label.refine.index = Udoskonal {index}
|
|
128
|
+
agent.planner.label.refine.index_total = Udoskonal {index}/{total}
|
|
129
|
+
agent.planner.label.step = Krok
|
|
130
|
+
agent.planner.label.subtask = Podzadanie
|
|
131
|
+
agent.planner.label.subtask.index = Podzadanie {index}
|
|
132
|
+
agent.planner.label.subtask.index_total = Podzadanie {index}/{total}
|
|
133
|
+
agent.planner.label.with_name = {base}: {name}
|
|
121
134
|
agent.planner.plan.label = Planista (wstępny)
|
|
122
135
|
agent.planner.plan.prompt.desc = Wstępny prompt planu
|
|
123
136
|
agent.planner.refine.label = Planista (refine)
|
|
124
137
|
agent.planner.refine.prompt.desc = Refine prompt planu
|
|
125
|
-
agent.planner.step.label =
|
|
138
|
+
agent.planner.step.label = Wykonawca
|
|
126
139
|
agent.planner.step.prompt.desc = Wykonywanie kroków promptu
|
|
140
|
+
agent.planner.ui.current_plan = Aktualny plan:
|
|
141
|
+
agent.planner.ui.dependencies = Zależności:
|
|
142
|
+
agent.planner.ui.executing_plan = Realizacja planu...
|
|
143
|
+
agent.planner.ui.execution_stopped = Realizacja planu zatrzymana.
|
|
144
|
+
agent.planner.ui.expected_output = Oczekiwany wynik:
|
|
145
|
+
agent.planner.ui.plan_execution_finished = Wykonanie planu zakończone.
|
|
146
|
+
agent.planner.ui.plan_finished = Plan zakończony.
|
|
147
|
+
agent.planner.ui.plan_marked_complete = Plan uznany za ukończony: {reason}
|
|
148
|
+
agent.planner.ui.refine_failed_parse = Udoskonalenie nie udało się; kontynuacja bez zmian.
|
|
149
|
+
agent.planner.ui.refining_remaining_plan = Udoskonalanie pozostałego planu...
|
|
150
|
+
agent.planner.ui.subtask_failed = Podzadanie nie powiodło się: {error}
|
|
151
|
+
agent.planner.ui.subtask_finished = Zakończono Podzadanie {index}/{total}: {name}
|
|
152
|
+
agent.planner.ui.subtask_header.one = **===== Podzadanie {index}: {name} =====**
|
|
153
|
+
agent.planner.ui.subtask_header.progress = **===== Podzadanie {index}/{total}: {name} =====**
|
|
154
|
+
agent.planner.ui.updated_remaining_plan = Zaktualizowany pozostały plan:
|
|
127
155
|
alert.preset.empty_id = Podanie nazwy jest wymagane.
|
|
128
156
|
alert.preset.no_chat_completion = Przynajmniej jedna opcja: czat, completion, obraz albo wizja jest wymagana!
|
|
129
157
|
alert.snap.file_manager = Uruchomiono za pomocą Snap-a. Proszę otworzyć katalog manualnie za pomocą przeglądarki plików:
|
|
@@ -183,6 +211,9 @@ attachments.header.path = Ścieżka
|
|
|
183
211
|
attachments.header.size = Rozmiar
|
|
184
212
|
attachments.header.store = Baza(y) wektorowa
|
|
185
213
|
attachments.options.label = Opcje
|
|
214
|
+
attachments.paste.file = Załącznik ze schowka
|
|
215
|
+
attachments.paste.img = Obraz ze schowka
|
|
216
|
+
attachments.paste.success = Dodano załącznik ze schowka
|
|
186
217
|
attachments.send_clear = Wyczyść listę po wysłaniu
|
|
187
218
|
attachments.tab = Załączniki
|
|
188
219
|
attachments_uploaded.btn.clear = Wyczyść
|
|
@@ -659,7 +690,7 @@ event.control.voice_cmd.toggle = Kontrola głosowa: Przełącz
|
|
|
659
690
|
event.control.voice_msg.start = Wejście głosowe: Rozpocznij
|
|
660
691
|
event.control.voice_msg.stop = Wejście głosowe: Zatrzymaj
|
|
661
692
|
event.control.voice_msg.toggle = Wejście głosowe: Przełącz
|
|
662
|
-
exit.msg = Podoba Ci się PyGPT? Wesprzyj rozwój projektu:
|
|
693
|
+
exit.msg = Podoba Ci się PyGPT? Wesprzyj rozwój projektu:
|
|
663
694
|
expert.wait.failed: Nie udało się wywołać eksperta
|
|
664
695
|
expert.wait.status: Oczekiwanie na eksperta...
|
|
665
696
|
files.delete.confirm = Usunąć plik/katalog?
|
|
@@ -1553,6 +1584,7 @@ toolbox.agent.llama.loop.label = Pętla / ocena (do wyniku, 0% = nieskończonoś
|
|
|
1553
1584
|
toolbox.agent.llama.loop.mode.complete = Min. % zakończenia
|
|
1554
1585
|
toolbox.agent.llama.loop.mode.score = Min. % oceny
|
|
1555
1586
|
toolbox.agent.llama.loop.score.tooltip = Wymagany wynik do zakończenia, 0% = nieskończona pętla
|
|
1587
|
+
toolbox.agent.preset.placeholder = Prompt systemowy jest definiowalny dla każdego agenta w presecie Agenta
|
|
1556
1588
|
toolbox.agents.label = Agenci
|
|
1557
1589
|
toolbox.assistants.label = Asystenci
|
|
1558
1590
|
toolbox.env.label = Env
|
|
@@ -118,12 +118,40 @@ agent.option.tools.local = Дозволити локальні інструме
|
|
|
118
118
|
agent.option.tools.local.desc = Дозволити використання локальних інструментів для цього агента
|
|
119
119
|
agent.option.tools.remote = Дозволити віддалені інструменти
|
|
120
120
|
agent.option.tools.remote.desc = Дозволити використання віддалених інструментів для цього агента
|
|
121
|
+
agent.planner.display.executor = Виконавець
|
|
122
|
+
agent.planner.display.executor_agent = АгентФункцій
|
|
123
|
+
agent.planner.display.planner = ПланувальникРобочогоПроцесу
|
|
124
|
+
agent.planner.label.execute = Виконати
|
|
125
|
+
agent.planner.label.plan = План
|
|
126
|
+
agent.planner.label.refine = Уточнити
|
|
127
|
+
agent.planner.label.refine.index = Уточнити {index}
|
|
128
|
+
agent.planner.label.refine.index_total = Уточнити {index}/{total}
|
|
129
|
+
agent.planner.label.step = Крок
|
|
130
|
+
agent.planner.label.subtask = Підзадача
|
|
131
|
+
agent.planner.label.subtask.index = Підзадача {index}
|
|
132
|
+
agent.planner.label.subtask.index_total = Підзадача {index}/{total}
|
|
133
|
+
agent.planner.label.with_name = {base}: {name}
|
|
121
134
|
agent.planner.plan.label = Планувальник (початковий)
|
|
122
135
|
agent.planner.plan.prompt.desc = Початкова підказка плану
|
|
123
136
|
agent.planner.refine.label = Планувальник (уточнення)
|
|
124
137
|
agent.planner.refine.prompt.desc = Уточнення підказки плану
|
|
125
138
|
agent.planner.step.label = Виконати підказку
|
|
126
139
|
agent.planner.step.prompt.desc = Кроки виконання підказки
|
|
140
|
+
agent.planner.ui.current_plan = Поточний план:
|
|
141
|
+
agent.planner.ui.dependencies = Залежності:
|
|
142
|
+
agent.planner.ui.executing_plan = Виконання плану...
|
|
143
|
+
agent.planner.ui.execution_stopped = Виконання плану зупинено.
|
|
144
|
+
agent.planner.ui.expected_output = Очікуваний вихід:
|
|
145
|
+
agent.planner.ui.plan_execution_finished = Виконання плану завершено.
|
|
146
|
+
agent.planner.ui.plan_finished = План завершено.
|
|
147
|
+
agent.planner.ui.plan_marked_complete = План відзначено як завершений: {reason}
|
|
148
|
+
agent.planner.ui.refine_failed_parse = Уточнення не вдалося; продовження без змін.
|
|
149
|
+
agent.planner.ui.refining_remaining_plan = Уточнення залишкового плану...
|
|
150
|
+
agent.planner.ui.subtask_failed = Підзадача не вдалася: {error}
|
|
151
|
+
agent.planner.ui.subtask_finished = Підзадача завершена {index}/{total}: {name}
|
|
152
|
+
agent.planner.ui.subtask_header.one = **===== Підзадача {index}: {name} =====**
|
|
153
|
+
agent.planner.ui.subtask_header.progress = **===== Підзадача {index}/{total}: {name} =====**
|
|
154
|
+
agent.planner.ui.updated_remaining_plan = Оновлений залишок плану:
|
|
127
155
|
alert.preset.empty_id = Назва є обов'язковою.
|
|
128
156
|
alert.preset.no_chat_completion = Потрібно хоча б одне з: чат, завершення, зображення або візуальна опція!
|
|
129
157
|
alert.snap.file_manager = Виявлено Snap. Будь ласка, відкрийте директорію вручну у вашому файловому менеджері:
|
|
@@ -183,6 +211,9 @@ attachments.header.path = Шлях
|
|
|
183
211
|
attachments.header.size = Розмір
|
|
184
212
|
attachments.header.store = Векторне(і) сховище(а)
|
|
185
213
|
attachments.options.label = Опції
|
|
214
|
+
attachments.paste.file = Вкладення зі буфера обміну
|
|
215
|
+
attachments.paste.img = Зображення зі буфера обміну
|
|
216
|
+
attachments.paste.success = Додано вкладення зі буфера обміну
|
|
186
217
|
attachments.send_clear = Очистити список після відправлення
|
|
187
218
|
attachments.tab = Вкладення
|
|
188
219
|
attachments_uploaded.btn.clear = Очистити файли
|
|
@@ -1552,6 +1583,7 @@ toolbox.agent.llama.loop.label = Цикл / оцінити (до оцінки, 0
|
|
|
1552
1583
|
toolbox.agent.llama.loop.mode.complete = Min. % завершення
|
|
1553
1584
|
toolbox.agent.llama.loop.mode.score = Min. % оцінки
|
|
1554
1585
|
toolbox.agent.llama.loop.score.tooltip = Необхідна оцінка для завершення, 0% = нескінченний цикл
|
|
1586
|
+
toolbox.agent.preset.placeholder = Системний prompt є визначеним для кожного агента в передвстановленнях агента
|
|
1555
1587
|
toolbox.agents.label = Агенти
|
|
1556
1588
|
toolbox.assistants.label = Помічники
|
|
1557
1589
|
toolbox.env.label = Env
|
|
@@ -118,12 +118,40 @@ agent.option.tools.local = 允许本地工具
|
|
|
118
118
|
agent.option.tools.local.desc = 允许该代理使用本地工具
|
|
119
119
|
agent.option.tools.remote = 允许远程工具
|
|
120
120
|
agent.option.tools.remote.desc = 允许该代理使用远程工具
|
|
121
|
+
agent.planner.display.executor = 执行者
|
|
122
|
+
agent.planner.display.executor_agent = 功能代理
|
|
123
|
+
agent.planner.display.planner = 计划工作流
|
|
124
|
+
agent.planner.label.execute = 执行
|
|
125
|
+
agent.planner.label.plan = 计划
|
|
126
|
+
agent.planner.label.refine = 细化
|
|
127
|
+
agent.planner.label.refine.index = 细化 {index}
|
|
128
|
+
agent.planner.label.refine.index_total = 细化 {index}/{total}
|
|
129
|
+
agent.planner.label.step = 步骤
|
|
130
|
+
agent.planner.label.subtask = 子任务
|
|
131
|
+
agent.planner.label.subtask.index = 子任务 {index}
|
|
132
|
+
agent.planner.label.subtask.index_total = 子任务 {index}/{total}
|
|
133
|
+
agent.planner.label.with_name = {base}: {name}
|
|
121
134
|
agent.planner.plan.label = 规划者(初始)
|
|
122
135
|
agent.planner.plan.prompt.desc = 初始计划提示
|
|
123
136
|
agent.planner.refine.label = 规划者(精炼)
|
|
124
137
|
agent.planner.refine.prompt.desc = 计划精炼提示
|
|
125
138
|
agent.planner.step.label = 执行提示
|
|
126
139
|
agent.planner.step.prompt.desc = 执行步骤提示
|
|
140
|
+
agent.planner.ui.current_plan = 当前计划:
|
|
141
|
+
agent.planner.ui.dependencies = 依赖:
|
|
142
|
+
agent.planner.ui.executing_plan = 执行计划中...
|
|
143
|
+
agent.planner.ui.execution_stopped = 计划执行已停止。
|
|
144
|
+
agent.planner.ui.expected_output = 预期输出:
|
|
145
|
+
agent.planner.ui.plan_execution_finished = 计划执行完成。
|
|
146
|
+
agent.planner.ui.plan_finished = 计划完成。
|
|
147
|
+
agent.planner.ui.plan_marked_complete = 计划已标记为完成:{reason}
|
|
148
|
+
agent.planner.ui.refine_failed_parse = 细化步骤解析失败;继续不作更改。
|
|
149
|
+
agent.planner.ui.refining_remaining_plan = 细化剩余计划中...
|
|
150
|
+
agent.planner.ui.subtask_failed = 子任务失败:{error}
|
|
151
|
+
agent.planner.ui.subtask_finished = 子任务完成 {index}/{total}: {name}
|
|
152
|
+
agent.planner.ui.subtask_header.one = **===== 子任务 {index}: {name} =====**
|
|
153
|
+
agent.planner.ui.subtask_header.progress = **===== 子任务 {index}/{total}: {name} =====**
|
|
154
|
+
agent.planner.ui.updated_remaining_plan = 更新后的剩余计划:
|
|
127
155
|
alert.preset.empty_id = 名稱是必需的。
|
|
128
156
|
alert.preset.no_chat_completion = 至少需要一個:聊天、完成、圖像或視覺選項!
|
|
129
157
|
alert.snap.file_manager = 檢測到快照。請在文件管理器中手動打開目錄:
|
|
@@ -183,6 +211,9 @@ attachments.header.path = 路徑
|
|
|
183
211
|
attachments.header.size = 尺寸
|
|
184
212
|
attachments.header.store = 向量存储库
|
|
185
213
|
attachments.options.label = 选项
|
|
214
|
+
attachments.paste.file = 剪贴板附件
|
|
215
|
+
attachments.paste.img = 剪贴板图像
|
|
216
|
+
attachments.paste.success = 从剪贴板添加附件
|
|
186
217
|
attachments.send_clear = 發送後清除列表
|
|
187
218
|
attachments.tab = 附件
|
|
188
219
|
attachments_uploaded.btn.clear = 清除文件
|
|
@@ -1552,6 +1583,7 @@ toolbox.agent.llama.loop.label = 循环/评估(直到分数,0% = 无限)
|
|
|
1552
1583
|
toolbox.agent.llama.loop.mode.complete = Min. % 完成度
|
|
1553
1584
|
toolbox.agent.llama.loop.mode.score = Min. % 评分
|
|
1554
1585
|
toolbox.agent.llama.loop.score.tooltip = 完成所需的分数,0% = 无限循环
|
|
1586
|
+
toolbox.agent.preset.placeholder = 系统提示在代理预设中针对每个代理是可定义的
|
|
1555
1587
|
toolbox.agents.label = 代办
|
|
1556
1588
|
toolbox.assistants.label = 助手
|
|
1557
1589
|
toolbox.env.label = 环境
|