pygpt-net 2.6.62__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.
Files changed (74) hide show
  1. pygpt_net/CHANGELOG.txt +11 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/controller/attachment/attachment.py +17 -8
  4. pygpt_net/controller/camera/camera.py +4 -4
  5. pygpt_net/controller/lang/custom.py +2 -2
  6. pygpt_net/controller/presets/editor.py +65 -1
  7. pygpt_net/controller/ui/mode.py +18 -3
  8. pygpt_net/core/agents/custom/llama_index/runner.py +15 -52
  9. pygpt_net/core/agents/custom/runner.py +194 -76
  10. pygpt_net/core/agents/runners/llama_workflow.py +60 -10
  11. pygpt_net/core/render/web/renderer.py +11 -0
  12. pygpt_net/data/config/config.json +3 -3
  13. pygpt_net/data/config/models.json +3 -3
  14. pygpt_net/data/config/presets/agent_openai_b2b.json +1 -15
  15. pygpt_net/data/config/presets/agent_openai_coder.json +0 -0
  16. pygpt_net/data/config/presets/agent_openai_evolve.json +1 -23
  17. pygpt_net/data/config/presets/agent_openai_planner.json +1 -21
  18. pygpt_net/data/config/presets/agent_openai_researcher.json +1 -21
  19. pygpt_net/data/config/presets/agent_openai_supervisor.json +1 -13
  20. pygpt_net/data/config/presets/agent_openai_writer.json +1 -15
  21. pygpt_net/data/config/presets/agent_supervisor.json +1 -11
  22. pygpt_net/data/js/app/runtime.js +10 -0
  23. pygpt_net/data/js/app/scroll.js +14 -0
  24. pygpt_net/data/js/app.min.js +6 -4
  25. pygpt_net/data/locale/locale.de.ini +32 -0
  26. pygpt_net/data/locale/locale.en.ini +37 -0
  27. pygpt_net/data/locale/locale.es.ini +32 -0
  28. pygpt_net/data/locale/locale.fr.ini +32 -0
  29. pygpt_net/data/locale/locale.it.ini +32 -0
  30. pygpt_net/data/locale/locale.pl.ini +34 -2
  31. pygpt_net/data/locale/locale.uk.ini +32 -0
  32. pygpt_net/data/locale/locale.zh.ini +32 -0
  33. pygpt_net/js_rc.py +7571 -7499
  34. pygpt_net/provider/agents/base.py +0 -0
  35. pygpt_net/provider/agents/llama_index/flow_from_schema.py +0 -0
  36. pygpt_net/provider/agents/llama_index/planner_workflow.py +15 -3
  37. pygpt_net/provider/agents/llama_index/workflow/codeact.py +0 -0
  38. pygpt_net/provider/agents/llama_index/workflow/planner.py +272 -44
  39. pygpt_net/provider/agents/llama_index/workflow/supervisor.py +0 -0
  40. pygpt_net/provider/agents/openai/agent.py +0 -0
  41. pygpt_net/provider/agents/openai/agent_b2b.py +4 -4
  42. pygpt_net/provider/agents/openai/agent_planner.py +631 -254
  43. pygpt_net/provider/agents/openai/agent_with_experts.py +0 -0
  44. pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +4 -4
  45. pygpt_net/provider/agents/openai/agent_with_feedback.py +4 -4
  46. pygpt_net/provider/agents/openai/evolve.py +6 -9
  47. pygpt_net/provider/agents/openai/flow_from_schema.py +0 -0
  48. pygpt_net/provider/agents/openai/supervisor.py +290 -37
  49. pygpt_net/provider/api/google/__init__.py +9 -3
  50. pygpt_net/provider/api/google/image.py +11 -1
  51. pygpt_net/provider/api/google/music.py +375 -0
  52. pygpt_net/provider/api/x_ai/__init__.py +0 -0
  53. pygpt_net/provider/core/agent/__init__.py +0 -0
  54. pygpt_net/provider/core/agent/base.py +0 -0
  55. pygpt_net/provider/core/agent/json_file.py +0 -0
  56. pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +0 -0
  57. pygpt_net/provider/llms/base.py +0 -0
  58. pygpt_net/provider/llms/deepseek_api.py +0 -0
  59. pygpt_net/provider/llms/google.py +0 -0
  60. pygpt_net/provider/llms/hugging_face_api.py +0 -0
  61. pygpt_net/provider/llms/hugging_face_router.py +0 -0
  62. pygpt_net/provider/llms/mistral.py +0 -0
  63. pygpt_net/provider/llms/perplexity.py +0 -0
  64. pygpt_net/provider/llms/x_ai.py +0 -0
  65. pygpt_net/ui/widget/dialog/confirm.py +34 -8
  66. pygpt_net/ui/widget/option/combo.py +149 -11
  67. pygpt_net/ui/widget/textarea/input.py +1 -1
  68. pygpt_net/ui/widget/textarea/web.py +1 -1
  69. pygpt_net/ui/widget/vision/camera.py +135 -12
  70. {pygpt_net-2.6.62.dist-info → pygpt_net-2.6.64.dist-info}/METADATA +13 -2
  71. {pygpt_net-2.6.62.dist-info → pygpt_net-2.6.64.dist-info}/RECORD +53 -52
  72. {pygpt_net-2.6.62.dist-info → pygpt_net-2.6.64.dist-info}/LICENSE +0 -0
  73. {pygpt_net-2.6.62.dist-info → pygpt_net-2.6.64.dist-info}/WHEEL +0 -0
  74. {pygpt_net-2.6.62.dist-info → pygpt_net-2.6.64.dist-info}/entry_points.txt +0 -0
@@ -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 = 环境