pygpt-net 2.6.36__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 +12 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/chat/handler/anthropic_stream.py +164 -0
- pygpt_net/controller/chat/handler/google_stream.py +181 -0
- pygpt_net/controller/chat/handler/langchain_stream.py +24 -0
- pygpt_net/controller/chat/handler/llamaindex_stream.py +47 -0
- pygpt_net/controller/chat/handler/openai_stream.py +260 -0
- pygpt_net/controller/chat/handler/utils.py +210 -0
- pygpt_net/controller/chat/handler/worker.py +570 -0
- pygpt_net/controller/chat/handler/xai_stream.py +135 -0
- pygpt_net/controller/chat/stream.py +1 -1
- pygpt_net/controller/ctx/ctx.py +1 -1
- pygpt_net/controller/debug/debug.py +6 -6
- pygpt_net/controller/model/editor.py +3 -0
- 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/bridge/context.py +35 -35
- pygpt_net/core/bridge/worker.py +40 -16
- 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 +30 -39
- pygpt_net/core/tabs/tab.py +24 -1
- pygpt_net/data/config/config.json +10 -3
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/settings.json +105 -0
- pygpt_net/data/css/style.dark.css +2 -3
- pygpt_net/data/css/style.light.css +2 -3
- pygpt_net/data/locale/locale.de.ini +3 -1
- pygpt_net/data/locale/locale.en.ini +19 -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/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/__init__.py +5 -3
- pygpt_net/provider/api/anthropic/__init__.py +190 -29
- pygpt_net/provider/api/anthropic/audio.py +30 -0
- pygpt_net/provider/api/anthropic/chat.py +341 -0
- pygpt_net/provider/api/anthropic/image.py +25 -0
- pygpt_net/provider/api/anthropic/tools.py +266 -0
- pygpt_net/provider/api/anthropic/vision.py +142 -0
- pygpt_net/provider/api/google/chat.py +2 -2
- pygpt_net/provider/api/google/realtime/client.py +2 -2
- pygpt_net/provider/api/google/tools.py +58 -48
- pygpt_net/provider/api/google/vision.py +7 -1
- pygpt_net/provider/api/openai/chat.py +1 -0
- pygpt_net/provider/api/openai/vision.py +6 -0
- pygpt_net/provider/api/x_ai/__init__.py +247 -0
- pygpt_net/provider/api/x_ai/audio.py +32 -0
- pygpt_net/provider/api/x_ai/chat.py +968 -0
- pygpt_net/provider/api/x_ai/image.py +208 -0
- pygpt_net/provider/api/x_ai/remote.py +262 -0
- pygpt_net/provider/api/x_ai/tools.py +120 -0
- pygpt_net/provider/api/x_ai/vision.py +119 -0
- pygpt_net/provider/core/attachment/json_file.py +2 -2
- pygpt_net/provider/core/config/patch.py +28 -0
- pygpt_net/provider/llms/anthropic.py +4 -2
- pygpt_net/tools/text_editor/tool.py +4 -1
- pygpt_net/tools/text_editor/ui/dialogs.py +1 -1
- pygpt_net/ui/base/config_dialog.py +5 -11
- 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 +16 -16
- pygpt_net/ui/dialog/plugins.py +63 -60
- 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 +20 -4
- pygpt_net/ui/widget/textarea/editor.py +0 -4
- pygpt_net/ui/widget/textarea/web.py +1 -1
- {pygpt_net-2.6.36.dist-info → pygpt_net-2.6.38.dist-info}/METADATA +18 -6
- {pygpt_net-2.6.36.dist-info → pygpt_net-2.6.38.dist-info}/RECORD +95 -76
- pygpt_net/controller/chat/handler/stream_worker.py +0 -1136
- {pygpt_net-2.6.36.dist-info → pygpt_net-2.6.38.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.36.dist-info → pygpt_net-2.6.38.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.36.dist-info → pygpt_net-2.6.38.dist-info}/entry_points.txt +0 -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.
|
|
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
|
|
@@ -16,29 +16,44 @@ from PySide6.QtWidgets import QLabel, QLineEdit, QToolTip
|
|
|
16
16
|
from pygpt_net.utils import trans
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
class
|
|
19
|
+
class BaseLabel(QLabel):
|
|
20
20
|
def __init__(self, text, window=None):
|
|
21
21
|
super().__init__(text, window)
|
|
22
22
|
self.window = window
|
|
23
23
|
self.setWordWrap(True)
|
|
24
24
|
self.setContentsMargins(3, 3, 3, 3)
|
|
25
|
+
self.setTextInteractionFlags(Qt.TextSelectableByMouse)
|
|
26
|
+
|
|
27
|
+
class HelpLabel(BaseLabel):
|
|
28
|
+
def __init__(self, text, window=None):
|
|
29
|
+
super().__init__(text, window)
|
|
30
|
+
self.window = window
|
|
25
31
|
self.setProperty('class', 'label-help')
|
|
26
32
|
|
|
33
|
+
class DescLabel(BaseLabel):
|
|
34
|
+
def __init__(self, text, window=None):
|
|
35
|
+
super().__init__(text, window)
|
|
36
|
+
self.window = window
|
|
37
|
+
self.setMaximumHeight(80)
|
|
38
|
+
self.setProperty('class', 'label-desc')
|
|
39
|
+
|
|
27
40
|
|
|
28
41
|
class TitleLabel(QLabel):
|
|
29
42
|
def __init__(self, text, window=None):
|
|
30
43
|
super().__init__(text, window)
|
|
31
44
|
self.window = window
|
|
32
45
|
self.setProperty('class', 'label-title')
|
|
46
|
+
self.setTextInteractionFlags(Qt.TextSelectableByMouse)
|
|
33
47
|
|
|
34
48
|
|
|
35
49
|
class ChatStatusLabel(QLabel):
|
|
36
50
|
def __init__(self, text, window=None):
|
|
37
51
|
super().__init__(text, window)
|
|
38
52
|
self.window = window
|
|
39
|
-
self.setWordWrap(
|
|
53
|
+
self.setWordWrap(False)
|
|
40
54
|
self.setAlignment(Qt.AlignRight)
|
|
41
55
|
self.setProperty('class', 'label-chat-status')
|
|
56
|
+
self.setTextInteractionFlags(Qt.TextSelectableByMouse)
|
|
42
57
|
|
|
43
58
|
|
|
44
59
|
class UrlLabel(QLabel):
|
|
@@ -49,6 +64,7 @@ class UrlLabel(QLabel):
|
|
|
49
64
|
self.update_url()
|
|
50
65
|
self.setCursor(QCursor(Qt.PointingHandCursor))
|
|
51
66
|
self.setToolTip(url)
|
|
67
|
+
self.setTextInteractionFlags(Qt.TextSelectableByMouse)
|
|
52
68
|
# self.setWordWrap(True)
|
|
53
69
|
|
|
54
70
|
def update_url(self):
|
|
@@ -59,7 +75,7 @@ class UrlLabel(QLabel):
|
|
|
59
75
|
self.setText(text)
|
|
60
76
|
|
|
61
77
|
def mousePressEvent(self, event):
|
|
62
|
-
if self.window:
|
|
78
|
+
if self.window and hasattr(self.window, 'controller'):
|
|
63
79
|
self.window.controller.dialogs.info.open_url(self.url)
|
|
64
80
|
else:
|
|
65
81
|
QDesktopServices.openUrl(QUrl(self.url))
|
|
@@ -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
|
>
|
|
@@ -520,16 +520,16 @@ Here, you can add or manage API keys for any supported provider.
|
|
|
520
520
|
|
|
521
521
|
**+ Inline Vision and Image generation**
|
|
522
522
|
|
|
523
|
-
In **PyGPT**, this mode mirrors `ChatGPT`, allowing you to chat with models like `GPT-5`, `GPT-4`, `o1`, `o3`, `Claude`, `Gemini`, `Grok`, `Perplexity (Sonar)`, `Deepseek`, and more. It works
|
|
523
|
+
In **PyGPT**, this mode mirrors `ChatGPT`, allowing you to chat with models like `GPT-5`, `GPT-4`, `o1`, `o3`, `Claude`, `Gemini`, `Grok`, `Perplexity (Sonar)`, `Deepseek`, and more. It works with the OpenAI SDK using the `Responses API` and `ChatCompletions API. You can also use SDKs from Google GenAI, Anthropic, or xAI if the native SDK is enabled. You can set the endpoint for `ChatCompletions in Config -> Settings -> API Keys`.
|
|
524
524
|
|
|
525
|
-
**Tip:** This mode uses the provider SDK directly. If there's no native client built into the app, models like
|
|
525
|
+
**Tip:** This mode uses the provider SDK directly. If there's no native client built into the app, models like Sonar, or Llama3 are supported in Chat mode via LlamaIndex or OpenAI-compatible API endpoints. The app automatically switches to these endpoints when using non-OpenAI models. You can enable or disable the use of the native API SDK (per provider) in `Settings -> API Keys`. If the native SDK is disabled, the OpenAI SDK will be used via the compatible ChatCompletions API endpoint.
|
|
526
526
|
|
|
527
527
|
Currently built-in native clients:
|
|
528
528
|
|
|
529
|
+
- Anthropic SDK
|
|
529
530
|
- OpenAI SDK
|
|
530
531
|
- Google GenAI SDK
|
|
531
|
-
|
|
532
|
-
Support for Anthropic and xAI native clients is coming soon.
|
|
532
|
+
- xAI SDK
|
|
533
533
|
|
|
534
534
|
The main part of the interface is a chat window where you see your conversations. Below it is a message box for typing. On the right side, you can set up or change the model and system prompt. You can also save these settings as presets to easily switch between models or tasks.
|
|
535
535
|
|
|
@@ -3565,6 +3565,18 @@ 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
|
+
|
|
3575
|
+
**2.6.37 (2025-09-05)**
|
|
3576
|
+
|
|
3577
|
+
- Fixed: Function parameters sanitization in the Google Gen AI SDK.
|
|
3578
|
+
- Added: Native support for Anthropic SDK and xAI SDK (with remote tools).
|
|
3579
|
+
|
|
3568
3580
|
**2.6.36 (2025-09-04)**
|
|
3569
3581
|
|
|
3570
3582
|
- Optimized rendering of large code blocks.
|
|
@@ -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,20 @@ 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/
|
|
43
|
+
pygpt_net/controller/chat/handler/anthropic_stream.py,sha256=dfzZVVW0d0Vjy8mKya2pTJKO98ZHe5Oc6WDzFJBaJpI,5903
|
|
44
|
+
pygpt_net/controller/chat/handler/google_stream.py,sha256=uKbNui93DYVc7Vh0nHs_NJxs6UV2x1BVYsu20KL_L60,6810
|
|
45
|
+
pygpt_net/controller/chat/handler/langchain_stream.py,sha256=bEV9FT9K6vVBAVrB73sMhGcVzlt_OFAdT2HNzwxgR2I,810
|
|
46
|
+
pygpt_net/controller/chat/handler/llamaindex_stream.py,sha256=UPx7N4TeY1XZoKJOR7NdiyitD6xW9z-MygRG20AdzVQ,1851
|
|
47
|
+
pygpt_net/controller/chat/handler/openai_stream.py,sha256=xXZ0CiMmoe-MlIJGakFLHD-S2ibYPvSfioEHXW7PFFs,9117
|
|
48
|
+
pygpt_net/controller/chat/handler/utils.py,sha256=5B5fxQtLHv_WXU9clGHU_UTcKw1wd-94XL5GqeW7wOY,7235
|
|
49
|
+
pygpt_net/controller/chat/handler/worker.py,sha256=Qyqa3Bb4bjoL54M6K9ma1uT49YZ_cXBbmjh70E0QdOg,20205
|
|
50
|
+
pygpt_net/controller/chat/handler/xai_stream.py,sha256=OVgQA-Za1y73C_BhHbUggth7HdLehSIl5jnG-_7GmKI,4303
|
|
44
51
|
pygpt_net/controller/chat/image.py,sha256=2mZdFiCyej1RimfsKn0CSuu9kLOw0Za6B3lhEUEz9nU,8027
|
|
45
52
|
pygpt_net/controller/chat/input.py,sha256=5CKEHSzx1SU1F-ktIUt9VA3TLtxP5kSqWyvYzANqruY,7846
|
|
46
53
|
pygpt_net/controller/chat/output.py,sha256=j0yaQUiRMGAcjRUpxTZlC7EnoBpk84ibUhmRo22E7Xk,8390
|
|
47
54
|
pygpt_net/controller/chat/render.py,sha256=-Z-beOsEvw_tS4I8kBT5Z0n9KhDlgrEQH4x1PLDvxhE,20613
|
|
48
55
|
pygpt_net/controller/chat/response.py,sha256=yCUWpa5OdrtIoTFyX_cxId9jLDrRNyqj-NT_9RPFJ4E,11413
|
|
49
|
-
pygpt_net/controller/chat/stream.py,sha256=
|
|
56
|
+
pygpt_net/controller/chat/stream.py,sha256=fW3GIKD8lMpfOOygMFTaSwNoh4ppaD8EY5Hx4BLhwIw,4592
|
|
50
57
|
pygpt_net/controller/chat/text.py,sha256=FM3HHUQPP9nRoGuJH1L2xUMi_ye5pq33xoqAvN_3Mg8,8746
|
|
51
58
|
pygpt_net/controller/chat/vision.py,sha256=ZvbdMPf5SzPmIfjJUH4To2UJi41MuELkGIj5mxACxdc,3361
|
|
52
59
|
pygpt_net/controller/command/__init__.py,sha256=xHOjVYXKiHT-FEXNSGJZoYcU8SslQ2vr6DMqJcVPDNE,511
|
|
@@ -65,11 +72,11 @@ pygpt_net/controller/config/field/textarea.py,sha256=Ln545IHzXBeFIjnfMIpmlUr-V3w
|
|
|
65
72
|
pygpt_net/controller/config/placeholder.py,sha256=-PWPNILPVkxMsY64aYnKTWvgUIvx7KA2Nwfd2LW_K30,16711
|
|
66
73
|
pygpt_net/controller/ctx/__init__.py,sha256=0wH7ziC75WscBW8cxpeGBwEz5tolo_kCxGPoz2udI_E,507
|
|
67
74
|
pygpt_net/controller/ctx/common.py,sha256=1jjRfEK1S4IqnzEGg1CIF-QqSN_83NLpaVtfB610NcM,6592
|
|
68
|
-
pygpt_net/controller/ctx/ctx.py,sha256=
|
|
75
|
+
pygpt_net/controller/ctx/ctx.py,sha256=pnczNTAj6fCE0s7NbIqZxpbI6zNHBqz-qYccpcCeWJc,39165
|
|
69
76
|
pygpt_net/controller/ctx/extra.py,sha256=WApWjnIfl3SoI0VZVbptvjjqhFPJl-dSfqW12tlBHrY,8599
|
|
70
77
|
pygpt_net/controller/ctx/summarizer.py,sha256=UNsq-JTARblGNT97uSMpZEVzdUuDJ8YA2j2dw9R2X3o,3079
|
|
71
78
|
pygpt_net/controller/debug/__init__.py,sha256=dOJGTICjvTtrPIEDOsxCzcOHsfu8AFPLpSKbdN0q0KI,509
|
|
72
|
-
pygpt_net/controller/debug/debug.py,sha256=
|
|
79
|
+
pygpt_net/controller/debug/debug.py,sha256=QkZBL3wo2Ccyr3rKsSFtzLSdmO-Vql3JylCr1UTTmAQ,8851
|
|
73
80
|
pygpt_net/controller/dialogs/__init__.py,sha256=jI2WisG3lzbeyf__1Y7g7wWrxlr1QnYBDDt4t_3eeYk,513
|
|
74
81
|
pygpt_net/controller/dialogs/confirm.py,sha256=PgVOJS31quY24Fs9XhFplcMnKweKbAxGWDKSjlBgLJU,16860
|
|
75
82
|
pygpt_net/controller/dialogs/debug.py,sha256=v6E85vyCwfaDG9XZysxhBjRwlrDkbYC-NxUnDamNRpk,5980
|
|
@@ -103,8 +110,8 @@ pygpt_net/controller/media/media.py,sha256=Fox4li3HRGL0wI9yJ6WyaiFSBm5znuumET7ro
|
|
|
103
110
|
pygpt_net/controller/mode/__init__.py,sha256=1Kcz0xHc2IW_if9S9eQozBUvIu69eLAe7T-Re2lJxhk,508
|
|
104
111
|
pygpt_net/controller/mode/mode.py,sha256=WdaNA7-n6mTkkRkKIMUltxBC_vRAwWzkUEt9rOpIRBM,7840
|
|
105
112
|
pygpt_net/controller/model/__init__.py,sha256=mQXq9u269D8TD3u_44J6DFFyHKkaZplk-tRFCssBGbE,509
|
|
106
|
-
pygpt_net/controller/model/editor.py,sha256=
|
|
107
|
-
pygpt_net/controller/model/importer.py,sha256=
|
|
113
|
+
pygpt_net/controller/model/editor.py,sha256=3DywV3VL80CSpxFCADCWmULuXdV7ILvdkAqty17zsaA,16536
|
|
114
|
+
pygpt_net/controller/model/importer.py,sha256=9O35I0DjFOudWS41n5WPsKYFQm_K0XHOUKXvJt7l5kI,23837
|
|
108
115
|
pygpt_net/controller/model/model.py,sha256=E0VfgIwNn75pjnB_v3RnqHr6jV1Eeua8VgpreQlA8vI,9132
|
|
109
116
|
pygpt_net/controller/notepad/__init__.py,sha256=ZbMh4D6nsGuI4AwYMdegfij5ubmUznEE_UcqSSDjSPk,511
|
|
110
117
|
pygpt_net/controller/notepad/notepad.py,sha256=Mn3XOrNq8_7EHq3Jf9fMyJ6YzHRawczRXfoZbn2f7L4,11155
|
|
@@ -113,13 +120,13 @@ pygpt_net/controller/painter/capture.py,sha256=X3TqnNypxT_wngkQ4ovfS9glQwoGHyM-p
|
|
|
113
120
|
pygpt_net/controller/painter/common.py,sha256=SArFGHN_lwt82iJoHr8keHt4WLEM6uv9gKPURlluyVo,15920
|
|
114
121
|
pygpt_net/controller/painter/painter.py,sha256=_M3iqeFPoFwtQJzwcpIVvMRT2YZa819-0wvfd6nvj2Y,2847
|
|
115
122
|
pygpt_net/controller/plugins/__init__.py,sha256=iocY37De1H2Nh7HkC7ZYvUus2xzcckslgr5a4PwtQII,511
|
|
116
|
-
pygpt_net/controller/plugins/plugins.py,sha256=
|
|
123
|
+
pygpt_net/controller/plugins/plugins.py,sha256=ULxjobGy5oJY9UTjx75jsFj49zTlnOD2llEyQSH275A,15269
|
|
117
124
|
pygpt_net/controller/plugins/presets.py,sha256=8EsEwpU2MjWMQu1kcY4JTcyqqN8pjBrcxA2uW2tFU_A,11674
|
|
118
125
|
pygpt_net/controller/plugins/settings.py,sha256=7eHGbn1DDCnLJfOGIqfdIPrIyi_QMkTmjyruaGZwSnw,6107
|
|
119
126
|
pygpt_net/controller/presets/__init__.py,sha256=Bb9_aAvGxQcKCW2fvG5CAJ6ZUwNYN3GaCf3BXB9eGfI,511
|
|
120
127
|
pygpt_net/controller/presets/editor.py,sha256=AHVo4gkiRQl5QUndC8D-CQ4GEAiq7zk3dGnvJ53Om3o,39115
|
|
121
128
|
pygpt_net/controller/presets/experts.py,sha256=dfPKmAPO-7gaUD2ILs3lR005ir32G5vV-Sa5TGEHwOU,5820
|
|
122
|
-
pygpt_net/controller/presets/presets.py,sha256=
|
|
129
|
+
pygpt_net/controller/presets/presets.py,sha256=TL-AhDgIXm8bJwD84xidECuV5RDQjHLZfDIXNxpTH0Q,21921
|
|
123
130
|
pygpt_net/controller/realtime/__init__.py,sha256=MhvJb5wBqcpX6uylof01qEDRdU3SepTD88sU2lXNtIQ,519
|
|
124
131
|
pygpt_net/controller/realtime/manager.py,sha256=qtifO3sAtT1ROtRs9N_8t6A8_wgxOxxGl-PfLHzhdxY,1762
|
|
125
132
|
pygpt_net/controller/realtime/realtime.py,sha256=VFeunTSdyD7dxh_5l1q6PnLrF-egQQdqxrYB-TOEBQg,10710
|
|
@@ -199,8 +206,8 @@ pygpt_net/core/audio/output.py,sha256=FTCQap9jamhhwYo2qE71L-QdqAi25P8O8OYlI8aSzx
|
|
|
199
206
|
pygpt_net/core/audio/whisper.py,sha256=ZLD5KO3hbFuahQbKEusBitTeEkNunlhHMtO6sdS8tWA,1075
|
|
200
207
|
pygpt_net/core/bridge/__init__.py,sha256=RCrT3CuP8-Gf_APr5mBXyNcRigrfHcgS-SYVVP_9flE,510
|
|
201
208
|
pygpt_net/core/bridge/bridge.py,sha256=1pTbVza_CZMdrnXiRxq9sDROeJtMNofBMMkFzA1VQOE,10496
|
|
202
|
-
pygpt_net/core/bridge/context.py,sha256=
|
|
203
|
-
pygpt_net/core/bridge/worker.py,sha256=
|
|
209
|
+
pygpt_net/core/bridge/context.py,sha256=YBqeR5PgV0x5KK5otN-DYQNSqQtVaNddtRLDwSSLC2Y,7154
|
|
210
|
+
pygpt_net/core/bridge/worker.py,sha256=RukudDq6IAxcg2w-wfQmu7Ia-YTT3NPgAybr1OMpxF4,8498
|
|
204
211
|
pygpt_net/core/calendar/__init__.py,sha256=AyzoNqYgxV35CMEzoi_SCSsQh4ehg_Wu_2nsK3xsbyg,512
|
|
205
212
|
pygpt_net/core/calendar/calendar.py,sha256=ao9kQk6Xjse95m1TbL1Mlbo1k1Q8D9eGc10L-71G9TY,7227
|
|
206
213
|
pygpt_net/core/camera/__init__.py,sha256=cny2EajFmwkFdo_pUkErJY4BhpyHp1kJVDcTCOOvkjY,510
|
|
@@ -213,15 +220,15 @@ pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-
|
|
|
213
220
|
pygpt_net/core/command/__init__.py,sha256=3pjRwUt1VGN8P5HE1i2rokNhxtiCL-drc_mmu4tDe-o,512
|
|
214
221
|
pygpt_net/core/command/command.py,sha256=Ix8Y_T8Ayn2a86tZdVGcFJ5VEoSW2IkcU-_Aog50Jfs,23334
|
|
215
222
|
pygpt_net/core/ctx/__init__.py,sha256=hsqzIDxcwIIjF-7Zr5SkkhQV9LLmIYndQ_dohK20bg0,507
|
|
216
|
-
pygpt_net/core/ctx/bag.py,sha256=
|
|
223
|
+
pygpt_net/core/ctx/bag.py,sha256=j_10HBqkswdz5vW140SuGvJRf7E7J7hQyz6DCVe5D44,1570
|
|
217
224
|
pygpt_net/core/ctx/container.py,sha256=5nlgM_8laH0igUASILD5zIiK3YhB-BA9pTKI0jVqHeQ,4938
|
|
218
225
|
pygpt_net/core/ctx/ctx.py,sha256=vhHFTvEY-i2d2dHuLeRc2Jqav_dzJ1Beytp4w1GDqrg,41340
|
|
219
226
|
pygpt_net/core/ctx/idx.py,sha256=3Zi-48OWlU80si-Z7mVjnsc7TYATXK9g1dM0M5sXsV4,8167
|
|
220
227
|
pygpt_net/core/ctx/output.py,sha256=ecb7tgU7C9Ip5ww16M-HejScN1Btp9IlPgzQyadOCls,8829
|
|
221
|
-
pygpt_net/core/ctx/reply.py,sha256=
|
|
228
|
+
pygpt_net/core/ctx/reply.py,sha256=nm-TzBoIDE9GrYyNjtIT7DvJVf8duAS2fVMeInHNEH4,2324
|
|
222
229
|
pygpt_net/core/db/__init__.py,sha256=6VXnRrxVi5p1Ou9UA_rd_x09upFYQSZrtoKnKbrALqY,512
|
|
223
230
|
pygpt_net/core/db/database.py,sha256=H9tCfmnFH-h6cU13bqT8bpeU5SHR6UAu9np50__pdMY,16431
|
|
224
|
-
pygpt_net/core/db/viewer.py,sha256=
|
|
231
|
+
pygpt_net/core/db/viewer.py,sha256=V8B4HE2Jf0ejmhw_p63TNQiUIoIeJ-6LFpmgHA8EeoI,8657
|
|
225
232
|
pygpt_net/core/debug/__init__.py,sha256=HDYwiKeh5TOxxxpecj6FXqIwwdZIh9FytCgC2vl3ZMY,509
|
|
226
233
|
pygpt_net/core/debug/agent.py,sha256=BylgNCl8n8aV2GCK5cQZVwobm1kjH_ETtgEiObilvgQ,1922
|
|
227
234
|
pygpt_net/core/debug/assistants.py,sha256=fUYVdMsdtfWd3njirvw2lvBv7CgPHdz_9ZSDVr2VsEo,2672
|
|
@@ -335,10 +342,10 @@ pygpt_net/core/render/markdown/renderer.py,sha256=PER4BxQUU2zjyMq-flM83_cNcjFyJr
|
|
|
335
342
|
pygpt_net/core/render/plain/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
|
336
343
|
pygpt_net/core/render/plain/body.py,sha256=qupyjx_P5DG_82qV0xf5LJ9Fr9y5w2sseVwu6dPG8xE,3866
|
|
337
344
|
pygpt_net/core/render/plain/helpers.py,sha256=tWbdJZBfjnuHLAUDVYLTfv3Vt-h7XN1tg65JENDrMLw,1420
|
|
338
|
-
pygpt_net/core/render/plain/pid.py,sha256=
|
|
345
|
+
pygpt_net/core/render/plain/pid.py,sha256=Zp-TNjKI3yReuSJxC8qRkOh2ou7zK6abFbXjebbpsO8,1484
|
|
339
346
|
pygpt_net/core/render/plain/renderer.py,sha256=mb1d6UBbuOs_fotG9fZPdBk95i8n0UMCJNnF4an8E0o,15357
|
|
340
347
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
|
341
|
-
pygpt_net/core/render/web/body.py,sha256=
|
|
348
|
+
pygpt_net/core/render/web/body.py,sha256=rMbIHJAcEayKkwIrjdxF85MFS0wUQGGmsylskZy7cQM,77100
|
|
342
349
|
pygpt_net/core/render/web/helpers.py,sha256=KAmUNUuIk8gArCMkyWcK_Ak0uxJOuIULt5eOA-jnjJM,5757
|
|
343
350
|
pygpt_net/core/render/web/parser.py,sha256=pDFc9Tf8P-jvrDilXyT1fukcQHbixHRJ9Dn9hF10Gko,12892
|
|
344
351
|
pygpt_net/core/render/web/pid.py,sha256=nCbwS5MOyfp8vn4pME6JYgRtnd-4U74FEntXYJM6GqY,4180
|
|
@@ -347,7 +354,7 @@ pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9
|
|
|
347
354
|
pygpt_net/core/settings/__init__.py,sha256=GQ6_gJ2jf_Chm7ZuZLvkcvEh_sfMDVMBieeoJi2iPI4,512
|
|
348
355
|
pygpt_net/core/settings/settings.py,sha256=Ix06y-gJ3q7NJDf55XAWBBYulBLpinBqzYqsytH_9mo,8686
|
|
349
356
|
pygpt_net/core/tabs/__init__.py,sha256=reDufOWWDQsZwfvtnXrFQROEdl9nqoKI7S3bFA3D9As,508
|
|
350
|
-
pygpt_net/core/tabs/tab.py,sha256=
|
|
357
|
+
pygpt_net/core/tabs/tab.py,sha256=llgZwxN4CYIkc1dJ8XIi78ulnVQDaHkz2F4nhiM2SZg,5684
|
|
351
358
|
pygpt_net/core/tabs/tabs.py,sha256=qppWQsyBDZTpi-D6SbPZaFOuEKzjrGn_dPLfilGvKFE,30796
|
|
352
359
|
pygpt_net/core/text/__init__.py,sha256=6aEjrckL5kWVfyxpi5mVpSPB6XWV83e_30g_V5meL1M,19
|
|
353
360
|
pygpt_net/core/text/finder.py,sha256=NBzYUE_Av3oZH8RlCrSe6EeLcHpfz79WJV_vSK0P1jI,6656
|
|
@@ -383,8 +390,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
383
390
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
384
391
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
385
392
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
386
|
-
pygpt_net/data/config/config.json,sha256=
|
|
387
|
-
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
|
|
388
395
|
pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
|
|
389
396
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
390
397
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -419,7 +426,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
|
419
426
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
|
420
427
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
|
421
428
|
pygpt_net/data/config/presets/joke_expert.json,sha256=jjcoIYEOaEp8kLoIbecxQROiq4J3Zess5w8_HmngPOY,671
|
|
422
|
-
pygpt_net/data/config/settings.json,sha256=
|
|
429
|
+
pygpt_net/data/config/settings.json,sha256=gGPvri3X3QPvRqGQm27A0m8wq4K9daMKYTH6sfu-j5w,81153
|
|
423
430
|
pygpt_net/data/config/settings_section.json,sha256=pcfOFk0_eIRaa4nKRxhSVzDXe531YxWJgVx5rLV0J9U,1150
|
|
424
431
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
|
425
432
|
pygpt_net/data/css/fix_windows.dark.css,sha256=7hGbT_qI5tphYC_WlFpJRDAcmjBb0AQ2Yc-y-_Zzf2M,161
|
|
@@ -428,8 +435,8 @@ pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUz
|
|
|
428
435
|
pygpt_net/data/css/markdown.dark.css,sha256=ixAwuT69QLesZttKhO4RAy-QukplZwwfXCZsWLN9TP4,730
|
|
429
436
|
pygpt_net/data/css/markdown.light.css,sha256=UZdv0jtuFgJ_4bYWsDaDQ4X4AP9tVNLUHBAckC_oD8k,833
|
|
430
437
|
pygpt_net/data/css/style.css,sha256=dgVlVqEL38zF-4Ok-y1rwfALC8zETJAIuIbkwat_hTk,337
|
|
431
|
-
pygpt_net/data/css/style.dark.css,sha256=
|
|
432
|
-
pygpt_net/data/css/style.light.css,sha256=
|
|
438
|
+
pygpt_net/data/css/style.dark.css,sha256=J1-QK93ZY2X0nJmuZSZThy9mSuW3mJtk2x4gO9sq-ms,2332
|
|
439
|
+
pygpt_net/data/css/style.light.css,sha256=qJumh5HSwzGiDPoYKcKz_-8cOvV8D9QM74PtxnHBOqE,4914
|
|
433
440
|
pygpt_net/data/css/web-blocks.css,sha256=3JnSMKzMHt6_ZXw6HteEDvxfmvtyk6SCr_G7B6Ralr4,7417
|
|
434
441
|
pygpt_net/data/css/web-blocks.dark.css,sha256=eU8-uXcvu4weRp55CZmhB-6nK7P6n9m-OyJwGV95rJc,1514
|
|
435
442
|
pygpt_net/data/css/web-blocks.darkest.css,sha256=kRv3qqTbjZxEITtQUm3RmrkGoZosMZjs423lUyTFyAQ,1466
|
|
@@ -1646,14 +1653,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
|
1646
1653
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
|
1647
1654
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
|
1648
1655
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1649
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
|
1650
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1651
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
|
1652
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
|
1653
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
|
1654
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
|
1655
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
|
1656
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
|
1656
|
+
pygpt_net/data/locale/locale.de.ini,sha256=w8j0eNT4aIb5qPD1iEIA6YVCEPG6Actuloj5SLn5uWM,105234
|
|
1657
|
+
pygpt_net/data/locale/locale.en.ini,sha256=yN9_12f_enbGmqShTSWbKpRyTa2LI4QhWZPucnMAP7w,98616
|
|
1658
|
+
pygpt_net/data/locale/locale.es.ini,sha256=7VKUWtfxuxS6fXmulxmtm2D2GgNBwrTZ1XKPtYsQkVs,105876
|
|
1659
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=zahodKDlbtsUbEayfHn3ei_ZrH1AW2duyDdSaEaaMd8,108644
|
|
1660
|
+
pygpt_net/data/locale/locale.it.ini,sha256=v84adU1dclwXMMpyOEFU6qsaov_oe8sZ8rxU8WzlYnU,103616
|
|
1661
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=GmApqIByCfOOqb1_Evqag2ooj0YE-you6IXzWHYphag,103220
|
|
1662
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=tKWvmfHMK9G5mazNXWniE7RRQUjvt3JpPRGrOOSQFz8,144192
|
|
1663
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=uvyXSSBdbySX7BUmt9BAqG0KP7cKa9x36PvlH3pEJ0M,92267
|
|
1657
1664
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
|
1658
1665
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
|
|
1659
1666
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
|
@@ -1840,16 +1847,16 @@ pygpt_net/fonts_rc.py,sha256=EVwgIVDq-Sudy9DYpHbzuhQ_jd9pUuQ8e3-nycPzj3A,3238283
|
|
|
1840
1847
|
pygpt_net/icons.qrc,sha256=7etxjwGtJm61IfTFIloyO7yonX06Jc1ZoSniGUFTho4,14981
|
|
1841
1848
|
pygpt_net/icons_rc.py,sha256=FWRllE_kudX-jI4lOto-Pvf5NDCFDrpAxuQgXgldg6k,92180
|
|
1842
1849
|
pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
1843
|
-
pygpt_net/item/assistant.py,sha256=
|
|
1844
|
-
pygpt_net/item/attachment.py,sha256=
|
|
1845
|
-
pygpt_net/item/calendar_note.py,sha256=
|
|
1846
|
-
pygpt_net/item/ctx.py,sha256=
|
|
1847
|
-
pygpt_net/item/index.py,sha256=
|
|
1848
|
-
pygpt_net/item/mode.py,sha256=
|
|
1849
|
-
pygpt_net/item/model.py,sha256=
|
|
1850
|
-
pygpt_net/item/notepad.py,sha256=
|
|
1851
|
-
pygpt_net/item/preset.py,sha256=
|
|
1852
|
-
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
|
|
1853
1860
|
pygpt_net/js.qrc,sha256=OqPzGN6U2Y-uENLFlfDY2BxywCAnU0uds4QcbB7me5Q,542
|
|
1854
1861
|
pygpt_net/js_rc.py,sha256=5f7l2zJIzW-gHHndytWVXz2sjKyR924GCpOSmDX9sZI,2456868
|
|
1855
1862
|
pygpt_net/launcher.py,sha256=bqR175OVZ_Q3yKsIM5NiHB1S1b-vXrIglsQyr6zyrWU,10125
|
|
@@ -1913,7 +1920,7 @@ pygpt_net/plugin/cmd_custom/worker.py,sha256=dGf5E2Mmdojzs2woqwBawXxvWmnByZZ81sJ
|
|
|
1913
1920
|
pygpt_net/plugin/cmd_files/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1914
1921
|
pygpt_net/plugin/cmd_files/config.py,sha256=2vjT71vIINPdd4xEanJVIa5sc-p9cYO2vCyBO7TWYlo,13601
|
|
1915
1922
|
pygpt_net/plugin/cmd_files/output.py,sha256=bJpmVgaUoNrNozKAygw_B6fCHlODrTQ6U9uBNph2Z3E,2136
|
|
1916
|
-
pygpt_net/plugin/cmd_files/plugin.py,sha256=
|
|
1923
|
+
pygpt_net/plugin/cmd_files/plugin.py,sha256=9Qvyqch_Ny2vkudmiVfTG9x0tlAGFAmeVFE4ZmG3VZQ,5070
|
|
1917
1924
|
pygpt_net/plugin/cmd_files/worker.py,sha256=8UxhnEwhw-qQfF_ZNUbI5B6q4CevHMwc7zfo7JOOu0Q,35059
|
|
1918
1925
|
pygpt_net/plugin/cmd_history/__init__.py,sha256=zklvSPXcIifknHSHEBxV_Jg0Ja6xbidbVSle-4uEJ28,511
|
|
1919
1926
|
pygpt_net/plugin/cmd_history/config.py,sha256=RrjssJshpdkyRFQ8u8y6KI2Nrqxr3IwZ6fu7uIc0Tvg,9714
|
|
@@ -2043,18 +2050,23 @@ pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py,sha256
|
|
|
2043
2050
|
pygpt_net/provider/agents/openai/bots/research_bot/manager.py,sha256=n3BJiEogkfPvWsbA7ieHWnMoLve5koQ1ihAKO5ty7jk,7310
|
|
2044
2051
|
pygpt_net/provider/agents/openai/evolve.py,sha256=hBsYIokVCWLWB0syHoLQqWgEiEfR9JhmiiaETjQMx1c,22976
|
|
2045
2052
|
pygpt_net/provider/agents/openai/supervisor.py,sha256=cUsVns-ZZ7kK78SNcHRt3UgfePjB6NWCOrauSfn_BnI,13229
|
|
2046
|
-
pygpt_net/provider/api/__init__.py,sha256=
|
|
2047
|
-
pygpt_net/provider/api/anthropic/__init__.py,sha256=
|
|
2053
|
+
pygpt_net/provider/api/__init__.py,sha256=Daaev4XktvnciogLCfXcuokzrBUrbeoeRfU7usY5Svw,933
|
|
2054
|
+
pygpt_net/provider/api/anthropic/__init__.py,sha256=VbWrQtSZCHVWniT78siL6WlUMeKjz3n5lEvrTXSw0J8,7495
|
|
2055
|
+
pygpt_net/provider/api/anthropic/audio.py,sha256=AUfcTW2ysT9YSNyz7aNQGuXbdNnX9H-PHTStiIe46-o,1087
|
|
2056
|
+
pygpt_net/provider/api/anthropic/chat.py,sha256=E13TzVCd1F-WqqzFWz8zEMh935VgIcnE290rLfHK0XM,12395
|
|
2057
|
+
pygpt_net/provider/api/anthropic/image.py,sha256=BrWrGsz_f2bAG8f5s25YdwtV6HJKLB6Tk2xhtD85RMc,935
|
|
2058
|
+
pygpt_net/provider/api/anthropic/tools.py,sha256=B5RdUyzKg3i8RefIzLsAs3plgjzH9_bnIGFHk9aZYbk,10027
|
|
2059
|
+
pygpt_net/provider/api/anthropic/vision.py,sha256=amP0FNHrJM-iSVO4j0AkVDYo1JFdmg0e5IqTuaEqeCM,4377
|
|
2048
2060
|
pygpt_net/provider/api/google/__init__.py,sha256=80rxRb9c1bhDylmiT-GT-4KLp5X8acBSEQXbkHH2VaA,12348
|
|
2049
2061
|
pygpt_net/provider/api/google/audio.py,sha256=Ymq_Q3WofC-8TfYOGu5NmNuRW_omvl8UCS3Q0WEBxnA,4149
|
|
2050
|
-
pygpt_net/provider/api/google/chat.py,sha256=
|
|
2062
|
+
pygpt_net/provider/api/google/chat.py,sha256=zD3vcYRS6uJWJ__3qrUo2shyFpf6kQD2utxJe9MjRHY,23082
|
|
2051
2063
|
pygpt_net/provider/api/google/image.py,sha256=OSu4y5q36bVVirnw0Uh5k9PqmWHiXDuS8Api_MKSwt0,16794
|
|
2052
2064
|
pygpt_net/provider/api/google/realtime/__init__.py,sha256=Ism0i9dihgxYuzQHgA6vzmsswZnBOAvVqQp0j5G2JLQ,519
|
|
2053
|
-
pygpt_net/provider/api/google/realtime/client.py,sha256=
|
|
2065
|
+
pygpt_net/provider/api/google/realtime/client.py,sha256=w3aYhj4PSXBX-eIginaofWTRWe2m4NydM9iKOk-6Y58,80131
|
|
2054
2066
|
pygpt_net/provider/api/google/realtime/realtime.py,sha256=2I3rjeswcIk2SZbTtHqKVZlPpe-KJ1fPwyWfE4MPsMY,7360
|
|
2055
|
-
pygpt_net/provider/api/google/tools.py,sha256=
|
|
2067
|
+
pygpt_net/provider/api/google/tools.py,sha256=YtrnkTQb8NrKpB6MfdYEqq_6Vhz-250eJNDKRhtmD_k,8856
|
|
2056
2068
|
pygpt_net/provider/api/google/video.py,sha256=_D844RPVle9LJdPwVOUhWqwA1TGrM-_LamFj8sEtNeo,14439
|
|
2057
|
-
pygpt_net/provider/api/google/vision.py,sha256=
|
|
2069
|
+
pygpt_net/provider/api/google/vision.py,sha256=yWeA86v5FPvhm5rYiNZJ3cR9KdzYQp_AdGd1tyldphc,4026
|
|
2058
2070
|
pygpt_net/provider/api/openai/__init__.py,sha256=yFmfhpyEGHwjIhTOXw5eMxnCQljwdml2tknBuaBPnIk,11467
|
|
2059
2071
|
pygpt_net/provider/api/openai/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2060
2072
|
pygpt_net/provider/api/openai/agents/client.py,sha256=opH2DnYPVRuWvc284AMjJBWUhipV8hdWcs3yqWA2g7s,2372
|
|
@@ -2065,7 +2077,7 @@ pygpt_net/provider/api/openai/agents/response.py,sha256=dPOD_uEjy4k54AU6v_TB3QFk
|
|
|
2065
2077
|
pygpt_net/provider/api/openai/agents/utils.py,sha256=3Ll2c10Vq7PoK7kWv98RmJsFmghynAsyNzkXbXMek6I,2035
|
|
2066
2078
|
pygpt_net/provider/api/openai/assistants.py,sha256=xYGVnnqQDiUUayWA8tzLhl5y92naOoHP2oP0y4ABo0I,14090
|
|
2067
2079
|
pygpt_net/provider/api/openai/audio.py,sha256=frHElxYVaHYkNDCMJ9tQMoGqxSaZ-s5oPlAEHUAckkc,2032
|
|
2068
|
-
pygpt_net/provider/api/openai/chat.py,sha256=
|
|
2080
|
+
pygpt_net/provider/api/openai/chat.py,sha256=vW8bSysZi2nsPz4sWgMLqh1oNK-WSoIHn6nEpXHC4Q4,18001
|
|
2069
2081
|
pygpt_net/provider/api/openai/completion.py,sha256=9nWYcwvqwu16Qg1mWhWLAEzMTj-5ff40WN_O94b8T2o,6231
|
|
2070
2082
|
pygpt_net/provider/api/openai/computer.py,sha256=fNTSjIYBoOrW7hLnc-KQuvffKniSai8O7oM8DTv6Tds,11814
|
|
2071
2083
|
pygpt_net/provider/api/openai/container.py,sha256=jWsFkgofa5SKjztQnJZdfhryX-dYAceijv9F3iQkbl0,4922
|
|
@@ -2079,10 +2091,17 @@ pygpt_net/provider/api/openai/store.py,sha256=8H2SQH9wU9Yoeai6gqajbJ1N33CSv26IA5
|
|
|
2079
2091
|
pygpt_net/provider/api/openai/summarizer.py,sha256=vuJz6mj9F9Psiat0d-fn1zNGgXc-WkXJyi0jrvijO6E,2978
|
|
2080
2092
|
pygpt_net/provider/api/openai/tools.py,sha256=Oh9mnGIXfnwoRTx6f-9ZItD-v3loyr4OtcvhmgroyrY,3146
|
|
2081
2093
|
pygpt_net/provider/api/openai/utils.py,sha256=O0H0EPb4lXUMfE1bFdWB56yuWLv7M5owVIGWRyDDv-E,855
|
|
2082
|
-
pygpt_net/provider/api/openai/vision.py,sha256=
|
|
2094
|
+
pygpt_net/provider/api/openai/vision.py,sha256=dsG-pAr1MP-A1aQLc3Yn2QzPNwMlPGQEi4LM1ry3YY4,12883
|
|
2083
2095
|
pygpt_net/provider/api/openai/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2084
2096
|
pygpt_net/provider/api/openai/worker/assistants.py,sha256=z1fZzl59FYMVXxv48r9JVIzSCFgLzYOeKXhreZcIzO8,21538
|
|
2085
2097
|
pygpt_net/provider/api/openai/worker/importer.py,sha256=RsjDs5le-kH7fIgmkzrlbc2iffVDjEAc71UZq_CFw5k,16378
|
|
2098
|
+
pygpt_net/provider/api/x_ai/__init__.py,sha256=PIDdGl8bpQ28bo8uhH2OlHQ93aE8CzrNCNObtpWtiZI,7948
|
|
2099
|
+
pygpt_net/provider/api/x_ai/audio.py,sha256=6ePxjNqokUPmiuh0utC8udgFU9Jha5ScBJ6TKcIDZR8,1065
|
|
2100
|
+
pygpt_net/provider/api/x_ai/chat.py,sha256=uiWabPG6QmWVxbwt-4gNLCzL-zK2rmJVdr9HB7u826k,38257
|
|
2101
|
+
pygpt_net/provider/api/x_ai/image.py,sha256=kko5AMKs7XcjgdvrlpT90h4vvIR3_eQkOjJ1q5TvHn4,7983
|
|
2102
|
+
pygpt_net/provider/api/x_ai/remote.py,sha256=XJ5JHGc46bc-jD2jtgch2aya3PQr2q_Xp53UAASakiE,10251
|
|
2103
|
+
pygpt_net/provider/api/x_ai/tools.py,sha256=JpmAwHiru_DJ9hETkKmq1aePdDLSLH2B4FH1VqfaAF4,4299
|
|
2104
|
+
pygpt_net/provider/api/x_ai/vision.py,sha256=Unqsdb9rIzwSoq4icMNET7XG17QQUC32rTNhA9lLh18,3819
|
|
2086
2105
|
pygpt_net/provider/audio_input/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
|
|
2087
2106
|
pygpt_net/provider/audio_input/base.py,sha256=2PxE9QeEd4fODLYx_sO-1iVdAFOxHVHjtse7-GIqix8,1826
|
|
2088
2107
|
pygpt_net/provider/audio_input/bing_speech_recognition.py,sha256=Rmpo7yaU8pU7r8KaH57U8Lc-NVE9EpF5wToL_qpMKhw,2825
|
|
@@ -2119,7 +2138,7 @@ pygpt_net/provider/core/assistant_store/db_sqlite/utils.py,sha256=O_4sbgxfk1S6eM
|
|
|
2119
2138
|
pygpt_net/provider/core/assistant_store/json_file.py,sha256=mi5LgclT597jfE7nDcc62TpIwDge3zV1r6igJ_tJqi8,4377
|
|
2120
2139
|
pygpt_net/provider/core/attachment/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2121
2140
|
pygpt_net/provider/core/attachment/base.py,sha256=ARG3WPyrBTOQ3pPt4OIwuCA6hqFZiRknrRh98AHOwlw,1293
|
|
2122
|
-
pygpt_net/provider/core/attachment/json_file.py,sha256=
|
|
2141
|
+
pygpt_net/provider/core/attachment/json_file.py,sha256=IoBEKVZd8FvG-1VG0XKbgGfYMoFPgQlHLkNk_L0E1dw,5708
|
|
2123
2142
|
pygpt_net/provider/core/calendar/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2124
2143
|
pygpt_net/provider/core/calendar/base.py,sha256=COQNCPVZmwVNihxTaxeEc6zaXEQ6WYsIiz3-L9NhbMQ,1393
|
|
2125
2144
|
pygpt_net/provider/core/calendar/db_sqlite/__init__.py,sha256=iCnDHWWjGP9uehvkmUEPhSyphiEPI-TRK3mqOTrKrXo,513
|
|
@@ -2129,7 +2148,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
|
2129
2148
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2130
2149
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
|
2131
2150
|
pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
|
|
2132
|
-
pygpt_net/provider/core/config/patch.py,sha256=
|
|
2151
|
+
pygpt_net/provider/core/config/patch.py,sha256=F8r0qk4yWxCtkR8abKDeXucqoerG_w08GO4mXIPrpNg,126027
|
|
2133
2152
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2134
2153
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
|
2135
2154
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=0dP8VhI4bnFsQQKxAkaleKFlyaMycDD_cnE7gBCa57Y,512
|
|
@@ -2178,7 +2197,7 @@ pygpt_net/provider/core/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
2178
2197
|
pygpt_net/provider/core/prompt/base.py,sha256=EYUA30T1QwJ9RSD0uW5x6VEstgIXNwgutmaXI64BWhw,1304
|
|
2179
2198
|
pygpt_net/provider/core/prompt/json_file.py,sha256=5yfW1RgEa36tX4-ntze4PavWLry0YG43D2LO23_MrzE,4838
|
|
2180
2199
|
pygpt_net/provider/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2181
|
-
pygpt_net/provider/llms/anthropic.py,sha256=
|
|
2200
|
+
pygpt_net/provider/llms/anthropic.py,sha256=B66BkfZHK1AKKLmNo0Lk3Uk3xsXlGEOPaV3lL858qUY,3616
|
|
2182
2201
|
pygpt_net/provider/llms/azure_openai.py,sha256=QxgK3KeqEEa38B-ezro6AJyd4D4bR9d8E3fW0a6Mc0Q,3812
|
|
2183
2202
|
pygpt_net/provider/llms/base.py,sha256=D6GKahfZNUzihkCo7gQYGzkHG6XH8d_P5Y5iAnLboXM,6359
|
|
2184
2203
|
pygpt_net/provider/llms/deepseek_api.py,sha256=Jljj6Ce123q3eCrIizfFPQIsf47OzRaBK4jIbNZdLzg,3267
|
|
@@ -2315,9 +2334,9 @@ pygpt_net/tools/media_player/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
2315
2334
|
pygpt_net/tools/media_player/ui/dialogs.py,sha256=T1Zu_Fpm_KeszS203BRXW2WJmDVN4tGc9wEVDhHOyzs,3590
|
|
2316
2335
|
pygpt_net/tools/media_player/ui/widgets.py,sha256=DFEUwrQpxc_cw2k9Tpj_kz0ESZgjhA6OiZJmo5T_iFc,17634
|
|
2317
2336
|
pygpt_net/tools/text_editor/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2318
|
-
pygpt_net/tools/text_editor/tool.py,sha256=
|
|
2337
|
+
pygpt_net/tools/text_editor/tool.py,sha256=YCytHG3_yjc_-BLV_Oldi9XqUgEkpcwifVTVBkS7nns,8572
|
|
2319
2338
|
pygpt_net/tools/text_editor/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2320
|
-
pygpt_net/tools/text_editor/ui/dialogs.py,sha256=
|
|
2339
|
+
pygpt_net/tools/text_editor/ui/dialogs.py,sha256=0nJjDsw9lzP7K5JLA1Fp4mzTSj8M7k5TZ0Wn_rIL85M,2918
|
|
2321
2340
|
pygpt_net/tools/text_editor/ui/widgets.py,sha256=bvg3uJgWf5d3Vo_j5dMcoUchrvEA9e9uJK5aAy9-ZJc,2758
|
|
2322
2341
|
pygpt_net/tools/translator/__init__.py,sha256=R4-y_danRZamZRwXctX1b0tI9oz4qM_xcVthXNyYjcU,508
|
|
2323
2342
|
pygpt_net/tools/translator/tool.py,sha256=3QIv50Bc7TgrkVQ-7qcuxIERAJz5e4Vy22Uj8K79_a0,14527
|
|
@@ -2326,7 +2345,7 @@ pygpt_net/tools/translator/ui/dialogs.py,sha256=qC-dCNtOLbOe-h586iBmsBTlv4KlUoxC
|
|
|
2326
2345
|
pygpt_net/tools/translator/ui/widgets.py,sha256=6gEVlMd96tHOwKKDV6eoMoItTOcr2Bd_ig5Y2KihZ5o,17735
|
|
2327
2346
|
pygpt_net/ui/__init__.py,sha256=OoyVKGWLxPSlwTnEJ-fpwe5EH1GLdRGbTaNHwDoJ7PI,9313
|
|
2328
2347
|
pygpt_net/ui/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2329
|
-
pygpt_net/ui/base/config_dialog.py,sha256=
|
|
2348
|
+
pygpt_net/ui/base/config_dialog.py,sha256=P-7u7DQUZtr9D237SBjFt-QcYOeAWD8hD_rDJLc-C0Y,8913
|
|
2330
2349
|
pygpt_net/ui/base/context_menu.py,sha256=VAs_HUMoDkDZh0HAM7X8DZE7mwUZ4Q5aU_BMxPnXrvI,4396
|
|
2331
2350
|
pygpt_net/ui/base/flow_layout.py,sha256=t6TeNSdmScs0NQKlIdzbFmR6oLogekzJGKPOYJUvXls,2803
|
|
2332
2351
|
pygpt_net/ui/dialog/__init__.py,sha256=1SGZ5i2G1UnKQpyj_HYkN0t-HLepD6jU_ICw1waaxlk,488
|
|
@@ -2336,17 +2355,17 @@ pygpt_net/ui/dialog/assistant.py,sha256=WJJvv9vSTd8sJNiWW5sVQb5YqpIvWgQH1eMTHvHf
|
|
|
2336
2355
|
pygpt_net/ui/dialog/assistant_store.py,sha256=Tr9NWcJZQSK8mqTMKLz-EEX_NyFNaBFt9SKu9JaCvFY,23032
|
|
2337
2356
|
pygpt_net/ui/dialog/changelog.py,sha256=2ioUGq2gC1ANN5M6SFsnfIGMVbUt90IQ9aw9n7GqtMQ,1765
|
|
2338
2357
|
pygpt_net/ui/dialog/create.py,sha256=YEsroy-uimsP29RPcewkOV5vytNEZoUFa21G3WreIHM,973
|
|
2339
|
-
pygpt_net/ui/dialog/db.py,sha256=
|
|
2358
|
+
pygpt_net/ui/dialog/db.py,sha256=iC7wuR8qBoP95e1ZaRJFbqNWYUXUFV9w3mj8Ju6w48Y,23150
|
|
2340
2359
|
pygpt_net/ui/dialog/debug.py,sha256=RTDFJ8O0WKlwRNi5ffgStevS82EHSvVv6kMzE_6L3gY,1864
|
|
2341
|
-
pygpt_net/ui/dialog/dictionary.py,sha256=
|
|
2342
|
-
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
|
|
2343
2362
|
pygpt_net/ui/dialog/find.py,sha256=8VAcSRFkCLu4Yum6LwHgHg_8Ogn_ytco0ShaJLIJDXk,957
|
|
2344
|
-
pygpt_net/ui/dialog/image.py,sha256=
|
|
2363
|
+
pygpt_net/ui/dialog/image.py,sha256=nF7ejD44_UAAppUC3OpqaoSvzA-NM2B5fVOO0L8vFBE,2538
|
|
2345
2364
|
pygpt_net/ui/dialog/license.py,sha256=15Qrk_vnybnI3CAtvOHYJy8cSAkIG7fPG-HYqmSdctQ,2272
|
|
2346
|
-
pygpt_net/ui/dialog/logger.py,sha256=
|
|
2347
|
-
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
|
|
2348
2367
|
pygpt_net/ui/dialog/models_importer.py,sha256=14kxf7KkOdTP-tcgTN5OphNZajlivDPTDKBosebuyog,4505
|
|
2349
|
-
pygpt_net/ui/dialog/plugins.py,sha256
|
|
2368
|
+
pygpt_net/ui/dialog/plugins.py,sha256=gi7tWH0Il3akehiOO3EcwoUt55vq7ANCwrd3YDSnHCw,20419
|
|
2350
2369
|
pygpt_net/ui/dialog/preset.py,sha256=G-nGxu0OUCrFUFLpT8XCJL9rWBCG6eEKNciQbLBB39s,17196
|
|
2351
2370
|
pygpt_net/ui/dialog/preset_plugins.py,sha256=ynqc0aWjU7MTL4jxcVKaRH_tC9uzeWJCUzUjI74ADb0,3796
|
|
2352
2371
|
pygpt_net/ui/dialog/profile.py,sha256=Xk9NNQmr1A5pRUxdedu7ePEBq5OYhLT8UInuRWYBktU,4105
|
|
@@ -2372,14 +2391,14 @@ pygpt_net/ui/layout/chat/output.py,sha256=b1qY1C2Fs_k3fOA47JnkHXfvRDdptHbEZpMF6a
|
|
|
2372
2391
|
pygpt_net/ui/layout/chat/painter.py,sha256=XmogOPKRIBMldZOmJDNSVZLqFC_JTCXLu6Eyfw1Da3c,8552
|
|
2373
2392
|
pygpt_net/ui/layout/ctx/__init__.py,sha256=NJ9L0yJKIx1nKnk2sczp7ILWVbu2hfpvUz4E56EFuPI,509
|
|
2374
2393
|
pygpt_net/ui/layout/ctx/ctx.py,sha256=GDJyolAnFlAd49bbu9-LGsCxOUTAImSH5In4i8YHFOo,1653
|
|
2375
|
-
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=
|
|
2394
|
+
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=DfqYC6LKIF-QALLAPYEGLBWjrDmdhTGw6dim2vP_14o,12019
|
|
2376
2395
|
pygpt_net/ui/layout/ctx/search_input.py,sha256=yM_X2sxeR09JRqmkd2R4z82GRo3I1k4rOb75PgIFydE,1441
|
|
2377
2396
|
pygpt_net/ui/layout/ctx/video.py,sha256=RzzyGObhlXamXIJHRqA9D2o6eVVulF4kNPVf3BkURGI,1068
|
|
2378
2397
|
pygpt_net/ui/layout/status.py,sha256=bhRCXP25ODBZHl-aXCZft68Y_6ccprDkrQjJVIG_ulM,2015
|
|
2379
|
-
pygpt_net/ui/layout/toolbox/__init__.py,sha256=
|
|
2398
|
+
pygpt_net/ui/layout/toolbox/__init__.py,sha256=uf37HGTVyRIjuJROkJwjor1ZS9CMXNiclxqUVF909SM,521
|
|
2380
2399
|
pygpt_net/ui/layout/toolbox/agent.py,sha256=2aQb2DWrzn3GHULw77-u0284LZcMwrF--IE2TCJ0SgQ,2490
|
|
2381
2400
|
pygpt_net/ui/layout/toolbox/agent_llama.py,sha256=Znnh3-nhJz8dyhxzeKkng6ll2EbdRG8SXMI2XdtkvqE,3088
|
|
2382
|
-
pygpt_net/ui/layout/toolbox/assistants.py,sha256=
|
|
2401
|
+
pygpt_net/ui/layout/toolbox/assistants.py,sha256=pZ_jOo4-Khqbm04rJuvENVZ5AUhXDUKQavFvQlXcM70,4363
|
|
2383
2402
|
pygpt_net/ui/layout/toolbox/audio.py,sha256=8k2qYzVmSv6g0KXhQBY9_diuGBPODSe7VHiEBpsCzUU,2030
|
|
2384
2403
|
pygpt_net/ui/layout/toolbox/computer_env.py,sha256=QP_Qv4X28ineVX4vFfykmV-RDjgJpQp_oBHne3R4zY4,2210
|
|
2385
2404
|
pygpt_net/ui/layout/toolbox/footer.py,sha256=LbLDXbcarPfH-tpBKgXlQqkAvm1HcNZpR7fPjbD76KA,4278
|
|
@@ -2387,14 +2406,14 @@ pygpt_net/ui/layout/toolbox/image.py,sha256=sqh5lAlWzmeUlQPqNABoHltKIEtug2UNMpqL
|
|
|
2387
2406
|
pygpt_net/ui/layout/toolbox/indexes.py,sha256=o-f1jKhypjdQA-1NEDIxJwwMaFdIdjU48GFPcjHq0aY,6824
|
|
2388
2407
|
pygpt_net/ui/layout/toolbox/mode.py,sha256=MfVunjZZ3Wi0o4sbWBqg74c2-W6BNDHr3ylZevLZb8c,2085
|
|
2389
2408
|
pygpt_net/ui/layout/toolbox/model.py,sha256=OxcxSyFCQ3z6XAwj991X4KiSb78Upfn4v4m3991yvsw,1707
|
|
2390
|
-
pygpt_net/ui/layout/toolbox/presets.py,sha256=
|
|
2409
|
+
pygpt_net/ui/layout/toolbox/presets.py,sha256=Q12W0W1JsJKOxJofAELuNShdnnNKcirYeQeGXw_0Mvk,5779
|
|
2391
2410
|
pygpt_net/ui/layout/toolbox/prompt.py,sha256=subUUZJgkCmvSRekZcgVYs6wzl-MYPBLXKTs0wcJFgw,2663
|
|
2392
2411
|
pygpt_net/ui/layout/toolbox/raw.py,sha256=E1ERp3ITLXtbulo7i-JaBYx4COA4ipRemFfJztYhNFE,1492
|
|
2393
2412
|
pygpt_net/ui/layout/toolbox/split.py,sha256=Hs9hZPciLXCRV_izoayrBlJSCuTGumdNki6z1giWUUo,1696
|
|
2394
2413
|
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=VHzyzm7LjcAN30h111SEP6fdXwi84DYyf8CE1X3pdt8,2799
|
|
2395
2414
|
pygpt_net/ui/layout/toolbox/video.py,sha256=JyDVkJIh1m6RSbJFGQqIBKrsQgbfx2O08ybJ7bEZyWg,1477
|
|
2396
2415
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=E6-lLfU3vrWdlprayr6gxFs7F7AGkn4OIrFXrQ9p5XA,2035
|
|
2397
|
-
pygpt_net/ui/main.py,sha256=
|
|
2416
|
+
pygpt_net/ui/main.py,sha256=Qrqtq6-DUG6v44YG4dGGPSx-U-jEolkb8BDQpqPCxx0,14227
|
|
2398
2417
|
pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
|
|
2399
2418
|
pygpt_net/ui/menu/about.py,sha256=BtelbYhpXJGgsoEwsPuw61wVuGkzogpY3FVvWtd09HE,4619
|
|
2400
2419
|
pygpt_net/ui/menu/audio.py,sha256=3vQhMq8vk_h7yb_Gk2dZMRviFR2PExgR_ynpgOkyl-g,4226
|
|
@@ -2452,7 +2471,7 @@ pygpt_net/ui/widget/element/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5
|
|
|
2452
2471
|
pygpt_net/ui/widget/element/button.py,sha256=rhy8_RVHRV8xl0pegul31z9fNBjjIAi5Nd0hHGF6cF8,4393
|
|
2453
2472
|
pygpt_net/ui/widget/element/checkbox.py,sha256=qyX6T31c3a8Wb8B4JZwhuejD9SUAFSesdIjZdj4tv8I,2948
|
|
2454
2473
|
pygpt_net/ui/widget/element/group.py,sha256=9wedtjRTls4FdyHSwUblzdtPOaQ0-8djnjTN9CZI1KI,3702
|
|
2455
|
-
pygpt_net/ui/widget/element/labels.py,sha256=
|
|
2474
|
+
pygpt_net/ui/widget/element/labels.py,sha256=RpZa11w457iBw_lDCh0MLRKxiCNoUUD-4FSnC6CxblA,6631
|
|
2456
2475
|
pygpt_net/ui/widget/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2457
2476
|
pygpt_net/ui/widget/filesystem/explorer.py,sha256=YTQSv-ZyicJlVAKkVGkunCrKC27r2Ljnaat7FzYEJ5A,23732
|
|
2458
2477
|
pygpt_net/ui/widget/image/__init__.py,sha256=X9-pucLqQF9_ocDV-qNY6EQAJ_4dubGb-7TcWIzCXBo,488
|
|
@@ -2505,7 +2524,7 @@ pygpt_net/ui/widget/textarea/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl
|
|
|
2505
2524
|
pygpt_net/ui/widget/textarea/calendar_note.py,sha256=4LsPZ2ZHHZAsgjvgn6iZLKupKFq9fLGDu1PFEQVkaGw,5896
|
|
2506
2525
|
pygpt_net/ui/widget/textarea/console.py,sha256=nCV92S5JR4DiRWH6akWhygxg9kaLLxnCPoqXV0ZRK74,1333
|
|
2507
2526
|
pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13Jkq8EKhuI,1358
|
|
2508
|
-
pygpt_net/ui/widget/textarea/editor.py,sha256=
|
|
2527
|
+
pygpt_net/ui/widget/textarea/editor.py,sha256=gmNzsMrCQXGkFyVfl0woc_klmjsyiXuOdcG8Lk2PSR4,5038
|
|
2509
2528
|
pygpt_net/ui/widget/textarea/find.py,sha256=fQu6t-_LTZGFRNCkezywtMVsL-DocIkGBR_HbRFq61g,1534
|
|
2510
2529
|
pygpt_net/ui/widget/textarea/html.py,sha256=4DOnUYtHBhN-6X5w13GK-ceAAvTPd8M4mH_N-c3L_h0,12344
|
|
2511
2530
|
pygpt_net/ui/widget/textarea/input.py,sha256=TNJxS5y2-ih8uzoKR1IZjftByrSGbI0JCFSEH6URO0g,35392
|
|
@@ -2515,12 +2534,12 @@ pygpt_net/ui/widget/textarea/output.py,sha256=krWta3GHwdlPOqcxLln150bo7iUOtbFL_y
|
|
|
2515
2534
|
pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
|
|
2516
2535
|
pygpt_net/ui/widget/textarea/search_input.py,sha256=aoOlunBwxn-z3gIMNKfnghHX00sC36wQHl87dRlDJlM,5227
|
|
2517
2536
|
pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
|
|
2518
|
-
pygpt_net/ui/widget/textarea/web.py,sha256=
|
|
2537
|
+
pygpt_net/ui/widget/textarea/web.py,sha256=0t49MoTK_ZcGeYvIeiIvCKbRXvzQLO2Ko8INIP1pOcY,19904
|
|
2519
2538
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2520
2539
|
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2521
2540
|
pygpt_net/utils.py,sha256=o3V8NLcTQm8XkP6n_M88jVbI7OjnryRmsvnvf7K136A,9100
|
|
2522
|
-
pygpt_net-2.6.
|
|
2523
|
-
pygpt_net-2.6.
|
|
2524
|
-
pygpt_net-2.6.
|
|
2525
|
-
pygpt_net-2.6.
|
|
2526
|
-
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,,
|