pygpt-net 2.6.58__py3-none-any.whl → 2.6.60__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 +10 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +9 -5
- pygpt_net/controller/__init__.py +1 -0
- pygpt_net/controller/presets/editor.py +442 -39
- pygpt_net/core/agents/custom/__init__.py +275 -0
- pygpt_net/core/agents/custom/debug.py +64 -0
- pygpt_net/core/agents/custom/factory.py +109 -0
- pygpt_net/core/agents/custom/graph.py +71 -0
- pygpt_net/core/agents/custom/llama_index/__init__.py +10 -0
- pygpt_net/core/agents/custom/llama_index/factory.py +89 -0
- pygpt_net/core/agents/custom/llama_index/router_streamer.py +106 -0
- pygpt_net/core/agents/custom/llama_index/runner.py +529 -0
- pygpt_net/core/agents/custom/llama_index/stream.py +56 -0
- pygpt_net/core/agents/custom/llama_index/utils.py +242 -0
- pygpt_net/core/agents/custom/logging.py +50 -0
- pygpt_net/core/agents/custom/memory.py +51 -0
- pygpt_net/core/agents/custom/router.py +116 -0
- pygpt_net/core/agents/custom/router_streamer.py +187 -0
- pygpt_net/core/agents/custom/runner.py +454 -0
- pygpt_net/core/agents/custom/schema.py +125 -0
- pygpt_net/core/agents/custom/utils.py +181 -0
- pygpt_net/core/agents/provider.py +72 -7
- pygpt_net/core/agents/runner.py +7 -4
- pygpt_net/core/agents/runners/helpers.py +1 -1
- pygpt_net/core/agents/runners/llama_workflow.py +3 -0
- pygpt_net/core/agents/runners/openai_workflow.py +8 -1
- pygpt_net/core/filesystem/parser.py +37 -24
- pygpt_net/{ui/widget/builder → core/node_editor}/__init__.py +2 -2
- pygpt_net/core/{builder → node_editor}/graph.py +11 -218
- pygpt_net/core/node_editor/models.py +111 -0
- pygpt_net/core/node_editor/types.py +76 -0
- pygpt_net/core/node_editor/utils.py +17 -0
- pygpt_net/core/render/web/renderer.py +10 -8
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/locale/locale.en.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_system.en.ini +68 -0
- pygpt_net/item/agent.py +5 -1
- pygpt_net/item/preset.py +19 -1
- pygpt_net/plugin/cmd_system/config.py +377 -1
- pygpt_net/plugin/cmd_system/plugin.py +52 -8
- pygpt_net/plugin/cmd_system/runner.py +508 -32
- pygpt_net/plugin/cmd_system/winapi.py +481 -0
- pygpt_net/plugin/cmd_system/worker.py +88 -15
- pygpt_net/provider/agents/base.py +33 -2
- pygpt_net/provider/agents/llama_index/flow_from_schema.py +92 -0
- pygpt_net/provider/agents/llama_index/workflow/supervisor.py +0 -0
- pygpt_net/provider/agents/openai/flow_from_schema.py +96 -0
- pygpt_net/provider/core/agent/json_file.py +11 -5
- pygpt_net/provider/llms/openai.py +6 -4
- pygpt_net/tools/agent_builder/tool.py +217 -52
- pygpt_net/tools/agent_builder/ui/dialogs.py +119 -24
- pygpt_net/tools/agent_builder/ui/list.py +37 -10
- pygpt_net/tools/code_interpreter/ui/html.py +2 -1
- pygpt_net/ui/dialog/preset.py +16 -1
- pygpt_net/ui/main.py +1 -1
- pygpt_net/{core/builder → ui/widget/node_editor}/__init__.py +2 -2
- pygpt_net/ui/widget/node_editor/command.py +373 -0
- pygpt_net/ui/widget/node_editor/editor.py +2038 -0
- pygpt_net/ui/widget/node_editor/item.py +492 -0
- pygpt_net/ui/widget/node_editor/node.py +1205 -0
- pygpt_net/ui/widget/node_editor/utils.py +17 -0
- pygpt_net/ui/widget/node_editor/view.py +247 -0
- pygpt_net/ui/widget/textarea/web.py +1 -1
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.60.dist-info}/METADATA +135 -61
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.60.dist-info}/RECORD +69 -42
- pygpt_net/core/agents/custom.py +0 -150
- pygpt_net/ui/widget/builder/editor.py +0 -2001
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.60.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.60.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.60.dist-info}/entry_points.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=alDVWf6Sf6ONpTwD1j8LG4JR3rpiKnCszZFeLf1LQHk,108502
|
|
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=Hys_e5hziFZkUxaE_F5rHQxBwwSPLXDZw3QIwvgt6h0,1373
|
|
4
|
+
pygpt_net/app.py,sha256=4rPvsX2wFIWFzfhHSejh6VyKLawuJ38Pm4dQClXF0iI,23127
|
|
5
5
|
pygpt_net/app_core.py,sha256=PwBOV9wZLtr-O6SxBiazABhYXMHH8kZ6OgbvSv2OiZA,3827
|
|
6
6
|
pygpt_net/config.py,sha256=3CA7xXPKQsdRie1CY8_b5-Kk1taWMciUP9CesXRQNNY,18302
|
|
7
|
-
pygpt_net/controller/__init__.py,sha256=
|
|
7
|
+
pygpt_net/controller/__init__.py,sha256=X3LX0CrGWK-hqHx5NO5-WUkiDwS0Tqde3MPGt6RbFrM,6152
|
|
8
8
|
pygpt_net/controller/access/__init__.py,sha256=_XZxGy5U93JGU49GbIB9E_I26_uRV_Zbz18lcp7u23A,510
|
|
9
9
|
pygpt_net/controller/access/access.py,sha256=nPttwQf6RZHJAlXZ-3fnlcplwXxcJWp8ciq3FMsSssI,3974
|
|
10
10
|
pygpt_net/controller/access/control.py,sha256=MhtgCBB2eIpr358qB5uzBkGX8EkT48u84dhZqyuXDss,17182
|
|
@@ -126,7 +126,7 @@ pygpt_net/controller/plugins/plugins.py,sha256=2y__KawXRKCKD-UR4yFnwJxo9bERfOUFB
|
|
|
126
126
|
pygpt_net/controller/plugins/presets.py,sha256=8EsEwpU2MjWMQu1kcY4JTcyqqN8pjBrcxA2uW2tFU_A,11674
|
|
127
127
|
pygpt_net/controller/plugins/settings.py,sha256=7eHGbn1DDCnLJfOGIqfdIPrIyi_QMkTmjyruaGZwSnw,6107
|
|
128
128
|
pygpt_net/controller/presets/__init__.py,sha256=Bb9_aAvGxQcKCW2fvG5CAJ6ZUwNYN3GaCf3BXB9eGfI,511
|
|
129
|
-
pygpt_net/controller/presets/editor.py,sha256=
|
|
129
|
+
pygpt_net/controller/presets/editor.py,sha256=CASqSJnXIr4bEi3Pg51OPhhztscJNYNEJYMr35z5xBE,56570
|
|
130
130
|
pygpt_net/controller/presets/experts.py,sha256=dfPKmAPO-7gaUD2ILs3lR005ir32G5vV-Sa5TGEHwOU,5820
|
|
131
131
|
pygpt_net/controller/presets/presets.py,sha256=RwCQeWKEWmV8PdVak9S6pVFCml2Gz0GjCoS23DRv_O4,22154
|
|
132
132
|
pygpt_net/controller/realtime/__init__.py,sha256=MhvJb5wBqcpX6uylof01qEDRdU3SepTD88sU2lXNtIQ,519
|
|
@@ -160,22 +160,38 @@ pygpt_net/core/access/voice.py,sha256=xUnvvdSWG2I5ezpfxEHcmYdgAD-ArtsiqUo0CeHTx4
|
|
|
160
160
|
pygpt_net/core/agents/__init__.py,sha256=JOb-fSWSQFdQTCQvlQmTfcjnZfHtGxwBF1csYQqy4DU,516
|
|
161
161
|
pygpt_net/core/agents/agents.py,sha256=Q2LeixLPbH5JMJIK3-miWcKscTTHC6kxxcqgvd9Wi6o,1114
|
|
162
162
|
pygpt_net/core/agents/bridge.py,sha256=KhCbMTZNigNlgOhXEMN1kqWGNUhkEdjFdiHBBVTAr2g,1553
|
|
163
|
-
pygpt_net/core/agents/custom.py,sha256=
|
|
163
|
+
pygpt_net/core/agents/custom/__init__.py,sha256=Bo-0ZyoQ0FXJWm8DOi3sqO9Xf9ErJOpJ06QvhUjoCG4,8564
|
|
164
|
+
pygpt_net/core/agents/custom/debug.py,sha256=2_ByivZWxuS4VwwXgNQr10T07PVKWA4IJptx5gyIsCU,2351
|
|
165
|
+
pygpt_net/core/agents/custom/factory.py,sha256=vJZcCTJjhDxmErU8NKj-A9OExbLypUlRESk3UguVJYo,3621
|
|
166
|
+
pygpt_net/core/agents/custom/graph.py,sha256=IlUNpdYFctAe913s9TNEI277WfH9TmgFUihU8WAjs2s,2650
|
|
167
|
+
pygpt_net/core/agents/custom/llama_index/__init__.py,sha256=ffFdq3JICFBMNig4ifymqJdBkdoLWbp0fVzsbbmrkgs,487
|
|
168
|
+
pygpt_net/core/agents/custom/llama_index/factory.py,sha256=400PQJhyPYOy_p3q2lF81FVTsCxcbh4jcu-Z6C8t2x4,3144
|
|
169
|
+
pygpt_net/core/agents/custom/llama_index/router_streamer.py,sha256=kpo_XM6iTvZFvGSyKptWhOKzlbh8wy3uWsuHKejPsYI,3224
|
|
170
|
+
pygpt_net/core/agents/custom/llama_index/runner.py,sha256=44_7ggs5nOZZ-mqS22yUjHzBUtiWrjbYNRGQ_JCYWUM,23579
|
|
171
|
+
pygpt_net/core/agents/custom/llama_index/stream.py,sha256=94Cd_2J20LHkFFZOXSkh6LQWGtfXiU8-FrbJz4NAfrQ,1708
|
|
172
|
+
pygpt_net/core/agents/custom/llama_index/utils.py,sha256=JobIU7aBrnt6cFxqJSK7n-AXzjZwa7wDY4_geXMsah0,8173
|
|
173
|
+
pygpt_net/core/agents/custom/logging.py,sha256=xDjJCRK3xhgc5FhtI-QZOlSevf4NlatBjsGnjApF-h0,1825
|
|
174
|
+
pygpt_net/core/agents/custom/memory.py,sha256=Qc2CUc1sYVjK5GTYrYGxGcdRYb-HThklYIMQ2Of-1yE,1877
|
|
175
|
+
pygpt_net/core/agents/custom/router.py,sha256=b1djqhF-0MLa4svH_0IfwTwGaRw2gaPkRZ3wuuq0Uko,4424
|
|
176
|
+
pygpt_net/core/agents/custom/router_streamer.py,sha256=AttgufIMw8Yqc2Ef0CvPLoiPwpApzsCGyaHsB1ZnVCk,6205
|
|
177
|
+
pygpt_net/core/agents/custom/runner.py,sha256=vSK0W7LIcCG7PTQKMlyRp7gy5czYM_IyCrllH-B7ycY,20031
|
|
178
|
+
pygpt_net/core/agents/custom/schema.py,sha256=gVvbptuPSbwEyhCBoOaP9BtInXf6g0CmXeVDjEDrhtk,3999
|
|
179
|
+
pygpt_net/core/agents/custom/utils.py,sha256=seDZhM9udSN9m_av_247Z_WK-GgoaaP_tX-4lZm6EB4,5847
|
|
164
180
|
pygpt_net/core/agents/legacy.py,sha256=OiiiK0zrTfNbWu2dKukg_Ro0vTZyiHlHHCTn1hU0bWg,1733
|
|
165
181
|
pygpt_net/core/agents/memory.py,sha256=9Jz9kT-xT8QPpGeXEpWopJUGBLLHu6Ys_-fRrg6BWDg,5210
|
|
166
182
|
pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
|
|
167
183
|
pygpt_net/core/agents/observer/evaluation.py,sha256=AEcXfoMNNER1yRu5WeVnQypC53QPJMRXh4QlPzJzEYM,8115
|
|
168
|
-
pygpt_net/core/agents/provider.py,sha256=
|
|
169
|
-
pygpt_net/core/agents/runner.py,sha256=
|
|
184
|
+
pygpt_net/core/agents/provider.py,sha256=e4FCF_6syvo7HdatHeVV21g0Kw6F1mTrnGwnQH97y-A,5971
|
|
185
|
+
pygpt_net/core/agents/runner.py,sha256=n5Oih4HbkWlU2hv6AupvPySEVSz3Ye5iL3866RVYdbc,12618
|
|
170
186
|
pygpt_net/core/agents/runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
187
|
pygpt_net/core/agents/runners/base.py,sha256=XjheBYhBZan51r3vkUh5uf00sYiRj8btZUeUP1jpqlA,5687
|
|
172
|
-
pygpt_net/core/agents/runners/helpers.py,sha256=
|
|
188
|
+
pygpt_net/core/agents/runners/helpers.py,sha256=MLBcDo59ACH5_HzQUZ3PzPwvZYzlEjYa9FOSdqiJqn0,8327
|
|
173
189
|
pygpt_net/core/agents/runners/llama_assistant.py,sha256=a_Abkc8u1S8vr6lUIDRrzTM9sQnEvyZA8nZxXaYp05w,2492
|
|
174
190
|
pygpt_net/core/agents/runners/llama_plan.py,sha256=CC3WPG9KUxd_dRjPZROOrmPQrWQ_u8C0nRx0TCzi9bE,13391
|
|
175
191
|
pygpt_net/core/agents/runners/llama_steps.py,sha256=1SBLp5t4TUsxpYIUtSSnBy5Sd2AxheDlv2AXimls-Vg,7328
|
|
176
|
-
pygpt_net/core/agents/runners/llama_workflow.py,sha256=
|
|
192
|
+
pygpt_net/core/agents/runners/llama_workflow.py,sha256=NeBbna8tfhBFnOvCz9rRfWV8ovXztVxiwq-jq1ghCvI,12833
|
|
177
193
|
pygpt_net/core/agents/runners/loop.py,sha256=7Vu50yidu2HSOifOX6bhbyTEHBS5An4GmGUBMYdHOco,7273
|
|
178
|
-
pygpt_net/core/agents/runners/openai_workflow.py,sha256=
|
|
194
|
+
pygpt_net/core/agents/runners/openai_workflow.py,sha256=uKv6wvceORbnkeOze7GvZ3qmEl78ibjonNAyKKynFw0,9012
|
|
179
195
|
pygpt_net/core/agents/tools.py,sha256=UW5-3q-cPpmx_FlDyuF2qymbgIJRmkklNmng3IokEUM,22116
|
|
180
196
|
pygpt_net/core/assistants/__init__.py,sha256=FujLn0ia5S3-7nX-Td_0S5Zqiw6Yublh58c4Di7rRgY,514
|
|
181
197
|
pygpt_net/core/assistants/assistants.py,sha256=JVseBSjDJh9vJYjxoZVwU93EFTBJk_rUtRh_Ml550H0,4391
|
|
@@ -211,8 +227,6 @@ pygpt_net/core/bridge/__init__.py,sha256=RCrT3CuP8-Gf_APr5mBXyNcRigrfHcgS-SYVVP_
|
|
|
211
227
|
pygpt_net/core/bridge/bridge.py,sha256=1pTbVza_CZMdrnXiRxq9sDROeJtMNofBMMkFzA1VQOE,10496
|
|
212
228
|
pygpt_net/core/bridge/context.py,sha256=YBqeR5PgV0x5KK5otN-DYQNSqQtVaNddtRLDwSSLC2Y,7154
|
|
213
229
|
pygpt_net/core/bridge/worker.py,sha256=RukudDq6IAxcg2w-wfQmu7Ia-YTT3NPgAybr1OMpxF4,8498
|
|
214
|
-
pygpt_net/core/builder/__init__.py,sha256=x-1fJoeSQsNwPgs600_uvLDXT8XHvCtaoEah9bm_PDs,578
|
|
215
|
-
pygpt_net/core/builder/graph.py,sha256=mhpg5LUBP0aVlxYZw6DzXpTLNmf3__1gRULQo_2hCXc,19002
|
|
216
230
|
pygpt_net/core/calendar/__init__.py,sha256=AyzoNqYgxV35CMEzoi_SCSsQh4ehg_Wu_2nsK3xsbyg,512
|
|
217
231
|
pygpt_net/core/calendar/calendar.py,sha256=mHWU8jPTYWqxd-35tIHM6GuKaFWzmB6Up7lq8ewV2_U,7224
|
|
218
232
|
pygpt_net/core/camera/__init__.py,sha256=cny2EajFmwkFdo_pUkErJY4BhpyHp1kJVDcTCOOvkjY,510
|
|
@@ -275,7 +289,7 @@ pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddY
|
|
|
275
289
|
pygpt_net/core/filesystem/filesystem.py,sha256=QYperv6KMGg6mwt8EVHMWT_KB2MH8wzUDB_CiIgaSGU,15602
|
|
276
290
|
pygpt_net/core/filesystem/opener.py,sha256=8EkieR_FwSz0HBykLcmV8TEw8Bn0e7WHqqiPTkDPp-M,7851
|
|
277
291
|
pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fVWTok1w,2568
|
|
278
|
-
pygpt_net/core/filesystem/parser.py,sha256=
|
|
292
|
+
pygpt_net/core/filesystem/parser.py,sha256=CLESCdASVQ1-cJ_6ZxbgDSxvwC-haznj_coE1_tWaQE,3548
|
|
279
293
|
pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUkTcqaA,3458
|
|
280
294
|
pygpt_net/core/filesystem/url.py,sha256=0eT7QbRQw-G19oxG3AwKgREU2CsaLSF8Fw-IO04CvUU,3676
|
|
281
295
|
pygpt_net/core/fixtures/__init__,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -313,6 +327,11 @@ pygpt_net/core/models/models.py,sha256=S5Liz5wnrfrvm5gMf4gHrtesrUhQ2yIZEUWOK-omV
|
|
|
313
327
|
pygpt_net/core/models/ollama.py,sha256=MiCt1Nzd3VHjnj7a0CmGjqUkPuD7401obd7G7KQIZzU,3189
|
|
314
328
|
pygpt_net/core/modes/__init__.py,sha256=dKpce7VTQCzmSfNBT1WHd_zKzXRthRs7ZKqHQSEtftc,509
|
|
315
329
|
pygpt_net/core/modes/modes.py,sha256=tlVP9OnQqwOIrv0qt-OMwivslcHEC3WY1X-0r-o0lqI,3067
|
|
330
|
+
pygpt_net/core/node_editor/__init__.py,sha256=4rnR6TdYCl9M0U914MNsvOoE8CRiRnKfx819xBypbxo,517
|
|
331
|
+
pygpt_net/core/node_editor/graph.py,sha256=8bQvSQNqYqN8hdWNrpjyUK-l78mE8WGnx6fR5DBo0Ow,11791
|
|
332
|
+
pygpt_net/core/node_editor/models.py,sha256=WHzCr4rd9rx5zvKcODuyMCe97NsYGJfaFVO2WFx4a_4,3366
|
|
333
|
+
pygpt_net/core/node_editor/types.py,sha256=dHqjQHmD0bWowdo2EZWCmieVB3sptnshs7I9x0Kh_Jc,2959
|
|
334
|
+
pygpt_net/core/node_editor/utils.py,sha256=FLnHXHQ6W2ZPYz39e5WqVY7SkBLoqVtPFGVNbPBj3FI,595
|
|
316
335
|
pygpt_net/core/notepad/__init__.py,sha256=Uro9_4CfihHzn92I2Ar0q0t-MAGkikUMrY5kGAuLlSw,511
|
|
317
336
|
pygpt_net/core/notepad/notepad.py,sha256=zYE7BRERDOxROMMfjTwS6M5Vk08DXxXqHdKi1aX33i0,4243
|
|
318
337
|
pygpt_net/core/platforms/__init__.py,sha256=NRmTzf4xFxcYseYs1mgCPZA0YUH2v0Aufq4CG1_mKDE,513
|
|
@@ -359,7 +378,7 @@ pygpt_net/core/render/web/debug.py,sha256=784RYXF6inn_bkRtYD1_FllQSyk67JmxKGWPiA
|
|
|
359
378
|
pygpt_net/core/render/web/helpers.py,sha256=8-JkbEOOLoCEAkylJWr8yk3aIliQBMyqcatsyW99VWY,7340
|
|
360
379
|
pygpt_net/core/render/web/parser.py,sha256=pDFc9Tf8P-jvrDilXyT1fukcQHbixHRJ9Dn9hF10Gko,12892
|
|
361
380
|
pygpt_net/core/render/web/pid.py,sha256=F33x_OtrHL9BDMXx_JUbfo8-DOiN4vo1Tv4rrRVADTo,4343
|
|
362
|
-
pygpt_net/core/render/web/renderer.py,sha256=
|
|
381
|
+
pygpt_net/core/render/web/renderer.py,sha256=n5ov53m-JA5cKBRXtprf_9FuPQpy_9hKGaNwlFeWRhk,68793
|
|
363
382
|
pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9enXV_cMEuaJ3C43U,2005
|
|
364
383
|
pygpt_net/core/settings/__init__.py,sha256=GQ6_gJ2jf_Chm7ZuZLvkcvEh_sfMDVMBieeoJi2iPI4,512
|
|
365
384
|
pygpt_net/core/settings/settings.py,sha256=Ix06y-gJ3q7NJDf55XAWBBYulBLpinBqzYqsytH_9mo,8686
|
|
@@ -400,8 +419,8 @@ pygpt_net/css_rc.py,sha256=PX6g9z5BsD-DXISuR2oq3jHcjiKfcJ4HsgcHez6wGMc,27762
|
|
|
400
419
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
401
420
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
402
421
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
403
|
-
pygpt_net/data/config/config.json,sha256=
|
|
404
|
-
pygpt_net/data/config/models.json,sha256=
|
|
422
|
+
pygpt_net/data/config/config.json,sha256=knoJ0lpwKQ9vJig3HZjnxVWRmRZPQIk5RaSXHV3Z3Mc,30943
|
|
423
|
+
pygpt_net/data/config/models.json,sha256=KTO74tFW3mhfsxAqPRo493yMZ2rsyTvWmNYKP6PSU6s,118192
|
|
405
424
|
pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
|
|
406
425
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
407
426
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -1707,7 +1726,7 @@ pygpt_net/data/js/markdown-it/markdown-it-katex.min.js,sha256=-wMst2a9i8Borapa9_
|
|
|
1707
1726
|
pygpt_net/data/js/markdown-it/markdown-it.min.js,sha256=OMcKHnypGrQOLZ5uYBKYUacX7Rx9Ssu91Bv5UDeRz2g,123618
|
|
1708
1727
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1709
1728
|
pygpt_net/data/locale/locale.de.ini,sha256=ZX_31ZDOgqG2X7YN7eTeZF3Y2TyZ93aoZ3OjtHgy4xg,106996
|
|
1710
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1729
|
+
pygpt_net/data/locale/locale.en.ini,sha256=h8OklvRMKWNfK_ruTojQIvCXJ9KxMARrX8hc_sXl0qI,101145
|
|
1711
1730
|
pygpt_net/data/locale/locale.es.ini,sha256=3gyUk0kFo76eThhttbT2U0HS8uF19VQVE3Oueb8MwVk,107621
|
|
1712
1731
|
pygpt_net/data/locale/locale.fr.ini,sha256=GLqZn8nLwOYEM09WBoLO61UyjZbL2_OVxWp3GDsge6Y,110394
|
|
1713
1732
|
pygpt_net/data/locale/locale.it.ini,sha256=warvdCX_vdt7w5qWvdrSWF7pxNL1xPREaUvksTnHJIc,105292
|
|
@@ -1795,7 +1814,7 @@ pygpt_net/data/locale/plugin.cmd_serial.pl.ini,sha256=1VdOYRB76gkjMtzysa4gp3ArTH
|
|
|
1795
1814
|
pygpt_net/data/locale/plugin.cmd_serial.uk.ini,sha256=wS4XPWBhMl6-3W0diAd0A2Oir9uzCILGX24kLmf4v08,1614
|
|
1796
1815
|
pygpt_net/data/locale/plugin.cmd_serial.zh.ini,sha256=Vvn-244zOAJeuCf81zEWb_GNH9MpqX-9RgkwlW7O-bQ,1014
|
|
1797
1816
|
pygpt_net/data/locale/plugin.cmd_system.de.ini,sha256=IW_n68N-qSDlBDkHHcf11cQOUQZKZKbUFpZwYh5ft3c,1301
|
|
1798
|
-
pygpt_net/data/locale/plugin.cmd_system.en.ini,sha256=
|
|
1817
|
+
pygpt_net/data/locale/plugin.cmd_system.en.ini,sha256=vfJQDIMCgUWN6VCD1kWr2QtSlHEEApx2jhyCAFMqX9Y,5518
|
|
1799
1818
|
pygpt_net/data/locale/plugin.cmd_system.es.ini,sha256=WGM8brSKpPa1YsVNvAKJjLLtg8oBsnb1Wq_SYmNOdX4,1381
|
|
1800
1819
|
pygpt_net/data/locale/plugin.cmd_system.fr.ini,sha256=PvBSlLRrl3oZDzY9tO-Btl5W-l2Fn3RXpVYPt2a65_I,1321
|
|
1801
1820
|
pygpt_net/data/locale/plugin.cmd_system.it.ini,sha256=grekD4hNTSLjeGgFcPR72BYVYcxVqNqh4XdBG_4RZHQ,1305
|
|
@@ -1903,7 +1922,7 @@ pygpt_net/fonts_rc.py,sha256=iBYh-MsobIYZJDrsY6BSpaC51vKaJ7yiNpyU1FbfY9M,3236175
|
|
|
1903
1922
|
pygpt_net/icons.qrc,sha256=xLApyj7e7MOwvugDMiFL_bqm5IYqAOEmHEUWy-flzcQ,9729
|
|
1904
1923
|
pygpt_net/icons_rc.py,sha256=o6QKV61aBU7SxHUV1YhsUyVcnDWwWe7eiIh-SlYc7Fg,98200
|
|
1905
1924
|
pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
1906
|
-
pygpt_net/item/agent.py,sha256=
|
|
1925
|
+
pygpt_net/item/agent.py,sha256=1nClOB1g4vZE6py6J9tMVBQHv8E6vPxbkwBNoyuBAvw,1650
|
|
1907
1926
|
pygpt_net/item/assistant.py,sha256=FYIbh48J3aOC9IXaopFYqbzQ5vWG_hvWW76UFnUjvGM,11484
|
|
1908
1927
|
pygpt_net/item/attachment.py,sha256=nsyvOnTS_gimcdzwJNI7bC-1KSrSu66XkMtaNwg2IYk,2970
|
|
1909
1928
|
pygpt_net/item/builder_layout.py,sha256=u_VxSs_JrbVArVL7x6vMXmHNChmSpeCeqAoNjvJb9CA,1509
|
|
@@ -1913,7 +1932,7 @@ pygpt_net/item/index.py,sha256=NTDBgNjiyaixTFJu_1oBqoVajf92c2U1Oa3BKQ11poU,1920
|
|
|
1913
1932
|
pygpt_net/item/mode.py,sha256=0uPU7ciqVLaEcijUA-D73ABMoLUFtgPytdXUuwqtews,688
|
|
1914
1933
|
pygpt_net/item/model.py,sha256=1s6aRxLs7Y8bgpVef7Yv7_ERmvjePjwNQLrZ0p7KHhU,10152
|
|
1915
1934
|
pygpt_net/item/notepad.py,sha256=7v3A3HJjew0IoFM65Li0xfoSEdJzfEUZM1IH1ND0Bxw,1805
|
|
1916
|
-
pygpt_net/item/preset.py,sha256=
|
|
1935
|
+
pygpt_net/item/preset.py,sha256=nkLoyfHoZnjoqKKynDo0alJDb_o8BFxTZRYk7_2uQss,8991
|
|
1917
1936
|
pygpt_net/item/prompt.py,sha256=xequZDTEv4eKjmC5OLqZnNrbyy0YA4LHe0k2RpPiBw0,1745
|
|
1918
1937
|
pygpt_net/js.qrc,sha256=0ur8_O4TeD2NEmj2gPb7z1XKH5PRxgDo3H8awPPb7zg,2001
|
|
1919
1938
|
pygpt_net/js_rc.py,sha256=9a5ssTYXTM6vVa2A0ZWbtM8hK34Expblqe4gD4F1nBk,2789149
|
|
@@ -1993,12 +2012,13 @@ pygpt_net/plugin/cmd_serial/config.py,sha256=oXtnKRL42yadG7fUoCAwpvdgWAU-lOjeryH
|
|
|
1993
2012
|
pygpt_net/plugin/cmd_serial/plugin.py,sha256=42qeqL-3FSCXFVeA-qF3fEQIQoKKkVgTM-h3LR6mWRA,2945
|
|
1994
2013
|
pygpt_net/plugin/cmd_serial/worker.py,sha256=q9XAXjuvWRoTK6fh-qr10ZRY6XV-eZIR2jDUGxI7Ieo,7942
|
|
1995
2014
|
pygpt_net/plugin/cmd_system/__init__.py,sha256=PVCicfnsv5lwFO327NOanm6gxcXnlDUofhja3hOqM84,510
|
|
1996
|
-
pygpt_net/plugin/cmd_system/config.py,sha256=
|
|
2015
|
+
pygpt_net/plugin/cmd_system/config.py,sha256=VyuzWwk8koZrhFZS_1Vta1O-ZqOVHH7atHmC-5EqREU,22683
|
|
1997
2016
|
pygpt_net/plugin/cmd_system/docker.py,sha256=-TVrW4FzeQrPh6K6kL7jy43pNyHO1MOc88BF_FvWVho,1852
|
|
1998
2017
|
pygpt_net/plugin/cmd_system/output.py,sha256=-_jsePK2tOo45TBunstfkDnpU4ezWR4gJxMHfjhA7Q4,2138
|
|
1999
|
-
pygpt_net/plugin/cmd_system/plugin.py,sha256=
|
|
2000
|
-
pygpt_net/plugin/cmd_system/runner.py,sha256=
|
|
2001
|
-
pygpt_net/plugin/cmd_system/
|
|
2018
|
+
pygpt_net/plugin/cmd_system/plugin.py,sha256=wrnitJY0pUGBQR-Fl8mweLJK7veCNyqBoiVI5BYJFqw,6731
|
|
2019
|
+
pygpt_net/plugin/cmd_system/runner.py,sha256=eGa6ncy7yfBadBSnpMexLO4WfHRfssq3yoSSVYpRP-k,30013
|
|
2020
|
+
pygpt_net/plugin/cmd_system/winapi.py,sha256=eF72Z0MAGxb6312yzdNw432ABK2P-0OYaQFvMXycwWQ,19937
|
|
2021
|
+
pygpt_net/plugin/cmd_system/worker.py,sha256=0-0bDH3VycomrsVZOLpNJJP9hbOduZjUEEn9e4VmCTU,8549
|
|
2002
2022
|
pygpt_net/plugin/cmd_web/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
2003
2023
|
pygpt_net/plugin/cmd_web/config.py,sha256=XXeczlWJYh6BopfJ45eA8zpoy0iOiqLaRMtUdzmkkeg,14319
|
|
2004
2024
|
pygpt_net/plugin/cmd_web/plugin.py,sha256=gxWNhYh5vthFB7FJ90UNY6rY12oDk_GRZ78Q-A0qe2c,14550
|
|
@@ -2085,9 +2105,10 @@ pygpt_net/plugin/wolfram/plugin.py,sha256=_DD0Y6oWTwPpcAFinwklLJjmRnK-6yJI7eBzu5
|
|
|
2085
2105
|
pygpt_net/plugin/wolfram/worker.py,sha256=gu5HjeqwOi2F_HdlR0mqx1wZszKIsfzalfiLrGHCZVI,23048
|
|
2086
2106
|
pygpt_net/provider/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
|
|
2087
2107
|
pygpt_net/provider/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2088
|
-
pygpt_net/provider/agents/base.py,sha256=
|
|
2108
|
+
pygpt_net/provider/agents/base.py,sha256=2Bjt-4yyj1OZkN6Qh_QS_W5Iq0SwcTC7Nt3VFDesEIk,4540
|
|
2089
2109
|
pygpt_net/provider/agents/llama_index/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2090
2110
|
pygpt_net/provider/agents/llama_index/codeact_workflow.py,sha256=NmJy2y4i0Hu7daGVSS9fVzeV3TbVeG01s8phEKnyg7c,3556
|
|
2111
|
+
pygpt_net/provider/agents/llama_index/flow_from_schema.py,sha256=ovOW2VqWmbdH1tyMF9Gc2V6ARi10v5letetc_HEKweg,4085
|
|
2091
2112
|
pygpt_net/provider/agents/llama_index/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2092
2113
|
pygpt_net/provider/agents/llama_index/legacy/openai.py,sha256=j3Od0FPIh1NyMh-jb3CaocxuCUi_4b4CijEqaPA2PeQ,1644
|
|
2093
2114
|
pygpt_net/provider/agents/llama_index/legacy/openai_assistant.py,sha256=ZjxhMvltzDNGCmzCCS64wWYK6Z5Zn2V8CJBv12skyk4,3956
|
|
@@ -2119,6 +2140,7 @@ pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py,sha256
|
|
|
2119
2140
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py,sha256=loW8ujW7NrWZkCdfYCD7t3GO5HXYzRk85Afs9-lNBEE,1823
|
|
2120
2141
|
pygpt_net/provider/agents/openai/bots/research_bot/manager.py,sha256=n3BJiEogkfPvWsbA7ieHWnMoLve5koQ1ihAKO5ty7jk,7310
|
|
2121
2142
|
pygpt_net/provider/agents/openai/evolve.py,sha256=hBsYIokVCWLWB0syHoLQqWgEiEfR9JhmiiaETjQMx1c,22976
|
|
2143
|
+
pygpt_net/provider/agents/openai/flow_from_schema.py,sha256=Ih8HMsjGBVLqQ0khLHR_VHkEs56hKfab0cfYc03MYDE,3986
|
|
2122
2144
|
pygpt_net/provider/agents/openai/supervisor.py,sha256=cUsVns-ZZ7kK78SNcHRt3UgfePjB6NWCOrauSfn_BnI,13229
|
|
2123
2145
|
pygpt_net/provider/api/__init__.py,sha256=Daaev4XktvnciogLCfXcuokzrBUrbeoeRfU7usY5Svw,933
|
|
2124
2146
|
pygpt_net/provider/api/anthropic/__init__.py,sha256=IVWpeh5TxGug3kMCkYMkyC27wdjjZeDjlp0U3kW3SvM,7583
|
|
@@ -2190,7 +2212,7 @@ pygpt_net/provider/audio_output/openai_tts.py,sha256=7A2FybS2HBlGRPdFWgsXxlr4KI_
|
|
|
2190
2212
|
pygpt_net/provider/core/__init__.py,sha256=YHQ86AUqjoP79N5vRqOmK-6FUDLQhCl_0y6Z4Tun3dU,488
|
|
2191
2213
|
pygpt_net/provider/core/agent/__init__.py,sha256=jwPZQU-LLHDmWMicfBT5a0XVuVBbM0AxRNojnirp1UY,487
|
|
2192
2214
|
pygpt_net/provider/core/agent/base.py,sha256=oPlxc3Smo3BTaJPgDO4bq7NGIQjODekI06md_oAUkoA,1306
|
|
2193
|
-
pygpt_net/provider/core/agent/json_file.py,sha256=
|
|
2215
|
+
pygpt_net/provider/core/agent/json_file.py,sha256=ZLKmlVHEahop3GElmvUx3rf4FZU7bvsgQ49lJQvwuTE,5883
|
|
2194
2216
|
pygpt_net/provider/core/assistant/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2195
2217
|
pygpt_net/provider/core/assistant/base.py,sha256=zFJs4LxnBvUBri9-FgOYjv1wyfDFEzEu9H01GcTYL0s,1251
|
|
2196
2218
|
pygpt_net/provider/core/assistant/json_file.py,sha256=uNnxBEWWbShrjzrhYKfgVQRLQcoLGIHzEkTYCmTfD_A,6530
|
|
@@ -2298,7 +2320,7 @@ pygpt_net/provider/llms/mistral.py,sha256=BstHVTS-7luMEoInzNNQqbR9BR9_ezH9MAsHcS
|
|
|
2298
2320
|
pygpt_net/provider/llms/ollama.py,sha256=vVqA22eH-APgyfHCaHSvJlAgxLSvspvZSaOCeaKWQCw,4434
|
|
2299
2321
|
pygpt_net/provider/llms/ollama_custom.py,sha256=WVbLiEEwnz5loKiLy7EYmpuWz0Tp5Vhd1vOUB2051kI,24167
|
|
2300
2322
|
pygpt_net/provider/llms/open_router.py,sha256=k4WgtT6A13bwhdT7oKQe4dO78x0Wog5deebbvfL7YVA,3815
|
|
2301
|
-
pygpt_net/provider/llms/openai.py,sha256=
|
|
2323
|
+
pygpt_net/provider/llms/openai.py,sha256=w8mZLg7sLaA1byGbhQx4pclEEETeZ13F43AhMUhFkDw,5709
|
|
2302
2324
|
pygpt_net/provider/llms/perplexity.py,sha256=JMMVS2zZBxApVhJQZKZ0i_BuP6dYDo19haEf-riZYcM,6173
|
|
2303
2325
|
pygpt_net/provider/llms/utils.py,sha256=5p83te7Hv9jUTtW-VXDDwzRO_0qvFSN5FdeRYioUedk,1336
|
|
2304
2326
|
pygpt_net/provider/llms/voyage.py,sha256=3tuLmayekAy-pNIK9z-Gwz9jEVYdt7CsAtsE57feUlA,1918
|
|
@@ -2381,10 +2403,10 @@ pygpt_net/provider/web/google_custom_search.py,sha256=T99QIkkh21QhsFbtNr3XXBZ4_k
|
|
|
2381
2403
|
pygpt_net/provider/web/microsoft_bing.py,sha256=Y4VoI7eJFfHFDN1g7zYT3cI1xwLrPEDdozqoLeh3BqQ,4199
|
|
2382
2404
|
pygpt_net/tools/__init__.py,sha256=MdlCuI4chc1hFf402oIFfEebiksgtPT_95ddpYSYTVM,4520
|
|
2383
2405
|
pygpt_net/tools/agent_builder/__init__.py,sha256=BMAd560SEU0GcVRUDaWWLiLoU2SYdAWDABhs7xrORwI,508
|
|
2384
|
-
pygpt_net/tools/agent_builder/tool.py,sha256=
|
|
2406
|
+
pygpt_net/tools/agent_builder/tool.py,sha256=W8ECARY7z_9aJeTeSta8ga5BOuSWj6gGuucp2YrzfHg,15613
|
|
2385
2407
|
pygpt_net/tools/agent_builder/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2386
|
-
pygpt_net/tools/agent_builder/ui/dialogs.py,sha256=
|
|
2387
|
-
pygpt_net/tools/agent_builder/ui/list.py,sha256=
|
|
2408
|
+
pygpt_net/tools/agent_builder/ui/dialogs.py,sha256=KXGMgRAzcK77NNaRcLFVBVen0iEWK1xyEIFQo_cGQGw,8583
|
|
2409
|
+
pygpt_net/tools/agent_builder/ui/list.py,sha256=XU_6QiiZ4AlddBu9ecahRoMrxUKTzk-3UEV6ly-Dpyg,7922
|
|
2388
2410
|
pygpt_net/tools/audio_transcriber/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2389
2411
|
pygpt_net/tools/audio_transcriber/tool.py,sha256=Qzyd3lnzSjm40LoF9Isz-Yvc-Ex3WmEUFi5H0mjcTfo,9836
|
|
2390
2412
|
pygpt_net/tools/audio_transcriber/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -2395,7 +2417,7 @@ pygpt_net/tools/code_interpreter/body.py,sha256=jDEHJuAI8U1RjV0Dhm5CcL4Y8b09UNDw
|
|
|
2395
2417
|
pygpt_net/tools/code_interpreter/tool.py,sha256=XH3_ZUWp1tp21rGlj6-ULI723DXfY1xs7dN9Ye03Pm8,24185
|
|
2396
2418
|
pygpt_net/tools/code_interpreter/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2397
2419
|
pygpt_net/tools/code_interpreter/ui/dialogs.py,sha256=iYCtmn_gPMKhvy8Ygga_oYPVg80zP3-10SZgv0O6xYQ,5429
|
|
2398
|
-
pygpt_net/tools/code_interpreter/ui/html.py,sha256=
|
|
2420
|
+
pygpt_net/tools/code_interpreter/ui/html.py,sha256=wVGCUPSWU1GYU5zCXbyLD2AOfaKQRprjIskeBLKMwDc,27429
|
|
2399
2421
|
pygpt_net/tools/code_interpreter/ui/widgets.py,sha256=noOvecQNHcZKDfyfmgnupNr8KtY8WPvfbds63z6vOV0,18020
|
|
2400
2422
|
pygpt_net/tools/html_canvas/__init__.py,sha256=7FScUoJWFBsF6Rbmt14zb2YEERcywW_xAeX0GTAHhX4,508
|
|
2401
2423
|
pygpt_net/tools/html_canvas/tool.py,sha256=4-I7WfEGU9zMjauQ1LUoNxdt2oLy8dlEW9_-gA6JzDI,10210
|
|
@@ -2458,7 +2480,7 @@ pygpt_net/ui/dialog/logger.py,sha256=OGFKlAyeMgNQI4a-VW9bDXSrcsPtEC6rLhtdu11lsJc
|
|
|
2458
2480
|
pygpt_net/ui/dialog/models.py,sha256=WnVvv1pFwTTXmK3uM9bNX59GMccDGxvKhAYxJXW88fs,19717
|
|
2459
2481
|
pygpt_net/ui/dialog/models_importer.py,sha256=14kxf7KkOdTP-tcgTN5OphNZajlivDPTDKBosebuyog,4505
|
|
2460
2482
|
pygpt_net/ui/dialog/plugins.py,sha256=88TsvYWHdmR5hepld6ouSEa4BDhewAQ-JFE7RWGSdy8,20287
|
|
2461
|
-
pygpt_net/ui/dialog/preset.py,sha256=
|
|
2483
|
+
pygpt_net/ui/dialog/preset.py,sha256=DfnTsNpqtJRln-zCEM_Da11hYQ8v24mPw5gCzp-Xqt0,18008
|
|
2462
2484
|
pygpt_net/ui/dialog/preset_plugins.py,sha256=ynqc0aWjU7MTL4jxcVKaRH_tC9uzeWJCUzUjI74ADb0,3796
|
|
2463
2485
|
pygpt_net/ui/dialog/profile.py,sha256=Xk9NNQmr1A5pRUxdedu7ePEBq5OYhLT8UInuRWYBktU,4105
|
|
2464
2486
|
pygpt_net/ui/dialog/rename.py,sha256=Spb7cUVq1ivy3Zg28SBACJ7p_GwJ1gm82Oz9Ld_a_FU,973
|
|
@@ -2505,7 +2527,7 @@ pygpt_net/ui/layout/toolbox/split.py,sha256=Hs9hZPciLXCRV_izoayrBlJSCuTGumdNki6z
|
|
|
2505
2527
|
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=VHzyzm7LjcAN30h111SEP6fdXwi84DYyf8CE1X3pdt8,2799
|
|
2506
2528
|
pygpt_net/ui/layout/toolbox/video.py,sha256=JyDVkJIh1m6RSbJFGQqIBKrsQgbfx2O08ybJ7bEZyWg,1477
|
|
2507
2529
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=E6-lLfU3vrWdlprayr6gxFs7F7AGkn4OIrFXrQ9p5XA,2035
|
|
2508
|
-
pygpt_net/ui/main.py,sha256=
|
|
2530
|
+
pygpt_net/ui/main.py,sha256=WfCWnf7OiPbFazwMyhH4yWUdomU2N12sy7i4K5Sa9zI,14259
|
|
2509
2531
|
pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
|
|
2510
2532
|
pygpt_net/ui/menu/about.py,sha256=BtelbYhpXJGgsoEwsPuw61wVuGkzogpY3FVvWtd09HE,4619
|
|
2511
2533
|
pygpt_net/ui/menu/audio.py,sha256=3vQhMq8vk_h7yb_Gk2dZMRviFR2PExgR_ynpgOkyl-g,4226
|
|
@@ -2527,8 +2549,6 @@ pygpt_net/ui/widget/audio/bar.py,sha256=1TnNx5x4sXx-Iu4zPtwID7DGf97TH3OABG8BKyiC
|
|
|
2527
2549
|
pygpt_net/ui/widget/audio/input.py,sha256=t9VAhP15HkSOvNV2crI3Kg6AgrQDj-wSQiiYTMlvK60,1721
|
|
2528
2550
|
pygpt_net/ui/widget/audio/input_button.py,sha256=QDfA8WBskY0pkN8EMXZ97017Sj11t4p9b_jCz4Q6aRY,4498
|
|
2529
2551
|
pygpt_net/ui/widget/audio/output.py,sha256=UxkiCnVT9DNFeByDGTFW_CK0LW8xSvhEK1zygtHvx4k,1586
|
|
2530
|
-
pygpt_net/ui/widget/builder/__init__.py,sha256=veIDrPtqCZNLdgtSD5cFCF3OLra9bRce1gBdpmK7sKU,519
|
|
2531
|
-
pygpt_net/ui/widget/builder/editor.py,sha256=WYzR6GtOq1JhSFvMfPQSwifIhquT6NnBZNZAGHlPQlo,83881
|
|
2532
2552
|
pygpt_net/ui/widget/calendar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2533
2553
|
pygpt_net/ui/widget/calendar/select.py,sha256=iQgD7djD9ZTD8csje3DVZhQu0onIn5Ai5Nse08FcV7Q,10667
|
|
2534
2554
|
pygpt_net/ui/widget/dialog/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
@@ -2597,6 +2617,13 @@ pygpt_net/ui/widget/lists/preset_plugins.py,sha256=3ONjBKPv2buTdgtO6BLSaW-z-Cui4
|
|
|
2597
2617
|
pygpt_net/ui/widget/lists/profile.py,sha256=d8VE9i35MVjZkNFJ-VuHJZeTiMwnF64pYP8-A7zCmv8,4406
|
|
2598
2618
|
pygpt_net/ui/widget/lists/settings.py,sha256=ZMOPvpu_h3NMQ2WTb5SfoAmSmBTW_lbtm7M-oAp1zA8,1052
|
|
2599
2619
|
pygpt_net/ui/widget/lists/uploaded.py,sha256=yVIqySvkcXKZICIB3SwKx1Q-oTEupjLOzhopj9-O5h0,4356
|
|
2620
|
+
pygpt_net/ui/widget/node_editor/__init__.py,sha256=zq9BnwcUk-wFRVNCb4tt-6S1c7aqLARjLpDOtpneyqg,519
|
|
2621
|
+
pygpt_net/ui/widget/node_editor/command.py,sha256=jAMLUYyWDs5dZ4rChBGHHMh-IDrta2DjW5OOwOAKck8,15217
|
|
2622
|
+
pygpt_net/ui/widget/node_editor/editor.py,sha256=WWyQNEApYAvxszB5ORzIMwu_nGZUkOylpRIIYYmP_dA,90711
|
|
2623
|
+
pygpt_net/ui/widget/node_editor/item.py,sha256=FIYtM-2hktmFaaJiD14ttPpUCZTjgADhAk7vZevRpg0,19786
|
|
2624
|
+
pygpt_net/ui/widget/node_editor/node.py,sha256=3G2mDE3lH_tnRFX6oon7-TC1Nz6WW6djQ6xYNYSG6aY,49516
|
|
2625
|
+
pygpt_net/ui/widget/node_editor/utils.py,sha256=mD46jTdJ3gB7TyCSIx2CnUsBPBBE3ucm1TUHH9qfJjA,711
|
|
2626
|
+
pygpt_net/ui/widget/node_editor/view.py,sha256=aOJnNlnmN8vBphGmMKSHXSWVcgqllhfDZVF11xbrdJI,9641
|
|
2600
2627
|
pygpt_net/ui/widget/option/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2601
2628
|
pygpt_net/ui/widget/option/checkbox.py,sha256=duzgGPOVbHFnWILVEu5gDUa6sHeDOvQaaj9IsY-HbU8,3954
|
|
2602
2629
|
pygpt_net/ui/widget/option/checkbox_list.py,sha256=j3lks2qPaZZdfZEV9EbN5kH8gEquVZFUDF_rq7uxjn0,5770
|
|
@@ -2628,12 +2655,12 @@ pygpt_net/ui/widget/textarea/output.py,sha256=3yvlnxXhss-i5eRHwmNxxRZMhP4fiTbKA3
|
|
|
2628
2655
|
pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
|
|
2629
2656
|
pygpt_net/ui/widget/textarea/search_input.py,sha256=aoOlunBwxn-z3gIMNKfnghHX00sC36wQHl87dRlDJlM,5227
|
|
2630
2657
|
pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
|
|
2631
|
-
pygpt_net/ui/widget/textarea/web.py,sha256=
|
|
2658
|
+
pygpt_net/ui/widget/textarea/web.py,sha256=CDpsjv8OorG1mO0NoXp-otgx1YHZES9DilZ_wo_KEig,20272
|
|
2632
2659
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2633
2660
|
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2634
2661
|
pygpt_net/utils.py,sha256=m0fkJ06JaUKvTbxZQgdY-mpYt7ReZZhq1D90a2ANOQ0,10832
|
|
2635
|
-
pygpt_net-2.6.
|
|
2636
|
-
pygpt_net-2.6.
|
|
2637
|
-
pygpt_net-2.6.
|
|
2638
|
-
pygpt_net-2.6.
|
|
2639
|
-
pygpt_net-2.6.
|
|
2662
|
+
pygpt_net-2.6.60.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2663
|
+
pygpt_net-2.6.60.dist-info/METADATA,sha256=FXViUrzMB6qSCr2cFMI9GWBUdxwNQzhJWjqsr6xkwtI,170764
|
|
2664
|
+
pygpt_net-2.6.60.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2665
|
+
pygpt_net-2.6.60.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2666
|
+
pygpt_net-2.6.60.dist-info/RECORD,,
|
pygpt_net/core/agents/custom.py
DELETED
|
@@ -1,150 +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.09.19 00:00:00 #
|
|
10
|
-
# ================================================== #
|
|
11
|
-
|
|
12
|
-
import copy
|
|
13
|
-
from uuid import uuid4
|
|
14
|
-
|
|
15
|
-
from pygpt_net.item.builder_layout import BuilderLayoutItem
|
|
16
|
-
from pygpt_net.provider.core.agent.json_file import JsonFileProvider
|
|
17
|
-
|
|
18
|
-
class Custom:
|
|
19
|
-
def __init__(self, window=None):
|
|
20
|
-
"""
|
|
21
|
-
Custom agents core
|
|
22
|
-
|
|
23
|
-
:param window: Window instance
|
|
24
|
-
"""
|
|
25
|
-
self.window = window
|
|
26
|
-
self.provider = JsonFileProvider(window) # json file provider
|
|
27
|
-
self.agents = {} # dict of AgentItem
|
|
28
|
-
self.layout = None # BuilderLayoutItem
|
|
29
|
-
self.loaded = False
|
|
30
|
-
|
|
31
|
-
def load(self):
|
|
32
|
-
"""Load custom agents from provider"""
|
|
33
|
-
data = self.provider.load()
|
|
34
|
-
if "layout" in data:
|
|
35
|
-
self.layout = data["layout"]
|
|
36
|
-
if "agents" in data:
|
|
37
|
-
self.agents = data["agents"]
|
|
38
|
-
self.loaded = True
|
|
39
|
-
|
|
40
|
-
def save(self):
|
|
41
|
-
"""Save custom agents to provider"""
|
|
42
|
-
self.provider.save(self.layout, self.agents)
|
|
43
|
-
|
|
44
|
-
def update_layout(self, layout: dict):
|
|
45
|
-
"""
|
|
46
|
-
Update layout of custom agents
|
|
47
|
-
|
|
48
|
-
:param layout: layout dict
|
|
49
|
-
"""
|
|
50
|
-
if self.layout is None:
|
|
51
|
-
self.layout = BuilderLayoutItem()
|
|
52
|
-
self.layout.data = layout
|
|
53
|
-
|
|
54
|
-
def reset(self):
|
|
55
|
-
"""Reset custom agents"""
|
|
56
|
-
self.agents = {}
|
|
57
|
-
self.layout = None
|
|
58
|
-
self.loaded = False
|
|
59
|
-
self.provider.truncate()
|
|
60
|
-
|
|
61
|
-
def get_layout(self) -> dict:
|
|
62
|
-
"""
|
|
63
|
-
Get layout of custom agents
|
|
64
|
-
|
|
65
|
-
:return: layout dict
|
|
66
|
-
"""
|
|
67
|
-
if not self.loaded:
|
|
68
|
-
self.load()
|
|
69
|
-
return self.layout
|
|
70
|
-
|
|
71
|
-
def get_agents(self) -> dict:
|
|
72
|
-
"""
|
|
73
|
-
Get custom agents
|
|
74
|
-
|
|
75
|
-
:return: dict of AgentItem
|
|
76
|
-
"""
|
|
77
|
-
if not self.loaded:
|
|
78
|
-
self.load()
|
|
79
|
-
return self.agents
|
|
80
|
-
|
|
81
|
-
def get_agent(self, agent_id: str):
|
|
82
|
-
"""
|
|
83
|
-
Get custom agent by ID
|
|
84
|
-
|
|
85
|
-
:param agent_id: agent ID
|
|
86
|
-
:return: AgentItem or None
|
|
87
|
-
"""
|
|
88
|
-
if not self.loaded:
|
|
89
|
-
self.load()
|
|
90
|
-
return self.agents.get(agent_id)
|
|
91
|
-
|
|
92
|
-
def new_agent(self, name: str):
|
|
93
|
-
"""
|
|
94
|
-
Create new custom agent
|
|
95
|
-
|
|
96
|
-
:param name: agent name
|
|
97
|
-
"""
|
|
98
|
-
if not self.loaded:
|
|
99
|
-
self.load()
|
|
100
|
-
new_id = str(uuid4())
|
|
101
|
-
from pygpt_net.item.agent import AgentItem
|
|
102
|
-
new_agent = AgentItem()
|
|
103
|
-
new_agent.id = new_id
|
|
104
|
-
new_agent.name = name
|
|
105
|
-
self.agents[new_id] = new_agent
|
|
106
|
-
self.save()
|
|
107
|
-
return new_id
|
|
108
|
-
|
|
109
|
-
def duplicate_agent(self, agent_id: str, new_name: str):
|
|
110
|
-
"""
|
|
111
|
-
Duplicate custom agent
|
|
112
|
-
|
|
113
|
-
:param agent_id: agent ID
|
|
114
|
-
:param new_name: new agent name
|
|
115
|
-
"""
|
|
116
|
-
if not self.loaded:
|
|
117
|
-
self.load()
|
|
118
|
-
agent = self.agents.get(agent_id)
|
|
119
|
-
if agent:
|
|
120
|
-
new_agent = copy.deepcopy(agent)
|
|
121
|
-
new_agent.id = str(uuid4())
|
|
122
|
-
new_agent.name = new_name
|
|
123
|
-
self.agents[new_agent.id] = new_agent
|
|
124
|
-
self.save()
|
|
125
|
-
|
|
126
|
-
def delete_agent(self, agent_id: str):
|
|
127
|
-
"""
|
|
128
|
-
Delete custom agent
|
|
129
|
-
|
|
130
|
-
:param agent_id: agent ID
|
|
131
|
-
"""
|
|
132
|
-
if not self.loaded:
|
|
133
|
-
self.load()
|
|
134
|
-
if agent_id in self.agents:
|
|
135
|
-
del self.agents[agent_id]
|
|
136
|
-
self.save()
|
|
137
|
-
|
|
138
|
-
def update_agent_layout(self, agent_id: str, layout: dict):
|
|
139
|
-
"""
|
|
140
|
-
Update layout of a specific custom agent
|
|
141
|
-
|
|
142
|
-
:param agent_id: agent ID
|
|
143
|
-
:param layout: new layout dict
|
|
144
|
-
"""
|
|
145
|
-
if not self.loaded:
|
|
146
|
-
self.load()
|
|
147
|
-
agent = self.agents.get(agent_id)
|
|
148
|
-
if agent:
|
|
149
|
-
agent.layout = layout
|
|
150
|
-
self.save()
|