pygpt-net 2.6.0.post1__py3-none-any.whl → 2.6.1__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 +4 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +13 -9
- pygpt_net/controller/chat/response.py +5 -1
- pygpt_net/controller/model/editor.py +45 -4
- pygpt_net/controller/presets/editor.py +71 -16
- pygpt_net/controller/presets/presets.py +4 -3
- pygpt_net/core/agents/provider.py +2 -1
- pygpt_net/core/agents/runner.py +114 -8
- pygpt_net/core/agents/runners/helpers.py +3 -2
- pygpt_net/core/agents/runners/llama_workflow.py +176 -22
- pygpt_net/core/agents/runners/loop.py +22 -13
- pygpt_net/core/experts/experts.py +17 -23
- pygpt_net/core/idx/chat.py +24 -34
- pygpt_net/core/idx/response.py +5 -2
- pygpt_net/core/locale/locale.py +73 -45
- pygpt_net/core/render/web/body.py +152 -207
- pygpt_net/core/render/web/renderer.py +4 -2
- pygpt_net/data/config/config.json +2 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/locale/locale.de.ini +10 -8
- pygpt_net/data/locale/locale.en.ini +10 -8
- pygpt_net/data/locale/locale.es.ini +10 -8
- pygpt_net/data/locale/locale.fr.ini +10 -8
- pygpt_net/data/locale/locale.it.ini +10 -8
- pygpt_net/data/locale/locale.pl.ini +10 -8
- pygpt_net/data/locale/locale.uk.ini +10 -8
- pygpt_net/data/locale/locale.zh.ini +10 -8
- pygpt_net/item/ctx.py +2 -1
- pygpt_net/plugin/cmd_files/worker.py +19 -16
- pygpt_net/provider/agents/base.py +4 -1
- pygpt_net/provider/agents/llama_index/codeact_workflow.py +95 -0
- pygpt_net/provider/agents/llama_index/legacy/__init__.py +0 -0
- pygpt_net/provider/agents/llama_index/{openai.py → legacy/openai.py} +2 -2
- pygpt_net/provider/agents/llama_index/{openai_assistant.py → legacy/openai_assistant.py} +2 -2
- pygpt_net/provider/agents/llama_index/{planner.py → legacy/planner.py} +3 -3
- pygpt_net/provider/agents/llama_index/{react.py → legacy/react.py} +3 -3
- pygpt_net/provider/agents/llama_index/openai_workflow.py +52 -0
- pygpt_net/provider/agents/llama_index/planner_workflow.py +115 -0
- pygpt_net/provider/agents/llama_index/react_workflow.py +6 -4
- pygpt_net/provider/agents/llama_index/workflow/__init__.py +0 -0
- pygpt_net/provider/agents/llama_index/{codeact_agent_custom.py → workflow/codeact.py} +124 -8
- pygpt_net/provider/agents/llama_index/workflow/events.py +24 -0
- pygpt_net/provider/agents/llama_index/workflow/openai.py +634 -0
- pygpt_net/provider/agents/llama_index/workflow/planner.py +601 -0
- pygpt_net/provider/agents/openai/agent.py +1 -0
- pygpt_net/provider/agents/openai/agent_b2b.py +2 -0
- pygpt_net/provider/agents/openai/agent_planner.py +1 -0
- pygpt_net/provider/agents/openai/agent_with_experts.py +1 -0
- pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +1 -0
- pygpt_net/provider/agents/openai/agent_with_feedback.py +1 -0
- pygpt_net/provider/agents/openai/evolve.py +1 -0
- pygpt_net/provider/core/preset/patch.py +11 -17
- pygpt_net/ui/widget/lists/experts.py +3 -2
- {pygpt_net-2.6.0.post1.dist-info → pygpt_net-2.6.1.dist-info}/METADATA +14 -6
- {pygpt_net-2.6.0.post1.dist-info → pygpt_net-2.6.1.dist-info}/RECORD +59 -53
- pygpt_net/data/config/presets/agent_react_workflow.json +0 -34
- pygpt_net/provider/agents/llama_index/code_act.py +0 -58
- {pygpt_net-2.6.0.post1.dist-info → pygpt_net-2.6.1.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.0.post1.dist-info → pygpt_net-2.6.1.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.0.post1.dist-info → pygpt_net-2.6.1.dist-info}/entry_points.txt +0 -0
|
@@ -38,10 +38,12 @@ class Patch:
|
|
|
38
38
|
is_bot = False
|
|
39
39
|
is_evolve = False
|
|
40
40
|
is_b2b = False
|
|
41
|
+
is_workflow = False
|
|
41
42
|
|
|
42
43
|
for k in self.window.core.presets.items:
|
|
43
44
|
data = self.window.core.presets.items[k]
|
|
44
45
|
updated = False
|
|
46
|
+
save = False
|
|
45
47
|
|
|
46
48
|
# get version of preset
|
|
47
49
|
if data.version is None or data.version == "":
|
|
@@ -150,23 +152,6 @@ class Patch:
|
|
|
150
152
|
updated = True
|
|
151
153
|
is_agent_code_act = True # prevent multiple copies
|
|
152
154
|
|
|
153
|
-
# < 2.5.38
|
|
154
|
-
if old < parse_version("2.5.38"):
|
|
155
|
-
if 'agent_react_workflow' not in self.window.core.presets.items and not is_agent_react_workflow:
|
|
156
|
-
print("Migrating preset file from < 2.5.38...")
|
|
157
|
-
files = [
|
|
158
|
-
'agent_react_workflow.json',
|
|
159
|
-
]
|
|
160
|
-
for file in files:
|
|
161
|
-
dst = os.path.join(self.window.core.config.get_user_dir('presets'), file)
|
|
162
|
-
src = os.path.join(self.window.core.config.get_app_path(), 'data', 'config',
|
|
163
|
-
'presets', file)
|
|
164
|
-
shutil.copyfile(src, dst)
|
|
165
|
-
print("Patched file: {}.".format(dst))
|
|
166
|
-
|
|
167
|
-
updated = True
|
|
168
|
-
is_agent_react_workflow = True # prevent multiple copies
|
|
169
|
-
|
|
170
155
|
# < 2.5.71
|
|
171
156
|
if old < parse_version("2.5.71"):
|
|
172
157
|
if 'current.computer' not in self.window.core.presets.items and not is_computer:
|
|
@@ -249,8 +234,17 @@ class Patch:
|
|
|
249
234
|
updated = True
|
|
250
235
|
is_b2b = True # prevent multiple copies
|
|
251
236
|
|
|
237
|
+
# < 2.6.1
|
|
238
|
+
if old < parse_version("2.6.1"):
|
|
239
|
+
if data.agent_provider == "react_workflow":
|
|
240
|
+
data.agent_provider = "react"
|
|
241
|
+
updated = True
|
|
242
|
+
save = True
|
|
243
|
+
|
|
252
244
|
# update file
|
|
253
245
|
if updated:
|
|
246
|
+
if save:
|
|
247
|
+
self.window.core.presets.save(k)
|
|
254
248
|
self.window.core.presets.load() # reload presets from patched files
|
|
255
249
|
self.window.core.presets.save(k) # re-save presets
|
|
256
250
|
migrated = True
|
|
@@ -73,16 +73,17 @@ class ExpertsEditor(QWidget):
|
|
|
73
73
|
self.window.ui.nodes["preset.experts.selected"].clicked.disconnect()
|
|
74
74
|
|
|
75
75
|
available_layout = QVBoxLayout()
|
|
76
|
-
available_layout.addWidget(self.window.ui.nodes["preset.experts.available.label"])
|
|
77
76
|
available_layout.addWidget(self.window.ui.nodes["preset.experts.available"])
|
|
77
|
+
available_layout.addWidget(self.window.ui.nodes["preset.experts.available.label"])
|
|
78
78
|
|
|
79
79
|
selected_layout = QVBoxLayout()
|
|
80
|
-
selected_layout.addWidget(self.window.ui.nodes["preset.experts.selected.label"])
|
|
81
80
|
selected_layout.addWidget(self.window.ui.nodes["preset.experts.selected"])
|
|
81
|
+
selected_layout.addWidget(self.window.ui.nodes["preset.experts.selected.label"])
|
|
82
82
|
|
|
83
83
|
layout.addLayout(available_layout)
|
|
84
84
|
layout.addLayout(arrows_layout)
|
|
85
85
|
layout.addLayout(selected_layout)
|
|
86
|
+
layout.setContentsMargins(0, 0, 0, 0)
|
|
86
87
|
return layout
|
|
87
88
|
|
|
88
89
|
def update_available(self, data):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.1
|
|
4
4
|
Summary: Desktop AI Assistant powered by: OpenAI GPT-5, o1, o3, GPT-4, Gemini, Claude, Grok, DeepSeek, and other models supported by Llama Index, and Ollama. Chatbot, agents, completion, image generation, vision analysis, speech-to-text, plugins, internet access, file handling, command execution and more.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: py_gpt,py-gpt,pygpt,desktop,app,o1,o3,gpt-5,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,grok,deepseek,bielik,claude,tts,whisper,vision,chatgpt,dall-e,chat,chatbot,assistant,text completion,image generation,ai,api,openai,api key,langchain,llama-index,ollama,presets,ui,qt,pyside
|
|
@@ -95,18 +95,18 @@ Requires-Dist: transformers (==4.48.3)
|
|
|
95
95
|
Requires-Dist: urllib3 (>=1.26.20,<2.0.0)
|
|
96
96
|
Requires-Dist: wikipedia (>=1.4.0,<2.0.0)
|
|
97
97
|
Requires-Dist: youtube-transcript-api (>=0.6.3,<0.7.0)
|
|
98
|
+
Project-URL: Changelog, https://github.com/szczyglis-dev/py-gpt/blob/master/CHANGELOG.md
|
|
98
99
|
Project-URL: Documentation, https://pygpt.readthedocs.io/
|
|
99
100
|
Project-URL: Homepage, https://pygpt.net
|
|
101
|
+
Project-URL: Issues, https://github.com/szczyglis-dev/py-gpt/issues
|
|
100
102
|
Project-URL: Repository, https://github.com/szczyglis-dev/py-gpt
|
|
101
|
-
Project-URL: changelog, https://github.com/szczyglis-dev/py-gpt/blob/master/CHANGELOG.md
|
|
102
|
-
Project-URL: issues, https://github.com/szczyglis-dev/py-gpt/issues
|
|
103
103
|
Description-Content-Type: text/markdown
|
|
104
104
|
|
|
105
105
|
# PyGPT - Desktop AI Assistant
|
|
106
106
|
|
|
107
107
|
[](https://snapcraft.io/pygpt)
|
|
108
108
|
|
|
109
|
-
Release: **2.6.
|
|
109
|
+
Release: **2.6.1** | build: **2025-08-14** | Python: **>=3.10, <3.14**
|
|
110
110
|
|
|
111
111
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
112
112
|
>
|
|
@@ -781,13 +781,17 @@ The vector database in use will be displayed in the list of uploaded files, on t
|
|
|
781
781
|
|
|
782
782
|
Mode that allows the use of agents offered by `LlamaIndex`.
|
|
783
783
|
|
|
784
|
-
Includes built-in agents:
|
|
784
|
+
Includes built-in agents (Workflow):
|
|
785
785
|
|
|
786
|
-
-
|
|
786
|
+
- FunctionAgent
|
|
787
787
|
- ReAct
|
|
788
788
|
- Structured Planner (sub-tasks)
|
|
789
789
|
- CodeAct (connected to Code Interpreter plugin)
|
|
790
790
|
|
|
791
|
+
Includes built-in agents (Legacy):
|
|
792
|
+
|
|
793
|
+
- OpenAI Assistants
|
|
794
|
+
|
|
791
795
|
In the future, the list of built-in agents will be expanded.
|
|
792
796
|
|
|
793
797
|
You can also create your own agent by creating a new provider that inherits from `pygpt_net.provider.agents.base`.
|
|
@@ -4371,6 +4375,10 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
4371
4375
|
|
|
4372
4376
|
## Recent changes:
|
|
4373
4377
|
|
|
4378
|
+
**2.6.1 (2025-08-14)**
|
|
4379
|
+
|
|
4380
|
+
- LlamaIndex Agents refactored to Workflows.
|
|
4381
|
+
|
|
4374
4382
|
**2.6.0 (2025-08-13)**
|
|
4375
4383
|
|
|
4376
4384
|
- Added split responses to the OpenAI Agents in non-streaming mode.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=8E8PuhQ-vmiEpXbKYScI31WO6SE8LFPmvW4gBGAAhHU,98251
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
4
|
-
pygpt_net/app.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=AVgF1MP4glIVbTeW_xuNUg0XW30Fh_Vr8SksUh3va8c,1372
|
|
4
|
+
pygpt_net/app.py,sha256=hMMJK1brL4HAgHMBHOC7TRI1FeDTr0mH5svNbOzMTnA,19735
|
|
5
5
|
pygpt_net/config.py,sha256=FxN39zmTpOY84lgrfhfIDuxKmNPrePhNHdGxvEOKqK8,16881
|
|
6
6
|
pygpt_net/container.py,sha256=NsMSHURaEC_eW8vrCNdztwqkxB7jui3yVlzUOMYvCHg,4124
|
|
7
7
|
pygpt_net/controller/__init__.py,sha256=wtlkw4viFVuf2sP0iMSkK0jI1QMa3kcPfvQaqnC-1io,5917
|
|
@@ -42,7 +42,7 @@ pygpt_net/controller/chat/image.py,sha256=yPX26gsz0fLnyXR88lpVyvvHnKA-yZwfXJ4paU
|
|
|
42
42
|
pygpt_net/controller/chat/input.py,sha256=YJ_e-oNVcJewrRJznDXLmpAdoTdb9PkXdHy0dGsqHe4,12414
|
|
43
43
|
pygpt_net/controller/chat/output.py,sha256=lqb7gCTTVfTocXJdjWvLhCOQrfR6wph2NGqpuILhHTo,10877
|
|
44
44
|
pygpt_net/controller/chat/render.py,sha256=nCkFse_fQAdU35BDi72NQpIBZOZicwZFxM7YNdig83Y,19867
|
|
45
|
-
pygpt_net/controller/chat/response.py,sha256=
|
|
45
|
+
pygpt_net/controller/chat/response.py,sha256=2aA7q8dq4iNzYY7s0WmI_jgUH0dhMSrz4TXksGq8dgs,12347
|
|
46
46
|
pygpt_net/controller/chat/stream.py,sha256=6Adw-QrI7fXaN8Fbnze9StXurIOsSoTUgud0kfmAqaU,19710
|
|
47
47
|
pygpt_net/controller/chat/text.py,sha256=6tR6c733GN0qKX1s27_xO2j47Qnj8Rdl7kIPaFHcIm4,10659
|
|
48
48
|
pygpt_net/controller/chat/vision.py,sha256=LsFc0TZZwY8dVtJH6Q5iha8rUQCf5HhOMuRXMtnLzZU,3578
|
|
@@ -98,7 +98,7 @@ pygpt_net/controller/layout/layout.py,sha256=aSPVMXMBPWj5lz2eCb95_f2zAnkShFK84aK
|
|
|
98
98
|
pygpt_net/controller/mode/__init__.py,sha256=1Kcz0xHc2IW_if9S9eQozBUvIu69eLAe7T-Re2lJxhk,508
|
|
99
99
|
pygpt_net/controller/mode/mode.py,sha256=rg9kmXarD1z4pwJ9GVgnzgScPjkY4Y1vA2-mlB_IZq0,8183
|
|
100
100
|
pygpt_net/controller/model/__init__.py,sha256=mQXq9u269D8TD3u_44J6DFFyHKkaZplk-tRFCssBGbE,509
|
|
101
|
-
pygpt_net/controller/model/editor.py,sha256=
|
|
101
|
+
pygpt_net/controller/model/editor.py,sha256=_WDVFTrgZKM5Y8MZiWur4e5oSuRbXr-Q3PDozVtZ9fw,16384
|
|
102
102
|
pygpt_net/controller/model/importer.py,sha256=WMJmsGRapTagET4tySUTPDHRC5Ojg9wrmR4YYhfj0Lk,22094
|
|
103
103
|
pygpt_net/controller/model/model.py,sha256=XOgl5ybhLXvOvSP-udBl-MY7_pGLfMvB8wkkhGw3VXM,6747
|
|
104
104
|
pygpt_net/controller/notepad/__init__.py,sha256=ZbMh4D6nsGuI4AwYMdegfij5ubmUznEE_UcqSSDjSPk,511
|
|
@@ -112,9 +112,9 @@ pygpt_net/controller/plugins/plugins.py,sha256=p0BO9ZHKJK9wt8-_6DwdbI1ltM4zZF24Y
|
|
|
112
112
|
pygpt_net/controller/plugins/presets.py,sha256=SaMJTUENCsssz0lU__URBeFZXZHpkKiSjNEgKz-yYA4,12061
|
|
113
113
|
pygpt_net/controller/plugins/settings.py,sha256=qkQddsh1wfOPhWpYjpx3tuLO53WZ3k1NCIlYAp4Vc60,6837
|
|
114
114
|
pygpt_net/controller/presets/__init__.py,sha256=Bb9_aAvGxQcKCW2fvG5CAJ6ZUwNYN3GaCf3BXB9eGfI,511
|
|
115
|
-
pygpt_net/controller/presets/editor.py,sha256=
|
|
115
|
+
pygpt_net/controller/presets/editor.py,sha256=rlU51GXmmpdQyTohIx8xC1YW_aILhOUkuYTcaUCBD6w,41672
|
|
116
116
|
pygpt_net/controller/presets/experts.py,sha256=wMFwkSJwqkocTtVkaXgQ8yqynx_AzMnSu8DbdZDneVw,5148
|
|
117
|
-
pygpt_net/controller/presets/presets.py,sha256=
|
|
117
|
+
pygpt_net/controller/presets/presets.py,sha256=KkpCAY5BWijKUGCfSuIurmRf471vwlO46kYhBUyqH_Q,25574
|
|
118
118
|
pygpt_net/controller/settings/__init__.py,sha256=hn5n_Hti6byJQdQCs4Ld2EbPoZF7dHVMwqaBPscePQ8,512
|
|
119
119
|
pygpt_net/controller/settings/editor.py,sha256=vpXhDDrr8Jn5-dn2KXMbjlu-Dawrq9s7TdEYaAdq-fE,18772
|
|
120
120
|
pygpt_net/controller/settings/profile.py,sha256=u0O52Ju8Fe5Ton9Ss-goDUedG8azO2VdYBbqyQgqqFk,19718
|
|
@@ -147,16 +147,16 @@ pygpt_net/core/agents/legacy.py,sha256=DdlyIpFjmeAC4XUGtq3F5_1BLGZLPOej0RZ6x9ycF
|
|
|
147
147
|
pygpt_net/core/agents/memory.py,sha256=9Jz9kT-xT8QPpGeXEpWopJUGBLLHu6Ys_-fRrg6BWDg,5210
|
|
148
148
|
pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
|
|
149
149
|
pygpt_net/core/agents/observer/evaluation.py,sha256=VngvBMXzgJaAvWV10oo1HDJ_Nzce55A59DsDGDKLlVo,7633
|
|
150
|
-
pygpt_net/core/agents/provider.py,sha256=
|
|
151
|
-
pygpt_net/core/agents/runner.py,sha256=
|
|
150
|
+
pygpt_net/core/agents/provider.py,sha256=rjxnuqzRxv2Z1d9i_wKpREwJBTeTgtyBDYtyHuwcSPA,2440
|
|
151
|
+
pygpt_net/core/agents/runner.py,sha256=41dKXfvbxQH1Sao0RJEUoZbLnm05EtLgfjKpU2IwSpw,10960
|
|
152
152
|
pygpt_net/core/agents/runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
153
|
pygpt_net/core/agents/runners/base.py,sha256=XjheBYhBZan51r3vkUh5uf00sYiRj8btZUeUP1jpqlA,5687
|
|
154
|
-
pygpt_net/core/agents/runners/helpers.py,sha256=
|
|
154
|
+
pygpt_net/core/agents/runners/helpers.py,sha256=0iQQlSg_pJfxY_gQEWImnyAVkTUQYYSW67Z9DS7oUYw,8305
|
|
155
155
|
pygpt_net/core/agents/runners/llama_assistant.py,sha256=a_Abkc8u1S8vr6lUIDRrzTM9sQnEvyZA8nZxXaYp05w,2492
|
|
156
156
|
pygpt_net/core/agents/runners/llama_plan.py,sha256=CC3WPG9KUxd_dRjPZROOrmPQrWQ_u8C0nRx0TCzi9bE,13391
|
|
157
157
|
pygpt_net/core/agents/runners/llama_steps.py,sha256=1SBLp5t4TUsxpYIUtSSnBy5Sd2AxheDlv2AXimls-Vg,7328
|
|
158
|
-
pygpt_net/core/agents/runners/llama_workflow.py,sha256=
|
|
159
|
-
pygpt_net/core/agents/runners/loop.py,sha256=
|
|
158
|
+
pygpt_net/core/agents/runners/llama_workflow.py,sha256=YkhEcV_dI6uzJBVtgBRYmRW_gLt2Uz4IK6l028VmbPk,11685
|
|
159
|
+
pygpt_net/core/agents/runners/loop.py,sha256=opcVGx8WFjJesLlmMzoCBgP06Ajh6j_Taat4zCTumHg,6022
|
|
160
160
|
pygpt_net/core/agents/runners/openai_workflow.py,sha256=J47INptxu8Uc40UfAWNRRiHRYL6ZM6lPojoqeHsC-mc,7989
|
|
161
161
|
pygpt_net/core/agents/tools.py,sha256=cYNtYLKHS_NO6fSCGZuZ5W6bVn9-kBtFgRjvDRLge2Q,20539
|
|
162
162
|
pygpt_net/core/assistants/__init__.py,sha256=FujLn0ia5S3-7nX-Td_0S5Zqiw6Yublh58c4Di7rRgY,514
|
|
@@ -232,7 +232,7 @@ pygpt_net/core/events/event.py,sha256=uxNdPGaV5KDBaosPM6uxio7dPig091wAoz-OdOPCmx
|
|
|
232
232
|
pygpt_net/core/events/kernel.py,sha256=Y5zQ-YCex04OQNMRMC7Q8g55A-imyj9XQ0Jkuyk2eCU,2074
|
|
233
233
|
pygpt_net/core/events/render.py,sha256=EkHPOkQcD2CtdjLeXlqjZUtZ6d32ja6rjQOYnit8v5M,2424
|
|
234
234
|
pygpt_net/core/experts/__init__.py,sha256=oscAmAEsCZclyHU7k3z5JzYqilwIO7J90e6oTa29tZ0,511
|
|
235
|
-
pygpt_net/core/experts/experts.py,sha256=
|
|
235
|
+
pygpt_net/core/experts/experts.py,sha256=YFs_aEGVxfEDDpjImfEeVOdVLEz3chI57GTzNWUZl74,30442
|
|
236
236
|
pygpt_net/core/filesystem/__init__.py,sha256=KZLS3s_otd3Md9eDA6FN-b4CtOCWl_fplUlM9V6hTy8,514
|
|
237
237
|
pygpt_net/core/filesystem/actions.py,sha256=2lRVF_MpIxCwbH8DkugP0K6pY6FymLeH6LKVR2rtQGQ,4152
|
|
238
238
|
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
|
@@ -244,13 +244,13 @@ pygpt_net/core/filesystem/url.py,sha256=cXctpPHBY1-fwn7vFqfZi3CeP73n2nFXF-ZnePiR
|
|
|
244
244
|
pygpt_net/core/history/__init__.py,sha256=OVtJM8Cf-9WV9-WmB6x__qB3QK4ZGaYzjpl4Fk8RdWM,511
|
|
245
245
|
pygpt_net/core/history/history.py,sha256=PDE5Ut03mEgY9YPLZjqrimKQAyxoE7itViuqFV-VQf0,3123
|
|
246
246
|
pygpt_net/core/idx/__init__.py,sha256=8-HStPMODmgzC3dBaJB6MDqGJHCHnKxNdt30Vzyu3cM,507
|
|
247
|
-
pygpt_net/core/idx/chat.py,sha256=
|
|
247
|
+
pygpt_net/core/idx/chat.py,sha256=4Z-TgPPbGBUjennxKtJokSesOk-IM5lk1hhuJzhlTsU,31138
|
|
248
248
|
pygpt_net/core/idx/context.py,sha256=MLsfdcKZwtTFxNzg17Xe2_Ez2wEtDATpQFrVJMHyKq0,10132
|
|
249
249
|
pygpt_net/core/idx/idx.py,sha256=o1VIIoi2R6RbiINIi2dvVcZ5VZvEGTazLtPtB7NiB34,18199
|
|
250
250
|
pygpt_net/core/idx/indexing.py,sha256=QFMLXT2gOy3pq01clJfDLjrC8WpgQpj44TqJ4JvNY04,42934
|
|
251
251
|
pygpt_net/core/idx/llm.py,sha256=SHh9PgG2HP69u233h7-zl-19Fr5z6Jfo_d5IoPizCng,5012
|
|
252
252
|
pygpt_net/core/idx/metadata.py,sha256=69jrZ54S2wYZ3HzVooozADkbjgK2Rg4MuXTgfd6rcsI,5445
|
|
253
|
-
pygpt_net/core/idx/response.py,sha256=
|
|
253
|
+
pygpt_net/core/idx/response.py,sha256=3NlVPpJ1xg099OoCJ2kzM3k1GpmygKX3lMCgtVNs9UE,2236
|
|
254
254
|
pygpt_net/core/idx/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
255
|
pygpt_net/core/idx/types/ctx.py,sha256=IsmwGHAPuvb39E_7TfYr66ljv6v1svNKVDw5jQH2FGk,3409
|
|
256
256
|
pygpt_net/core/idx/types/external.py,sha256=Pu3hoXrmomGLCL6kVLNPtlrVlO2jEOl7TM8YV0dh9yA,5130
|
|
@@ -267,7 +267,7 @@ pygpt_net/core/installer/installer.py,sha256=I7ALQy8P3SG7iOY04gDQpRVmSFNCtk83sz9
|
|
|
267
267
|
pygpt_net/core/llm/__init__.py,sha256=YuC6FsUAQZGAPwqMNv0VYl287x9tFuYRxqTww_tif8g,508
|
|
268
268
|
pygpt_net/core/llm/llm.py,sha256=O4dSkOvs0nKQffdFuGSlScvPCyrTFTNRFJTH-frqOnM,2380
|
|
269
269
|
pygpt_net/core/locale/__init__.py,sha256=5fmTz0u-DvCrII3KqfVAnd8YIQ8F_JDPfN16z5JRcU4,510
|
|
270
|
-
pygpt_net/core/locale/locale.py,sha256=
|
|
270
|
+
pygpt_net/core/locale/locale.py,sha256=lplM0fr0oFOcp8Nhoss7EGfbnAqE_kQnX0KbttQjgP0,6059
|
|
271
271
|
pygpt_net/core/models/__init__.py,sha256=EpJrNNINMcaO4Qc6a87IWZkfBMx7G9YJN-pdLpcqH3w,510
|
|
272
272
|
pygpt_net/core/models/models.py,sha256=pyObLwAcfe8LDK5fBVWx13FPCKzoNkixDLGRr1DnjAA,17132
|
|
273
273
|
pygpt_net/core/models/ollama.py,sha256=ZfT-QKTrUCepdyJ6IRIlo8A2E8jH8cIL0mp8_-_xs60,3004
|
|
@@ -303,11 +303,11 @@ pygpt_net/core/render/plain/helpers.py,sha256=CMF84kSeuQnkgZVHmN_9YWaL5BC958tDE9
|
|
|
303
303
|
pygpt_net/core/render/plain/pid.py,sha256=Pz3v1tnLj-XI_9vcaVkCf9SZ2EgVs4LYV4qzelBMoOg,1119
|
|
304
304
|
pygpt_net/core/render/plain/renderer.py,sha256=Cm-HXHd5Mc6LAiDW5qNXOyZoLKlUo16I_cU-B2cGnYM,15595
|
|
305
305
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
|
306
|
-
pygpt_net/core/render/web/body.py,sha256=
|
|
306
|
+
pygpt_net/core/render/web/body.py,sha256=GNuH408hdqz2Ppl5QtVbUfEfNXLXAbhgcoRhvQu3DfM,55865
|
|
307
307
|
pygpt_net/core/render/web/helpers.py,sha256=ivrXrCqRIUWHDmu3INu-i6XUlB2W9IOO8iYyqpbnSRU,5438
|
|
308
308
|
pygpt_net/core/render/web/parser.py,sha256=2ATdydXNDIgf4Jq44m1kvd7Vr4mW_FopovrYbwfv7rc,12740
|
|
309
309
|
pygpt_net/core/render/web/pid.py,sha256=EOp8hUJMFXNgZs8Kl5Qt8fz3Rslj6meK8Yn9aDmUrdM,3092
|
|
310
|
-
pygpt_net/core/render/web/renderer.py,sha256=
|
|
310
|
+
pygpt_net/core/render/web/renderer.py,sha256=c-inleOBIbZSRtKfzMB-v2BgMK9lPmKzPdZ3Prp7JBU,51729
|
|
311
311
|
pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9enXV_cMEuaJ3C43U,2005
|
|
312
312
|
pygpt_net/core/settings/__init__.py,sha256=GQ6_gJ2jf_Chm7ZuZLvkcvEh_sfMDVMBieeoJi2iPI4,512
|
|
313
313
|
pygpt_net/core/settings/settings.py,sha256=onqwNiICm2VhHfmXLvp1MiEJ14m2jzeeI2pjUiaUwtY,7787
|
|
@@ -343,8 +343,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
343
343
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
344
344
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
345
345
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
346
|
-
pygpt_net/data/config/config.json,sha256=
|
|
347
|
-
pygpt_net/data/config/models.json,sha256=
|
|
346
|
+
pygpt_net/data/config/config.json,sha256=LNDXNibIilzJ3lYz-0sUCgqINSgOlViIXC2dZuMk_Aw,24887
|
|
347
|
+
pygpt_net/data/config/models.json,sha256=wtqZ8zokJ2tBzfJtQr3U0pNyopUhCT3fotjhWT_8i18,109648
|
|
348
348
|
pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
|
|
349
349
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
350
350
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
|
@@ -359,7 +359,6 @@ pygpt_net/data/config/presets/agent_openai_simple.json,sha256=CRA5QerHanPFO8HWo-
|
|
|
359
359
|
pygpt_net/data/config/presets/agent_openai_writer.json,sha256=KcRYj4lhQKQS1Lqx8TYXlu_Vfw1oWJCZpUWrbiztuZc,1748
|
|
360
360
|
pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
|
|
361
361
|
pygpt_net/data/config/presets/agent_react.json,sha256=L8NP6HeFwdQmSkFUHCqlF7ufhSU12y9pvLj3trc_PSc,730
|
|
362
|
-
pygpt_net/data/config/presets/agent_react_workflow.json,sha256=7OzYIrSlUjGb19fP1fJFPltMG0DY2KZ_dZK03P45f7Y,755
|
|
363
362
|
pygpt_net/data/config/presets/batman_and_joker.json,sha256=STzeusURiA_L1XX_glwPTOoImT7pJZFExruP7hRniWE,528
|
|
364
363
|
pygpt_net/data/config/presets/current.agent.json,sha256=aSkA0Eh1bziRaXFHMkEE1OG2IWk80dwcbQsl0czN6c8,419
|
|
365
364
|
pygpt_net/data/config/presets/current.agent_llama.json,sha256=-XdX5tAWXDc34FCDa7GotQjg1tPNigG5RdJbV2CAphU,705
|
|
@@ -1602,14 +1601,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
|
1602
1601
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
|
1603
1602
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
|
1604
1603
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1605
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
|
1606
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1607
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
|
1608
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
|
1609
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
|
1610
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
|
1611
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
|
1612
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
|
1604
|
+
pygpt_net/data/locale/locale.de.ini,sha256=EG3o6k11hlbZqUmwTW6Yjj4iG4wAzklBTENQW2VJmy4,99748
|
|
1605
|
+
pygpt_net/data/locale/locale.en.ini,sha256=xrQrNtkQSQm_Lmr7KYHqreL8TeTgRst1rWLJLxhXBP4,90399
|
|
1606
|
+
pygpt_net/data/locale/locale.es.ini,sha256=qOZEJUjGQY-jdTKZn3CaFeXcRK9aulgromLQlqkJP7E,100306
|
|
1607
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=6_KE5BE1aIxBuDJF6RwCFbXplkAnKm2H2N6mqAY5M6Q,103044
|
|
1608
|
+
pygpt_net/data/locale/locale.it.ini,sha256=IZfIog_ZcgeuBEGNy64haMtZLLbucJ3hD6EOkccdOJU,98138
|
|
1609
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=ji4d6yQzGxScIsrOSF4p9Z3bhl3pnjQyOSUwFuxTtLs,97803
|
|
1610
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=Ch_JQamsjRtbA4bkd2gxYR4Y_Z3aaI0jn8AWP4UvB8Q,136443
|
|
1611
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=TJb8BzlRDa33Dhi0pkC5lREscdr7-DqOF0ePbYgA0lA,87358
|
|
1613
1612
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
|
1614
1613
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
|
|
1615
1614
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
|
@@ -1797,7 +1796,7 @@ pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,48
|
|
|
1797
1796
|
pygpt_net/item/assistant.py,sha256=65NZlvvR2VHWi6ZbPGi46qX0n0iJpbGHF2AxWXAIQlU,9588
|
|
1798
1797
|
pygpt_net/item/attachment.py,sha256=Wo-36L_R-P--JjDEpnpbaYo3vuIqr1s82m5rman9h28,2818
|
|
1799
1798
|
pygpt_net/item/calendar_note.py,sha256=EBhAAS09E5tIO3XhW_iA_wofSUywLWlYtiiMJJzVc3g,2114
|
|
1800
|
-
pygpt_net/item/ctx.py,sha256=
|
|
1799
|
+
pygpt_net/item/ctx.py,sha256=9RfjFqDa4UPogF0sjolOAzJAwSiThCwnphHYOVmuPcE,21751
|
|
1801
1800
|
pygpt_net/item/index.py,sha256=2feQPpOzrNkAGF4f8nKMAQzxDBAMpt6DKzCcYpCBE1E,1682
|
|
1802
1801
|
pygpt_net/item/mode.py,sha256=zMgJUA8943vg_WfF7Qwa63BdR3lMn7H8ItMpAj8z2Z0,601
|
|
1803
1802
|
pygpt_net/item/model.py,sha256=H_q20RZEebN5MJnswnf291LQUNJAaFuSHagq9xE4NCE,11104
|
|
@@ -1864,7 +1863,7 @@ pygpt_net/plugin/cmd_files/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16
|
|
|
1864
1863
|
pygpt_net/plugin/cmd_files/config.py,sha256=2vjT71vIINPdd4xEanJVIa5sc-p9cYO2vCyBO7TWYlo,13601
|
|
1865
1864
|
pygpt_net/plugin/cmd_files/output.py,sha256=bJpmVgaUoNrNozKAygw_B6fCHlODrTQ6U9uBNph2Z3E,2136
|
|
1866
1865
|
pygpt_net/plugin/cmd_files/plugin.py,sha256=ow52cIOUeq-h-sCCeXklGCfVkefntpgqXhDM9x47LG4,5011
|
|
1867
|
-
pygpt_net/plugin/cmd_files/worker.py,sha256=
|
|
1866
|
+
pygpt_net/plugin/cmd_files/worker.py,sha256=U_LQ9jbPZuNOe03PDn37FSA1XxMBFN1y7yle8xRpU00,34960
|
|
1868
1867
|
pygpt_net/plugin/cmd_history/__init__.py,sha256=zklvSPXcIifknHSHEBxV_Jg0Ja6xbidbVSle-4uEJ28,511
|
|
1869
1868
|
pygpt_net/plugin/cmd_history/config.py,sha256=RrjssJshpdkyRFQ8u8y6KI2Nrqxr3IwZ6fu7uIc0Tvg,9714
|
|
1870
1869
|
pygpt_net/plugin/cmd_history/plugin.py,sha256=L-XrS3Oi80OOqd1PlRw208BbPE4rl5rcu9YhNzgXyJ4,11151
|
|
@@ -1922,22 +1921,29 @@ pygpt_net/plugin/voice_control/config.py,sha256=iSjLR8bsYwMJJOEz3AShIQXqlCPNWNJ8
|
|
|
1922
1921
|
pygpt_net/plugin/voice_control/plugin.py,sha256=gdQ1P3ud9lwcFcxyX23_ODSwFFGeO3g1dkxPqhG0Hug,4837
|
|
1923
1922
|
pygpt_net/provider/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
|
|
1924
1923
|
pygpt_net/provider/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1925
|
-
pygpt_net/provider/agents/base.py,sha256=
|
|
1924
|
+
pygpt_net/provider/agents/base.py,sha256=reCwWTHGm0ejW2hvClpd2SjLiKIiUUYNjxoQ608DpJI,3763
|
|
1926
1925
|
pygpt_net/provider/agents/llama_index/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1927
|
-
pygpt_net/provider/agents/llama_index/
|
|
1928
|
-
pygpt_net/provider/agents/llama_index/
|
|
1929
|
-
pygpt_net/provider/agents/llama_index/openai.py,sha256=
|
|
1930
|
-
pygpt_net/provider/agents/llama_index/openai_assistant.py,sha256=
|
|
1931
|
-
pygpt_net/provider/agents/llama_index/planner.py,sha256=
|
|
1932
|
-
pygpt_net/provider/agents/llama_index/react.py,sha256=
|
|
1933
|
-
pygpt_net/provider/agents/llama_index/
|
|
1926
|
+
pygpt_net/provider/agents/llama_index/codeact_workflow.py,sha256=ZFQiYnXZHo1ZaT1Ix8pjcSVrFRueZAT7lmKnj1gKWiA,3461
|
|
1927
|
+
pygpt_net/provider/agents/llama_index/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1928
|
+
pygpt_net/provider/agents/llama_index/legacy/openai.py,sha256=j3Od0FPIh1NyMh-jb3CaocxuCUi_4b4CijEqaPA2PeQ,1644
|
|
1929
|
+
pygpt_net/provider/agents/llama_index/legacy/openai_assistant.py,sha256=bnWMzEyXHTZ_zoSiEtVWyuZoLkI2_bc_ct28hvC2oo0,2955
|
|
1930
|
+
pygpt_net/provider/agents/llama_index/legacy/planner.py,sha256=xStcGSTRuCrRkYIRidM6oyodxOfMU6GoSUbRbRBxqvo,1859
|
|
1931
|
+
pygpt_net/provider/agents/llama_index/legacy/react.py,sha256=rjWcNNhuB2gQfjoNbQp7WOgFMJ305eae-a1-EdCMo_U,2273
|
|
1932
|
+
pygpt_net/provider/agents/llama_index/openai_workflow.py,sha256=_gLzsayNWuTLwvm2WBJFw1ooWR_9iy2OTr1u5HEtAEI,1752
|
|
1933
|
+
pygpt_net/provider/agents/llama_index/planner_workflow.py,sha256=pqh3fn-CRXYFcsmgjshqjb_VCtTzY7tkX5zs-pMIPWE,3942
|
|
1934
|
+
pygpt_net/provider/agents/llama_index/react_workflow.py,sha256=s8LAo_gVy7129kSbUo_QZr8Vaoc5LZ-5vquf9_dAcnE,2436
|
|
1935
|
+
pygpt_net/provider/agents/llama_index/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1936
|
+
pygpt_net/provider/agents/llama_index/workflow/codeact.py,sha256=6uiHTffK69Gf5lvwvjXQqGcqv4Lyf5Tt9hOMKu9FQes,20776
|
|
1937
|
+
pygpt_net/provider/agents/llama_index/workflow/events.py,sha256=Oicqo3td43G5OqydcfQZ3tjyYs_SyUUG6d6a4aA4OKk,884
|
|
1938
|
+
pygpt_net/provider/agents/llama_index/workflow/openai.py,sha256=qaFPR_D7mcWMR8kFJqyuUWk2TYjewLj3CESlaehu8Cs,22987
|
|
1939
|
+
pygpt_net/provider/agents/llama_index/workflow/planner.py,sha256=P3-wOD7qOKlq9pg83qQRxOvaRbJeITZrtEumXlxYfSc,21416
|
|
1934
1940
|
pygpt_net/provider/agents/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1935
|
-
pygpt_net/provider/agents/openai/agent.py,sha256=
|
|
1936
|
-
pygpt_net/provider/agents/openai/agent_b2b.py,sha256=
|
|
1937
|
-
pygpt_net/provider/agents/openai/agent_planner.py,sha256=
|
|
1938
|
-
pygpt_net/provider/agents/openai/agent_with_experts.py,sha256=
|
|
1939
|
-
pygpt_net/provider/agents/openai/agent_with_experts_feedback.py,sha256=
|
|
1940
|
-
pygpt_net/provider/agents/openai/agent_with_feedback.py,sha256=
|
|
1941
|
+
pygpt_net/provider/agents/openai/agent.py,sha256=38BzDkP37ZO4OPiZ2Jiq0OYzQUHeqxfsT6JVcO9fgpQ,6595
|
|
1942
|
+
pygpt_net/provider/agents/openai/agent_b2b.py,sha256=b9r2TWZ2iXtqrboTyvqfF50r_dwZSkvs1CS7qKdoWhM,17250
|
|
1943
|
+
pygpt_net/provider/agents/openai/agent_planner.py,sha256=f-F7N-9n1raNZOoTxeT5Bo48INrMiiUUZg5S5wRLHWE,19301
|
|
1944
|
+
pygpt_net/provider/agents/openai/agent_with_experts.py,sha256=rt_lVRn8MwnPsdt0iF-hP0qe1xM-7-mAUOUsQayekzs,5538
|
|
1945
|
+
pygpt_net/provider/agents/openai/agent_with_experts_feedback.py,sha256=KhdNqFLs1IAfJpk-hFsaZKTQgOaGhVHwZOkYw8F5j6E,14543
|
|
1946
|
+
pygpt_net/provider/agents/openai/agent_with_feedback.py,sha256=9WCwC4Ndt0Zp8SGmV8veTpaQzib2EDhH0KGTIiSaQIA,14500
|
|
1941
1947
|
pygpt_net/provider/agents/openai/bot_researcher.py,sha256=NS2qENSWlkR8m-Qos8G0U0LOLwyCFsnUMwAioOaYJVg,11990
|
|
1942
1948
|
pygpt_net/provider/agents/openai/bots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1943
1949
|
pygpt_net/provider/agents/openai/bots/research_bot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -1946,7 +1952,7 @@ pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py,sha25
|
|
|
1946
1952
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py,sha256=O7aJOas2dNmlcqyZmVK_oQxFPRJLX_vHJ8wPujbrmpI,2002
|
|
1947
1953
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py,sha256=F2K7O5xccHUHzYJdYgcJehgZtdHgIcbOrsY7mB2K4E0,1773
|
|
1948
1954
|
pygpt_net/provider/agents/openai/bots/research_bot/manager.py,sha256=h8jHoPhXDz-VZrH8qUvvSVEtJpa1ThbzUToHkgxCF08,7630
|
|
1949
|
-
pygpt_net/provider/agents/openai/evolve.py,sha256=
|
|
1955
|
+
pygpt_net/provider/agents/openai/evolve.py,sha256=AkQznk-vmYMBpNdLChiIzzLqQlj1pbpvGZUhFhCnZVI,22751
|
|
1950
1956
|
pygpt_net/provider/audio_input/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
|
|
1951
1957
|
pygpt_net/provider/audio_input/base.py,sha256=2PxE9QeEd4fODLYx_sO-1iVdAFOxHVHjtse7-GIqix8,1826
|
|
1952
1958
|
pygpt_net/provider/audio_input/bing_speech_recognition.py,sha256=Rmpo7yaU8pU7r8KaH57U8Lc-NVE9EpF5wToL_qpMKhw,2825
|
|
@@ -2035,7 +2041,7 @@ pygpt_net/provider/core/plugin_preset/patch.py,sha256=et9YBZ5I9Wc5SfrhjNWjgO3ZD-
|
|
|
2035
2041
|
pygpt_net/provider/core/preset/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2036
2042
|
pygpt_net/provider/core/preset/base.py,sha256=E-wfT1fk7lZnDDf79eOOmdjdWs8oz-Pk1QRzFrRXiRo,1406
|
|
2037
2043
|
pygpt_net/provider/core/preset/json_file.py,sha256=b_5RLUtszuFEPJS9Eh9WwLi0BsLUUQnIKRdnTqz424M,10621
|
|
2038
|
-
pygpt_net/provider/core/preset/patch.py,sha256=
|
|
2044
|
+
pygpt_net/provider/core/preset/patch.py,sha256=6JTYMsdu8Piy0_KeahITZ0k5AFIuPV292uuTWmyNB3M,12892
|
|
2039
2045
|
pygpt_net/provider/core/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2040
2046
|
pygpt_net/provider/core/prompt/base.py,sha256=EYUA30T1QwJ9RSD0uW5x6VEstgIXNwgutmaXI64BWhw,1304
|
|
2041
2047
|
pygpt_net/provider/core/prompt/json_file.py,sha256=5yfW1RgEa36tX4-ntze4PavWLry0YG43D2LO23_MrzE,4838
|
|
@@ -2348,7 +2354,7 @@ pygpt_net/ui/widget/lists/base_list_combo.py,sha256=xFVbHow2ZPidh19lZeZnDtuDFSux
|
|
|
2348
2354
|
pygpt_net/ui/widget/lists/context.py,sha256=9ICroEimT53CWGn4T2LRroKf2_Bh8vRmSMcNpWa4SS4,21091
|
|
2349
2355
|
pygpt_net/ui/widget/lists/db.py,sha256=f0EIzTSzjblJtCuGoWBq6PerFt8yqFZrP2hkIoHuzbI,5861
|
|
2350
2356
|
pygpt_net/ui/widget/lists/debug.py,sha256=bjzshfRXFwFQ4neCY8pFMHPm9b57i5x-pHdk-sY--VI,3658
|
|
2351
|
-
pygpt_net/ui/widget/lists/experts.py,sha256=
|
|
2357
|
+
pygpt_net/ui/widget/lists/experts.py,sha256=c6o0TIQ6YkIAMHoHHYBA-474z9tyPPw7YUn4R-oaXio,5957
|
|
2352
2358
|
pygpt_net/ui/widget/lists/index.py,sha256=eDPj2JPvOfWnF-xf-PaBGAU79SV5Ld5PZUo5MhoSXuI,4818
|
|
2353
2359
|
pygpt_net/ui/widget/lists/index_combo.py,sha256=tW62i2khDJZ_mserp1W-5n5EPPnyv3fI3ICUusbRnko,4628
|
|
2354
2360
|
pygpt_net/ui/widget/lists/llama_mode_combo.py,sha256=U18Rt6OxKRQkyPmI1ve2urak0dHeuu_2-70bLJVfKA8,1229
|
|
@@ -2399,8 +2405,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=8EYSRQO0Lyucar5c5elgdn9U2lVmlXkhFkuyf
|
|
|
2399
2405
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2400
2406
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
|
2401
2407
|
pygpt_net/utils.py,sha256=uQ8UbvXOK1rZDFskfCiLKBtI8Cd0UEDFqVYQvrM9kcQ,8666
|
|
2402
|
-
pygpt_net-2.6.
|
|
2403
|
-
pygpt_net-2.6.
|
|
2404
|
-
pygpt_net-2.6.
|
|
2405
|
-
pygpt_net-2.6.
|
|
2406
|
-
pygpt_net-2.6.
|
|
2408
|
+
pygpt_net-2.6.1.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2409
|
+
pygpt_net-2.6.1.dist-info/METADATA,sha256=4zpaHfYx6k3TNc6g6MGv9fwtbH0boTT2nKbb9f3YkS4,181059
|
|
2410
|
+
pygpt_net-2.6.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2411
|
+
pygpt_net-2.6.1.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2412
|
+
pygpt_net-2.6.1.dist-info/RECORD,,
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"uuid": "55304ca1-b1d9-4c5e-ac71-2bbe0f548f8a",
|
|
3
|
-
"name": "ReAct Agent (Workflow)",
|
|
4
|
-
"ai_name": "",
|
|
5
|
-
"user_name": "",
|
|
6
|
-
"prompt": "",
|
|
7
|
-
"chat": false,
|
|
8
|
-
"completion": false,
|
|
9
|
-
"img": false,
|
|
10
|
-
"vision": false,
|
|
11
|
-
"assistant": false,
|
|
12
|
-
"llama_index": false,
|
|
13
|
-
"agent": false,
|
|
14
|
-
"agent_llama": true,
|
|
15
|
-
"expert": false,
|
|
16
|
-
"audio": false,
|
|
17
|
-
"research": false,
|
|
18
|
-
"temperature": 1.0,
|
|
19
|
-
"filename": "",
|
|
20
|
-
"model": "gpt-4o",
|
|
21
|
-
"tools": {
|
|
22
|
-
"function": []
|
|
23
|
-
},
|
|
24
|
-
"experts": [],
|
|
25
|
-
"idx": "_",
|
|
26
|
-
"agent_provider": "react_workflow",
|
|
27
|
-
"assistant_id": "",
|
|
28
|
-
"enabled": true,
|
|
29
|
-
"__meta__": {
|
|
30
|
-
"version": "2.5.37",
|
|
31
|
-
"app.version": "2.5.37",
|
|
32
|
-
"updated_at": "2025-07-13T04:18:11"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
# -*- coding: utf-8 -*-
|
|
3
|
-
# ================================================== #
|
|
4
|
-
# This file is a part of PYGPT package #
|
|
5
|
-
# Website: https://pygpt.net #
|
|
6
|
-
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
|
-
# MIT License #
|
|
8
|
-
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date: 2025.08.12 19:00:00 #
|
|
10
|
-
# ================================================== #
|
|
11
|
-
|
|
12
|
-
from typing import Dict, Any
|
|
13
|
-
|
|
14
|
-
from pygpt_net.core.types import (
|
|
15
|
-
AGENT_MODE_WORKFLOW,
|
|
16
|
-
AGENT_TYPE_LLAMA,
|
|
17
|
-
)
|
|
18
|
-
from ..base import BaseAgent
|
|
19
|
-
|
|
20
|
-
class CodeActAgent(BaseAgent):
|
|
21
|
-
|
|
22
|
-
def __init__(self, *args, **kwargs):
|
|
23
|
-
super(CodeActAgent, self).__init__(*args, **kwargs)
|
|
24
|
-
self.id = "code_act"
|
|
25
|
-
self.type = AGENT_TYPE_LLAMA
|
|
26
|
-
self.mode = AGENT_MODE_WORKFLOW
|
|
27
|
-
self.name = "CodeAct (Workflow)"
|
|
28
|
-
|
|
29
|
-
def get_agent(self, window, kwargs: Dict[str, Any]):
|
|
30
|
-
"""
|
|
31
|
-
Return Agent provider instance
|
|
32
|
-
|
|
33
|
-
:param window: window instance
|
|
34
|
-
:param kwargs: keyword arguments
|
|
35
|
-
:return: Agent provider instance
|
|
36
|
-
"""
|
|
37
|
-
# from llama_index.core.agent.workflow import CodeActAgent as Agent
|
|
38
|
-
from .codeact_agent_custom import DEFAULT_CODE_ACT_PROMPT, \
|
|
39
|
-
CodeActAgent as Agent # <-- custom version with tools
|
|
40
|
-
|
|
41
|
-
tools = kwargs.get("plugin_tools", {})
|
|
42
|
-
specs = kwargs.get("plugin_specs", [])
|
|
43
|
-
retriever_tool = kwargs.get("retriever_tools", None)
|
|
44
|
-
workdir = kwargs.get("workdir", "/data")
|
|
45
|
-
llm = kwargs.get("llm", None)
|
|
46
|
-
system_prompt = kwargs.get("system_prompt", "")
|
|
47
|
-
are_cmds = kwargs.get("are_commands", True)
|
|
48
|
-
kwargs = {
|
|
49
|
-
"code_execute_fn": window.core.agents.tools.code_execute_fn.execute,
|
|
50
|
-
"plugin_tool_fn": window.core.agents.tools.tool_exec,
|
|
51
|
-
"plugin_tools": tools,
|
|
52
|
-
"plugin_specs": specs,
|
|
53
|
-
"tool_retriever": retriever_tool,
|
|
54
|
-
"llm": llm,
|
|
55
|
-
"system_prompt": system_prompt,
|
|
56
|
-
"code_act_system_prompt": DEFAULT_CODE_ACT_PROMPT.replace("{workdir}", workdir),
|
|
57
|
-
}
|
|
58
|
-
return Agent(**kwargs)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|