pygpt-net 2.6.17__py3-none-any.whl → 2.6.18__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 +5 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/app.py +2 -0
- pygpt_net/controller/chat/output.py +2 -2
- pygpt_net/controller/chat/response.py +12 -26
- pygpt_net/core/agents/observer/evaluation.py +5 -7
- pygpt_net/core/agents/runner.py +53 -42
- pygpt_net/core/agents/tools.py +59 -40
- pygpt_net/core/experts/experts.py +32 -366
- pygpt_net/core/experts/worker.py +362 -0
- pygpt_net/core/idx/chat.py +49 -82
- pygpt_net/core/idx/context.py +10 -14
- pygpt_net/core/idx/idx.py +19 -8
- pygpt_net/core/idx/indexing.py +35 -38
- pygpt_net/core/idx/response.py +91 -2
- pygpt_net/core/idx/worker.py +3 -8
- pygpt_net/core/render/web/body.py +2 -0
- pygpt_net/core/types/__init__.py +2 -1
- pygpt_net/core/types/tools.py +22 -0
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/config/presets/current.llama_index.json +1 -1
- pygpt_net/provider/agents/openai/evolve.py +1 -1
- pygpt_net/ui/widget/filesystem/explorer.py +7 -9
- pygpt_net/utils.py +2 -0
- {pygpt_net-2.6.17.dist-info → pygpt_net-2.6.18.dist-info}/METADATA +8 -2
- {pygpt_net-2.6.17.dist-info → pygpt_net-2.6.18.dist-info}/RECORD +30 -28
- {pygpt_net-2.6.17.dist-info → pygpt_net-2.6.18.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.17.dist-info → pygpt_net-2.6.18.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.17.dist-info → pygpt_net-2.6.18.dist-info}/entry_points.txt +0 -0
|
@@ -412,7 +412,7 @@ class Agent(BaseAgent):
|
|
|
412
412
|
handler.reset()
|
|
413
413
|
async for event in results[j].stream_events():
|
|
414
414
|
if bridge.stopped():
|
|
415
|
-
|
|
415
|
+
results[j].cancel()
|
|
416
416
|
bridge.on_stop(ctx)
|
|
417
417
|
break
|
|
418
418
|
final_output, response_id = handler.handle(event, ctx, buffer=False)
|
|
@@ -178,8 +178,8 @@ class FileExplorer(QWidget):
|
|
|
178
178
|
if len(idx_list) > 0:
|
|
179
179
|
for idx in idx_list:
|
|
180
180
|
id = idx['id']
|
|
181
|
-
name = idx['name']
|
|
182
|
-
action = menu.addAction("IDX: "
|
|
181
|
+
name = f"{idx['name']} ({idx['id']})"
|
|
182
|
+
action = menu.addAction(f"IDX: {name}")
|
|
183
183
|
action.triggered.connect(
|
|
184
184
|
lambda checked=False,
|
|
185
185
|
id=id: self.window.controller.idx.indexer.index_all_files(id)
|
|
@@ -198,8 +198,8 @@ class FileExplorer(QWidget):
|
|
|
198
198
|
if len(idx_list) > 0:
|
|
199
199
|
for idx in idx_list:
|
|
200
200
|
id = idx['id']
|
|
201
|
-
name = idx['name']
|
|
202
|
-
action = menu.addAction("IDX: "
|
|
201
|
+
name = f"{idx['name']} ({idx['id']})"
|
|
202
|
+
action = menu.addAction(f"IDX: {name}")
|
|
203
203
|
action.triggered.connect(
|
|
204
204
|
lambda checked=False,
|
|
205
205
|
id=id: self.window.controller.idx.indexer.clear(id)
|
|
@@ -395,8 +395,8 @@ class FileExplorer(QWidget):
|
|
|
395
395
|
if len(idx_list) > 0:
|
|
396
396
|
for idx in idx_list:
|
|
397
397
|
id = idx['id']
|
|
398
|
-
name = idx['name']
|
|
399
|
-
action = QAction(QIcon(":/icons/db.svg"), "IDX: "
|
|
398
|
+
name = f"{idx['name']} ({idx['id']})"
|
|
399
|
+
action = QAction(QIcon(":/icons/db.svg"), f"IDX: {name}", self)
|
|
400
400
|
action.triggered.connect(
|
|
401
401
|
lambda checked=False,
|
|
402
402
|
id=id,
|
|
@@ -558,9 +558,7 @@ class IndexedFileSystemModel(QFileSystemModel):
|
|
|
558
558
|
dt = ts.strftime("%H:%M")
|
|
559
559
|
else:
|
|
560
560
|
dt = ts.strftime("%Y-%m-%d %H:%M")
|
|
561
|
-
content = ''
|
|
562
|
-
content += dt
|
|
563
|
-
content += ' (' + ",".join(status['indexed_in']) + ')'
|
|
561
|
+
content = f"{dt} ({','.join(status['indexed_in'])})"
|
|
564
562
|
else:
|
|
565
563
|
content = '-' # if file not indexed
|
|
566
564
|
return content
|
pygpt_net/utils.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.18
|
|
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
|
|
@@ -82,6 +82,7 @@ Requires-Dist: packaging (>=24.2,<25.0)
|
|
|
82
82
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
|
83
83
|
Requires-Dist: pillow (>=10.4.0,<11.0.0)
|
|
84
84
|
Requires-Dist: pinecone-client (>=3.2.2,<4.0.0)
|
|
85
|
+
Requires-Dist: psutil (>=7.0.0,<8.0.0)
|
|
85
86
|
Requires-Dist: pydub (>=0.25.1,<0.26.0)
|
|
86
87
|
Requires-Dist: pygame (>=2.6.1,<3.0.0)
|
|
87
88
|
Requires-Dist: pynput (>=1.8.1,<2.0.0)
|
|
@@ -108,7 +109,7 @@ Description-Content-Type: text/markdown
|
|
|
108
109
|
|
|
109
110
|
[](https://snapcraft.io/pygpt)
|
|
110
111
|
|
|
111
|
-
Release: **2.6.
|
|
112
|
+
Release: **2.6.18** | build: **2025-08-21** | Python: **>=3.10, <3.14**
|
|
112
113
|
|
|
113
114
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
114
115
|
>
|
|
@@ -4566,6 +4567,11 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
4566
4567
|
|
|
4567
4568
|
## Recent changes:
|
|
4568
4569
|
|
|
4570
|
+
**2.6.18 (2025-08-21)**
|
|
4571
|
+
|
|
4572
|
+
- Refactor and optimizations.
|
|
4573
|
+
- Fix: Evolve agent stop event calling.
|
|
4574
|
+
|
|
4569
4575
|
**2.6.17 (2025-08-21)**
|
|
4570
4576
|
|
|
4571
4577
|
- Optimized profile switching.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=xEkIwFvB-oa4CSJHZdrbXoaZi5qhFleWeqycGqmC9Vo,100546
|
|
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=PYx40H8zQx-HKR_qbGPVUh4GzW0UBijQI8tgjPQAdSU,1373
|
|
4
|
+
pygpt_net/app.py,sha256=jBRU18JvJPWwzTTMwrRA986jBFYQSVvB6C_xcJDY7ZI,21007
|
|
5
5
|
pygpt_net/config.py,sha256=LCKrqQfePVNrAvH3EY_1oZx1Go754sDoyUneJ0iGWFI,16660
|
|
6
6
|
pygpt_net/container.py,sha256=NsMSHURaEC_eW8vrCNdztwqkxB7jui3yVlzUOMYvCHg,4124
|
|
7
7
|
pygpt_net/controller/__init__.py,sha256=UAYJmyXJG1_kawo23FRH0IjU8S8YBbIuJrPkrsOy9Eo,6199
|
|
@@ -40,9 +40,9 @@ pygpt_net/controller/chat/common.py,sha256=mOHvXqj3pPCzNPU82i7NXSmglW8jh7G5cCKDe
|
|
|
40
40
|
pygpt_net/controller/chat/files.py,sha256=QZAi1Io57EU7htKt9M5I9OoGAFX51OH2V5-NsJktOto,2838
|
|
41
41
|
pygpt_net/controller/chat/image.py,sha256=yPX26gsz0fLnyXR88lpVyvvHnKA-yZwfXJ4paUDYkeM,8579
|
|
42
42
|
pygpt_net/controller/chat/input.py,sha256=EPA90r6GqHIlu4JJbr0cuvKIEYSs6LVkimxrWHAyyX0,12390
|
|
43
|
-
pygpt_net/controller/chat/output.py,sha256=
|
|
43
|
+
pygpt_net/controller/chat/output.py,sha256=VL4OmC6MMy2KvJlMo6ipFqvd0oVNUK9F14BzUHWFfno,10860
|
|
44
44
|
pygpt_net/controller/chat/render.py,sha256=-Z-beOsEvw_tS4I8kBT5Z0n9KhDlgrEQH4x1PLDvxhE,20613
|
|
45
|
-
pygpt_net/controller/chat/response.py,sha256=
|
|
45
|
+
pygpt_net/controller/chat/response.py,sha256=RUrqj9xl76lZeGLgyei-CeL1rNogEVD5U-jTUltfxgw,12066
|
|
46
46
|
pygpt_net/controller/chat/stream.py,sha256=zmDGI_Z9Rn8IYv6vEIVBMTOGjjY0zlfmM3qJMddRGRI,21994
|
|
47
47
|
pygpt_net/controller/chat/text.py,sha256=ktluNw9ItG4g9p3OpOSmgALhFf1Gnonhl3J9kLzdTqU,10743
|
|
48
48
|
pygpt_net/controller/chat/vision.py,sha256=LsFc0TZZwY8dVtJH6Q5iha8rUQCf5HhOMuRXMtnLzZU,3578
|
|
@@ -146,9 +146,9 @@ pygpt_net/core/agents/bridge.py,sha256=KhCbMTZNigNlgOhXEMN1kqWGNUhkEdjFdiHBBVTAr
|
|
|
146
146
|
pygpt_net/core/agents/legacy.py,sha256=DdlyIpFjmeAC4XUGtq3F5_1BLGZLPOej0RZ6x9ycFjM,1731
|
|
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
|
-
pygpt_net/core/agents/observer/evaluation.py,sha256=
|
|
149
|
+
pygpt_net/core/agents/observer/evaluation.py,sha256=rDaGxe-HnFyOB01rZdJVtyi5U-ahkqz5HWhhz-IwsFg,8036
|
|
150
150
|
pygpt_net/core/agents/provider.py,sha256=rjxnuqzRxv2Z1d9i_wKpREwJBTeTgtyBDYtyHuwcSPA,2440
|
|
151
|
-
pygpt_net/core/agents/runner.py,sha256=
|
|
151
|
+
pygpt_net/core/agents/runner.py,sha256=_R6bG1AD7uaHr158Az0DLQduy96dkr6UPyCWumSwFXE,12248
|
|
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
154
|
pygpt_net/core/agents/runners/helpers.py,sha256=0iQQlSg_pJfxY_gQEWImnyAVkTUQYYSW67Z9DS7oUYw,8305
|
|
@@ -158,7 +158,7 @@ pygpt_net/core/agents/runners/llama_steps.py,sha256=1SBLp5t4TUsxpYIUtSSnBy5Sd2Ax
|
|
|
158
158
|
pygpt_net/core/agents/runners/llama_workflow.py,sha256=kU_Gju08e3rAFb_DVyDpGHhTurC49_oAGdMWcL6wZHQ,12136
|
|
159
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
|
-
pygpt_net/core/agents/tools.py,sha256=
|
|
161
|
+
pygpt_net/core/agents/tools.py,sha256=T0nqYIyGA-Z7wI_CzF1NJQ9i5u83HEzsiYqy-IZgcQQ,21967
|
|
162
162
|
pygpt_net/core/assistants/__init__.py,sha256=FujLn0ia5S3-7nX-Td_0S5Zqiw6Yublh58c4Di7rRgY,514
|
|
163
163
|
pygpt_net/core/assistants/assistants.py,sha256=JVseBSjDJh9vJYjxoZVwU93EFTBJk_rUtRh_Ml550H0,4391
|
|
164
164
|
pygpt_net/core/assistants/files.py,sha256=rmIVxDNfLrpA95Ghs_mc5s8Yn4xiC7POynpZMzaBcd0,10150
|
|
@@ -232,7 +232,8 @@ 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=Xfncp6ESvjPyBLtFq6KiNxckAFDN0DsUOJ_mrowjfnM,2525
|
|
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=-ai8_Nez5cDRJ3d8ozvPWgk8p0JofmuZvqhEscz1H00,19101
|
|
236
|
+
pygpt_net/core/experts/worker.py,sha256=-IvVW5OyURxQkSHXtCSjGGHwDt31-Zb_o23DnSIETXU,14134
|
|
236
237
|
pygpt_net/core/filesystem/__init__.py,sha256=KZLS3s_otd3Md9eDA6FN-b4CtOCWl_fplUlM9V6hTy8,514
|
|
237
238
|
pygpt_net/core/filesystem/actions.py,sha256=2lRVF_MpIxCwbH8DkugP0K6pY6FymLeH6LKVR2rtQGQ,4152
|
|
238
239
|
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
|
@@ -244,20 +245,20 @@ pygpt_net/core/filesystem/url.py,sha256=cXctpPHBY1-fwn7vFqfZi3CeP73n2nFXF-ZnePiR
|
|
|
244
245
|
pygpt_net/core/history/__init__.py,sha256=OVtJM8Cf-9WV9-WmB6x__qB3QK4ZGaYzjpl4Fk8RdWM,511
|
|
245
246
|
pygpt_net/core/history/history.py,sha256=PDE5Ut03mEgY9YPLZjqrimKQAyxoE7itViuqFV-VQf0,3123
|
|
246
247
|
pygpt_net/core/idx/__init__.py,sha256=8-HStPMODmgzC3dBaJB6MDqGJHCHnKxNdt30Vzyu3cM,507
|
|
247
|
-
pygpt_net/core/idx/chat.py,sha256=
|
|
248
|
-
pygpt_net/core/idx/context.py,sha256=
|
|
249
|
-
pygpt_net/core/idx/idx.py,sha256=
|
|
250
|
-
pygpt_net/core/idx/indexing.py,sha256=
|
|
248
|
+
pygpt_net/core/idx/chat.py,sha256=dT9JLs7Y6PX79zAAluxOPNpb3W-UystxCKz3dEw7UEE,29581
|
|
249
|
+
pygpt_net/core/idx/context.py,sha256=fo62m22xBE-rtOgLMeOS-AR2SRRmaGipN7nY5BFax58,10146
|
|
250
|
+
pygpt_net/core/idx/idx.py,sha256=QworuvYkSGo0mrGb_3cWGJug9C-CgCeAExWaNCtWSo4,18422
|
|
251
|
+
pygpt_net/core/idx/indexing.py,sha256=w_xeXjZpOROXjwMboUU_JT57OtGDtV2kyV0_bXNbXZY,42543
|
|
251
252
|
pygpt_net/core/idx/llm.py,sha256=SHh9PgG2HP69u233h7-zl-19Fr5z6Jfo_d5IoPizCng,5012
|
|
252
253
|
pygpt_net/core/idx/metadata.py,sha256=69jrZ54S2wYZ3HzVooozADkbjgK2Rg4MuXTgfd6rcsI,5445
|
|
253
|
-
pygpt_net/core/idx/response.py,sha256=
|
|
254
|
+
pygpt_net/core/idx/response.py,sha256=X4K706Ppage3fSAVPSqMK1w1PflMsJ6QA6Tl-Y9P0vs,5008
|
|
254
255
|
pygpt_net/core/idx/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
256
|
pygpt_net/core/idx/types/ctx.py,sha256=IsmwGHAPuvb39E_7TfYr66ljv6v1svNKVDw5jQH2FGk,3409
|
|
256
257
|
pygpt_net/core/idx/types/external.py,sha256=Pu3hoXrmomGLCL6kVLNPtlrVlO2jEOl7TM8YV0dh9yA,5130
|
|
257
258
|
pygpt_net/core/idx/types/files.py,sha256=FzomPoQncYx3WtWNbHTjSNuTOP8x_z7f3ypybdabf1c,4039
|
|
258
259
|
pygpt_net/core/idx/ui/__init__.py,sha256=nfCat59itYOlE7hgn-Y5iemtkgU2NWSnKZK_ffZhoa8,719
|
|
259
260
|
pygpt_net/core/idx/ui/loaders.py,sha256=15-5Q5C9jGcLZkNkcqZDfAsQqwzLCZOFzHXCTGiYN6k,8732
|
|
260
|
-
pygpt_net/core/idx/worker.py,sha256=
|
|
261
|
+
pygpt_net/core/idx/worker.py,sha256=ywaq96MoOKJjnohmSGNmk7Ah_iaPG4J61G99YmiXv0A,3969
|
|
261
262
|
pygpt_net/core/image/__init__.py,sha256=HEXciv02RFJC3BkrzP9tvzvZlr36WYMz5v9W80JLqlQ,509
|
|
262
263
|
pygpt_net/core/image/image.py,sha256=N0IZLNdIJG2ym92YvxaeHiC3mHc8LGybeNS0QovU-So,3953
|
|
263
264
|
pygpt_net/core/info/__init__.py,sha256=SJUPrGXxdvHTpM3AyvsaD_Z_Fuzrg2cbcNevB7A6X-8,508
|
|
@@ -303,7 +304,7 @@ pygpt_net/core/render/plain/helpers.py,sha256=CMF84kSeuQnkgZVHmN_9YWaL5BC958tDE9
|
|
|
303
304
|
pygpt_net/core/render/plain/pid.py,sha256=Pz3v1tnLj-XI_9vcaVkCf9SZ2EgVs4LYV4qzelBMoOg,1119
|
|
304
305
|
pygpt_net/core/render/plain/renderer.py,sha256=CVCdwuDUZEpYna3tkwDlZLN7bwRMu-fBX636k5blqxM,15637
|
|
305
306
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
|
306
|
-
pygpt_net/core/render/web/body.py,sha256=
|
|
307
|
+
pygpt_net/core/render/web/body.py,sha256=Ikkq2MH_uWz7YdQvT8llJpvdfHhRYnh1FXoXHjsu_F4,54918
|
|
307
308
|
pygpt_net/core/render/web/helpers.py,sha256=ivrXrCqRIUWHDmu3INu-i6XUlB2W9IOO8iYyqpbnSRU,5438
|
|
308
309
|
pygpt_net/core/render/web/parser.py,sha256=pDFc9Tf8P-jvrDilXyT1fukcQHbixHRJ9Dn9hF10Gko,12892
|
|
309
310
|
pygpt_net/core/render/web/pid.py,sha256=pXBdPb8hw_aZS2Rtz3pLBpuybpXrzoqwYAFWBal9bLE,3685
|
|
@@ -321,13 +322,14 @@ pygpt_net/core/text/utils.py,sha256=PCQ6F7DODPigqP-ZVWs0CzR4I6C9gSBfD1JXp3rAY1g,
|
|
|
321
322
|
pygpt_net/core/text/web_finder.py,sha256=8Yex-Kmnz8KyStF0-koNC-0392SkUIsy0nRYLExlyHM,6600
|
|
322
323
|
pygpt_net/core/tokens/__init__.py,sha256=rSSdzmBL-LmMUv14hodHi5b1HYcm9UU8DEbD7owk4BI,510
|
|
323
324
|
pygpt_net/core/tokens/tokens.py,sha256=o_k4XLYKUeGfmrLsclZxpjRX4L9BIF0Z8kIJZ9D3zgI,12363
|
|
324
|
-
pygpt_net/core/types/__init__.py,sha256=
|
|
325
|
+
pygpt_net/core/types/__init__.py,sha256=Vv4prXvMT1uPHq9TIYpXUt7SY8YBujnWOXQOjXg1kh8,619
|
|
325
326
|
pygpt_net/core/types/agent.py,sha256=7GOLiexwcuCQIoTFCCv_THJv3wZ_XtlKCBogePj2DGU,872
|
|
326
327
|
pygpt_net/core/types/console.py,sha256=wJkKQAYWtIWXNXmjmEEXLT8N-Chj2NzxyzGY5tswO4E,713
|
|
327
328
|
pygpt_net/core/types/mode.py,sha256=3Dhp-uYzQv5Yf94UbyMM2pFLgMcy2EOuA2rFwRNxDyQ,858
|
|
328
329
|
pygpt_net/core/types/model.py,sha256=V8O9yipzqyTmVjzeESQ1xvZpSdRU6UYmvWJ1M2Kxs5A,549
|
|
329
330
|
pygpt_net/core/types/multimodal.py,sha256=xifoX4sno7kqeQxK4TwUWIAXu1d8Mr-axsLXsJat4P8,594
|
|
330
331
|
pygpt_net/core/types/openai.py,sha256=onlFH1KjT1zWGF09KkyvLXSs8wp2y5bwULs8fr07iq8,1483
|
|
332
|
+
pygpt_net/core/types/tools.py,sha256=BdonNwytk5SxYtYdlDkMg5lMvFoXz3CQJHZ__oVlm_8,1223
|
|
331
333
|
pygpt_net/core/updater/__init__.py,sha256=fC4g0Xn9S8lLxGbop1q2o2qi9IZegoVayNVWemgBwds,511
|
|
332
334
|
pygpt_net/core/updater/updater.py,sha256=cykBw8BqJlJNisWnpXnSPZ25Gfw3Ufyd9a_dUuEo3p8,16740
|
|
333
335
|
pygpt_net/core/vision/__init__.py,sha256=dFEilXM2Z128SmgBlLn1DvyLCksdcyqFI7rln_VPsf8,510
|
|
@@ -343,8 +345,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
343
345
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
344
346
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
345
347
|
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=
|
|
348
|
+
pygpt_net/data/config/config.json,sha256=VLU9seArr1Ln6dwy0-FY4zYH1x6BEBfD3Z0qxyRY6yQ,24924
|
|
349
|
+
pygpt_net/data/config/models.json,sha256=xYdn33RlgARYnLEAuCKaJVQpY_l0_qba65dPKZT-rrM,109650
|
|
348
350
|
pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
|
|
349
351
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
350
352
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -373,7 +375,7 @@ pygpt_net/data/config/presets/current.computer.json,sha256=CAQn1QqxYI8O5o0k2l7hJ
|
|
|
373
375
|
pygpt_net/data/config/presets/current.expert.json,sha256=V0I633FyU2ZLZnTApiSF29tila85zYBqYadojedXWJw,419
|
|
374
376
|
pygpt_net/data/config/presets/current.img.json,sha256=hr6gj6ZqcQgv0CJdqFSsGMUTFRixcsTa-sDX2_9P7Io,419
|
|
375
377
|
pygpt_net/data/config/presets/current.langchain.json,sha256=yVOmJ1VpX0saxdBO_8tGaWM5oxa8EGbIcS6Wrk7Nqzo,433
|
|
376
|
-
pygpt_net/data/config/presets/current.llama_index.json,sha256=
|
|
378
|
+
pygpt_net/data/config/presets/current.llama_index.json,sha256=SBvlO3ldMTnuPaAo-cVcs44FMJT2Srqm08ZhHivFTXY,477
|
|
377
379
|
pygpt_net/data/config/presets/current.research.json,sha256=dExl7MoUUKAUyRd1njumD6C9viT8qyZSZwhU4PCCNQg,759
|
|
378
380
|
pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXUnfugXNJ5730ZcuRXEO1I,447
|
|
379
381
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
|
@@ -1984,7 +1986,7 @@ pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py,sha25
|
|
|
1984
1986
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py,sha256=O7aJOas2dNmlcqyZmVK_oQxFPRJLX_vHJ8wPujbrmpI,2002
|
|
1985
1987
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py,sha256=F2K7O5xccHUHzYJdYgcJehgZtdHgIcbOrsY7mB2K4E0,1773
|
|
1986
1988
|
pygpt_net/provider/agents/openai/bots/research_bot/manager.py,sha256=h8jHoPhXDz-VZrH8qUvvSVEtJpa1ThbzUToHkgxCF08,7630
|
|
1987
|
-
pygpt_net/provider/agents/openai/evolve.py,sha256=
|
|
1989
|
+
pygpt_net/provider/agents/openai/evolve.py,sha256=WcjrPbWkKKAxRrsztdltzVRIzeLeGcnSO6jlTjvdeNU,22755
|
|
1988
1990
|
pygpt_net/provider/agents/openai/supervisor.py,sha256=3FOMEpuyGNRr5szw6pD4QnAIQIn1YceszoPlEAlI270,13141
|
|
1989
1991
|
pygpt_net/provider/audio_input/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
|
|
1990
1992
|
pygpt_net/provider/audio_input/base.py,sha256=2PxE9QeEd4fODLYx_sO-1iVdAFOxHVHjtse7-GIqix8,1826
|
|
@@ -2372,7 +2374,7 @@ pygpt_net/ui/widget/element/checkbox.py,sha256=i7774WlRHEg8Js7XdpdMF5LGW1DrBXU4M
|
|
|
2372
2374
|
pygpt_net/ui/widget/element/group.py,sha256=a76-dsfLnI7EBIMu7Q-So1lsYw8870M-GhzfRwLLf-8,3632
|
|
2373
2375
|
pygpt_net/ui/widget/element/labels.py,sha256=qg6wfOjOEya7H7fHmv4UmSJxOySwV5da359FnfdsOhs,6003
|
|
2374
2376
|
pygpt_net/ui/widget/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2375
|
-
pygpt_net/ui/widget/filesystem/explorer.py,sha256=
|
|
2377
|
+
pygpt_net/ui/widget/filesystem/explorer.py,sha256=69aTLycXAOR34DHCUSkBh4uWT1YkavPeBLk9IiIc26I,23866
|
|
2376
2378
|
pygpt_net/ui/widget/image/__init__.py,sha256=X9-pucLqQF9_ocDV-qNY6EQAJ_4dubGb-7TcWIzCXBo,488
|
|
2377
2379
|
pygpt_net/ui/widget/image/display.py,sha256=VL3nfMxg8KhyLN6RJEDUKBW4du4DFi_PW2eJL1qStks,3797
|
|
2378
2380
|
pygpt_net/ui/widget/lists/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
@@ -2436,9 +2438,9 @@ pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSO
|
|
|
2436
2438
|
pygpt_net/ui/widget/textarea/web.py,sha256=xGI-47bZ5M_vf_jMc2R9sB1-vuHJbgd5FxE5tbKXj-Q,19815
|
|
2437
2439
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2438
2440
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
|
2439
|
-
pygpt_net/utils.py,sha256=
|
|
2440
|
-
pygpt_net-2.6.
|
|
2441
|
-
pygpt_net-2.6.
|
|
2442
|
-
pygpt_net-2.6.
|
|
2443
|
-
pygpt_net-2.6.
|
|
2444
|
-
pygpt_net-2.6.
|
|
2441
|
+
pygpt_net/utils.py,sha256=GBAXOpp_Wjfu7Al7TnTV62-R-JPMiP9GuPXLJ0HmeJU,8906
|
|
2442
|
+
pygpt_net-2.6.18.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2443
|
+
pygpt_net-2.6.18.dist-info/METADATA,sha256=G57y1yECeajOqDhPP3iN9N_XUzDiRmP6qxArbvepMIE,190264
|
|
2444
|
+
pygpt_net-2.6.18.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2445
|
+
pygpt_net-2.6.18.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2446
|
+
pygpt_net-2.6.18.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|