pygpt-net 2.6.37__py3-none-any.whl → 2.6.38__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 +7 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/controller/chat/handler/anthropic_stream.py +0 -2
- pygpt_net/controller/chat/handler/worker.py +6 -2
- pygpt_net/controller/debug/debug.py +6 -6
- pygpt_net/controller/model/importer.py +9 -2
- pygpt_net/controller/plugins/plugins.py +11 -3
- pygpt_net/controller/presets/presets.py +2 -2
- pygpt_net/core/ctx/bag.py +7 -2
- pygpt_net/core/ctx/reply.py +17 -2
- pygpt_net/core/db/viewer.py +19 -34
- pygpt_net/core/render/plain/pid.py +12 -1
- pygpt_net/core/render/web/body.py +1 -5
- pygpt_net/core/tabs/tab.py +24 -1
- pygpt_net/data/config/config.json +2 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/item/assistant.py +51 -2
- pygpt_net/item/attachment.py +21 -20
- pygpt_net/item/calendar_note.py +19 -2
- pygpt_net/item/ctx.py +115 -2
- pygpt_net/item/index.py +9 -2
- pygpt_net/item/mode.py +9 -6
- pygpt_net/item/model.py +20 -3
- pygpt_net/item/notepad.py +14 -2
- pygpt_net/item/preset.py +42 -2
- pygpt_net/item/prompt.py +8 -2
- pygpt_net/plugin/cmd_files/plugin.py +2 -2
- pygpt_net/provider/api/anthropic/tools.py +1 -1
- pygpt_net/provider/api/google/realtime/client.py +2 -2
- pygpt_net/provider/core/attachment/json_file.py +2 -2
- pygpt_net/tools/text_editor/tool.py +4 -1
- pygpt_net/tools/text_editor/ui/dialogs.py +1 -1
- pygpt_net/ui/dialog/db.py +177 -59
- pygpt_net/ui/dialog/dictionary.py +57 -59
- pygpt_net/ui/dialog/editor.py +3 -2
- pygpt_net/ui/dialog/image.py +1 -1
- pygpt_net/ui/dialog/logger.py +3 -2
- pygpt_net/ui/dialog/models.py +14 -12
- pygpt_net/ui/dialog/plugins.py +26 -20
- pygpt_net/ui/layout/ctx/ctx_list.py +3 -4
- pygpt_net/ui/layout/toolbox/__init__.py +2 -2
- pygpt_net/ui/layout/toolbox/assistants.py +8 -9
- pygpt_net/ui/layout/toolbox/presets.py +2 -2
- pygpt_net/ui/main.py +9 -4
- pygpt_net/ui/widget/element/labels.py +2 -2
- pygpt_net/ui/widget/textarea/editor.py +0 -4
- {pygpt_net-2.6.37.dist-info → pygpt_net-2.6.38.dist-info}/METADATA +9 -2
- {pygpt_net-2.6.37.dist-info → pygpt_net-2.6.38.dist-info}/RECORD +51 -51
- {pygpt_net-2.6.37.dist-info → pygpt_net-2.6.38.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.37.dist-info → pygpt_net-2.6.38.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.37.dist-info → pygpt_net-2.6.38.dist-info}/entry_points.txt +0 -0
pygpt_net/ui/dialog/plugins.py
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date: 2025.09.
|
|
9
|
+
# Updated Date: 2025.09.05 18:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
from PySide6.QtCore import Qt
|
|
@@ -55,11 +55,14 @@ class Plugins:
|
|
|
55
55
|
QPushButton(trans("dialog.plugin.settings.btn.save"))
|
|
56
56
|
|
|
57
57
|
self.window.ui.nodes['plugin.settings.btn.defaults.user'].clicked.connect(
|
|
58
|
-
lambda: self.window.controller.plugins.settings.load_defaults_user()
|
|
58
|
+
lambda: self.window.controller.plugins.settings.load_defaults_user()
|
|
59
|
+
)
|
|
59
60
|
self.window.ui.nodes['plugin.settings.btn.defaults.app'].clicked.connect(
|
|
60
|
-
lambda: self.window.controller.plugins.settings.load_defaults_app()
|
|
61
|
+
lambda: self.window.controller.plugins.settings.load_defaults_app()
|
|
62
|
+
)
|
|
61
63
|
self.window.ui.nodes['plugin.settings.btn.save'].clicked.connect(
|
|
62
|
-
lambda: self.window.controller.plugins.settings.save()
|
|
64
|
+
lambda: self.window.controller.plugins.settings.save()
|
|
65
|
+
)
|
|
63
66
|
|
|
64
67
|
# set enter key to save button
|
|
65
68
|
self.window.ui.nodes['plugin.settings.btn.defaults.user'].setAutoDefault(False)
|
|
@@ -321,33 +324,35 @@ class Plugins:
|
|
|
321
324
|
widgets = {}
|
|
322
325
|
base_types = ('text', 'int', 'float')
|
|
323
326
|
number_types = ('int', 'float')
|
|
327
|
+
apply = self.window.controller.config.placeholder.apply
|
|
324
328
|
|
|
325
329
|
for key in options:
|
|
326
330
|
option = options[key]
|
|
331
|
+
t = option['type']
|
|
327
332
|
# create widget by option type
|
|
328
|
-
if
|
|
329
|
-
if 'slider' in option and option['slider'] and
|
|
333
|
+
if t in base_types:
|
|
334
|
+
if 'slider' in option and option['slider'] and t in number_types:
|
|
330
335
|
widgets[key] = OptionSlider(self.window, parent, key, option) # slider + text input
|
|
331
336
|
else:
|
|
332
337
|
if 'secret' in option and option['secret']:
|
|
333
338
|
widgets[key] = PasswordInput(self.window, parent, key, option) # password input
|
|
334
339
|
else:
|
|
335
340
|
widgets[key] = OptionInput(self.window, parent, key, option) # text input
|
|
336
|
-
elif
|
|
341
|
+
elif t == 'textarea':
|
|
337
342
|
widgets[key] = OptionTextarea(self.window, parent, key, option) # textarea
|
|
338
|
-
elif
|
|
343
|
+
elif t == 'bool':
|
|
339
344
|
widgets[key] = OptionCheckbox(self.window, parent, key, option) # checkbox
|
|
340
|
-
elif
|
|
341
|
-
|
|
345
|
+
elif t == 'bool_list':
|
|
346
|
+
apply(option)
|
|
342
347
|
widgets[key] = OptionCheckboxList(self.window, parent, key, option) # checkbox list
|
|
343
|
-
elif
|
|
344
|
-
|
|
348
|
+
elif t == 'dict':
|
|
349
|
+
apply(option)
|
|
345
350
|
widgets[key] = OptionDict(self.window, parent, key, option) # dictionary
|
|
346
|
-
elif
|
|
347
|
-
|
|
351
|
+
elif t == 'combo':
|
|
352
|
+
apply(option)
|
|
348
353
|
widgets[key] = OptionCombo(self.window, parent, key, option) # combobox
|
|
349
|
-
elif
|
|
350
|
-
|
|
354
|
+
elif t == 'cmd':
|
|
355
|
+
apply(option)
|
|
351
356
|
widgets[key] = OptionCmd(self.window, plugin, parent, key, option) # command
|
|
352
357
|
|
|
353
358
|
return widgets
|
|
@@ -508,12 +513,13 @@ class Plugins:
|
|
|
508
513
|
:param id: ID of the list
|
|
509
514
|
:param data: Data to update
|
|
510
515
|
"""
|
|
511
|
-
|
|
516
|
+
model = self.window.ui.models[id]
|
|
517
|
+
model.removeRows(0, model.rowCount())
|
|
512
518
|
i = 0
|
|
513
519
|
for n in data:
|
|
514
|
-
|
|
520
|
+
model.insertRow(i)
|
|
515
521
|
name = self.window.core.plugins.get_name(data[n].id)
|
|
516
522
|
tooltip = self.window.core.plugins.get_desc(data[n].id)
|
|
517
|
-
|
|
518
|
-
|
|
523
|
+
model.setData(model.index(i, 0), name)
|
|
524
|
+
model.setData(model.index(i, 0), tooltip, Qt.ToolTipRole)
|
|
519
525
|
i += 1
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date: 2025.
|
|
9
|
+
# Updated Date: 2025.09.05 18:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
from PySide6 import QtCore
|
|
@@ -210,7 +210,7 @@ class CtxList:
|
|
|
210
210
|
files_str = ", ".join(files)
|
|
211
211
|
if len(files_str) > 40:
|
|
212
212
|
files_str = files_str[:40] + '...'
|
|
213
|
-
tooltip_str = trans(
|
|
213
|
+
tooltip_str = f"{trans('attachments.ctx.tooltip.list').format(num=len(files))}: {files_str}"
|
|
214
214
|
group_item.setToolTip(tooltip_str)
|
|
215
215
|
|
|
216
216
|
group_item.setData(custom_data, QtCore.Qt.ItemDataRole.UserRole)
|
|
@@ -282,8 +282,7 @@ class CtxList:
|
|
|
282
282
|
files_str = ", ".join(files)
|
|
283
283
|
if len(files_str) > 40:
|
|
284
284
|
files_str = files_str[:40] + '...'
|
|
285
|
-
|
|
286
|
-
tooltip_text += "\n" + tooltip_str
|
|
285
|
+
tooltip_text += f"\n{trans('attachments.ctx.tooltip.list').format(num=len(files))}: {files_str}"
|
|
287
286
|
|
|
288
287
|
item = Item(name, id)
|
|
289
288
|
item.id = id
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date:
|
|
9
|
+
# Updated Date: 2025.09.05 18:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
|
-
from .toolbox import
|
|
12
|
+
from .toolbox import ToolboxMain
|
|
@@ -115,15 +115,14 @@ class Assistants:
|
|
|
115
115
|
view.backup_selection()
|
|
116
116
|
view.setUpdatesEnabled(False)
|
|
117
117
|
try:
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
model.setData(index, item.name)
|
|
118
|
+
model.setRowCount(0)
|
|
119
|
+
count = len(data)
|
|
120
|
+
if count:
|
|
121
|
+
model.setRowCount(count)
|
|
122
|
+
for i, item in enumerate(data.values()):
|
|
123
|
+
index = model.index(i, 0)
|
|
124
|
+
model.setData(index, "ID: " + item.id, QtCore.Qt.ToolTipRole)
|
|
125
|
+
model.setData(index, item.name)
|
|
127
126
|
finally:
|
|
128
127
|
view.setUpdatesEnabled(True)
|
|
129
128
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date: 2025.
|
|
9
|
+
# Updated Date: 2025.09.05 18:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
from PySide6 import QtCore
|
|
@@ -144,7 +144,7 @@ class Presets:
|
|
|
144
144
|
for i, (key, item) in enumerate(data.items()):
|
|
145
145
|
name = item.name
|
|
146
146
|
if is_expert_mode and item.enabled and not key.startswith(startswith_current):
|
|
147
|
-
name = "[x] "
|
|
147
|
+
name = f"[x] {name}"
|
|
148
148
|
elif is_agent_mode:
|
|
149
149
|
num_experts = count_experts(key)
|
|
150
150
|
if num_experts > 0:
|
pygpt_net/ui/main.py
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date: 2025.
|
|
9
|
+
# Updated Date: 2025.09.05 18:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
import os
|
|
@@ -231,7 +231,7 @@ class MainWindow(QMainWindow, QtStyleTools):
|
|
|
231
231
|
|
|
232
232
|
def update(self):
|
|
233
233
|
"""Called on every update (real-time)"""
|
|
234
|
-
self.controller.on_update()
|
|
234
|
+
# self.controller.on_update()
|
|
235
235
|
self.controller.plugins.on_update()
|
|
236
236
|
self.tools.on_update()
|
|
237
237
|
|
|
@@ -254,8 +254,13 @@ class MainWindow(QMainWindow, QtStyleTools):
|
|
|
254
254
|
|
|
255
255
|
:param message: status message
|
|
256
256
|
"""
|
|
257
|
-
|
|
258
|
-
|
|
257
|
+
self.dispatch(
|
|
258
|
+
KernelEvent(
|
|
259
|
+
KernelEvent.STATUS, {
|
|
260
|
+
"status": message if isinstance(message, str) else str(message)
|
|
261
|
+
}
|
|
262
|
+
)
|
|
263
|
+
)
|
|
259
264
|
|
|
260
265
|
@Slot(str)
|
|
261
266
|
def update_state(self, state: str):
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date: 2025.09.
|
|
9
|
+
# Updated Date: 2025.09.05 18:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
from PySide6.QtCore import Qt, QTimer, QRect, Signal, QUrl, QEvent
|
|
@@ -50,7 +50,7 @@ class ChatStatusLabel(QLabel):
|
|
|
50
50
|
def __init__(self, text, window=None):
|
|
51
51
|
super().__init__(text, window)
|
|
52
52
|
self.window = window
|
|
53
|
-
self.setWordWrap(
|
|
53
|
+
self.setWordWrap(False)
|
|
54
54
|
self.setAlignment(Qt.AlignRight)
|
|
55
55
|
self.setProperty('class', 'label-chat-status')
|
|
56
56
|
self.setTextInteractionFlags(Qt.TextSelectableByMouse)
|
|
@@ -113,10 +113,6 @@ class BaseCodeEditor(QTextEdit):
|
|
|
113
113
|
self.finder.clear()
|
|
114
114
|
|
|
115
115
|
def on_destroy(self):
|
|
116
|
-
try:
|
|
117
|
-
self.textChanged.disconnect(self.text_changed)
|
|
118
|
-
except Exception:
|
|
119
|
-
pass
|
|
120
116
|
self.window.controller.finder.unset(self.finder)
|
|
121
117
|
|
|
122
118
|
def keyPressEvent(self, e):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.38
|
|
4
4
|
Summary: Desktop AI Assistant powered by: OpenAI GPT-5, GPT-4, o1, o3, 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: ai,api,api key,app,assistant,bielik,chat,chatbot,chatgpt,claude,dall-e,deepseek,desktop,gemini,gpt,gpt-3.5,gpt-4,gpt-4-vision,gpt-4o,gpt-5,gpt-oss,gpt3.5,gpt4,grok,langchain,llama-index,llama3,mistral,o1,o3,ollama,openai,presets,py-gpt,py_gpt,pygpt,pyside,qt,text completion,tts,ui,vision,whisper
|
|
@@ -118,7 +118,7 @@ Description-Content-Type: text/markdown
|
|
|
118
118
|
|
|
119
119
|
[](https://snapcraft.io/pygpt)
|
|
120
120
|
|
|
121
|
-
Release: **2.6.
|
|
121
|
+
Release: **2.6.38** | build: **2025-09-05** | Python: **>=3.10, <3.14**
|
|
122
122
|
|
|
123
123
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
124
124
|
>
|
|
@@ -3565,6 +3565,13 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3565
3565
|
|
|
3566
3566
|
## Recent changes:
|
|
3567
3567
|
|
|
3568
|
+
**2.6.38 (2025-09-05)**
|
|
3569
|
+
|
|
3570
|
+
- Fixed: Detection of chunk type in Ollama.
|
|
3571
|
+
- Fixed: Import of models with existing IDs.
|
|
3572
|
+
- Fixed: Updating the Assistants UI list after creating a new Assistant.
|
|
3573
|
+
- Refactored and optimized the code.
|
|
3574
|
+
|
|
3568
3575
|
**2.6.37 (2025-09-05)**
|
|
3569
3576
|
|
|
3570
3577
|
- Fixed: Function parameters sanitization in the Google Gen AI SDK.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=g_mDeVYrI59mmY_VZW1AHnEs4OgnRwdUnUOcUKg-Ec8,104767
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=BqCXpFHlJqSkrmApXJqlpuUhwsRixNBHj1AnuY9wbeo,1373
|
|
4
4
|
pygpt_net/app.py,sha256=26N6af9L88rTeYmYIgP9amoPJB-o3Sc5_MFHLNckbWk,21817
|
|
5
5
|
pygpt_net/app_core.py,sha256=y7mHzH_sdUg2yoG_BKvMdJA6v5jCBSHhwcXqIZfxXs4,4169
|
|
6
6
|
pygpt_net/config.py,sha256=SCps_FfwdrynVAgpn37Ci1qTN8BFC05IGl9sYIi9e0w,16720
|
|
@@ -40,13 +40,13 @@ pygpt_net/controller/chat/command.py,sha256=eKFQzP0tehZ3S_G7RoZVMTebQFSjPIpix3t7
|
|
|
40
40
|
pygpt_net/controller/chat/common.py,sha256=t8v8iUliIwXhCv6YE3JyChz1GFkyDhhMKU8hjvWjWTQ,16089
|
|
41
41
|
pygpt_net/controller/chat/files.py,sha256=QZAi1Io57EU7htKt9M5I9OoGAFX51OH2V5-NsJktOto,2838
|
|
42
42
|
pygpt_net/controller/chat/handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
pygpt_net/controller/chat/handler/anthropic_stream.py,sha256=
|
|
43
|
+
pygpt_net/controller/chat/handler/anthropic_stream.py,sha256=dfzZVVW0d0Vjy8mKya2pTJKO98ZHe5Oc6WDzFJBaJpI,5903
|
|
44
44
|
pygpt_net/controller/chat/handler/google_stream.py,sha256=uKbNui93DYVc7Vh0nHs_NJxs6UV2x1BVYsu20KL_L60,6810
|
|
45
45
|
pygpt_net/controller/chat/handler/langchain_stream.py,sha256=bEV9FT9K6vVBAVrB73sMhGcVzlt_OFAdT2HNzwxgR2I,810
|
|
46
46
|
pygpt_net/controller/chat/handler/llamaindex_stream.py,sha256=UPx7N4TeY1XZoKJOR7NdiyitD6xW9z-MygRG20AdzVQ,1851
|
|
47
47
|
pygpt_net/controller/chat/handler/openai_stream.py,sha256=xXZ0CiMmoe-MlIJGakFLHD-S2ibYPvSfioEHXW7PFFs,9117
|
|
48
48
|
pygpt_net/controller/chat/handler/utils.py,sha256=5B5fxQtLHv_WXU9clGHU_UTcKw1wd-94XL5GqeW7wOY,7235
|
|
49
|
-
pygpt_net/controller/chat/handler/worker.py,sha256=
|
|
49
|
+
pygpt_net/controller/chat/handler/worker.py,sha256=Qyqa3Bb4bjoL54M6K9ma1uT49YZ_cXBbmjh70E0QdOg,20205
|
|
50
50
|
pygpt_net/controller/chat/handler/xai_stream.py,sha256=OVgQA-Za1y73C_BhHbUggth7HdLehSIl5jnG-_7GmKI,4303
|
|
51
51
|
pygpt_net/controller/chat/image.py,sha256=2mZdFiCyej1RimfsKn0CSuu9kLOw0Za6B3lhEUEz9nU,8027
|
|
52
52
|
pygpt_net/controller/chat/input.py,sha256=5CKEHSzx1SU1F-ktIUt9VA3TLtxP5kSqWyvYzANqruY,7846
|
|
@@ -76,7 +76,7 @@ pygpt_net/controller/ctx/ctx.py,sha256=pnczNTAj6fCE0s7NbIqZxpbI6zNHBqz-qYccpcCeW
|
|
|
76
76
|
pygpt_net/controller/ctx/extra.py,sha256=WApWjnIfl3SoI0VZVbptvjjqhFPJl-dSfqW12tlBHrY,8599
|
|
77
77
|
pygpt_net/controller/ctx/summarizer.py,sha256=UNsq-JTARblGNT97uSMpZEVzdUuDJ8YA2j2dw9R2X3o,3079
|
|
78
78
|
pygpt_net/controller/debug/__init__.py,sha256=dOJGTICjvTtrPIEDOsxCzcOHsfu8AFPLpSKbdN0q0KI,509
|
|
79
|
-
pygpt_net/controller/debug/debug.py,sha256=
|
|
79
|
+
pygpt_net/controller/debug/debug.py,sha256=QkZBL3wo2Ccyr3rKsSFtzLSdmO-Vql3JylCr1UTTmAQ,8851
|
|
80
80
|
pygpt_net/controller/dialogs/__init__.py,sha256=jI2WisG3lzbeyf__1Y7g7wWrxlr1QnYBDDt4t_3eeYk,513
|
|
81
81
|
pygpt_net/controller/dialogs/confirm.py,sha256=PgVOJS31quY24Fs9XhFplcMnKweKbAxGWDKSjlBgLJU,16860
|
|
82
82
|
pygpt_net/controller/dialogs/debug.py,sha256=v6E85vyCwfaDG9XZysxhBjRwlrDkbYC-NxUnDamNRpk,5980
|
|
@@ -111,7 +111,7 @@ pygpt_net/controller/mode/__init__.py,sha256=1Kcz0xHc2IW_if9S9eQozBUvIu69eLAe7T-
|
|
|
111
111
|
pygpt_net/controller/mode/mode.py,sha256=WdaNA7-n6mTkkRkKIMUltxBC_vRAwWzkUEt9rOpIRBM,7840
|
|
112
112
|
pygpt_net/controller/model/__init__.py,sha256=mQXq9u269D8TD3u_44J6DFFyHKkaZplk-tRFCssBGbE,509
|
|
113
113
|
pygpt_net/controller/model/editor.py,sha256=3DywV3VL80CSpxFCADCWmULuXdV7ILvdkAqty17zsaA,16536
|
|
114
|
-
pygpt_net/controller/model/importer.py,sha256=
|
|
114
|
+
pygpt_net/controller/model/importer.py,sha256=9O35I0DjFOudWS41n5WPsKYFQm_K0XHOUKXvJt7l5kI,23837
|
|
115
115
|
pygpt_net/controller/model/model.py,sha256=E0VfgIwNn75pjnB_v3RnqHr6jV1Eeua8VgpreQlA8vI,9132
|
|
116
116
|
pygpt_net/controller/notepad/__init__.py,sha256=ZbMh4D6nsGuI4AwYMdegfij5ubmUznEE_UcqSSDjSPk,511
|
|
117
117
|
pygpt_net/controller/notepad/notepad.py,sha256=Mn3XOrNq8_7EHq3Jf9fMyJ6YzHRawczRXfoZbn2f7L4,11155
|
|
@@ -120,13 +120,13 @@ pygpt_net/controller/painter/capture.py,sha256=X3TqnNypxT_wngkQ4ovfS9glQwoGHyM-p
|
|
|
120
120
|
pygpt_net/controller/painter/common.py,sha256=SArFGHN_lwt82iJoHr8keHt4WLEM6uv9gKPURlluyVo,15920
|
|
121
121
|
pygpt_net/controller/painter/painter.py,sha256=_M3iqeFPoFwtQJzwcpIVvMRT2YZa819-0wvfd6nvj2Y,2847
|
|
122
122
|
pygpt_net/controller/plugins/__init__.py,sha256=iocY37De1H2Nh7HkC7ZYvUus2xzcckslgr5a4PwtQII,511
|
|
123
|
-
pygpt_net/controller/plugins/plugins.py,sha256=
|
|
123
|
+
pygpt_net/controller/plugins/plugins.py,sha256=ULxjobGy5oJY9UTjx75jsFj49zTlnOD2llEyQSH275A,15269
|
|
124
124
|
pygpt_net/controller/plugins/presets.py,sha256=8EsEwpU2MjWMQu1kcY4JTcyqqN8pjBrcxA2uW2tFU_A,11674
|
|
125
125
|
pygpt_net/controller/plugins/settings.py,sha256=7eHGbn1DDCnLJfOGIqfdIPrIyi_QMkTmjyruaGZwSnw,6107
|
|
126
126
|
pygpt_net/controller/presets/__init__.py,sha256=Bb9_aAvGxQcKCW2fvG5CAJ6ZUwNYN3GaCf3BXB9eGfI,511
|
|
127
127
|
pygpt_net/controller/presets/editor.py,sha256=AHVo4gkiRQl5QUndC8D-CQ4GEAiq7zk3dGnvJ53Om3o,39115
|
|
128
128
|
pygpt_net/controller/presets/experts.py,sha256=dfPKmAPO-7gaUD2ILs3lR005ir32G5vV-Sa5TGEHwOU,5820
|
|
129
|
-
pygpt_net/controller/presets/presets.py,sha256=
|
|
129
|
+
pygpt_net/controller/presets/presets.py,sha256=TL-AhDgIXm8bJwD84xidECuV5RDQjHLZfDIXNxpTH0Q,21921
|
|
130
130
|
pygpt_net/controller/realtime/__init__.py,sha256=MhvJb5wBqcpX6uylof01qEDRdU3SepTD88sU2lXNtIQ,519
|
|
131
131
|
pygpt_net/controller/realtime/manager.py,sha256=qtifO3sAtT1ROtRs9N_8t6A8_wgxOxxGl-PfLHzhdxY,1762
|
|
132
132
|
pygpt_net/controller/realtime/realtime.py,sha256=VFeunTSdyD7dxh_5l1q6PnLrF-egQQdqxrYB-TOEBQg,10710
|
|
@@ -220,15 +220,15 @@ pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-
|
|
|
220
220
|
pygpt_net/core/command/__init__.py,sha256=3pjRwUt1VGN8P5HE1i2rokNhxtiCL-drc_mmu4tDe-o,512
|
|
221
221
|
pygpt_net/core/command/command.py,sha256=Ix8Y_T8Ayn2a86tZdVGcFJ5VEoSW2IkcU-_Aog50Jfs,23334
|
|
222
222
|
pygpt_net/core/ctx/__init__.py,sha256=hsqzIDxcwIIjF-7Zr5SkkhQV9LLmIYndQ_dohK20bg0,507
|
|
223
|
-
pygpt_net/core/ctx/bag.py,sha256=
|
|
223
|
+
pygpt_net/core/ctx/bag.py,sha256=j_10HBqkswdz5vW140SuGvJRf7E7J7hQyz6DCVe5D44,1570
|
|
224
224
|
pygpt_net/core/ctx/container.py,sha256=5nlgM_8laH0igUASILD5zIiK3YhB-BA9pTKI0jVqHeQ,4938
|
|
225
225
|
pygpt_net/core/ctx/ctx.py,sha256=vhHFTvEY-i2d2dHuLeRc2Jqav_dzJ1Beytp4w1GDqrg,41340
|
|
226
226
|
pygpt_net/core/ctx/idx.py,sha256=3Zi-48OWlU80si-Z7mVjnsc7TYATXK9g1dM0M5sXsV4,8167
|
|
227
227
|
pygpt_net/core/ctx/output.py,sha256=ecb7tgU7C9Ip5ww16M-HejScN1Btp9IlPgzQyadOCls,8829
|
|
228
|
-
pygpt_net/core/ctx/reply.py,sha256=
|
|
228
|
+
pygpt_net/core/ctx/reply.py,sha256=nm-TzBoIDE9GrYyNjtIT7DvJVf8duAS2fVMeInHNEH4,2324
|
|
229
229
|
pygpt_net/core/db/__init__.py,sha256=6VXnRrxVi5p1Ou9UA_rd_x09upFYQSZrtoKnKbrALqY,512
|
|
230
230
|
pygpt_net/core/db/database.py,sha256=H9tCfmnFH-h6cU13bqT8bpeU5SHR6UAu9np50__pdMY,16431
|
|
231
|
-
pygpt_net/core/db/viewer.py,sha256=
|
|
231
|
+
pygpt_net/core/db/viewer.py,sha256=V8B4HE2Jf0ejmhw_p63TNQiUIoIeJ-6LFpmgHA8EeoI,8657
|
|
232
232
|
pygpt_net/core/debug/__init__.py,sha256=HDYwiKeh5TOxxxpecj6FXqIwwdZIh9FytCgC2vl3ZMY,509
|
|
233
233
|
pygpt_net/core/debug/agent.py,sha256=BylgNCl8n8aV2GCK5cQZVwobm1kjH_ETtgEiObilvgQ,1922
|
|
234
234
|
pygpt_net/core/debug/assistants.py,sha256=fUYVdMsdtfWd3njirvw2lvBv7CgPHdz_9ZSDVr2VsEo,2672
|
|
@@ -342,10 +342,10 @@ pygpt_net/core/render/markdown/renderer.py,sha256=PER4BxQUU2zjyMq-flM83_cNcjFyJr
|
|
|
342
342
|
pygpt_net/core/render/plain/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
|
343
343
|
pygpt_net/core/render/plain/body.py,sha256=qupyjx_P5DG_82qV0xf5LJ9Fr9y5w2sseVwu6dPG8xE,3866
|
|
344
344
|
pygpt_net/core/render/plain/helpers.py,sha256=tWbdJZBfjnuHLAUDVYLTfv3Vt-h7XN1tg65JENDrMLw,1420
|
|
345
|
-
pygpt_net/core/render/plain/pid.py,sha256=
|
|
345
|
+
pygpt_net/core/render/plain/pid.py,sha256=Zp-TNjKI3yReuSJxC8qRkOh2ou7zK6abFbXjebbpsO8,1484
|
|
346
346
|
pygpt_net/core/render/plain/renderer.py,sha256=mb1d6UBbuOs_fotG9fZPdBk95i8n0UMCJNnF4an8E0o,15357
|
|
347
347
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
|
348
|
-
pygpt_net/core/render/web/body.py,sha256=
|
|
348
|
+
pygpt_net/core/render/web/body.py,sha256=rMbIHJAcEayKkwIrjdxF85MFS0wUQGGmsylskZy7cQM,77100
|
|
349
349
|
pygpt_net/core/render/web/helpers.py,sha256=KAmUNUuIk8gArCMkyWcK_Ak0uxJOuIULt5eOA-jnjJM,5757
|
|
350
350
|
pygpt_net/core/render/web/parser.py,sha256=pDFc9Tf8P-jvrDilXyT1fukcQHbixHRJ9Dn9hF10Gko,12892
|
|
351
351
|
pygpt_net/core/render/web/pid.py,sha256=nCbwS5MOyfp8vn4pME6JYgRtnd-4U74FEntXYJM6GqY,4180
|
|
@@ -354,7 +354,7 @@ pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9
|
|
|
354
354
|
pygpt_net/core/settings/__init__.py,sha256=GQ6_gJ2jf_Chm7ZuZLvkcvEh_sfMDVMBieeoJi2iPI4,512
|
|
355
355
|
pygpt_net/core/settings/settings.py,sha256=Ix06y-gJ3q7NJDf55XAWBBYulBLpinBqzYqsytH_9mo,8686
|
|
356
356
|
pygpt_net/core/tabs/__init__.py,sha256=reDufOWWDQsZwfvtnXrFQROEdl9nqoKI7S3bFA3D9As,508
|
|
357
|
-
pygpt_net/core/tabs/tab.py,sha256=
|
|
357
|
+
pygpt_net/core/tabs/tab.py,sha256=llgZwxN4CYIkc1dJ8XIi78ulnVQDaHkz2F4nhiM2SZg,5684
|
|
358
358
|
pygpt_net/core/tabs/tabs.py,sha256=qppWQsyBDZTpi-D6SbPZaFOuEKzjrGn_dPLfilGvKFE,30796
|
|
359
359
|
pygpt_net/core/text/__init__.py,sha256=6aEjrckL5kWVfyxpi5mVpSPB6XWV83e_30g_V5meL1M,19
|
|
360
360
|
pygpt_net/core/text/finder.py,sha256=NBzYUE_Av3oZH8RlCrSe6EeLcHpfz79WJV_vSK0P1jI,6656
|
|
@@ -390,8 +390,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
390
390
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
391
391
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
392
392
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
393
|
-
pygpt_net/data/config/config.json,sha256=
|
|
394
|
-
pygpt_net/data/config/models.json,sha256=
|
|
393
|
+
pygpt_net/data/config/config.json,sha256=SAtwXnEXfPeVcWJypiQGsT0mm1E2lUadd-Ofzm8VT7U,30498
|
|
394
|
+
pygpt_net/data/config/models.json,sha256=p19-g9BJChckxiQiSofy-pkkM5E6MTq7e84q5wONzFM,115730
|
|
395
395
|
pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
|
|
396
396
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
397
397
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -1847,16 +1847,16 @@ pygpt_net/fonts_rc.py,sha256=EVwgIVDq-Sudy9DYpHbzuhQ_jd9pUuQ8e3-nycPzj3A,3238283
|
|
|
1847
1847
|
pygpt_net/icons.qrc,sha256=7etxjwGtJm61IfTFIloyO7yonX06Jc1ZoSniGUFTho4,14981
|
|
1848
1848
|
pygpt_net/icons_rc.py,sha256=FWRllE_kudX-jI4lOto-Pvf5NDCFDrpAxuQgXgldg6k,92180
|
|
1849
1849
|
pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
1850
|
-
pygpt_net/item/assistant.py,sha256=
|
|
1851
|
-
pygpt_net/item/attachment.py,sha256=
|
|
1852
|
-
pygpt_net/item/calendar_note.py,sha256=
|
|
1853
|
-
pygpt_net/item/ctx.py,sha256=
|
|
1854
|
-
pygpt_net/item/index.py,sha256=
|
|
1855
|
-
pygpt_net/item/mode.py,sha256=
|
|
1856
|
-
pygpt_net/item/model.py,sha256=
|
|
1857
|
-
pygpt_net/item/notepad.py,sha256=
|
|
1858
|
-
pygpt_net/item/preset.py,sha256=
|
|
1859
|
-
pygpt_net/item/prompt.py,sha256=
|
|
1850
|
+
pygpt_net/item/assistant.py,sha256=FYIbh48J3aOC9IXaopFYqbzQ5vWG_hvWW76UFnUjvGM,11484
|
|
1851
|
+
pygpt_net/item/attachment.py,sha256=nsyvOnTS_gimcdzwJNI7bC-1KSrSu66XkMtaNwg2IYk,2970
|
|
1852
|
+
pygpt_net/item/calendar_note.py,sha256=ab2cegCxr-p9WU_r3FkCNg0TwLHhfV4--O4Gei-Lshs,2507
|
|
1853
|
+
pygpt_net/item/ctx.py,sha256=ZeWSlil1JIJ09VJ8T5qchXqazvr8nKjhG4XlLUxmWnw,25247
|
|
1854
|
+
pygpt_net/item/index.py,sha256=NTDBgNjiyaixTFJu_1oBqoVajf92c2U1Oa3BKQ11poU,1920
|
|
1855
|
+
pygpt_net/item/mode.py,sha256=0uPU7ciqVLaEcijUA-D73ABMoLUFtgPytdXUuwqtews,688
|
|
1856
|
+
pygpt_net/item/model.py,sha256=izmOPM1Cwe3TvobUWQbrB1L2G6vjaqEnS8iSktmZWM4,10066
|
|
1857
|
+
pygpt_net/item/notepad.py,sha256=7v3A3HJjew0IoFM65Li0xfoSEdJzfEUZM1IH1ND0Bxw,1805
|
|
1858
|
+
pygpt_net/item/preset.py,sha256=9VeMlWjUvRKYyVu1XPxaZOFZvL-N_ThXZR_M38TbpWA,8523
|
|
1859
|
+
pygpt_net/item/prompt.py,sha256=xequZDTEv4eKjmC5OLqZnNrbyy0YA4LHe0k2RpPiBw0,1745
|
|
1860
1860
|
pygpt_net/js.qrc,sha256=OqPzGN6U2Y-uENLFlfDY2BxywCAnU0uds4QcbB7me5Q,542
|
|
1861
1861
|
pygpt_net/js_rc.py,sha256=5f7l2zJIzW-gHHndytWVXz2sjKyR924GCpOSmDX9sZI,2456868
|
|
1862
1862
|
pygpt_net/launcher.py,sha256=bqR175OVZ_Q3yKsIM5NiHB1S1b-vXrIglsQyr6zyrWU,10125
|
|
@@ -1920,7 +1920,7 @@ pygpt_net/plugin/cmd_custom/worker.py,sha256=dGf5E2Mmdojzs2woqwBawXxvWmnByZZ81sJ
|
|
|
1920
1920
|
pygpt_net/plugin/cmd_files/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1921
1921
|
pygpt_net/plugin/cmd_files/config.py,sha256=2vjT71vIINPdd4xEanJVIa5sc-p9cYO2vCyBO7TWYlo,13601
|
|
1922
1922
|
pygpt_net/plugin/cmd_files/output.py,sha256=bJpmVgaUoNrNozKAygw_B6fCHlODrTQ6U9uBNph2Z3E,2136
|
|
1923
|
-
pygpt_net/plugin/cmd_files/plugin.py,sha256=
|
|
1923
|
+
pygpt_net/plugin/cmd_files/plugin.py,sha256=9Qvyqch_Ny2vkudmiVfTG9x0tlAGFAmeVFE4ZmG3VZQ,5070
|
|
1924
1924
|
pygpt_net/plugin/cmd_files/worker.py,sha256=8UxhnEwhw-qQfF_ZNUbI5B6q4CevHMwc7zfo7JOOu0Q,35059
|
|
1925
1925
|
pygpt_net/plugin/cmd_history/__init__.py,sha256=zklvSPXcIifknHSHEBxV_Jg0Ja6xbidbVSle-4uEJ28,511
|
|
1926
1926
|
pygpt_net/plugin/cmd_history/config.py,sha256=RrjssJshpdkyRFQ8u8y6KI2Nrqxr3IwZ6fu7uIc0Tvg,9714
|
|
@@ -2055,14 +2055,14 @@ pygpt_net/provider/api/anthropic/__init__.py,sha256=VbWrQtSZCHVWniT78siL6WlUMeKj
|
|
|
2055
2055
|
pygpt_net/provider/api/anthropic/audio.py,sha256=AUfcTW2ysT9YSNyz7aNQGuXbdNnX9H-PHTStiIe46-o,1087
|
|
2056
2056
|
pygpt_net/provider/api/anthropic/chat.py,sha256=E13TzVCd1F-WqqzFWz8zEMh935VgIcnE290rLfHK0XM,12395
|
|
2057
2057
|
pygpt_net/provider/api/anthropic/image.py,sha256=BrWrGsz_f2bAG8f5s25YdwtV6HJKLB6Tk2xhtD85RMc,935
|
|
2058
|
-
pygpt_net/provider/api/anthropic/tools.py,sha256=
|
|
2058
|
+
pygpt_net/provider/api/anthropic/tools.py,sha256=B5RdUyzKg3i8RefIzLsAs3plgjzH9_bnIGFHk9aZYbk,10027
|
|
2059
2059
|
pygpt_net/provider/api/anthropic/vision.py,sha256=amP0FNHrJM-iSVO4j0AkVDYo1JFdmg0e5IqTuaEqeCM,4377
|
|
2060
2060
|
pygpt_net/provider/api/google/__init__.py,sha256=80rxRb9c1bhDylmiT-GT-4KLp5X8acBSEQXbkHH2VaA,12348
|
|
2061
2061
|
pygpt_net/provider/api/google/audio.py,sha256=Ymq_Q3WofC-8TfYOGu5NmNuRW_omvl8UCS3Q0WEBxnA,4149
|
|
2062
2062
|
pygpt_net/provider/api/google/chat.py,sha256=zD3vcYRS6uJWJ__3qrUo2shyFpf6kQD2utxJe9MjRHY,23082
|
|
2063
2063
|
pygpt_net/provider/api/google/image.py,sha256=OSu4y5q36bVVirnw0Uh5k9PqmWHiXDuS8Api_MKSwt0,16794
|
|
2064
2064
|
pygpt_net/provider/api/google/realtime/__init__.py,sha256=Ism0i9dihgxYuzQHgA6vzmsswZnBOAvVqQp0j5G2JLQ,519
|
|
2065
|
-
pygpt_net/provider/api/google/realtime/client.py,sha256=
|
|
2065
|
+
pygpt_net/provider/api/google/realtime/client.py,sha256=w3aYhj4PSXBX-eIginaofWTRWe2m4NydM9iKOk-6Y58,80131
|
|
2066
2066
|
pygpt_net/provider/api/google/realtime/realtime.py,sha256=2I3rjeswcIk2SZbTtHqKVZlPpe-KJ1fPwyWfE4MPsMY,7360
|
|
2067
2067
|
pygpt_net/provider/api/google/tools.py,sha256=YtrnkTQb8NrKpB6MfdYEqq_6Vhz-250eJNDKRhtmD_k,8856
|
|
2068
2068
|
pygpt_net/provider/api/google/video.py,sha256=_D844RPVle9LJdPwVOUhWqwA1TGrM-_LamFj8sEtNeo,14439
|
|
@@ -2138,7 +2138,7 @@ pygpt_net/provider/core/assistant_store/db_sqlite/utils.py,sha256=O_4sbgxfk1S6eM
|
|
|
2138
2138
|
pygpt_net/provider/core/assistant_store/json_file.py,sha256=mi5LgclT597jfE7nDcc62TpIwDge3zV1r6igJ_tJqi8,4377
|
|
2139
2139
|
pygpt_net/provider/core/attachment/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2140
2140
|
pygpt_net/provider/core/attachment/base.py,sha256=ARG3WPyrBTOQ3pPt4OIwuCA6hqFZiRknrRh98AHOwlw,1293
|
|
2141
|
-
pygpt_net/provider/core/attachment/json_file.py,sha256=
|
|
2141
|
+
pygpt_net/provider/core/attachment/json_file.py,sha256=IoBEKVZd8FvG-1VG0XKbgGfYMoFPgQlHLkNk_L0E1dw,5708
|
|
2142
2142
|
pygpt_net/provider/core/calendar/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2143
2143
|
pygpt_net/provider/core/calendar/base.py,sha256=COQNCPVZmwVNihxTaxeEc6zaXEQ6WYsIiz3-L9NhbMQ,1393
|
|
2144
2144
|
pygpt_net/provider/core/calendar/db_sqlite/__init__.py,sha256=iCnDHWWjGP9uehvkmUEPhSyphiEPI-TRK3mqOTrKrXo,513
|
|
@@ -2334,9 +2334,9 @@ pygpt_net/tools/media_player/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
2334
2334
|
pygpt_net/tools/media_player/ui/dialogs.py,sha256=T1Zu_Fpm_KeszS203BRXW2WJmDVN4tGc9wEVDhHOyzs,3590
|
|
2335
2335
|
pygpt_net/tools/media_player/ui/widgets.py,sha256=DFEUwrQpxc_cw2k9Tpj_kz0ESZgjhA6OiZJmo5T_iFc,17634
|
|
2336
2336
|
pygpt_net/tools/text_editor/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2337
|
-
pygpt_net/tools/text_editor/tool.py,sha256=
|
|
2337
|
+
pygpt_net/tools/text_editor/tool.py,sha256=YCytHG3_yjc_-BLV_Oldi9XqUgEkpcwifVTVBkS7nns,8572
|
|
2338
2338
|
pygpt_net/tools/text_editor/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2339
|
-
pygpt_net/tools/text_editor/ui/dialogs.py,sha256=
|
|
2339
|
+
pygpt_net/tools/text_editor/ui/dialogs.py,sha256=0nJjDsw9lzP7K5JLA1Fp4mzTSj8M7k5TZ0Wn_rIL85M,2918
|
|
2340
2340
|
pygpt_net/tools/text_editor/ui/widgets.py,sha256=bvg3uJgWf5d3Vo_j5dMcoUchrvEA9e9uJK5aAy9-ZJc,2758
|
|
2341
2341
|
pygpt_net/tools/translator/__init__.py,sha256=R4-y_danRZamZRwXctX1b0tI9oz4qM_xcVthXNyYjcU,508
|
|
2342
2342
|
pygpt_net/tools/translator/tool.py,sha256=3QIv50Bc7TgrkVQ-7qcuxIERAJz5e4Vy22Uj8K79_a0,14527
|
|
@@ -2355,17 +2355,17 @@ pygpt_net/ui/dialog/assistant.py,sha256=WJJvv9vSTd8sJNiWW5sVQb5YqpIvWgQH1eMTHvHf
|
|
|
2355
2355
|
pygpt_net/ui/dialog/assistant_store.py,sha256=Tr9NWcJZQSK8mqTMKLz-EEX_NyFNaBFt9SKu9JaCvFY,23032
|
|
2356
2356
|
pygpt_net/ui/dialog/changelog.py,sha256=2ioUGq2gC1ANN5M6SFsnfIGMVbUt90IQ9aw9n7GqtMQ,1765
|
|
2357
2357
|
pygpt_net/ui/dialog/create.py,sha256=YEsroy-uimsP29RPcewkOV5vytNEZoUFa21G3WreIHM,973
|
|
2358
|
-
pygpt_net/ui/dialog/db.py,sha256=
|
|
2358
|
+
pygpt_net/ui/dialog/db.py,sha256=iC7wuR8qBoP95e1ZaRJFbqNWYUXUFV9w3mj8Ju6w48Y,23150
|
|
2359
2359
|
pygpt_net/ui/dialog/debug.py,sha256=RTDFJ8O0WKlwRNi5ffgStevS82EHSvVv6kMzE_6L3gY,1864
|
|
2360
|
-
pygpt_net/ui/dialog/dictionary.py,sha256=
|
|
2361
|
-
pygpt_net/ui/dialog/editor.py,sha256=
|
|
2360
|
+
pygpt_net/ui/dialog/dictionary.py,sha256=7GfzWNf7j0c4IaUA88NL0CxvwbNAi_mBaYQuOn3RtTY,5085
|
|
2361
|
+
pygpt_net/ui/dialog/editor.py,sha256=E8Ttw_OYWCTTbunP3Nvmn5Mi53WRc8DDzA9CnnS4-dc,2935
|
|
2362
2362
|
pygpt_net/ui/dialog/find.py,sha256=8VAcSRFkCLu4Yum6LwHgHg_8Ogn_ytco0ShaJLIJDXk,957
|
|
2363
|
-
pygpt_net/ui/dialog/image.py,sha256=
|
|
2363
|
+
pygpt_net/ui/dialog/image.py,sha256=nF7ejD44_UAAppUC3OpqaoSvzA-NM2B5fVOO0L8vFBE,2538
|
|
2364
2364
|
pygpt_net/ui/dialog/license.py,sha256=15Qrk_vnybnI3CAtvOHYJy8cSAkIG7fPG-HYqmSdctQ,2272
|
|
2365
|
-
pygpt_net/ui/dialog/logger.py,sha256=
|
|
2366
|
-
pygpt_net/ui/dialog/models.py,sha256=
|
|
2365
|
+
pygpt_net/ui/dialog/logger.py,sha256=OGFKlAyeMgNQI4a-VW9bDXSrcsPtEC6rLhtdu11lsJc,2296
|
|
2366
|
+
pygpt_net/ui/dialog/models.py,sha256=3t1z5j7zSw_y2fIL0iwLNYzMjBu6v-IbD1cMazla-Tk,13532
|
|
2367
2367
|
pygpt_net/ui/dialog/models_importer.py,sha256=14kxf7KkOdTP-tcgTN5OphNZajlivDPTDKBosebuyog,4505
|
|
2368
|
-
pygpt_net/ui/dialog/plugins.py,sha256=
|
|
2368
|
+
pygpt_net/ui/dialog/plugins.py,sha256=gi7tWH0Il3akehiOO3EcwoUt55vq7ANCwrd3YDSnHCw,20419
|
|
2369
2369
|
pygpt_net/ui/dialog/preset.py,sha256=G-nGxu0OUCrFUFLpT8XCJL9rWBCG6eEKNciQbLBB39s,17196
|
|
2370
2370
|
pygpt_net/ui/dialog/preset_plugins.py,sha256=ynqc0aWjU7MTL4jxcVKaRH_tC9uzeWJCUzUjI74ADb0,3796
|
|
2371
2371
|
pygpt_net/ui/dialog/profile.py,sha256=Xk9NNQmr1A5pRUxdedu7ePEBq5OYhLT8UInuRWYBktU,4105
|
|
@@ -2391,14 +2391,14 @@ pygpt_net/ui/layout/chat/output.py,sha256=b1qY1C2Fs_k3fOA47JnkHXfvRDdptHbEZpMF6a
|
|
|
2391
2391
|
pygpt_net/ui/layout/chat/painter.py,sha256=XmogOPKRIBMldZOmJDNSVZLqFC_JTCXLu6Eyfw1Da3c,8552
|
|
2392
2392
|
pygpt_net/ui/layout/ctx/__init__.py,sha256=NJ9L0yJKIx1nKnk2sczp7ILWVbu2hfpvUz4E56EFuPI,509
|
|
2393
2393
|
pygpt_net/ui/layout/ctx/ctx.py,sha256=GDJyolAnFlAd49bbu9-LGsCxOUTAImSH5In4i8YHFOo,1653
|
|
2394
|
-
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=
|
|
2394
|
+
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=DfqYC6LKIF-QALLAPYEGLBWjrDmdhTGw6dim2vP_14o,12019
|
|
2395
2395
|
pygpt_net/ui/layout/ctx/search_input.py,sha256=yM_X2sxeR09JRqmkd2R4z82GRo3I1k4rOb75PgIFydE,1441
|
|
2396
2396
|
pygpt_net/ui/layout/ctx/video.py,sha256=RzzyGObhlXamXIJHRqA9D2o6eVVulF4kNPVf3BkURGI,1068
|
|
2397
2397
|
pygpt_net/ui/layout/status.py,sha256=bhRCXP25ODBZHl-aXCZft68Y_6ccprDkrQjJVIG_ulM,2015
|
|
2398
|
-
pygpt_net/ui/layout/toolbox/__init__.py,sha256=
|
|
2398
|
+
pygpt_net/ui/layout/toolbox/__init__.py,sha256=uf37HGTVyRIjuJROkJwjor1ZS9CMXNiclxqUVF909SM,521
|
|
2399
2399
|
pygpt_net/ui/layout/toolbox/agent.py,sha256=2aQb2DWrzn3GHULw77-u0284LZcMwrF--IE2TCJ0SgQ,2490
|
|
2400
2400
|
pygpt_net/ui/layout/toolbox/agent_llama.py,sha256=Znnh3-nhJz8dyhxzeKkng6ll2EbdRG8SXMI2XdtkvqE,3088
|
|
2401
|
-
pygpt_net/ui/layout/toolbox/assistants.py,sha256=
|
|
2401
|
+
pygpt_net/ui/layout/toolbox/assistants.py,sha256=pZ_jOo4-Khqbm04rJuvENVZ5AUhXDUKQavFvQlXcM70,4363
|
|
2402
2402
|
pygpt_net/ui/layout/toolbox/audio.py,sha256=8k2qYzVmSv6g0KXhQBY9_diuGBPODSe7VHiEBpsCzUU,2030
|
|
2403
2403
|
pygpt_net/ui/layout/toolbox/computer_env.py,sha256=QP_Qv4X28ineVX4vFfykmV-RDjgJpQp_oBHne3R4zY4,2210
|
|
2404
2404
|
pygpt_net/ui/layout/toolbox/footer.py,sha256=LbLDXbcarPfH-tpBKgXlQqkAvm1HcNZpR7fPjbD76KA,4278
|
|
@@ -2406,14 +2406,14 @@ pygpt_net/ui/layout/toolbox/image.py,sha256=sqh5lAlWzmeUlQPqNABoHltKIEtug2UNMpqL
|
|
|
2406
2406
|
pygpt_net/ui/layout/toolbox/indexes.py,sha256=o-f1jKhypjdQA-1NEDIxJwwMaFdIdjU48GFPcjHq0aY,6824
|
|
2407
2407
|
pygpt_net/ui/layout/toolbox/mode.py,sha256=MfVunjZZ3Wi0o4sbWBqg74c2-W6BNDHr3ylZevLZb8c,2085
|
|
2408
2408
|
pygpt_net/ui/layout/toolbox/model.py,sha256=OxcxSyFCQ3z6XAwj991X4KiSb78Upfn4v4m3991yvsw,1707
|
|
2409
|
-
pygpt_net/ui/layout/toolbox/presets.py,sha256=
|
|
2409
|
+
pygpt_net/ui/layout/toolbox/presets.py,sha256=Q12W0W1JsJKOxJofAELuNShdnnNKcirYeQeGXw_0Mvk,5779
|
|
2410
2410
|
pygpt_net/ui/layout/toolbox/prompt.py,sha256=subUUZJgkCmvSRekZcgVYs6wzl-MYPBLXKTs0wcJFgw,2663
|
|
2411
2411
|
pygpt_net/ui/layout/toolbox/raw.py,sha256=E1ERp3ITLXtbulo7i-JaBYx4COA4ipRemFfJztYhNFE,1492
|
|
2412
2412
|
pygpt_net/ui/layout/toolbox/split.py,sha256=Hs9hZPciLXCRV_izoayrBlJSCuTGumdNki6z1giWUUo,1696
|
|
2413
2413
|
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=VHzyzm7LjcAN30h111SEP6fdXwi84DYyf8CE1X3pdt8,2799
|
|
2414
2414
|
pygpt_net/ui/layout/toolbox/video.py,sha256=JyDVkJIh1m6RSbJFGQqIBKrsQgbfx2O08ybJ7bEZyWg,1477
|
|
2415
2415
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=E6-lLfU3vrWdlprayr6gxFs7F7AGkn4OIrFXrQ9p5XA,2035
|
|
2416
|
-
pygpt_net/ui/main.py,sha256=
|
|
2416
|
+
pygpt_net/ui/main.py,sha256=Qrqtq6-DUG6v44YG4dGGPSx-U-jEolkb8BDQpqPCxx0,14227
|
|
2417
2417
|
pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
|
|
2418
2418
|
pygpt_net/ui/menu/about.py,sha256=BtelbYhpXJGgsoEwsPuw61wVuGkzogpY3FVvWtd09HE,4619
|
|
2419
2419
|
pygpt_net/ui/menu/audio.py,sha256=3vQhMq8vk_h7yb_Gk2dZMRviFR2PExgR_ynpgOkyl-g,4226
|
|
@@ -2471,7 +2471,7 @@ pygpt_net/ui/widget/element/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5
|
|
|
2471
2471
|
pygpt_net/ui/widget/element/button.py,sha256=rhy8_RVHRV8xl0pegul31z9fNBjjIAi5Nd0hHGF6cF8,4393
|
|
2472
2472
|
pygpt_net/ui/widget/element/checkbox.py,sha256=qyX6T31c3a8Wb8B4JZwhuejD9SUAFSesdIjZdj4tv8I,2948
|
|
2473
2473
|
pygpt_net/ui/widget/element/group.py,sha256=9wedtjRTls4FdyHSwUblzdtPOaQ0-8djnjTN9CZI1KI,3702
|
|
2474
|
-
pygpt_net/ui/widget/element/labels.py,sha256=
|
|
2474
|
+
pygpt_net/ui/widget/element/labels.py,sha256=RpZa11w457iBw_lDCh0MLRKxiCNoUUD-4FSnC6CxblA,6631
|
|
2475
2475
|
pygpt_net/ui/widget/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2476
2476
|
pygpt_net/ui/widget/filesystem/explorer.py,sha256=YTQSv-ZyicJlVAKkVGkunCrKC27r2Ljnaat7FzYEJ5A,23732
|
|
2477
2477
|
pygpt_net/ui/widget/image/__init__.py,sha256=X9-pucLqQF9_ocDV-qNY6EQAJ_4dubGb-7TcWIzCXBo,488
|
|
@@ -2524,7 +2524,7 @@ pygpt_net/ui/widget/textarea/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl
|
|
|
2524
2524
|
pygpt_net/ui/widget/textarea/calendar_note.py,sha256=4LsPZ2ZHHZAsgjvgn6iZLKupKFq9fLGDu1PFEQVkaGw,5896
|
|
2525
2525
|
pygpt_net/ui/widget/textarea/console.py,sha256=nCV92S5JR4DiRWH6akWhygxg9kaLLxnCPoqXV0ZRK74,1333
|
|
2526
2526
|
pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13Jkq8EKhuI,1358
|
|
2527
|
-
pygpt_net/ui/widget/textarea/editor.py,sha256=
|
|
2527
|
+
pygpt_net/ui/widget/textarea/editor.py,sha256=gmNzsMrCQXGkFyVfl0woc_klmjsyiXuOdcG8Lk2PSR4,5038
|
|
2528
2528
|
pygpt_net/ui/widget/textarea/find.py,sha256=fQu6t-_LTZGFRNCkezywtMVsL-DocIkGBR_HbRFq61g,1534
|
|
2529
2529
|
pygpt_net/ui/widget/textarea/html.py,sha256=4DOnUYtHBhN-6X5w13GK-ceAAvTPd8M4mH_N-c3L_h0,12344
|
|
2530
2530
|
pygpt_net/ui/widget/textarea/input.py,sha256=TNJxS5y2-ih8uzoKR1IZjftByrSGbI0JCFSEH6URO0g,35392
|
|
@@ -2538,8 +2538,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=0t49MoTK_ZcGeYvIeiIvCKbRXvzQLO2Ko8INI
|
|
|
2538
2538
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2539
2539
|
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2540
2540
|
pygpt_net/utils.py,sha256=o3V8NLcTQm8XkP6n_M88jVbI7OjnryRmsvnvf7K136A,9100
|
|
2541
|
-
pygpt_net-2.6.
|
|
2542
|
-
pygpt_net-2.6.
|
|
2543
|
-
pygpt_net-2.6.
|
|
2544
|
-
pygpt_net-2.6.
|
|
2545
|
-
pygpt_net-2.6.
|
|
2541
|
+
pygpt_net-2.6.38.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2542
|
+
pygpt_net-2.6.38.dist-info/METADATA,sha256=TyuaDMfHUf7MJ9vyXE18msfBnmwS66oWqXH4UQDj2ac,163286
|
|
2543
|
+
pygpt_net-2.6.38.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2544
|
+
pygpt_net-2.6.38.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2545
|
+
pygpt_net-2.6.38.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|