pygpt-net 2.6.67__py3-none-any.whl → 2.7.0__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 +12 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/assistant/assistant.py +13 -8
- pygpt_net/controller/assistant/batch.py +29 -15
- pygpt_net/controller/assistant/files.py +19 -14
- pygpt_net/controller/assistant/store.py +63 -41
- pygpt_net/controller/attachment/attachment.py +45 -35
- pygpt_net/controller/chat/attachment.py +50 -39
- pygpt_net/controller/config/field/dictionary.py +26 -14
- pygpt_net/controller/ctx/common.py +27 -17
- pygpt_net/controller/ctx/ctx.py +182 -101
- pygpt_net/controller/files/files.py +101 -41
- pygpt_net/controller/idx/indexer.py +87 -31
- pygpt_net/controller/kernel/kernel.py +13 -2
- pygpt_net/controller/mode/mode.py +3 -3
- pygpt_net/controller/model/editor.py +70 -15
- pygpt_net/controller/model/importer.py +153 -54
- pygpt_net/controller/painter/painter.py +2 -2
- pygpt_net/controller/presets/experts.py +68 -15
- pygpt_net/controller/presets/presets.py +72 -36
- pygpt_net/controller/settings/profile.py +76 -35
- pygpt_net/controller/settings/workdir.py +70 -39
- pygpt_net/core/assistants/files.py +20 -18
- pygpt_net/core/filesystem/actions.py +111 -10
- pygpt_net/core/filesystem/filesystem.py +2 -1
- pygpt_net/core/idx/idx.py +12 -11
- pygpt_net/core/idx/worker.py +13 -1
- pygpt_net/core/models/models.py +4 -4
- pygpt_net/core/profile/profile.py +13 -3
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/css/style.dark.css +39 -1
- pygpt_net/data/css/style.light.css +39 -1
- pygpt_net/data/locale/locale.de.ini +3 -1
- pygpt_net/data/locale/locale.en.ini +3 -1
- pygpt_net/data/locale/locale.es.ini +3 -1
- pygpt_net/data/locale/locale.fr.ini +3 -1
- pygpt_net/data/locale/locale.it.ini +3 -1
- pygpt_net/data/locale/locale.pl.ini +4 -2
- pygpt_net/data/locale/locale.uk.ini +3 -1
- pygpt_net/data/locale/locale.zh.ini +3 -1
- pygpt_net/provider/api/openai/__init__.py +4 -2
- pygpt_net/provider/core/config/patch.py +9 -1
- pygpt_net/tools/image_viewer/tool.py +17 -0
- pygpt_net/tools/text_editor/tool.py +9 -0
- pygpt_net/ui/__init__.py +2 -2
- pygpt_net/ui/layout/ctx/ctx_list.py +16 -6
- pygpt_net/ui/main.py +3 -1
- pygpt_net/ui/widget/calendar/select.py +3 -3
- pygpt_net/ui/widget/filesystem/explorer.py +1082 -142
- pygpt_net/ui/widget/lists/assistant.py +185 -24
- pygpt_net/ui/widget/lists/assistant_store.py +245 -42
- pygpt_net/ui/widget/lists/attachment.py +230 -47
- pygpt_net/ui/widget/lists/attachment_ctx.py +189 -33
- pygpt_net/ui/widget/lists/base_list_combo.py +2 -2
- pygpt_net/ui/widget/lists/context.py +1253 -70
- pygpt_net/ui/widget/lists/experts.py +110 -8
- pygpt_net/ui/widget/lists/model_editor.py +217 -14
- pygpt_net/ui/widget/lists/model_importer.py +125 -6
- pygpt_net/ui/widget/lists/preset.py +460 -71
- pygpt_net/ui/widget/lists/profile.py +149 -27
- pygpt_net/ui/widget/lists/uploaded.py +230 -38
- pygpt_net/ui/widget/option/combo.py +1046 -32
- pygpt_net/ui/widget/option/dictionary.py +35 -7
- {pygpt_net-2.6.67.dist-info → pygpt_net-2.7.0.dist-info}/METADATA +14 -57
- {pygpt_net-2.6.67.dist-info → pygpt_net-2.7.0.dist-info}/RECORD +69 -69
- {pygpt_net-2.6.67.dist-info → pygpt_net-2.7.0.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.67.dist-info → pygpt_net-2.7.0.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.67.dist-info → pygpt_net-2.7.0.dist-info}/entry_points.txt +0 -0
|
@@ -6,13 +6,15 @@
|
|
|
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.12.27 21:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
|
+
from typing import List
|
|
13
|
+
|
|
12
14
|
from PySide6.QtCore import Qt, QAbstractItemModel, QModelIndex, QSize
|
|
13
15
|
from PySide6.QtGui import QIcon
|
|
14
16
|
from PySide6.QtWidgets import QWidget, QVBoxLayout, QPushButton, QTreeView, QMenu, QStyledItemDelegate, QComboBox, \
|
|
15
|
-
QCheckBox, QHeaderView, QHBoxLayout
|
|
17
|
+
QCheckBox, QHeaderView, QHBoxLayout, QAbstractItemView
|
|
16
18
|
|
|
17
19
|
from pygpt_net.utils import trans
|
|
18
20
|
|
|
@@ -133,6 +135,15 @@ class OptionDict(QWidget):
|
|
|
133
135
|
idx = index.row()
|
|
134
136
|
self.window.controller.config.dictionary.delete_item(self, idx)
|
|
135
137
|
|
|
138
|
+
def delete_items(self, idxs: List[int]):
|
|
139
|
+
"""
|
|
140
|
+
Delete multiple items (show confirm once)
|
|
141
|
+
|
|
142
|
+
:param idxs: list of row indices to delete
|
|
143
|
+
"""
|
|
144
|
+
# delegate batch deletion and confirmation to controller
|
|
145
|
+
self.window.controller.config.dictionary.delete_item(self, list(idxs))
|
|
146
|
+
|
|
136
147
|
def delete_item_execute(self, idx):
|
|
137
148
|
"""
|
|
138
149
|
Delete item (execute)
|
|
@@ -187,6 +198,10 @@ class OptionDictItems(QTreeView):
|
|
|
187
198
|
self.setIndentation(0)
|
|
188
199
|
self.setHeaderHidden(False)
|
|
189
200
|
|
|
201
|
+
# enable row-based multi selection (Ctrl/Shift)
|
|
202
|
+
self.setSelectionBehavior(QAbstractItemView.SelectRows)
|
|
203
|
+
self.setSelectionMode(QAbstractItemView.ExtendedSelection)
|
|
204
|
+
|
|
190
205
|
header = self.header()
|
|
191
206
|
header.setStretchLastSection(True)
|
|
192
207
|
header.setSectionResizeMode(QHeaderView.Stretch)
|
|
@@ -222,14 +237,27 @@ class OptionDictItems(QTreeView):
|
|
|
222
237
|
:param event: context menu event
|
|
223
238
|
"""
|
|
224
239
|
item = self.indexAt(event.pos())
|
|
225
|
-
|
|
240
|
+
sel_model = self.selectionModel()
|
|
241
|
+
selected_rows = sel_model.selectedRows() if sel_model is not None else []
|
|
242
|
+
multi = len(selected_rows) > 1
|
|
243
|
+
|
|
244
|
+
# allow context menu on empty area only when multi-selection exists
|
|
245
|
+
if not item.isValid() and not multi:
|
|
226
246
|
return
|
|
227
247
|
|
|
228
248
|
menu = QMenu(self)
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
249
|
+
if multi:
|
|
250
|
+
# only Delete is available for multi-select
|
|
251
|
+
delete_action = menu.addAction(self._icon_delete, self._act_delete_text)
|
|
252
|
+
# collect row indices from current selection
|
|
253
|
+
idxs = [ix.row() for ix in selected_rows]
|
|
254
|
+
delete_action.triggered.connect(lambda: self.parent.delete_items(idxs))
|
|
255
|
+
else:
|
|
256
|
+
# single row actions
|
|
257
|
+
edit_action = menu.addAction(self._icon_edit, self._act_edit_text)
|
|
258
|
+
delete_action = menu.addAction(self._icon_delete, self._act_delete_text)
|
|
259
|
+
edit_action.triggered.connect(lambda: self.parent.edit_item(event))
|
|
260
|
+
delete_action.triggered.connect(lambda: self.parent.delete_item(event))
|
|
233
261
|
menu.exec_(event.globalPos())
|
|
234
262
|
|
|
235
263
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.7.0
|
|
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, MCP, 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
|
|
@@ -119,7 +119,7 @@ Description-Content-Type: text/markdown
|
|
|
119
119
|
|
|
120
120
|
[](https://snapcraft.io/pygpt)
|
|
121
121
|
|
|
122
|
-
Release: **2.
|
|
122
|
+
Release: **2.7.0** | build: **2025-12-28** | Python: **>=3.10, <3.14**
|
|
123
123
|
|
|
124
124
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
125
125
|
>
|
|
@@ -3753,6 +3753,18 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3753
3753
|
|
|
3754
3754
|
## Recent changes:
|
|
3755
3755
|
|
|
3756
|
+
**2.7.0 (2025-12-28)**
|
|
3757
|
+
|
|
3758
|
+
- Added multi-select functionality using CTRL or SHIFT and batch actions to the context list, preset list, attachments list, and other list-based widgets.
|
|
3759
|
+
- Added a search field to comboboxes, such as the model selector.
|
|
3760
|
+
- Added a Duplicate option to the models editor.
|
|
3761
|
+
- Added drag-and-drop to context list.
|
|
3762
|
+
- Added multi-select, drag-and-drop, Cut, Copy, and Paste features to the File Explorer.
|
|
3763
|
+
- Fix: scroll restoration after actions in the context list.
|
|
3764
|
+
- Fix: 'Use as image' option in the File Explorer.
|
|
3765
|
+
- Fix: current preset system prompt disappearing on profile change.
|
|
3766
|
+
- Other UI fixes/improvements.
|
|
3767
|
+
|
|
3756
3768
|
**2.6.67 (2025-12-26)**
|
|
3757
3769
|
|
|
3758
3770
|
- Added a provider filter to the models editor.
|
|
@@ -3770,61 +3782,6 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3770
3782
|
- Fix: charset-normalizer 3.2.0 circular import - #152.
|
|
3771
3783
|
- Fix: Google client closed state.
|
|
3772
3784
|
|
|
3773
|
-
**2.6.65 (2025-09-28)**
|
|
3774
|
-
|
|
3775
|
-
- Added drag and drop functionality for files and directories from the filesystem in attachments and file explorer.
|
|
3776
|
-
- Added automatic thumbnail generation when uploading avatars.
|
|
3777
|
-
- Added a last status timer.
|
|
3778
|
-
- Added a fade effect to collapsed user messages.
|
|
3779
|
-
- Added a scroll area to the agent options in the presets editor.
|
|
3780
|
-
- Added a hover effect to lists.
|
|
3781
|
-
- Improved UI/UX.
|
|
3782
|
-
|
|
3783
|
-
**2.6.64 (2025-09-27)**
|
|
3784
|
-
|
|
3785
|
-
- Added translations to agent headers.
|
|
3786
|
-
- Improved presets tabs.
|
|
3787
|
-
- Added support for music (Lyria) in both image and video modes (beta).
|
|
3788
|
-
|
|
3789
|
-
**2.6.63 (2025-09-27)**
|
|
3790
|
-
|
|
3791
|
-
- Improved agents' workflows.
|
|
3792
|
-
- Enhanced the display of agents' steps in the UI.
|
|
3793
|
-
|
|
3794
|
-
**2.6.62 (2025-09-26)**
|
|
3795
|
-
|
|
3796
|
-
- Enhanced agent workflow execution.
|
|
3797
|
-
- Improved preset list handling by adding a drop field indicator and fixing auto-scroll.
|
|
3798
|
-
- Added middle-mouse button panning to Painter.
|
|
3799
|
-
- Added an input character counter.
|
|
3800
|
-
|
|
3801
|
-
**2.6.61 (2025-09-26)**
|
|
3802
|
-
|
|
3803
|
-
- Enhanced the agents node editor, custom agent flow, and instruction following.
|
|
3804
|
-
- Added drag-and-drop and reordering functionality to the presets list.
|
|
3805
|
-
- Added statistics for response tokens, including time elapsed and tokens per second.
|
|
3806
|
-
- Improved UI/UX.
|
|
3807
|
-
|
|
3808
|
-
**2.6.60 (2025-09-25)**
|
|
3809
|
-
|
|
3810
|
-
- Added a new tool: Agents Builder - allowing visual design of agent workflows using nodes - available in Tools -> Agents Builder (beta).
|
|
3811
|
-
|
|
3812
|
-
**2.6.59 (2025-09-23)**
|
|
3813
|
-
|
|
3814
|
-
- LlamaIndex has been upgraded to v0.13.6.
|
|
3815
|
-
- The Responses API is disabled by default in Agents (LlamaIndex) for compatibility.
|
|
3816
|
-
- Added WinAPI support to the System (OS) plugin.
|
|
3817
|
-
|
|
3818
|
-
**2.6.58 (2025-09-22)**
|
|
3819
|
-
|
|
3820
|
-
- Added: internal Web Browser tool.
|
|
3821
|
-
|
|
3822
|
-
**2.6.57 (2025-09-22)**
|
|
3823
|
-
|
|
3824
|
-
- Changed: The web search icon has been moved to the input area.
|
|
3825
|
-
- Improved: The local web search plugin has been enhanced to retrieve multiple URLs at once.
|
|
3826
|
-
- Added: Use proxy switch in Settings.
|
|
3827
|
-
|
|
3828
3785
|
# Credits and links
|
|
3829
3786
|
|
|
3830
3787
|
**Official website:** <https://pygpt.net>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=igNVCCyHsWBvgqC4bKfnsxk_mk3pLwBXdj4CeyUkano,111033
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=V9VvgscAQL_HFmE8inExLRmTXQkAI4q6RxLE6auxdsE,1372
|
|
4
4
|
pygpt_net/app.py,sha256=W-2rCYLndMgVV7cZZqeloqzifCggjISrFdMhHg0dMvM,23419
|
|
5
5
|
pygpt_net/app_core.py,sha256=PwBOV9wZLtr-O6SxBiazABhYXMHH8kZ6OgbvSv2OiZA,3827
|
|
6
6
|
pygpt_net/config.py,sha256=3CA7xXPKQsdRie1CY8_b5-Kk1taWMciUP9CesXRQNNY,18302
|
|
@@ -16,14 +16,14 @@ pygpt_net/controller/agent/experts.py,sha256=LGe22y5zyiKScv08vRLiEZmZDv7tRKbTLwu
|
|
|
16
16
|
pygpt_net/controller/agent/legacy.py,sha256=iOr1SD-A83Jgr6olZQMjhMr7UiQ7iWum0YNDYgZmkSw,14504
|
|
17
17
|
pygpt_net/controller/agent/llama.py,sha256=_sF4cAzCnBwGqY7VGqj-rbkNu-c1ye3w02d0mdXW6LQ,6115
|
|
18
18
|
pygpt_net/controller/assistant/__init__.py,sha256=y5uoiH6oZki5Q3N1vt8szAJmxXRK_98RfSSXqVbDmQ0,513
|
|
19
|
-
pygpt_net/controller/assistant/assistant.py,sha256=
|
|
20
|
-
pygpt_net/controller/assistant/batch.py,sha256=
|
|
19
|
+
pygpt_net/controller/assistant/assistant.py,sha256=c-ojgaxJjkVZMzRK5BOSNUlOe2dAb-TmqEhGNHB_8bk,11663
|
|
20
|
+
pygpt_net/controller/assistant/batch.py,sha256=eCFGGOsrwqgtyOKGvH7fu7yj3r8qUignHpgN9fl6cko,21579
|
|
21
21
|
pygpt_net/controller/assistant/editor.py,sha256=3hqxZqtHAKil9YehBbxw8AQrkaaB6I1l11DamGdPeoQ,15473
|
|
22
|
-
pygpt_net/controller/assistant/files.py,sha256=
|
|
23
|
-
pygpt_net/controller/assistant/store.py,sha256=
|
|
22
|
+
pygpt_net/controller/assistant/files.py,sha256=0bJ41GnA2pHNZELvP60H3wIKk_-Bo4SM8tbW3ocolG0,15124
|
|
23
|
+
pygpt_net/controller/assistant/store.py,sha256=xS2mrqomq3gx7mBjKg4u4pdwyq9ONvac6Vh9EW6MiPI,23584
|
|
24
24
|
pygpt_net/controller/assistant/threads.py,sha256=323xGbyfYio32_yGLml34i2e9l2_jU8m_4vib5nxqbc,22803
|
|
25
25
|
pygpt_net/controller/attachment/__init__.py,sha256=-5owOyszPze-YLQuTtFLQnSwEj_ftTxFwAP_3jPNpss,514
|
|
26
|
-
pygpt_net/controller/attachment/attachment.py,sha256=
|
|
26
|
+
pygpt_net/controller/attachment/attachment.py,sha256=YPBteHErR69FZxmXCPEJId6MjaY9E52TKOC6IMcDFxg,21651
|
|
27
27
|
pygpt_net/controller/audio/__init__.py,sha256=Ci5ClV3DKuMCLtFqQEOr5qun--tlIzKkQlwj9ug_kI0,509
|
|
28
28
|
pygpt_net/controller/audio/audio.py,sha256=r55svcfhMtQPJ7n9ottM4HK-Id3zVTLq_bEoDCQDof8,15508
|
|
29
29
|
pygpt_net/controller/audio/ui.py,sha256=Cp6TOLG4ObdvzjEwJGJ7ovnZHhb66Rupe_agHTH4lJI,7790
|
|
@@ -33,7 +33,7 @@ pygpt_net/controller/calendar/note.py,sha256=AkOQ0FslaDkQbNwXBg95XhtPi3KzhKiFd37
|
|
|
33
33
|
pygpt_net/controller/camera/__init__.py,sha256=dwmea8rz2QwdwKT160NYaaOoWucCWeyuecWkEXIcvio,510
|
|
34
34
|
pygpt_net/controller/camera/camera.py,sha256=-K8RCTRGj75l5XGpUzaMdGYZj0k7mHmORbs4I_0znRw,16538
|
|
35
35
|
pygpt_net/controller/chat/__init__.py,sha256=lx8FfN-Uoet5Y91xFxrA95N65vt_v99HcZd3K-YlYlc,508
|
|
36
|
-
pygpt_net/controller/chat/attachment.py,sha256=
|
|
36
|
+
pygpt_net/controller/chat/attachment.py,sha256=wt4-hEn38TRBBgVkVRI71DFRzRbMoE2Gew05hVnYwUA,21686
|
|
37
37
|
pygpt_net/controller/chat/audio.py,sha256=NiUecZDVzLYyNDBfidI4uGczI457WkCU0T9P8UEGvDA,2889
|
|
38
38
|
pygpt_net/controller/chat/chat.py,sha256=o9z6ba9IWArvyLpIGicHsiyjfDIWs-CNzKJreo86xNc,3152
|
|
39
39
|
pygpt_net/controller/chat/command.py,sha256=eKFQzP0tehZ3S_G7RoZVMTebQFSjPIpix3t7vDB7MWc,5291
|
|
@@ -66,14 +66,14 @@ pygpt_net/controller/config/field/checkbox.py,sha256=rFmf7MqtwbofWUUTFBVOthdx7Vy
|
|
|
66
66
|
pygpt_net/controller/config/field/checkbox_list.py,sha256=aRSXXD18Q927CJxDwiFVAmhHc0S-r5e4-JZNbGmYlMA,4498
|
|
67
67
|
pygpt_net/controller/config/field/cmd.py,sha256=6k7gvaMXOYH-3x6joJppfmrVa_fzIHuMpYg8agx91Bg,4167
|
|
68
68
|
pygpt_net/controller/config/field/combo.py,sha256=DCW8medesKAbXx48dOoMI-33C_cifISC4BOHqOECix0,3756
|
|
69
|
-
pygpt_net/controller/config/field/dictionary.py,sha256=
|
|
69
|
+
pygpt_net/controller/config/field/dictionary.py,sha256=_p0DI5KrjsHmemNJdojVktAZ3fyoJVN47FIyGq5LpRE,7026
|
|
70
70
|
pygpt_net/controller/config/field/input.py,sha256=Dx04ivrwM1KqA41uHYNGzwq1c7O-zPnU_NI-3I45hPY,3992
|
|
71
71
|
pygpt_net/controller/config/field/slider.py,sha256=dYbICd3ID-aLlc2a-bvFgWS4jceVz2UliTQKYy7Pl1Q,4560
|
|
72
72
|
pygpt_net/controller/config/field/textarea.py,sha256=yhP0edUXlnmCEAkqevoeFqrBdtZQHSjUKodd5VFbZ3o,2825
|
|
73
73
|
pygpt_net/controller/config/placeholder.py,sha256=-PWPNILPVkxMsY64aYnKTWvgUIvx7KA2Nwfd2LW_K30,16711
|
|
74
74
|
pygpt_net/controller/ctx/__init__.py,sha256=0wH7ziC75WscBW8cxpeGBwEz5tolo_kCxGPoz2udI_E,507
|
|
75
|
-
pygpt_net/controller/ctx/common.py,sha256=
|
|
76
|
-
pygpt_net/controller/ctx/ctx.py,sha256=
|
|
75
|
+
pygpt_net/controller/ctx/common.py,sha256=C0Nz2f3PlWkg2Z7wwT-poiDlwdEbQWF6QGC5xcs4sTg,6904
|
|
76
|
+
pygpt_net/controller/ctx/ctx.py,sha256=ZztnMYy27efAvDwnt54NNXRU-6mfMFcogeJUMLdZoJE,49601
|
|
77
77
|
pygpt_net/controller/ctx/extra.py,sha256=0r-G6Tlm9WPDkLRmgPDlgyRr_XLfCJntnUGlYPJiXVw,8598
|
|
78
78
|
pygpt_net/controller/ctx/summarizer.py,sha256=UNsq-JTARblGNT97uSMpZEVzdUuDJ8YA2j2dw9R2X3o,3079
|
|
79
79
|
pygpt_net/controller/debug/__init__.py,sha256=dOJGTICjvTtrPIEDOsxCzcOHsfu8AFPLpSKbdN0q0KI,509
|
|
@@ -85,16 +85,16 @@ pygpt_net/controller/dialogs/debug.py,sha256=TZN5dvw21dtpgE0uCQ0-djRYsrL9eEFGlZQ
|
|
|
85
85
|
pygpt_net/controller/dialogs/dialogs.py,sha256=sJHyZxkAn9QKTegUqx_xETesN2ecMBkrtf-VsCubr2w,1008
|
|
86
86
|
pygpt_net/controller/dialogs/info.py,sha256=qfG1T2_K11-h_97gBUwV2vHAdICQzSUoQOFBmibIapM,3993
|
|
87
87
|
pygpt_net/controller/files/__init__.py,sha256=4dJY1HOUTQ6GPAvvUQmTNwTRJKoShyCP8Lo8j2dD0ec,509
|
|
88
|
-
pygpt_net/controller/files/files.py,sha256=
|
|
88
|
+
pygpt_net/controller/files/files.py,sha256=MROjzOWaMMF8QvLf0SRj4hhD5nNTzWYKq_nX5TpbtiI,20714
|
|
89
89
|
pygpt_net/controller/finder/__init__.py,sha256=EUogcwzk4T0zyms2PJXduL3o1PzWwu0Q0qSo8Eu_8bw,510
|
|
90
90
|
pygpt_net/controller/finder/finder.py,sha256=4jl8EzTVR1Wc0dJkVwacAdvBiuF1CyOSKB4Qewju0Jw,4955
|
|
91
91
|
pygpt_net/controller/idx/__init__.py,sha256=EJ6C2RaW3RO72I7exGSoCcT6ooK-cuaLimM_9C_c7MA,507
|
|
92
92
|
pygpt_net/controller/idx/common.py,sha256=QOjDy2XMUONeeaXl6ULJGO8ropzd5fphf3DidJgFkp0,2097
|
|
93
93
|
pygpt_net/controller/idx/idx.py,sha256=Xah-oob7vgVF10sIHLdw-Ds3yfw08vzbxMLsPgPfH6M,11153
|
|
94
|
-
pygpt_net/controller/idx/indexer.py,sha256=
|
|
94
|
+
pygpt_net/controller/idx/indexer.py,sha256=wFsaiyIX-OyEsjUZTdY28G6C3mbhhuVNmlOFO7qM1pw,24155
|
|
95
95
|
pygpt_net/controller/idx/settings.py,sha256=orWd8ARxIBBs3MWJLjEKcqmrXLi6DvsLitsPvPd2fXU,7916
|
|
96
96
|
pygpt_net/controller/kernel/__init__.py,sha256=XVS7uaC0VZZkpjqkbs6pqSwXdAZWLnR3dVNCHmF7XH4,510
|
|
97
|
-
pygpt_net/controller/kernel/kernel.py,sha256=
|
|
97
|
+
pygpt_net/controller/kernel/kernel.py,sha256=9FEJUjKrfQpsZSvX1ZPx5qqupymdzOpUh0ZmWgNl3kg,14326
|
|
98
98
|
pygpt_net/controller/kernel/reply.py,sha256=TOofCGKkYd4JJkN2V-nKsWy4SoQXIge7nsZKl2vpyNA,5634
|
|
99
99
|
pygpt_net/controller/kernel/stack.py,sha256=Bs770-OfgXIAacT_uG_GTUTsr_YGuqO1WFmWzWdnC9A,4150
|
|
100
100
|
pygpt_net/controller/lang/__init__.py,sha256=Bpr9Ygoi_vd_CnfbQiZzYAeg9KV0vqNIuMl8EWmHKaM,508
|
|
@@ -110,33 +110,33 @@ pygpt_net/controller/layout/layout.py,sha256=HlbfGK-_HXQrifSh5tWpPtu5JzWN2fktVmh
|
|
|
110
110
|
pygpt_net/controller/media/__init__.py,sha256=N1UnDuteomgsBxRmVUd1Hm6UeGbHESYY9SowOhJj-YI,513
|
|
111
111
|
pygpt_net/controller/media/media.py,sha256=m-eFE-Rf3wt2Zpme4964ShDrIuSjny1oLmuWj7EKhFw,5954
|
|
112
112
|
pygpt_net/controller/mode/__init__.py,sha256=1Kcz0xHc2IW_if9S9eQozBUvIu69eLAe7T-Re2lJxhk,508
|
|
113
|
-
pygpt_net/controller/mode/mode.py,sha256=
|
|
113
|
+
pygpt_net/controller/mode/mode.py,sha256=N3TDMMJuB6qoc8KlHrkbZDt0eXH0KyNH7zFRFGfJkcg,8030
|
|
114
114
|
pygpt_net/controller/model/__init__.py,sha256=mQXq9u269D8TD3u_44J6DFFyHKkaZplk-tRFCssBGbE,509
|
|
115
|
-
pygpt_net/controller/model/editor.py,sha256=
|
|
116
|
-
pygpt_net/controller/model/importer.py,sha256=
|
|
115
|
+
pygpt_net/controller/model/editor.py,sha256=oSakMz7-oNqdkQy3AT5qOevqpJfKq10PcbUFzugRo7M,19713
|
|
116
|
+
pygpt_net/controller/model/importer.py,sha256=LIPQgEWELHE8U5BkM0ym1Q-472dPeRZ84-wKluHKAWI,26679
|
|
117
117
|
pygpt_net/controller/model/model.py,sha256=E0VfgIwNn75pjnB_v3RnqHr6jV1Eeua8VgpreQlA8vI,9132
|
|
118
118
|
pygpt_net/controller/notepad/__init__.py,sha256=ZbMh4D6nsGuI4AwYMdegfij5ubmUznEE_UcqSSDjSPk,511
|
|
119
119
|
pygpt_net/controller/notepad/notepad.py,sha256=x1KBbZxIZls01ek4iOP9sCTMB6rk1_qNbAbPbWVIDFM,11110
|
|
120
120
|
pygpt_net/controller/painter/__init__.py,sha256=ZNZE6YcKprDPqLK5kiwtcJVvcW3H-YkerFW0PwbeQ1Y,511
|
|
121
121
|
pygpt_net/controller/painter/capture.py,sha256=X3TqnNypxT_wngkQ4ovfS9glQwoGHyM-peR5aLJQGvk,6666
|
|
122
122
|
pygpt_net/controller/painter/common.py,sha256=O_AQKhM7iHb6aqzqMW0a9KH66MX8tho3HOJUpfLx39Y,15411
|
|
123
|
-
pygpt_net/controller/painter/painter.py,sha256
|
|
123
|
+
pygpt_net/controller/painter/painter.py,sha256=-qmVxxmsL_5aQs_DVoMLe0m6xZLIvijcItG4J1XHVfo,2866
|
|
124
124
|
pygpt_net/controller/plugins/__init__.py,sha256=iocY37De1H2Nh7HkC7ZYvUus2xzcckslgr5a4PwtQII,511
|
|
125
125
|
pygpt_net/controller/plugins/plugins.py,sha256=2y__KawXRKCKD-UR4yFnwJxo9bERfOUFBLpxhFLm7gA,16161
|
|
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
129
|
pygpt_net/controller/presets/editor.py,sha256=zAdylQwl5alCXT0BMmvjiKUE-96xxE3oL3eOKGfoxnk,64620
|
|
130
|
-
pygpt_net/controller/presets/experts.py,sha256=
|
|
131
|
-
pygpt_net/controller/presets/presets.py,sha256=
|
|
130
|
+
pygpt_net/controller/presets/experts.py,sha256=yST5XG67sU7PfqS93D5ypzeL1JlQ0nFr-cfpida0HSU,7695
|
|
131
|
+
pygpt_net/controller/presets/presets.py,sha256=jbE6MyDFdrV9xWZJtxB3TZEbe_mIuSz6HJ3LH-T0LD8,28229
|
|
132
132
|
pygpt_net/controller/realtime/__init__.py,sha256=MhvJb5wBqcpX6uylof01qEDRdU3SepTD88sU2lXNtIQ,519
|
|
133
133
|
pygpt_net/controller/realtime/manager.py,sha256=qtifO3sAtT1ROtRs9N_8t6A8_wgxOxxGl-PfLHzhdxY,1762
|
|
134
134
|
pygpt_net/controller/realtime/realtime.py,sha256=Rw3sLhAaafcam5rNMZVRgds-BO40niSAyU2FbfHj4F0,10912
|
|
135
135
|
pygpt_net/controller/settings/__init__.py,sha256=hn5n_Hti6byJQdQCs4Ld2EbPoZF7dHVMwqaBPscePQ8,512
|
|
136
136
|
pygpt_net/controller/settings/editor.py,sha256=GuhfCrHtBWV-1JVtR9witSFRU7pvTkmKG1TVYlEATcI,19258
|
|
137
|
-
pygpt_net/controller/settings/profile.py,sha256=
|
|
137
|
+
pygpt_net/controller/settings/profile.py,sha256=zeKML09kzrbQ1SJ-eQn6PWn82EIb2qurwWXPlLzpSn0,20631
|
|
138
138
|
pygpt_net/controller/settings/settings.py,sha256=cFA4ZKjcsu8uoapWMTllUUB9DvJXVBzbxLT6InRS4zU,7768
|
|
139
|
-
pygpt_net/controller/settings/workdir.py,sha256=
|
|
139
|
+
pygpt_net/controller/settings/workdir.py,sha256=1MazjXn_10vyjzkSHD27ZTFZA5mlct9nk_vj6p-af9A,24981
|
|
140
140
|
pygpt_net/controller/theme/__init__.py,sha256=-HMDkTGRa7Q6_AGomkZPVyasIOgNCqeez0Ocw_z9gMc,509
|
|
141
141
|
pygpt_net/controller/theme/common.py,sha256=dc3c9KgKPaYfARc2Kx0m8F5rpNEka0duey7TiFTaVcw,7444
|
|
142
142
|
pygpt_net/controller/theme/markdown.py,sha256=9Xj8n6cg_Q6RNqhHbUvY_xIA-Jh2nAWSSzCSeI_i26I,6078
|
|
@@ -195,7 +195,7 @@ pygpt_net/core/agents/runners/openai_workflow.py,sha256=n38r1Ot9_oO672MufPxvb_5j
|
|
|
195
195
|
pygpt_net/core/agents/tools.py,sha256=UW5-3q-cPpmx_FlDyuF2qymbgIJRmkklNmng3IokEUM,22116
|
|
196
196
|
pygpt_net/core/assistants/__init__.py,sha256=FujLn0ia5S3-7nX-Td_0S5Zqiw6Yublh58c4Di7rRgY,514
|
|
197
197
|
pygpt_net/core/assistants/assistants.py,sha256=JVseBSjDJh9vJYjxoZVwU93EFTBJk_rUtRh_Ml550H0,4391
|
|
198
|
-
pygpt_net/core/assistants/files.py,sha256=
|
|
198
|
+
pygpt_net/core/assistants/files.py,sha256=u90zWM1_Tq0615w6VXD9Uox0EYy7WsZJFIs22Cz9Lb4,10882
|
|
199
199
|
pygpt_net/core/assistants/store.py,sha256=6019iiPdPehf-Klpft0Vyw4ieYQyZzin-l684UA9Fqo,8239
|
|
200
200
|
pygpt_net/core/attachments/__init__.py,sha256=3bka_IoE6AoExlhFqDxcTaD6Uf1wM6VZzy_YX8Ry4f0,515
|
|
201
201
|
pygpt_net/core/attachments/attachments.py,sha256=bUqvfPqlpdXiGf3GvS1kTE45A0Q1Eo3kpUKypnRwDpk,12919
|
|
@@ -285,9 +285,9 @@ pygpt_net/core/experts/__init__.py,sha256=oscAmAEsCZclyHU7k3z5JzYqilwIO7J90e6oTa
|
|
|
285
285
|
pygpt_net/core/experts/experts.py,sha256=NBalA2qHGqp6SvXXVvgt0aXFX95H0fw0o3Z0t2C5DyY,18789
|
|
286
286
|
pygpt_net/core/experts/worker.py,sha256=KdVJv0ovjJ9oJ0Gj79m35JxiQbAxNPcQ5hUnqxG7Bb0,14134
|
|
287
287
|
pygpt_net/core/filesystem/__init__.py,sha256=KZLS3s_otd3Md9eDA6FN-b4CtOCWl_fplUlM9V6hTy8,514
|
|
288
|
-
pygpt_net/core/filesystem/actions.py,sha256=
|
|
288
|
+
pygpt_net/core/filesystem/actions.py,sha256=mGvNDg8vr6E4rISIjguzJqb00lazsq4_-TN0V0b4qgs,7625
|
|
289
289
|
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
|
290
|
-
pygpt_net/core/filesystem/filesystem.py,sha256=
|
|
290
|
+
pygpt_net/core/filesystem/filesystem.py,sha256=GmJrpxCLKcH9PPCDXoL968oMr8junUvwq6Jo9GK1K-U,15685
|
|
291
291
|
pygpt_net/core/filesystem/opener.py,sha256=8EkieR_FwSz0HBykLcmV8TEw8Bn0e7WHqqiPTkDPp-M,7851
|
|
292
292
|
pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fVWTok1w,2568
|
|
293
293
|
pygpt_net/core/filesystem/parser.py,sha256=CLESCdASVQ1-cJ_6ZxbgDSxvwC-haznj_coE1_tWaQE,3548
|
|
@@ -301,7 +301,7 @@ pygpt_net/core/history/history.py,sha256=PDE5Ut03mEgY9YPLZjqrimKQAyxoE7itViuqFV-
|
|
|
301
301
|
pygpt_net/core/idx/__init__.py,sha256=8-HStPMODmgzC3dBaJB6MDqGJHCHnKxNdt30Vzyu3cM,507
|
|
302
302
|
pygpt_net/core/idx/chat.py,sha256=be6ojNA6KTx3IVHxaIwXgdO1VbmymzkYAe1iLHo8tBQ,29598
|
|
303
303
|
pygpt_net/core/idx/context.py,sha256=fo62m22xBE-rtOgLMeOS-AR2SRRmaGipN7nY5BFax58,10146
|
|
304
|
-
pygpt_net/core/idx/idx.py,sha256=
|
|
304
|
+
pygpt_net/core/idx/idx.py,sha256=du1fqL5cMLbY61E6MyfircIZ2X-2N2aqSXr8kLe0JvM,18512
|
|
305
305
|
pygpt_net/core/idx/indexing.py,sha256=Thgt3cPwWFziPB0agYCEGEcC8NxqDYKC6IUt31_GmeQ,42601
|
|
306
306
|
pygpt_net/core/idx/llm.py,sha256=fSwNf9EG4JOVURDhV2_79AwkV7LNPIz84t8O2SqHPNg,8221
|
|
307
307
|
pygpt_net/core/idx/metadata.py,sha256=69jrZ54S2wYZ3HzVooozADkbjgK2Rg4MuXTgfd6rcsI,5445
|
|
@@ -312,7 +312,7 @@ pygpt_net/core/idx/types/external.py,sha256=Pu3hoXrmomGLCL6kVLNPtlrVlO2jEOl7TM8Y
|
|
|
312
312
|
pygpt_net/core/idx/types/files.py,sha256=FzomPoQncYx3WtWNbHTjSNuTOP8x_z7f3ypybdabf1c,4039
|
|
313
313
|
pygpt_net/core/idx/ui/__init__.py,sha256=nfCat59itYOlE7hgn-Y5iemtkgU2NWSnKZK_ffZhoa8,719
|
|
314
314
|
pygpt_net/core/idx/ui/loaders.py,sha256=15-5Q5C9jGcLZkNkcqZDfAsQqwzLCZOFzHXCTGiYN6k,8732
|
|
315
|
-
pygpt_net/core/idx/worker.py,sha256=
|
|
315
|
+
pygpt_net/core/idx/worker.py,sha256=c6sywqK9U0p3kFFf94MUoqM8XIYJUAnIBTDJzU-XqfI,4428
|
|
316
316
|
pygpt_net/core/image/__init__.py,sha256=HEXciv02RFJC3BkrzP9tvzvZlr36WYMz5v9W80JLqlQ,509
|
|
317
317
|
pygpt_net/core/image/image.py,sha256=xCknsdRyulidbkVPo7sIOuERCNJ57q61w5B7GqcRrIg,6446
|
|
318
318
|
pygpt_net/core/info/__init__.py,sha256=SJUPrGXxdvHTpM3AyvsaD_Z_Fuzrg2cbcNevB7A6X-8,508
|
|
@@ -324,7 +324,7 @@ pygpt_net/core/llm/llm.py,sha256=O4dSkOvs0nKQffdFuGSlScvPCyrTFTNRFJTH-frqOnM,238
|
|
|
324
324
|
pygpt_net/core/locale/__init__.py,sha256=5fmTz0u-DvCrII3KqfVAnd8YIQ8F_JDPfN16z5JRcU4,510
|
|
325
325
|
pygpt_net/core/locale/locale.py,sha256=lplM0fr0oFOcp8Nhoss7EGfbnAqE_kQnX0KbttQjgP0,6059
|
|
326
326
|
pygpt_net/core/models/__init__.py,sha256=EpJrNNINMcaO4Qc6a87IWZkfBMx7G9YJN-pdLpcqH3w,510
|
|
327
|
-
pygpt_net/core/models/models.py,sha256=
|
|
327
|
+
pygpt_net/core/models/models.py,sha256=BHAaR-ly6LWIFgiScHAVzc6GbMW1KxEF51mXS_C_i9Y,17020
|
|
328
328
|
pygpt_net/core/models/ollama.py,sha256=MiCt1Nzd3VHjnj7a0CmGjqUkPuD7401obd7G7KQIZzU,3189
|
|
329
329
|
pygpt_net/core/modes/__init__.py,sha256=dKpce7VTQCzmSfNBT1WHd_zKzXRthRs7ZKqHQSEtftc,509
|
|
330
330
|
pygpt_net/core/modes/modes.py,sha256=tlVP9OnQqwOIrv0qt-OMwivslcHEC3WY1X-0r-o0lqI,3067
|
|
@@ -342,7 +342,7 @@ pygpt_net/core/plugins/plugins.py,sha256=BGGo-q6VLdk-fcsb4vQjORuh9LHGjHVPMO9-roT
|
|
|
342
342
|
pygpt_net/core/presets/__init__.py,sha256=NZjBxjGv4fgEX6Hp8FznsWK5QqD1Tl7zyp2Ir3ufXv4,511
|
|
343
343
|
pygpt_net/core/presets/presets.py,sha256=x7BeumcIiWRCr4g3eC6abUSSc7ZXWMv4bWB5jm8sg_U,19383
|
|
344
344
|
pygpt_net/core/profile/__init__.py,sha256=ovh37AKXCbEz1owutNltCXRkmhZj097wcdZLSzkJUvk,511
|
|
345
|
-
pygpt_net/core/profile/profile.py,sha256=
|
|
345
|
+
pygpt_net/core/profile/profile.py,sha256=vBRomCbLx4G2pexNDMa6432lwEdWyfp5TrKWBlj_H_0,8303
|
|
346
346
|
pygpt_net/core/prompt/__init__.py,sha256=4GH-2XlmPjySjMTEWWb_gZDDetT8lZaoUc-P6FzECus,510
|
|
347
347
|
pygpt_net/core/prompt/base/__init__.py,sha256=NmejVxOy0iJTZ7UHxn8TzSF75U_MxFRO9fPAciVXrxc,1897
|
|
348
348
|
pygpt_net/core/prompt/base/gpt.py,sha256=IzjLOVd1CEswDUq4r4uo0UfDeiWovXUaU4OmfY_BR1g,1284
|
|
@@ -420,8 +420,8 @@ pygpt_net/css_rc.py,sha256=PX6g9z5BsD-DXISuR2oq3jHcjiKfcJ4HsgcHez6wGMc,27762
|
|
|
420
420
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
421
421
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
422
422
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
423
|
-
pygpt_net/data/config/config.json,sha256=
|
|
424
|
-
pygpt_net/data/config/models.json,sha256=
|
|
423
|
+
pygpt_net/data/config/config.json,sha256=iscXUe9iOGjtQQET6_JE3Cq91RWVSa4B8g8D9Fvjet0,30935
|
|
424
|
+
pygpt_net/data/config/models.json,sha256=cLEqhXUJPrE3elZ-PxOwTtQXK2oRtezrFvzudqyPvaE,135705
|
|
425
425
|
pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
|
|
426
426
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
427
427
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -465,8 +465,8 @@ pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUz
|
|
|
465
465
|
pygpt_net/data/css/markdown.dark.css,sha256=ixAwuT69QLesZttKhO4RAy-QukplZwwfXCZsWLN9TP4,730
|
|
466
466
|
pygpt_net/data/css/markdown.light.css,sha256=UZdv0jtuFgJ_4bYWsDaDQ4X4AP9tVNLUHBAckC_oD8k,833
|
|
467
467
|
pygpt_net/data/css/style.css,sha256=dgVlVqEL38zF-4Ok-y1rwfALC8zETJAIuIbkwat_hTk,337
|
|
468
|
-
pygpt_net/data/css/style.dark.css,sha256=
|
|
469
|
-
pygpt_net/data/css/style.light.css,sha256=
|
|
468
|
+
pygpt_net/data/css/style.dark.css,sha256=t4e7BO6rqukdIgV0Xa3EJT2mcvX-nWhDHqSUmfwze1w,4004
|
|
469
|
+
pygpt_net/data/css/style.light.css,sha256=2zi1sinZCj7xGV3OP-naMIG7wNYfCAcjS745coW6Czg,6353
|
|
470
470
|
pygpt_net/data/css/web-blocks.css,sha256=i8BwIwauKvKiWq3bte45R6_bI6bjFyjKyshkTb2JWgs,7598
|
|
471
471
|
pygpt_net/data/css/web-blocks.dark.css,sha256=mck2u9KiO-pvnms0N0XJkoM_RBuf8QdC_3iSWAg8r40,1855
|
|
472
472
|
pygpt_net/data/css/web-blocks.darkest.css,sha256=p3929omAaS1yxNtcOk9yR6cdVGkTVLCIyVsmltxLVf4,1807
|
|
@@ -1730,14 +1730,14 @@ pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgak
|
|
|
1730
1730
|
pygpt_net/data/js/markdown-it/markdown-it-katex.min.js,sha256=-wMst2a9i8Borapa9_hxPvpQysfFE-yph8GrBmDoA68,1670
|
|
1731
1731
|
pygpt_net/data/js/markdown-it/markdown-it.min.js,sha256=OMcKHnypGrQOLZ5uYBKYUacX7Rx9Ssu91Bv5UDeRz2g,123618
|
|
1732
1732
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1733
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
|
1734
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1735
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
|
1736
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
|
1737
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
|
1738
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
|
1739
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
|
1740
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
|
1733
|
+
pygpt_net/data/locale/locale.de.ini,sha256=PIGIH3G02Bz6CZbsiJSOa36KjdXWLjwlSjx9vizNwH0,112614
|
|
1734
|
+
pygpt_net/data/locale/locale.en.ini,sha256=rUlqqBGF9OaRqkrCUgz7KUlB-xW_epoCf_G1yh5hzks,106714
|
|
1735
|
+
pygpt_net/data/locale/locale.es.ini,sha256=AsAGeCK7jub9PRcTcci8PcqHVSYIrzT2UNIDvr_miYA,113156
|
|
1736
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=9J1ud2grqoDrK5XVkCk03vATFqKU7Btp36TnTTuV51I,116028
|
|
1737
|
+
pygpt_net/data/locale/locale.it.ini,sha256=UdYyyKC1qYHYOAKHr2DXlXb5ho3IGES0MNpv_WjwrGQ,110848
|
|
1738
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=tijdm_QqwBk5L0enbAZ2MRKbZJ6UPVjL06TuUlI5xTg,110530
|
|
1739
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=HSgxOzDkKLGNzur3PdtkG7NHAouddt9PQWlcMcge_BM,154022
|
|
1740
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=PMJAaTthf2HYvqxx3HYBnuw7uXurVCKACsqz6SfcqNc,98891
|
|
1741
1741
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
|
1742
1742
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
|
|
1743
1743
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
|
@@ -2165,7 +2165,7 @@ pygpt_net/provider/api/google/realtime/realtime.py,sha256=2I3rjeswcIk2SZbTtHqKVZ
|
|
|
2165
2165
|
pygpt_net/provider/api/google/tools.py,sha256=YtrnkTQb8NrKpB6MfdYEqq_6Vhz-250eJNDKRhtmD_k,8856
|
|
2166
2166
|
pygpt_net/provider/api/google/video.py,sha256=-0lXGuHxvIut08L22uo4PkJKI5UaKjT7ZHv46Z87LC4,15721
|
|
2167
2167
|
pygpt_net/provider/api/google/vision.py,sha256=yWeA86v5FPvhm5rYiNZJ3cR9KdzYQp_AdGd1tyldphc,4026
|
|
2168
|
-
pygpt_net/provider/api/openai/__init__.py,sha256=
|
|
2168
|
+
pygpt_net/provider/api/openai/__init__.py,sha256=JY-wZu2R11wmVEWZG00nFyRoFbunMbz13RHfF1Jj3vI,12325
|
|
2169
2169
|
pygpt_net/provider/api/openai/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2170
2170
|
pygpt_net/provider/api/openai/agents/client.py,sha256=opH2DnYPVRuWvc284AMjJBWUhipV8hdWcs3yqWA2g7s,2372
|
|
2171
2171
|
pygpt_net/provider/api/openai/agents/computer.py,sha256=wilD84b9Wl20ZRbBVgW-97k-a-9fYrMb2fbtQZoTqYk,11764
|
|
@@ -2250,7 +2250,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
|
2250
2250
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2251
2251
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
|
2252
2252
|
pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
|
|
2253
|
-
pygpt_net/provider/core/config/patch.py,sha256
|
|
2253
|
+
pygpt_net/provider/core/config/patch.py,sha256=EN5Iiegsvbto8p3y95_ZKvvtn7paLSX-nhzIMEqmfQU,8235
|
|
2254
2254
|
pygpt_net/provider/core/config/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2255
2255
|
pygpt_net/provider/core/config/patches/patch_before_2_6_42.py,sha256=_IcpB3DdiD01P2_jpt2ZvUs8WJRIeO6t5oQeNxY6_eE,126808
|
|
2256
2256
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
@@ -2433,7 +2433,7 @@ pygpt_net/tools/html_canvas/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
2433
2433
|
pygpt_net/tools/html_canvas/ui/dialogs.py,sha256=zw4XusCoZ-52ks8ogcasEVAxDHQwSHh88FtW2rk4HP0,4825
|
|
2434
2434
|
pygpt_net/tools/html_canvas/ui/widgets.py,sha256=IdrxVSs-FR4K1dEO8kJDIO0puyMHEF3jpnbc4YuOeYo,13748
|
|
2435
2435
|
pygpt_net/tools/image_viewer/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2436
|
-
pygpt_net/tools/image_viewer/tool.py,sha256=
|
|
2436
|
+
pygpt_net/tools/image_viewer/tool.py,sha256=yorykUAYTpoU8i1Dcr45YuUcOyhy0clS-6rZ9zYLN98,9664
|
|
2437
2437
|
pygpt_net/tools/image_viewer/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2438
2438
|
pygpt_net/tools/image_viewer/ui/dialogs.py,sha256=qBBoXUrqS8hU4ldiSDSBwnhUbup5K4uEKqfL5Jh6-Ms,5369
|
|
2439
2439
|
pygpt_net/tools/indexer/__init__.py,sha256=0rE5HM0os0k0_LpMdGt7sozEQfckN7qm_b3KEwMb1wc,508
|
|
@@ -2451,7 +2451,7 @@ pygpt_net/tools/media_player/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
2451
2451
|
pygpt_net/tools/media_player/ui/dialogs.py,sha256=T1Zu_Fpm_KeszS203BRXW2WJmDVN4tGc9wEVDhHOyzs,3590
|
|
2452
2452
|
pygpt_net/tools/media_player/ui/widgets.py,sha256=DFEUwrQpxc_cw2k9Tpj_kz0ESZgjhA6OiZJmo5T_iFc,17634
|
|
2453
2453
|
pygpt_net/tools/text_editor/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2454
|
-
pygpt_net/tools/text_editor/tool.py,sha256=
|
|
2454
|
+
pygpt_net/tools/text_editor/tool.py,sha256=scxA2GR3IIt6f_l9ryfKVu-lyfgge_OWW6VyaFap-LY,8814
|
|
2455
2455
|
pygpt_net/tools/text_editor/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2456
2456
|
pygpt_net/tools/text_editor/ui/dialogs.py,sha256=0nJjDsw9lzP7K5JLA1Fp4mzTSj8M7k5TZ0Wn_rIL85M,2918
|
|
2457
2457
|
pygpt_net/tools/text_editor/ui/widgets.py,sha256=bvg3uJgWf5d3Vo_j5dMcoUchrvEA9e9uJK5aAy9-ZJc,2758
|
|
@@ -2465,7 +2465,7 @@ pygpt_net/tools/web_browser/tool.py,sha256=-wfPuxxXgFS62k0xpwPqOlg9fRhgvrH0r8Rl2
|
|
|
2465
2465
|
pygpt_net/tools/web_browser/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2466
2466
|
pygpt_net/tools/web_browser/ui/dialogs.py,sha256=yYWv-SJW2aaPkALo4Kyw2A0uUlfqrgV7XCFqcf1PfHs,3201
|
|
2467
2467
|
pygpt_net/tools/web_browser/ui/widgets.py,sha256=T7_-5m3hYjTupwjP4PE8Vya-XtY4YdD84oCjzN2jDDs,12719
|
|
2468
|
-
pygpt_net/ui/__init__.py,sha256=
|
|
2468
|
+
pygpt_net/ui/__init__.py,sha256=8E7hcx-7TscDf8XqCBDjyy_vOih1ccV0Zbq0aEGVHt0,9134
|
|
2469
2469
|
pygpt_net/ui/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2470
2470
|
pygpt_net/ui/base/config_dialog.py,sha256=P-7u7DQUZtr9D237SBjFt-QcYOeAWD8hD_rDJLc-C0Y,8913
|
|
2471
2471
|
pygpt_net/ui/base/context_menu.py,sha256=l-Z9LqPa_xGsjdV3ay65Rqu8JLzZDx2s8GUzYMt4eSk,4462
|
|
@@ -2513,7 +2513,7 @@ pygpt_net/ui/layout/chat/output.py,sha256=7HlkEJuMZlqM9JE0axQpt0bAQWRpOPtlcwUwjV
|
|
|
2513
2513
|
pygpt_net/ui/layout/chat/painter.py,sha256=XmogOPKRIBMldZOmJDNSVZLqFC_JTCXLu6Eyfw1Da3c,8552
|
|
2514
2514
|
pygpt_net/ui/layout/ctx/__init__.py,sha256=NJ9L0yJKIx1nKnk2sczp7ILWVbu2hfpvUz4E56EFuPI,509
|
|
2515
2515
|
pygpt_net/ui/layout/ctx/ctx.py,sha256=GDJyolAnFlAd49bbu9-LGsCxOUTAImSH5In4i8YHFOo,1653
|
|
2516
|
-
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=
|
|
2516
|
+
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=bZ_SGCjXviQ1Q0zT7e5Qe5RXI7Yc_0pju3x1QBDqJR0,15462
|
|
2517
2517
|
pygpt_net/ui/layout/ctx/search_input.py,sha256=yM_X2sxeR09JRqmkd2R4z82GRo3I1k4rOb75PgIFydE,1441
|
|
2518
2518
|
pygpt_net/ui/layout/ctx/video.py,sha256=RzzyGObhlXamXIJHRqA9D2o6eVVulF4kNPVf3BkURGI,1068
|
|
2519
2519
|
pygpt_net/ui/layout/status.py,sha256=lM8b_kILDMtffleIiShyQMMAavsoj52vOF6cdGMGjbc,2037
|
|
@@ -2535,7 +2535,7 @@ pygpt_net/ui/layout/toolbox/split.py,sha256=Hs9hZPciLXCRV_izoayrBlJSCuTGumdNki6z
|
|
|
2535
2535
|
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=VHzyzm7LjcAN30h111SEP6fdXwi84DYyf8CE1X3pdt8,2799
|
|
2536
2536
|
pygpt_net/ui/layout/toolbox/video.py,sha256=MWQiDmO7ajpUDotb5tYaLr15UFS27E9s4LG-ReMenEc,2014
|
|
2537
2537
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=E6-lLfU3vrWdlprayr6gxFs7F7AGkn4OIrFXrQ9p5XA,2035
|
|
2538
|
-
pygpt_net/ui/main.py,sha256=
|
|
2538
|
+
pygpt_net/ui/main.py,sha256=PYPVQf_5l3CVdsTB7S4lmO3Qs3aEVYhtwuXeOQeGFsM,14311
|
|
2539
2539
|
pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
|
|
2540
2540
|
pygpt_net/ui/menu/about.py,sha256=BtelbYhpXJGgsoEwsPuw61wVuGkzogpY3FVvWtd09HE,4619
|
|
2541
2541
|
pygpt_net/ui/menu/audio.py,sha256=3vQhMq8vk_h7yb_Gk2dZMRviFR2PExgR_ynpgOkyl-g,4226
|
|
@@ -2558,7 +2558,7 @@ pygpt_net/ui/widget/audio/input.py,sha256=t9VAhP15HkSOvNV2crI3Kg6AgrQDj-wSQiiYTM
|
|
|
2558
2558
|
pygpt_net/ui/widget/audio/input_button.py,sha256=QDfA8WBskY0pkN8EMXZ97017Sj11t4p9b_jCz4Q6aRY,4498
|
|
2559
2559
|
pygpt_net/ui/widget/audio/output.py,sha256=UxkiCnVT9DNFeByDGTFW_CK0LW8xSvhEK1zygtHvx4k,1586
|
|
2560
2560
|
pygpt_net/ui/widget/calendar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2561
|
-
pygpt_net/ui/widget/calendar/select.py,sha256=
|
|
2561
|
+
pygpt_net/ui/widget/calendar/select.py,sha256=E8cDqbln4X56Czr2pwlZ1I4OM6sj_aMHBHfoFxN8sp8,10667
|
|
2562
2562
|
pygpt_net/ui/widget/dialog/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2563
2563
|
pygpt_net/ui/widget/dialog/alert.py,sha256=6EYiiac1kuuWq3hcnm1DjVPRFdSYWaEe0gJ5LOsiEzg,1429
|
|
2564
2564
|
pygpt_net/ui/widget/dialog/applog.py,sha256=T9ZHk__9Bm0HGJLZtps4NecNbpapu7R9TIkzxOfTPCs,1502
|
|
@@ -2596,21 +2596,21 @@ pygpt_net/ui/widget/element/group.py,sha256=9wedtjRTls4FdyHSwUblzdtPOaQ0-8djnjTN
|
|
|
2596
2596
|
pygpt_net/ui/widget/element/labels.py,sha256=C16DWoWzSt-VFnfLM5Yg7NiM1iVZj6DyttoIShely84,6749
|
|
2597
2597
|
pygpt_net/ui/widget/element/status.py,sha256=csRP1xzqB2yNyW2wdYQdGy7VVvzBucKHzjZ0DTHI-Q8,1773
|
|
2598
2598
|
pygpt_net/ui/widget/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2599
|
-
pygpt_net/ui/widget/filesystem/explorer.py,sha256=
|
|
2599
|
+
pygpt_net/ui/widget/filesystem/explorer.py,sha256=2fKukiORrp6shL7WPm5flO63mzX4HhSnsGzkW9OjzNw,65253
|
|
2600
2600
|
pygpt_net/ui/widget/image/__init__.py,sha256=X9-pucLqQF9_ocDV-qNY6EQAJ_4dubGb-7TcWIzCXBo,488
|
|
2601
2601
|
pygpt_net/ui/widget/image/display.py,sha256=73lBXCdmdAxjCCD2XV3HBdvYU6PgL_PpybweONMOSik,3771
|
|
2602
2602
|
pygpt_net/ui/widget/lists/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2603
|
-
pygpt_net/ui/widget/lists/assistant.py,sha256=
|
|
2604
|
-
pygpt_net/ui/widget/lists/assistant_store.py,sha256=
|
|
2605
|
-
pygpt_net/ui/widget/lists/attachment.py,sha256=
|
|
2606
|
-
pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=
|
|
2603
|
+
pygpt_net/ui/widget/lists/assistant.py,sha256=yYA4b5chF7bGMm9KOFK-7DIM_eKJUAdbNSJuHebIcFs,10608
|
|
2604
|
+
pygpt_net/ui/widget/lists/assistant_store.py,sha256=dcd17b44FmsZ7fdpfRqQYtHzkNutNafVUCqCBuDngyE,12486
|
|
2605
|
+
pygpt_net/ui/widget/lists/attachment.py,sha256=pQseXaK3_-LzDpJO2sVREO6nML0oCt9PqxYVi50wx08,16533
|
|
2606
|
+
pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=bFYHPYnHxxxvICsQwq18CAknImn_3M-qjt6o8w48hJ8,12335
|
|
2607
2607
|
pygpt_net/ui/widget/lists/base.py,sha256=HGRmr3PHooQsidZ_K8FPIa9lhkJCpy8u1mXNfJ2r9Ak,4812
|
|
2608
2608
|
pygpt_net/ui/widget/lists/base_combo.py,sha256=-ZXvof8eJfSoB0_ONVxVuCJP8acss-f066XreG_GfnY,4132
|
|
2609
|
-
pygpt_net/ui/widget/lists/base_list_combo.py,sha256=
|
|
2610
|
-
pygpt_net/ui/widget/lists/context.py,sha256=
|
|
2609
|
+
pygpt_net/ui/widget/lists/base_list_combo.py,sha256=wkjzNz2YP9RXXhMgB0l6UudHddluQzBI7zlajMyFCAk,5739
|
|
2610
|
+
pygpt_net/ui/widget/lists/context.py,sha256=kJ7cktor1XD44aRCnzBnQoiD8zCsBIIh61ef-Ib6dRc,78973
|
|
2611
2611
|
pygpt_net/ui/widget/lists/db.py,sha256=2eKdcSY78WHxCHBAMSpZoSChACJ6Sjfbb2gkt-6l8uM,5908
|
|
2612
2612
|
pygpt_net/ui/widget/lists/debug.py,sha256=POWO_G8ah4wTNjXKxp6Si-07OkttJ7WL27dmSsNRIuQ,3705
|
|
2613
|
-
pygpt_net/ui/widget/lists/experts.py,sha256=
|
|
2613
|
+
pygpt_net/ui/widget/lists/experts.py,sha256=ZISbK6k3dMx5sdqOWQIEW2fmo08Mf7fviQOtzbsC6S4,10227
|
|
2614
2614
|
pygpt_net/ui/widget/lists/index.py,sha256=YWleXUceyvTIqQL3O48qXqBazINAdaB0_oBmRWFzTuE,4792
|
|
2615
2615
|
pygpt_net/ui/widget/lists/index_combo.py,sha256=tW62i2khDJZ_mserp1W-5n5EPPnyv3fI3ICUusbRnko,4628
|
|
2616
2616
|
pygpt_net/ui/widget/lists/llama_mode_combo.py,sha256=U18Rt6OxKRQkyPmI1ve2urak0dHeuu_2-70bLJVfKA8,1229
|
|
@@ -2618,14 +2618,14 @@ pygpt_net/ui/widget/lists/mode.py,sha256=4gPSjQEo9RnLgfJpUeRUcHhJzPrrtbi3o0444kQ
|
|
|
2618
2618
|
pygpt_net/ui/widget/lists/mode_combo.py,sha256=LC6zlSv2_nTIT5dk-Jf0LgVTRKbxGqhHFFWUG3mYwhg,1104
|
|
2619
2619
|
pygpt_net/ui/widget/lists/model.py,sha256=09osE_7G8iiFj1MfT0VnfxohQ0520--bvJkvvvgl_u0,1886
|
|
2620
2620
|
pygpt_net/ui/widget/lists/model_combo.py,sha256=hGOH4K0qel2w7j8HCr7kBARyvQKjkG4O7QbCvREibQ8,1108
|
|
2621
|
-
pygpt_net/ui/widget/lists/model_editor.py,sha256=
|
|
2622
|
-
pygpt_net/ui/widget/lists/model_importer.py,sha256=
|
|
2621
|
+
pygpt_net/ui/widget/lists/model_editor.py,sha256=JJdcZfbhs4tPT-kIBQ9A2puZp5t7kTWoUq6hGqpQn0U,10454
|
|
2622
|
+
pygpt_net/ui/widget/lists/model_importer.py,sha256=YB8vYnxPcYYP7W_Cjfsrzt2lc3CSkXbsXvJNN2gST0c,11813
|
|
2623
2623
|
pygpt_net/ui/widget/lists/plugin.py,sha256=nvcVTRPebqFhuRQl44lszctj4YhYqff3W4PQdL4jjgU,1028
|
|
2624
|
-
pygpt_net/ui/widget/lists/preset.py,sha256=
|
|
2624
|
+
pygpt_net/ui/widget/lists/preset.py,sha256=nl_B6AYiTxLSXpX-_40fikTR2fwcl7-clSKma3QpteY,57336
|
|
2625
2625
|
pygpt_net/ui/widget/lists/preset_plugins.py,sha256=3ONjBKPv2buTdgtO6BLSaW-z-Cui4wOBU8GDzH9giCA,3873
|
|
2626
|
-
pygpt_net/ui/widget/lists/profile.py,sha256=
|
|
2626
|
+
pygpt_net/ui/widget/lists/profile.py,sha256=qGXgC_bPtyP_26lxty4IXejPSmefEufUWKJFGz8b0is,9689
|
|
2627
2627
|
pygpt_net/ui/widget/lists/settings.py,sha256=ZMOPvpu_h3NMQ2WTb5SfoAmSmBTW_lbtm7M-oAp1zA8,1052
|
|
2628
|
-
pygpt_net/ui/widget/lists/uploaded.py,sha256=
|
|
2628
|
+
pygpt_net/ui/widget/lists/uploaded.py,sha256=y7DtVKugvy-eR-VNch5CBwkLEcw8kvgnwkmCjIIQSlg,13114
|
|
2629
2629
|
pygpt_net/ui/widget/node_editor/__init__.py,sha256=zq9BnwcUk-wFRVNCb4tt-6S1c7aqLARjLpDOtpneyqg,519
|
|
2630
2630
|
pygpt_net/ui/widget/node_editor/command.py,sha256=Qo9xK_XtN7_gPzxGLPclw8JdJp4E6I33tUFhhQ5Fwuk,15389
|
|
2631
2631
|
pygpt_net/ui/widget/node_editor/config.py,sha256=tsEndKK40SDQnHnm3qKMrCe9O3COcglVamDPv0xcMlI,5470
|
|
@@ -2638,8 +2638,8 @@ pygpt_net/ui/widget/option/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5e
|
|
|
2638
2638
|
pygpt_net/ui/widget/option/checkbox.py,sha256=duzgGPOVbHFnWILVEu5gDUa6sHeDOvQaaj9IsY-HbU8,3954
|
|
2639
2639
|
pygpt_net/ui/widget/option/checkbox_list.py,sha256=SgnkLTlVZCcU3ehqAfi_w28x693w_AeNsK-_0k-uOwA,6198
|
|
2640
2640
|
pygpt_net/ui/widget/option/cmd.py,sha256=Ii_i9hR4oRmG4-TPZ-FHuTv3I1vL96YLcDP2QSKmAbI,5800
|
|
2641
|
-
pygpt_net/ui/widget/option/combo.py,sha256=
|
|
2642
|
-
pygpt_net/ui/widget/option/dictionary.py,sha256=
|
|
2641
|
+
pygpt_net/ui/widget/option/combo.py,sha256=2A4BOBNkMWcHVYFBtTL_0UFWFeZh377X_D-1BUMwd0g,46897
|
|
2642
|
+
pygpt_net/ui/widget/option/dictionary.py,sha256=ZeaBk-wEZ0SBU_iBBL6eHUEIGOrahh-z2xTa7LBvsdM,14736
|
|
2643
2643
|
pygpt_net/ui/widget/option/input.py,sha256=-pLXzkOO2OvOoUKTuocbOt8JcPWQO3W3cmrSh0WhJcc,9718
|
|
2644
2644
|
pygpt_net/ui/widget/option/prompt.py,sha256=SgRd0acp13_c19tWjYYChcGgAwik9tsZKKsX1Ciqgp4,2818
|
|
2645
2645
|
pygpt_net/ui/widget/option/slider.py,sha256=nEGocCAHZ-HuyE0D0QZxs30QiUXs8B2EQRQXSsGIGIE,3569
|
|
@@ -2669,8 +2669,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=sVRSmudPwPfjK2h7q-e6Ae4b-677BHLe20t-x
|
|
|
2669
2669
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2670
2670
|
pygpt_net/ui/widget/vision/camera.py,sha256=DCx7h1nHruuUkU0Tw8Ay4OUVoNJhkuLsW4hIvGF5Skw,6985
|
|
2671
2671
|
pygpt_net/utils.py,sha256=r-Dum4brfBaZaHJr-ux86FfdMuMHFwyuUL2bEFirdhc,14649
|
|
2672
|
-
pygpt_net-2.
|
|
2673
|
-
pygpt_net-2.
|
|
2674
|
-
pygpt_net-2.
|
|
2675
|
-
pygpt_net-2.
|
|
2676
|
-
pygpt_net-2.
|
|
2672
|
+
pygpt_net-2.7.0.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2673
|
+
pygpt_net-2.7.0.dist-info/METADATA,sha256=j_w0rt8IMMUGTU5MUCKbnbfARb4B2qL5qppkpFxm3dY,169705
|
|
2674
|
+
pygpt_net-2.7.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2675
|
+
pygpt_net-2.7.0.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2676
|
+
pygpt_net-2.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|