pygpt-net 2.6.15__py3-none-any.whl → 2.6.17__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/__init__.py +8 -2
- pygpt_net/controller/chat/command.py +18 -6
- pygpt_net/controller/ctx/ctx.py +2 -2
- pygpt_net/controller/mode/mode.py +3 -2
- pygpt_net/controller/plugins/plugins.py +31 -15
- pygpt_net/controller/presets/editor.py +11 -32
- pygpt_net/controller/settings/profile.py +16 -3
- pygpt_net/controller/settings/workdir.py +184 -124
- pygpt_net/controller/theme/theme.py +11 -5
- pygpt_net/core/agents/observer/evaluation.py +3 -14
- pygpt_net/core/agents/runners/llama_workflow.py +7 -6
- pygpt_net/core/command/command.py +5 -3
- pygpt_net/core/experts/experts.py +58 -13
- pygpt_net/core/plugins/plugins.py +12 -1
- pygpt_net/core/render/plain/body.py +10 -19
- pygpt_net/core/render/plain/renderer.py +27 -27
- pygpt_net/data/config/config.json +6 -6
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/locale/locale.en.ini +2 -2
- pygpt_net/data/locale/plugin.openai_dalle.de.ini +1 -1
- pygpt_net/data/locale/plugin.openai_dalle.en.ini +1 -1
- pygpt_net/data/locale/plugin.openai_dalle.es.ini +1 -1
- pygpt_net/data/locale/plugin.openai_dalle.fr.ini +1 -1
- pygpt_net/data/locale/plugin.openai_dalle.it.ini +1 -1
- pygpt_net/data/locale/plugin.openai_dalle.pl.ini +1 -1
- pygpt_net/data/locale/plugin.openai_dalle.uk.ini +1 -1
- pygpt_net/data/locale/plugin.openai_dalle.zh.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.de.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.en.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.es.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.fr.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.it.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.pl.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.uk.ini +1 -1
- pygpt_net/data/locale/plugin.openai_vision.zh.ini +1 -1
- pygpt_net/item/ctx.py +5 -4
- pygpt_net/plugin/idx_llama_index/plugin.py +9 -5
- pygpt_net/plugin/idx_llama_index/worker.py +5 -2
- pygpt_net/plugin/openai_dalle/plugin.py +1 -1
- pygpt_net/tools/translator/ui/dialogs.py +1 -0
- pygpt_net/tools/translator/ui/widgets.py +1 -2
- pygpt_net/ui/__init__.py +12 -10
- pygpt_net/ui/base/config_dialog.py +15 -10
- pygpt_net/ui/dialog/about.py +26 -18
- pygpt_net/ui/dialog/plugins.py +6 -4
- pygpt_net/ui/dialog/settings.py +75 -87
- pygpt_net/ui/dialog/workdir.py +7 -2
- pygpt_net/ui/main.py +5 -1
- pygpt_net/ui/widget/textarea/editor.py +1 -2
- pygpt_net/ui/widget/textarea/web.py +22 -16
- {pygpt_net-2.6.15.dist-info → pygpt_net-2.6.17.dist-info}/METADATA +26 -14
- {pygpt_net-2.6.15.dist-info → pygpt_net-2.6.17.dist-info}/RECORD +57 -57
- {pygpt_net-2.6.15.dist-info → pygpt_net-2.6.17.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.15.dist-info → pygpt_net-2.6.17.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.15.dist-info → pygpt_net-2.6.17.dist-info}/entry_points.txt +0 -0
pygpt_net/ui/dialog/workdir.py
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date:
|
|
9
|
+
# Updated Date: 2025.08.20 23:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
from PySide6.QtCore import Qt
|
|
13
|
-
from PySide6.QtWidgets import QPushButton, QHBoxLayout, QLabel, QVBoxLayout, QSizePolicy
|
|
13
|
+
from PySide6.QtWidgets import QPushButton, QHBoxLayout, QLabel, QVBoxLayout, QSizePolicy, QApplication
|
|
14
14
|
|
|
15
15
|
from pygpt_net.ui.widget.dialog.workdir import WorkdirDialog
|
|
16
16
|
from pygpt_net.ui.widget.option.input import DirectoryInput
|
|
@@ -72,6 +72,7 @@ class Workdir:
|
|
|
72
72
|
"""Prepare workdir change dialog"""
|
|
73
73
|
size_needed = self.window.core.filesystem.get_directory_size(self.window.core.config.get_user_path())
|
|
74
74
|
self.window.ui.nodes['workdir.change.info'].setText(trans("dialog.workdir.tip").format(size=size_needed))
|
|
75
|
+
QApplication.processEvents()
|
|
75
76
|
|
|
76
77
|
def show_status(self, status: str):
|
|
77
78
|
"""
|
|
@@ -81,11 +82,13 @@ class Workdir:
|
|
|
81
82
|
"""
|
|
82
83
|
self.window.ui.nodes['workdir.change.status'].setText(status)
|
|
83
84
|
self.window.ui.nodes['workdir.change.status'].setVisible(True)
|
|
85
|
+
QApplication.processEvents()
|
|
84
86
|
|
|
85
87
|
def hide_status(self):
|
|
86
88
|
"""Hide status message"""
|
|
87
89
|
self.window.ui.nodes['workdir.change.status'].setText("")
|
|
88
90
|
self.window.ui.nodes['workdir.change.status'].setVisible(False)
|
|
91
|
+
QApplication.processEvents()
|
|
89
92
|
|
|
90
93
|
def change_directory(self):
|
|
91
94
|
"""Update working directory"""
|
|
@@ -96,6 +99,7 @@ class Workdir:
|
|
|
96
99
|
current = self.window.core.config.get_user_path()
|
|
97
100
|
self.path.value = current
|
|
98
101
|
self.path.setText(current)
|
|
102
|
+
QApplication.processEvents()
|
|
99
103
|
|
|
100
104
|
def set_path(self, path: str):
|
|
101
105
|
"""
|
|
@@ -106,3 +110,4 @@ class Workdir:
|
|
|
106
110
|
self.path.setText(path)
|
|
107
111
|
self.path.value = path
|
|
108
112
|
self.path.update()
|
|
113
|
+
QApplication.processEvents()
|
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.08.
|
|
9
|
+
# Updated Date: 2025.08.20 20:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
import os
|
|
@@ -225,6 +225,10 @@ class MainWindow(QMainWindow, QtStyleTools):
|
|
|
225
225
|
self.ui.post_setup()
|
|
226
226
|
self.tools.post_setup()
|
|
227
227
|
|
|
228
|
+
def showEvent(self, e):
|
|
229
|
+
super().showEvent(e)
|
|
230
|
+
QTimer.singleShot(0, self.ui.on_show)
|
|
231
|
+
|
|
228
232
|
def update(self):
|
|
229
233
|
"""Called on every update (real-time)"""
|
|
230
234
|
self.controller.on_update()
|
|
@@ -155,8 +155,7 @@ class BaseCodeEditor(QTextEdit):
|
|
|
155
155
|
if self.value > self.min_font_size:
|
|
156
156
|
self.value -= 1
|
|
157
157
|
|
|
158
|
-
|
|
159
|
-
self.update_stylesheet(f"font-size: {size_str};")
|
|
158
|
+
self.update_stylesheet(f"QTextEdit {{ font-size: {self.value}px }};")
|
|
160
159
|
event.accept()
|
|
161
160
|
else:
|
|
162
161
|
super(BaseCodeEditor, self).wheelEvent(event)
|
|
@@ -9,13 +9,12 @@
|
|
|
9
9
|
# Updated Date: 2025.08.19 07:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
|
-
from PySide6 import QtCore
|
|
13
12
|
from PySide6.QtCore import Qt, QObject, Signal, Slot, QEvent, QTimer
|
|
14
13
|
from PySide6.QtWebChannel import QWebChannel
|
|
15
14
|
from PySide6.QtWebEngineCore import QWebEngineSettings, QWebEnginePage, QWebEngineProfile
|
|
16
15
|
from PySide6.QtWebEngineWidgets import QWebEngineView
|
|
17
16
|
from PySide6.QtGui import QAction, QIcon
|
|
18
|
-
from PySide6.QtWidgets import QMenu
|
|
17
|
+
from PySide6.QtWidgets import QMenu
|
|
19
18
|
|
|
20
19
|
from pygpt_net.core.events import RenderEvent
|
|
21
20
|
from pygpt_net.item.ctx import CtxMeta
|
|
@@ -23,14 +22,6 @@ from pygpt_net.core.text.web_finder import WebFinder
|
|
|
23
22
|
from pygpt_net.ui.widget.tabs.layout import FocusEventFilter
|
|
24
23
|
from pygpt_net.utils import trans, mem_clean
|
|
25
24
|
|
|
26
|
-
def make_shared_profile():
|
|
27
|
-
prof = QWebEngineProfile("app", None)
|
|
28
|
-
prof.setHttpCacheType(QWebEngineProfile.MemoryHttpCache)
|
|
29
|
-
prof.setHttpCacheMaximumSize(32 * 1024 * 1024) # 32MB
|
|
30
|
-
prof.setPersistentCookiesPolicy(QWebEngineProfile.NoPersistentCookies)
|
|
31
|
-
prof.setSpellCheckEnabled(False)
|
|
32
|
-
return prof
|
|
33
|
-
|
|
34
25
|
SHARED_PROFILE = None
|
|
35
26
|
|
|
36
27
|
import pygpt_net.icons_rc
|
|
@@ -51,21 +42,35 @@ class ChatWebOutput(QWebEngineView):
|
|
|
51
42
|
self.setContextMenuPolicy(Qt.CustomContextMenu)
|
|
52
43
|
self.filter = FocusEventFilter(self, self.on_focus)
|
|
53
44
|
self.installEventFilter(self)
|
|
54
|
-
|
|
55
|
-
global SHARED_PROFILE
|
|
56
|
-
if not SHARED_PROFILE:
|
|
57
|
-
SHARED_PROFILE = make_shared_profile()
|
|
58
|
-
|
|
59
45
|
self.plain = None
|
|
60
46
|
self.html_content = None
|
|
61
47
|
self.meta = None
|
|
62
48
|
self.tab = None
|
|
63
49
|
self.setProperty('class', 'layout-output-web')
|
|
64
50
|
|
|
51
|
+
# OpenGL widgets
|
|
65
52
|
self._glwidget = None
|
|
66
53
|
self._glwidget_filter_installed = False
|
|
67
54
|
|
|
68
|
-
|
|
55
|
+
# set the page with a shared profile
|
|
56
|
+
self.setUpdatesEnabled(False) # disable updates until the page is set, re-enable in `on_page_loaded`
|
|
57
|
+
self.setPage(CustomWebEnginePage(self.window, self, profile=self._make_shared_profile()))
|
|
58
|
+
|
|
59
|
+
def _make_shared_profile(self) -> QWebEngineProfile:
|
|
60
|
+
"""
|
|
61
|
+
Create a shared QWebEngineProfile
|
|
62
|
+
|
|
63
|
+
:return: QWebEngineProfile - shared profile instance
|
|
64
|
+
"""
|
|
65
|
+
global SHARED_PROFILE
|
|
66
|
+
if not SHARED_PROFILE:
|
|
67
|
+
prof = QWebEngineProfile("app", None)
|
|
68
|
+
# prof.setHttpCacheType(QWebEngineProfile.MemoryHttpCache)
|
|
69
|
+
# prof.setHttpCacheMaximumSize(32 * 1024 * 1024) # 32MB
|
|
70
|
+
prof.setPersistentCookiesPolicy(QWebEngineProfile.NoPersistentCookies)
|
|
71
|
+
prof.setSpellCheckEnabled(False)
|
|
72
|
+
SHARED_PROFILE = prof
|
|
73
|
+
return SHARED_PROFILE
|
|
69
74
|
|
|
70
75
|
def _detach_gl_event_filter(self):
|
|
71
76
|
"""Detach OpenGL widget event filter if installed"""
|
|
@@ -421,6 +426,7 @@ class ChatWebOutput(QWebEngineView):
|
|
|
421
426
|
"tab": self.tab,
|
|
422
427
|
})
|
|
423
428
|
self.window.dispatch(event)
|
|
429
|
+
self.setUpdatesEnabled(True)
|
|
424
430
|
|
|
425
431
|
def get_selected_text(self) -> str:
|
|
426
432
|
p = self.page()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.17
|
|
4
4
|
Summary: Desktop AI Assistant powered by: OpenAI GPT-5, o1, o3, GPT-4, Gemini, Claude, Grok, DeepSeek, and other models supported by Llama Index, and Ollama. Chatbot, agents, completion, image generation, vision analysis, speech-to-text, plugins, internet access, file handling, command execution and more.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: py_gpt,py-gpt,pygpt,desktop,app,o1,o3,gpt-5,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,grok,deepseek,bielik,claude,tts,whisper,vision,chatgpt,dall-e,chat,chatbot,assistant,text completion,image generation,ai,api,openai,api key,langchain,llama-index,ollama,presets,ui,qt,pyside
|
|
@@ -108,7 +108,7 @@ Description-Content-Type: text/markdown
|
|
|
108
108
|
|
|
109
109
|
[](https://snapcraft.io/pygpt)
|
|
110
110
|
|
|
111
|
-
Release: **2.6.
|
|
111
|
+
Release: **2.6.17** | build: **2025-08-21** | Python: **>=3.10, <3.14**
|
|
112
112
|
|
|
113
113
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
114
114
|
>
|
|
@@ -520,7 +520,7 @@ Above where you type your messages, the interface shows you the number of tokens
|
|
|
520
520
|
|
|
521
521
|

|
|
522
522
|
|
|
523
|
-
**Vision:** If you want to send photos from your disk or images from your camera for analysis, and the selected model does not support Vision, you must enable the `
|
|
523
|
+
**Vision:** If you want to send photos from your disk or images from your camera for analysis, and the selected model does not support Vision, you must enable the `Vision (inline)` plugin in the Plugins menu. This plugin allows you to send photos or images from your camera for analysis in any Chat mode.
|
|
524
524
|
|
|
525
525
|

|
|
526
526
|
|
|
@@ -528,7 +528,7 @@ With this plugin, you can capture an image with your camera or attach an image a
|
|
|
528
528
|
|
|
529
529
|

|
|
530
530
|
|
|
531
|
-
**Image generation:** If you want to generate images (using DALL-E) directly in chat you must enable plugin `
|
|
531
|
+
**Image generation:** If you want to generate images (using DALL-E) directly in chat you must enable plugin `Image generation (inline)` in the Plugins menu.
|
|
532
532
|
Plugin allows you to generate images in Chat mode:
|
|
533
533
|
|
|
534
534
|

|
|
@@ -686,9 +686,9 @@ and displaying the image onscreen. You can send raw prompt to `DALL-E` in `Image
|
|
|
686
686
|
|
|
687
687
|

|
|
688
688
|
|
|
689
|
-
Image generation using DALL-E is available in every mode via plugin `
|
|
689
|
+
Image generation using DALL-E is available in every mode via plugin `Image Generation (inline)`. Just ask any model, in any mode, like e.g. GPT-4 to generate an image and it will do it inline, without need to mode change.
|
|
690
690
|
|
|
691
|
-
If you want to generate images (using DALL-E) directly in chat you must enable plugin **
|
|
691
|
+
If you want to generate images (using DALL-E) directly in chat you must enable plugin **Image generation (inline)** in the Plugins menu.
|
|
692
692
|
Plugin allows you to generate images in Chat mode:
|
|
693
693
|
|
|
694
694
|

|
|
@@ -726,7 +726,7 @@ This mode enables image analysis using the `gpt-4o`, `gpt-4-vision` and other vi
|
|
|
726
726
|
it also allows you to upload images or provide URLs to images. The vision feature can analyze both local
|
|
727
727
|
images and those found online.
|
|
728
728
|
|
|
729
|
-
Vision is also integrated into any chat mode via plugin `
|
|
729
|
+
Vision is also integrated into any chat mode via plugin `Vision (inline)`. Just enable the plugin and use Vision in other work modes, such as Chat or Chat with Files.
|
|
730
730
|
|
|
731
731
|
Vision mode also includes real-time video capture from camera. To capture image from camera and append it to chat just click on video at left side. You can also enable `Auto capture` - image will be captured and appended to chat message every time you send message.
|
|
732
732
|
|
|
@@ -1447,11 +1447,11 @@ as well as list and create directories.
|
|
|
1447
1447
|
|
|
1448
1448
|
- `Crontab / Task scheduler` - plugin provides cron-based job scheduling - you can schedule tasks/prompts to be sent at any time using cron-based syntax for task setup.
|
|
1449
1449
|
|
|
1450
|
-
- `
|
|
1450
|
+
- `Image Generation (inline)` - integrates DALL-E 3 image generation with any chat and mode. Just enable and ask for image in Chat mode, using standard model like GPT-4. The plugin does not require the `+ Tools` option to be enabled.
|
|
1451
1451
|
|
|
1452
1452
|
- `Experts (inline)` - allows calling experts in any chat mode. This is the inline Experts (co-op) mode.
|
|
1453
1453
|
|
|
1454
|
-
- `
|
|
1454
|
+
- `Vision (inline)` - integrates Vision capabilities with any chat mode, not just Vision mode. When the plugin is enabled, the model temporarily switches to vision in the background when an image attachment or vision capture is provided.
|
|
1455
1455
|
|
|
1456
1456
|
- `Real Time` - automatically appends the current date and time to the system prompt, informing the model about current time.
|
|
1457
1457
|
|
|
@@ -2644,7 +2644,7 @@ If enabled, then a new context will be created on every run of the job. *Default
|
|
|
2644
2644
|
If enabled, then a tray notification will be shown on every run of the job. *Default:* `True`
|
|
2645
2645
|
|
|
2646
2646
|
|
|
2647
|
-
##
|
|
2647
|
+
## Image Generation (inline)
|
|
2648
2648
|
|
|
2649
2649
|
The plugin integrates `DALL-E 3` image generation with any chat mode. Simply enable it and request an image in Chat mode, using a standard model such as `GPT-4`. The plugin does not require the `+ Tools` option to be enabled.
|
|
2650
2650
|
|
|
@@ -2660,7 +2660,7 @@ The plugin allows calling experts in any chat mode. This is the inline Experts (
|
|
|
2660
2660
|
|
|
2661
2661
|
See the `Work modes -> Experts` section for more details.
|
|
2662
2662
|
|
|
2663
|
-
##
|
|
2663
|
+
## Vision (inline)
|
|
2664
2664
|
|
|
2665
2665
|
The plugin integrates vision capabilities across all chat modes, not just Vision mode. Once enabled, it allows the model to seamlessly switch to vision processing in the background whenever an image attachment or vision capture is detected.
|
|
2666
2666
|
|
|
@@ -3589,7 +3589,7 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
3589
3589
|
|
|
3590
3590
|
- `Index to use`: Only if sub-mode is llama_index (Chat with files), choose the index to use in both Agent and Expert modes.
|
|
3591
3591
|
|
|
3592
|
-
- `Use native API function calls`: Use API function calls to run
|
|
3592
|
+
- `Use native API function calls`: Use API function calls to run tools from plugins instead of using command prompts - Autonomous agent mode only, default: False
|
|
3593
3593
|
|
|
3594
3594
|
- `Use Responses API in Agent mode`: Use Responses API instead of ChatCompletions API in Agent (autonomous) mode. OpenAI models only. Default: False
|
|
3595
3595
|
|
|
@@ -3597,9 +3597,9 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
3597
3597
|
|
|
3598
3598
|
- `Sub-mode for experts`: Sub-mode to use in Experts mode (chat, llama_index, etc.). Default: chat.
|
|
3599
3599
|
|
|
3600
|
-
- `Use
|
|
3600
|
+
- `Use agent for expert reasoning`: If enabled, the ReAct agent will be used for expert calls and expert reasoning. Default: True
|
|
3601
3601
|
|
|
3602
|
-
- `Use native API function calls`: Use API function calls to run
|
|
3602
|
+
- `Use native API function calls`: Use API function calls to run tools from plugins instead of using command prompts - Experts only, default: False
|
|
3603
3603
|
|
|
3604
3604
|
- `Use Responses API in Experts mode (master)`: Use Responses API instead of ChatCompletions API in Experts (master model). OpenAI models only. Default: False
|
|
3605
3605
|
|
|
@@ -4566,6 +4566,18 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
4566
4566
|
|
|
4567
4567
|
## Recent changes:
|
|
4568
4568
|
|
|
4569
|
+
**2.6.17 (2025-08-21)**
|
|
4570
|
+
|
|
4571
|
+
- Optimized profile switching.
|
|
4572
|
+
- Fixed: setting initial splitter size on first launch.
|
|
4573
|
+
- Added smoother view reload.
|
|
4574
|
+
|
|
4575
|
+
**2.6.16 (2025-08-20)**
|
|
4576
|
+
|
|
4577
|
+
- Fixed: Attachment string joining.
|
|
4578
|
+
- Improved expert function calls.
|
|
4579
|
+
- Added sorting to the plugin list.
|
|
4580
|
+
|
|
4569
4581
|
**2.6.15 (2025-08-20)**
|
|
4570
4582
|
|
|
4571
4583
|
- Added: do not change the context menu font size in text editing.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=aXQoY6LAxf31oH_P5FXlA6aQiRtYOhfPCZOfAPk110Y,100454
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=KBVlmPZoJBZ0ZSOuNxYfSTzmFKuN4GEBujL1PtlqWus,1373
|
|
4
4
|
pygpt_net/app.py,sha256=2IXjjYJ0tm-iFn3pHu3-JGoFAnN9YvmXGHPmeOhpU3Y,20999
|
|
5
5
|
pygpt_net/config.py,sha256=LCKrqQfePVNrAvH3EY_1oZx1Go754sDoyUneJ0iGWFI,16660
|
|
6
6
|
pygpt_net/container.py,sha256=NsMSHURaEC_eW8vrCNdztwqkxB7jui3yVlzUOMYvCHg,4124
|
|
7
|
-
pygpt_net/controller/__init__.py,sha256=
|
|
7
|
+
pygpt_net/controller/__init__.py,sha256=UAYJmyXJG1_kawo23FRH0IjU8S8YBbIuJrPkrsOy9Eo,6199
|
|
8
8
|
pygpt_net/controller/access/__init__.py,sha256=_XZxGy5U93JGU49GbIB9E_I26_uRV_Zbz18lcp7u23A,510
|
|
9
9
|
pygpt_net/controller/access/access.py,sha256=nPttwQf6RZHJAlXZ-3fnlcplwXxcJWp8ciq3FMsSssI,3974
|
|
10
10
|
pygpt_net/controller/access/control.py,sha256=nMGWzg60jNJMVAHIrism0_APzVMpbLAOcXG6mJuOSJ8,17332
|
|
@@ -35,7 +35,7 @@ pygpt_net/controller/chat/__init__.py,sha256=lx8FfN-Uoet5Y91xFxrA95N65vt_v99HcZd
|
|
|
35
35
|
pygpt_net/controller/chat/attachment.py,sha256=hU1Slpop6rebGcLTwln-zL5SjXxhDNJUCEtKRVRRa50,20897
|
|
36
36
|
pygpt_net/controller/chat/audio.py,sha256=QsU36McxqlRoP6B-NSeck968g1M8JhlLkLwGLunbapw,3210
|
|
37
37
|
pygpt_net/controller/chat/chat.py,sha256=ad6aKGK1JJBl8fVJnEwJygqu17Vt-z26TcNfpSDmNIw,3010
|
|
38
|
-
pygpt_net/controller/chat/command.py,sha256=
|
|
38
|
+
pygpt_net/controller/chat/command.py,sha256=eKFQzP0tehZ3S_G7RoZVMTebQFSjPIpix3t7vDB7MWc,5291
|
|
39
39
|
pygpt_net/controller/chat/common.py,sha256=mOHvXqj3pPCzNPU82i7NXSmglW8jh7G5cCKDeiVTOKs,16779
|
|
40
40
|
pygpt_net/controller/chat/files.py,sha256=QZAi1Io57EU7htKt9M5I9OoGAFX51OH2V5-NsJktOto,2838
|
|
41
41
|
pygpt_net/controller/chat/image.py,sha256=yPX26gsz0fLnyXR88lpVyvvHnKA-yZwfXJ4paUDYkeM,8579
|
|
@@ -62,7 +62,7 @@ pygpt_net/controller/config/field/textarea.py,sha256=Ln545IHzXBeFIjnfMIpmlUr-V3w
|
|
|
62
62
|
pygpt_net/controller/config/placeholder.py,sha256=Q4csMg6q1xpV5Yz8jb2eh33lqdvqE5AAUg7L9ProRRY,16030
|
|
63
63
|
pygpt_net/controller/ctx/__init__.py,sha256=0wH7ziC75WscBW8cxpeGBwEz5tolo_kCxGPoz2udI_E,507
|
|
64
64
|
pygpt_net/controller/ctx/common.py,sha256=_ygKbwotFfbG12vm247WFXPgDH5TnjZuv_0jUCgEShs,6591
|
|
65
|
-
pygpt_net/controller/ctx/ctx.py,sha256=
|
|
65
|
+
pygpt_net/controller/ctx/ctx.py,sha256=I9L7gZFQcKeiLu6vHYZfTvjss7Kufv-uoF3dWZ4z3OI,36107
|
|
66
66
|
pygpt_net/controller/ctx/extra.py,sha256=WApWjnIfl3SoI0VZVbptvjjqhFPJl-dSfqW12tlBHrY,8599
|
|
67
67
|
pygpt_net/controller/ctx/summarizer.py,sha256=dO-LqIclwI7gIot1yjNo9eZ0HxakWCSoqePORgCLOk8,3072
|
|
68
68
|
pygpt_net/controller/debug/__init__.py,sha256=dOJGTICjvTtrPIEDOsxCzcOHsfu8AFPLpSKbdN0q0KI,509
|
|
@@ -96,7 +96,7 @@ pygpt_net/controller/launcher/launcher.py,sha256=zY2yIrSd7y5dhVtMJExKxHI4JhD1--P
|
|
|
96
96
|
pygpt_net/controller/layout/__init__.py,sha256=0pxxzjAUa1hS27d80Q0SgDV1Uzs7A9mZrUxb1cs-oHs,510
|
|
97
97
|
pygpt_net/controller/layout/layout.py,sha256=HlbfGK-_HXQrifSh5tWpPtu5JzWN2fktVmh8ofBDMfQ,13058
|
|
98
98
|
pygpt_net/controller/mode/__init__.py,sha256=1Kcz0xHc2IW_if9S9eQozBUvIu69eLAe7T-Re2lJxhk,508
|
|
99
|
-
pygpt_net/controller/mode/mode.py,sha256=
|
|
99
|
+
pygpt_net/controller/mode/mode.py,sha256=F3rERGN_sAgAqDITFYd1Nj56_4MiBIS9TwjjSPH1uEc,7437
|
|
100
100
|
pygpt_net/controller/model/__init__.py,sha256=mQXq9u269D8TD3u_44J6DFFyHKkaZplk-tRFCssBGbE,509
|
|
101
101
|
pygpt_net/controller/model/editor.py,sha256=_WDVFTrgZKM5Y8MZiWur4e5oSuRbXr-Q3PDozVtZ9fw,16384
|
|
102
102
|
pygpt_net/controller/model/importer.py,sha256=WMJmsGRapTagET4tySUTPDHRC5Ojg9wrmR4YYhfj0Lk,22094
|
|
@@ -108,24 +108,24 @@ pygpt_net/controller/painter/capture.py,sha256=X3TqnNypxT_wngkQ4ovfS9glQwoGHyM-p
|
|
|
108
108
|
pygpt_net/controller/painter/common.py,sha256=gTRCIcmAsgYhueUWNfEIwIJo-40YBVhoNSksOY1Oj34,6395
|
|
109
109
|
pygpt_net/controller/painter/painter.py,sha256=1Ekmr2a3irDkSb2wowiPXhW59rfdZOW1tdbxeubph-k,2747
|
|
110
110
|
pygpt_net/controller/plugins/__init__.py,sha256=iocY37De1H2Nh7HkC7ZYvUus2xzcckslgr5a4PwtQII,511
|
|
111
|
-
pygpt_net/controller/plugins/plugins.py,sha256=
|
|
111
|
+
pygpt_net/controller/plugins/plugins.py,sha256=DysPDatuIi8t1k-nnUfy8tLBFBberTAuL8YKNVXXZd0,14917
|
|
112
112
|
pygpt_net/controller/plugins/presets.py,sha256=8EsEwpU2MjWMQu1kcY4JTcyqqN8pjBrcxA2uW2tFU_A,11674
|
|
113
113
|
pygpt_net/controller/plugins/settings.py,sha256=OT1MNRUKx_9E3COJKVBnNIf3ZybkI2fORgQUbRE-z4U,6063
|
|
114
114
|
pygpt_net/controller/presets/__init__.py,sha256=Bb9_aAvGxQcKCW2fvG5CAJ6ZUwNYN3GaCf3BXB9eGfI,511
|
|
115
|
-
pygpt_net/controller/presets/editor.py,sha256
|
|
115
|
+
pygpt_net/controller/presets/editor.py,sha256=B4ukcwX2MTGH2ocAlDyAC1AV0ftQipDTciqMiC-vhiw,39307
|
|
116
116
|
pygpt_net/controller/presets/experts.py,sha256=dfPKmAPO-7gaUD2ILs3lR005ir32G5vV-Sa5TGEHwOU,5820
|
|
117
117
|
pygpt_net/controller/presets/presets.py,sha256=Tq9AIgr042ALu6hEQunBxnUZTzLdzmp4IStWprzmyjg,21918
|
|
118
118
|
pygpt_net/controller/settings/__init__.py,sha256=hn5n_Hti6byJQdQCs4Ld2EbPoZF7dHVMwqaBPscePQ8,512
|
|
119
119
|
pygpt_net/controller/settings/editor.py,sha256=vpXhDDrr8Jn5-dn2KXMbjlu-Dawrq9s7TdEYaAdq-fE,18772
|
|
120
|
-
pygpt_net/controller/settings/profile.py,sha256=
|
|
120
|
+
pygpt_net/controller/settings/profile.py,sha256=cGva5H30npAfmMgq7k5r856-yVps6rU0nDw13U_7O-8,20525
|
|
121
121
|
pygpt_net/controller/settings/settings.py,sha256=cFA4ZKjcsu8uoapWMTllUUB9DvJXVBzbxLT6InRS4zU,7768
|
|
122
|
-
pygpt_net/controller/settings/workdir.py,sha256=
|
|
122
|
+
pygpt_net/controller/settings/workdir.py,sha256=h1-S6xU4_naPvfOCOtonOUrSnPlhX3_y7km_oD43D0Y,22163
|
|
123
123
|
pygpt_net/controller/theme/__init__.py,sha256=-HMDkTGRa7Q6_AGomkZPVyasIOgNCqeez0Ocw_z9gMc,509
|
|
124
124
|
pygpt_net/controller/theme/common.py,sha256=z5mzpMnfkTeFstKm_uodDboAa3xj5vTpMKGCZzvkX9A,7114
|
|
125
125
|
pygpt_net/controller/theme/markdown.py,sha256=iH34dsZWyXCtIZuuRBHiAV__W0P4bY-7OuzEwehizr0,6064
|
|
126
126
|
pygpt_net/controller/theme/menu.py,sha256=3EjDVatt4lYNePHwHaEr0tZGbO2MljqY5uzkYVvtH5E,5962
|
|
127
127
|
pygpt_net/controller/theme/nodes.py,sha256=cnoZKp8gRczmWgsAC5liLB53YgsArAPvOWRLmyeAn1o,5463
|
|
128
|
-
pygpt_net/controller/theme/theme.py,sha256=
|
|
128
|
+
pygpt_net/controller/theme/theme.py,sha256=0nA-zqylU6GtIsxg-IFPWPWTLEZk-plOd7Na2BCwW_c,8055
|
|
129
129
|
pygpt_net/controller/tools/__init__.py,sha256=ds63rOuwLEIe-SlY_sQkhWSdXS0lfVwseUiHkg2NTD4,509
|
|
130
130
|
pygpt_net/controller/tools/tools.py,sha256=GfDcAVyAiF1CcZ8ATnSJgfCwXYOaGQ1xoxXztVvU3qc,2905
|
|
131
131
|
pygpt_net/controller/ui/__init__.py,sha256=cxfh2SYeEDATGAZpcYDqCxYfp4KReQ1CYehevSf89EU,507
|
|
@@ -146,7 +146,7 @@ pygpt_net/core/agents/bridge.py,sha256=KhCbMTZNigNlgOhXEMN1kqWGNUhkEdjFdiHBBVTAr
|
|
|
146
146
|
pygpt_net/core/agents/legacy.py,sha256=DdlyIpFjmeAC4XUGtq3F5_1BLGZLPOej0RZ6x9ycFjM,1731
|
|
147
147
|
pygpt_net/core/agents/memory.py,sha256=9Jz9kT-xT8QPpGeXEpWopJUGBLLHu6Ys_-fRrg6BWDg,5210
|
|
148
148
|
pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
|
|
149
|
-
pygpt_net/core/agents/observer/evaluation.py,sha256=
|
|
149
|
+
pygpt_net/core/agents/observer/evaluation.py,sha256=kSs_zMg9Cuwn-e_vDYVq6bzdbAVhqXIG6_zWHcN0ugk,8098
|
|
150
150
|
pygpt_net/core/agents/provider.py,sha256=rjxnuqzRxv2Z1d9i_wKpREwJBTeTgtyBDYtyHuwcSPA,2440
|
|
151
151
|
pygpt_net/core/agents/runner.py,sha256=C3BQkpHLrd92EuM55mR4PnCJMVvZ4nV0kDhed4xfl9o,12186
|
|
152
152
|
pygpt_net/core/agents/runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -155,7 +155,7 @@ pygpt_net/core/agents/runners/helpers.py,sha256=0iQQlSg_pJfxY_gQEWImnyAVkTUQYYSW
|
|
|
155
155
|
pygpt_net/core/agents/runners/llama_assistant.py,sha256=a_Abkc8u1S8vr6lUIDRrzTM9sQnEvyZA8nZxXaYp05w,2492
|
|
156
156
|
pygpt_net/core/agents/runners/llama_plan.py,sha256=CC3WPG9KUxd_dRjPZROOrmPQrWQ_u8C0nRx0TCzi9bE,13391
|
|
157
157
|
pygpt_net/core/agents/runners/llama_steps.py,sha256=1SBLp5t4TUsxpYIUtSSnBy5Sd2AxheDlv2AXimls-Vg,7328
|
|
158
|
-
pygpt_net/core/agents/runners/llama_workflow.py,sha256=
|
|
158
|
+
pygpt_net/core/agents/runners/llama_workflow.py,sha256=kU_Gju08e3rAFb_DVyDpGHhTurC49_oAGdMWcL6wZHQ,12136
|
|
159
159
|
pygpt_net/core/agents/runners/loop.py,sha256=opcVGx8WFjJesLlmMzoCBgP06Ajh6j_Taat4zCTumHg,6022
|
|
160
160
|
pygpt_net/core/agents/runners/openai_workflow.py,sha256=J47INptxu8Uc40UfAWNRRiHRYL6ZM6lPojoqeHsC-mc,7989
|
|
161
161
|
pygpt_net/core/agents/tools.py,sha256=6V2IjSF0m8cNY0HI7vW9bTLjKzR1KtcP0XTcHBvrPjU,21727
|
|
@@ -190,7 +190,7 @@ pygpt_net/core/chain/chain.py,sha256=C7Xm88bRblcyM4e0wZMFG-6SQCdw_frXN9kqnWzce60
|
|
|
190
190
|
pygpt_net/core/chain/chat.py,sha256=5LxPWHkocjrIAAwrdDH1ss6knAnh4_owfbHPsOQYSws,5238
|
|
191
191
|
pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-IiBPg,5698
|
|
192
192
|
pygpt_net/core/command/__init__.py,sha256=3pjRwUt1VGN8P5HE1i2rokNhxtiCL-drc_mmu4tDe-o,512
|
|
193
|
-
pygpt_net/core/command/command.py,sha256=
|
|
193
|
+
pygpt_net/core/command/command.py,sha256=2KiKKH2c4m-2HbczlJvBooZ6L_Sn8zswS81p9OcghAE,23266
|
|
194
194
|
pygpt_net/core/ctx/__init__.py,sha256=hsqzIDxcwIIjF-7Zr5SkkhQV9LLmIYndQ_dohK20bg0,507
|
|
195
195
|
pygpt_net/core/ctx/bag.py,sha256=IcUrmS8KafOHwS_7ufhet6GY90fp4xmG7dS6W17gw4o,1340
|
|
196
196
|
pygpt_net/core/ctx/container.py,sha256=D2GOOThsOb974xd6uJWlWv-nwm1FJ7pGGH_LXNBzgkY,5063
|
|
@@ -232,7 +232,7 @@ pygpt_net/core/events/event.py,sha256=uxNdPGaV5KDBaosPM6uxio7dPig091wAoz-OdOPCmx
|
|
|
232
232
|
pygpt_net/core/events/kernel.py,sha256=Y5zQ-YCex04OQNMRMC7Q8g55A-imyj9XQ0Jkuyk2eCU,2074
|
|
233
233
|
pygpt_net/core/events/render.py,sha256=Xfncp6ESvjPyBLtFq6KiNxckAFDN0DsUOJ_mrowjfnM,2525
|
|
234
234
|
pygpt_net/core/experts/__init__.py,sha256=oscAmAEsCZclyHU7k3z5JzYqilwIO7J90e6oTa29tZ0,511
|
|
235
|
-
pygpt_net/core/experts/experts.py,sha256=
|
|
235
|
+
pygpt_net/core/experts/experts.py,sha256=vqD7vnzoW8SQ6Of3rp42VVIbamRkhmOwAWoG4gZcCPU,32127
|
|
236
236
|
pygpt_net/core/filesystem/__init__.py,sha256=KZLS3s_otd3Md9eDA6FN-b4CtOCWl_fplUlM9V6hTy8,514
|
|
237
237
|
pygpt_net/core/filesystem/actions.py,sha256=2lRVF_MpIxCwbH8DkugP0K6pY6FymLeH6LKVR2rtQGQ,4152
|
|
238
238
|
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
|
@@ -278,7 +278,7 @@ pygpt_net/core/notepad/notepad.py,sha256=zYE7BRERDOxROMMfjTwS6M5Vk08DXxXqHdKi1aX
|
|
|
278
278
|
pygpt_net/core/platforms/__init__.py,sha256=NRmTzf4xFxcYseYs1mgCPZA0YUH2v0Aufq4CG1_mKDE,513
|
|
279
279
|
pygpt_net/core/platforms/platforms.py,sha256=599XwekDL1cNs5p8i89rcUO05Dl4t1XFBPf9jnNRlAM,5094
|
|
280
280
|
pygpt_net/core/plugins/__init__.py,sha256=NOKL-CNsF4rrKTBpsN-ue92H4pTUGKlgDCwr1iA0geY,511
|
|
281
|
-
pygpt_net/core/plugins/plugins.py,sha256=
|
|
281
|
+
pygpt_net/core/plugins/plugins.py,sha256=Qnm6y75i5WFz405zR9quIh7oF-XmfVCZwxUl6CS04cI,15198
|
|
282
282
|
pygpt_net/core/presets/__init__.py,sha256=NZjBxjGv4fgEX6Hp8FznsWK5QqD1Tl7zyp2Ir3ufXv4,511
|
|
283
283
|
pygpt_net/core/presets/presets.py,sha256=rdumbBggdXJCZ45o4aFOBswzW4GDGXrWBAAEZneJRig,12961
|
|
284
284
|
pygpt_net/core/profile/__init__.py,sha256=ovh37AKXCbEz1owutNltCXRkmhZj097wcdZLSzkJUvk,511
|
|
@@ -298,10 +298,10 @@ pygpt_net/core/render/markdown/parser.py,sha256=4lCC_pCWmi-SUli4nnDH-FZEbBi0SnVl
|
|
|
298
298
|
pygpt_net/core/render/markdown/pid.py,sha256=bRAOdL8bS-LSfOKReWK3nu-BUZ2qfNchrAsrkxRKlHU,851
|
|
299
299
|
pygpt_net/core/render/markdown/renderer.py,sha256=PER4BxQUU2zjyMq-flM83_cNcjFyJrRHx2VNa7FN5-I,19488
|
|
300
300
|
pygpt_net/core/render/plain/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
|
301
|
-
pygpt_net/core/render/plain/body.py,sha256=
|
|
301
|
+
pygpt_net/core/render/plain/body.py,sha256=qupyjx_P5DG_82qV0xf5LJ9Fr9y5w2sseVwu6dPG8xE,3866
|
|
302
302
|
pygpt_net/core/render/plain/helpers.py,sha256=CMF84kSeuQnkgZVHmN_9YWaL5BC958tDE9ZWfZWhAzg,1630
|
|
303
303
|
pygpt_net/core/render/plain/pid.py,sha256=Pz3v1tnLj-XI_9vcaVkCf9SZ2EgVs4LYV4qzelBMoOg,1119
|
|
304
|
-
pygpt_net/core/render/plain/renderer.py,sha256=
|
|
304
|
+
pygpt_net/core/render/plain/renderer.py,sha256=CVCdwuDUZEpYna3tkwDlZLN7bwRMu-fBX636k5blqxM,15637
|
|
305
305
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
|
306
306
|
pygpt_net/core/render/web/body.py,sha256=rybg76GiLWowR-qEvM0Y64woSsO4KSBnww4f8BU7GgI,54872
|
|
307
307
|
pygpt_net/core/render/web/helpers.py,sha256=ivrXrCqRIUWHDmu3INu-i6XUlB2W9IOO8iYyqpbnSRU,5438
|
|
@@ -343,8 +343,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
343
343
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
344
344
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
345
345
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
346
|
-
pygpt_net/data/config/config.json,sha256=
|
|
347
|
-
pygpt_net/data/config/models.json,sha256=
|
|
346
|
+
pygpt_net/data/config/config.json,sha256=7mM-UAbuZUlNbgaebZQ_up3QtEIDNTmN-eM29h-wc6A,24923
|
|
347
|
+
pygpt_net/data/config/models.json,sha256=4koERZ-cITcGIcSngINcHB0SO238C2VJSYd1zxS0WFo,109650
|
|
348
348
|
pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
|
|
349
349
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
350
350
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -1604,7 +1604,7 @@ pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4n
|
|
|
1604
1604
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
|
1605
1605
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1606
1606
|
pygpt_net/data/locale/locale.de.ini,sha256=ERoIXnA8Atyzm5EOh6By1psT62ZqSYjkjVPHDasRPR8,100092
|
|
1607
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1607
|
+
pygpt_net/data/locale/locale.en.ini,sha256=wokB6xmDGRGHUOpYcMSEfPzBwcECKWlKB4SSLB1ZOZ4,90693
|
|
1608
1608
|
pygpt_net/data/locale/locale.es.ini,sha256=bImZrxHRY4yTuAlVznzQCn8mK4zB88p0Y0UUNzVOI4Y,100658
|
|
1609
1609
|
pygpt_net/data/locale/locale.fr.ini,sha256=Z-1LvfecWp4ZMZf-9HqFddcoBbVxUWMKzSID86wASzk,103400
|
|
1610
1610
|
pygpt_net/data/locale/locale.it.ini,sha256=-K3NkIURZ5gK1JPwjk_7GwCCH6TUqI9aUZDKoq8jL1o,98471
|
|
@@ -1740,22 +1740,22 @@ pygpt_net/data/locale/plugin.idx_llama_index.pl.ini,sha256=cV8NY621r-GUdA0wcsp3W
|
|
|
1740
1740
|
pygpt_net/data/locale/plugin.idx_llama_index.uk.ini,sha256=P74E9ZnGUMP7QOIj9ZQscVrHtpEqJIjhsEBks6kPBek,3287
|
|
1741
1741
|
pygpt_net/data/locale/plugin.idx_llama_index.zh.ini,sha256=x0A2Yy6wAbEgJUU8-u9pTUsSzQKzS4aKBVnVA7N9IHc,1830
|
|
1742
1742
|
pygpt_net/data/locale/plugin.mailer.en.ini,sha256=ZK7LCHAiQGw38PzZy_LyES9b7vQ47QA6XjSiq2NlsSs,962
|
|
1743
|
-
pygpt_net/data/locale/plugin.openai_dalle.de.ini,sha256=
|
|
1744
|
-
pygpt_net/data/locale/plugin.openai_dalle.en.ini,sha256=
|
|
1745
|
-
pygpt_net/data/locale/plugin.openai_dalle.es.ini,sha256=
|
|
1746
|
-
pygpt_net/data/locale/plugin.openai_dalle.fr.ini,sha256=
|
|
1747
|
-
pygpt_net/data/locale/plugin.openai_dalle.it.ini,sha256=
|
|
1748
|
-
pygpt_net/data/locale/plugin.openai_dalle.pl.ini,sha256=
|
|
1749
|
-
pygpt_net/data/locale/plugin.openai_dalle.uk.ini,sha256=
|
|
1750
|
-
pygpt_net/data/locale/plugin.openai_dalle.zh.ini,sha256=
|
|
1751
|
-
pygpt_net/data/locale/plugin.openai_vision.de.ini,sha256=
|
|
1752
|
-
pygpt_net/data/locale/plugin.openai_vision.en.ini,sha256=
|
|
1753
|
-
pygpt_net/data/locale/plugin.openai_vision.es.ini,sha256=
|
|
1754
|
-
pygpt_net/data/locale/plugin.openai_vision.fr.ini,sha256=
|
|
1755
|
-
pygpt_net/data/locale/plugin.openai_vision.it.ini,sha256=
|
|
1756
|
-
pygpt_net/data/locale/plugin.openai_vision.pl.ini,sha256=
|
|
1757
|
-
pygpt_net/data/locale/plugin.openai_vision.uk.ini,sha256=
|
|
1758
|
-
pygpt_net/data/locale/plugin.openai_vision.zh.ini,sha256=
|
|
1743
|
+
pygpt_net/data/locale/plugin.openai_dalle.de.ini,sha256=XKQ6q2DbS5PrIXzB3mrHmQJmZKbq3YtSY4eglT1V-Ls,442
|
|
1744
|
+
pygpt_net/data/locale/plugin.openai_dalle.en.ini,sha256=yJ9Ie9waoM10yrsNpduCY3Rq1NqKK8NF9ygbTBFpOyI,488
|
|
1745
|
+
pygpt_net/data/locale/plugin.openai_dalle.es.ini,sha256=YUGL_CIzjRCEeXEYHCUYepOlEHSGFU0E1MpPcwZYH2k,449
|
|
1746
|
+
pygpt_net/data/locale/plugin.openai_dalle.fr.ini,sha256=ASYN8zGPmLFKxJZc9mUu1wqN7mRP6--zQJF9ioFn1Tk,470
|
|
1747
|
+
pygpt_net/data/locale/plugin.openai_dalle.it.ini,sha256=z3yFLuwS5HfXP7cKi4dkgezJpnI6WrSq2m-sDW4m7As,428
|
|
1748
|
+
pygpt_net/data/locale/plugin.openai_dalle.pl.ini,sha256=2TOnD6zgs-qyF9CQGOuOak8Q4BZWpX33wHJUi3VNb1U,405
|
|
1749
|
+
pygpt_net/data/locale/plugin.openai_dalle.uk.ini,sha256=bdq0tBv55a9cxsoqKsPVGAhsmC0oB0pA3xplUCviR-Y,669
|
|
1750
|
+
pygpt_net/data/locale/plugin.openai_dalle.zh.ini,sha256=gOxpWDCXDL3CGHvaEEHBZZ6x5Kd-eF8Zu755yfiZhoY,346
|
|
1751
|
+
pygpt_net/data/locale/plugin.openai_vision.de.ini,sha256=d0fkTnestehlmmkJmYA0jKM-Iuc184CNn3mQq8u3Tac,1521
|
|
1752
|
+
pygpt_net/data/locale/plugin.openai_vision.en.ini,sha256=lYUCYvK-smfGLcjTeIZ39f8MPOucjRaturktQ1k4bgU,1385
|
|
1753
|
+
pygpt_net/data/locale/plugin.openai_vision.es.ini,sha256=0rMReaWyErBL2Xke0uaZXYBV2-XoxHU9Mlk6qPqU05Q,1547
|
|
1754
|
+
pygpt_net/data/locale/plugin.openai_vision.fr.ini,sha256=WvfcDaSR6w_J4C6pbofak2_tuIaMD9y26h9KMZE_de8,1557
|
|
1755
|
+
pygpt_net/data/locale/plugin.openai_vision.it.ini,sha256=jPnYzeVa6ulF7P5c4mr7REr6EjA78NDFt6e7otInx64,1548
|
|
1756
|
+
pygpt_net/data/locale/plugin.openai_vision.pl.ini,sha256=JOywxX2jmf1kT097u9X85JJpdsvoRO1-Hx55YQHMErs,1484
|
|
1757
|
+
pygpt_net/data/locale/plugin.openai_vision.uk.ini,sha256=sUopD45q1mOKwTUIOnBP4vheUtrBcp21x1h4uoKthSM,2275
|
|
1758
|
+
pygpt_net/data/locale/plugin.openai_vision.zh.ini,sha256=_kyoxidMj1le4Omz1oAMegFnniAKPihSC3Y4bznMccI,1288
|
|
1759
1759
|
pygpt_net/data/locale/plugin.real_time.de.ini,sha256=GPz0E6qcyzftdE61lKqkK-wUvnsgrcxwOeg19-JhdCY,712
|
|
1760
1760
|
pygpt_net/data/locale/plugin.real_time.en.ini,sha256=_CBscABhj1feneX4ohr-jtt9meGO8fcMDGDzdBl4jyw,675
|
|
1761
1761
|
pygpt_net/data/locale/plugin.real_time.es.ini,sha256=CN-d7cs7ymsSbavjzSgvL20sQ0D2akbULvphGIR1pnI,713
|
|
@@ -1798,7 +1798,7 @@ pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,48
|
|
|
1798
1798
|
pygpt_net/item/assistant.py,sha256=65NZlvvR2VHWi6ZbPGi46qX0n0iJpbGHF2AxWXAIQlU,9588
|
|
1799
1799
|
pygpt_net/item/attachment.py,sha256=Wo-36L_R-P--JjDEpnpbaYo3vuIqr1s82m5rman9h28,2818
|
|
1800
1800
|
pygpt_net/item/calendar_note.py,sha256=EBhAAS09E5tIO3XhW_iA_wofSUywLWlYtiiMJJzVc3g,2114
|
|
1801
|
-
pygpt_net/item/ctx.py,sha256=
|
|
1801
|
+
pygpt_net/item/ctx.py,sha256=jUfdobUN02WxPH46nj-kxupOf2SVL4G6DlWRC7Vs4uQ,20822
|
|
1802
1802
|
pygpt_net/item/index.py,sha256=2feQPpOzrNkAGF4f8nKMAQzxDBAMpt6DKzCcYpCBE1E,1682
|
|
1803
1803
|
pygpt_net/item/mode.py,sha256=zMgJUA8943vg_WfF7Qwa63BdR3lMn7H8ItMpAj8z2Z0,601
|
|
1804
1804
|
pygpt_net/item/model.py,sha256=H_q20RZEebN5MJnswnf291LQUNJAaFuSHagq9xE4NCE,11104
|
|
@@ -1917,8 +1917,8 @@ pygpt_net/plugin/google/plugin.py,sha256=HcsBWXIdLdBbYr165x_GTaOD-BwI3jHTf7YryV9
|
|
|
1917
1917
|
pygpt_net/plugin/google/worker.py,sha256=woxatLXJMuB--I_Gz_uZml2BQ8TTcvMLqx-Lq4hPxVc,62684
|
|
1918
1918
|
pygpt_net/plugin/idx_llama_index/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1919
1919
|
pygpt_net/plugin/idx_llama_index/config.py,sha256=znp2ZADvwCUcwvLM_Szi8nxEDvl-Sg4M6Y_tXih8HdM,5794
|
|
1920
|
-
pygpt_net/plugin/idx_llama_index/plugin.py,sha256=
|
|
1921
|
-
pygpt_net/plugin/idx_llama_index/worker.py,sha256=
|
|
1920
|
+
pygpt_net/plugin/idx_llama_index/plugin.py,sha256=MiJUbfgT_8_a0CgkrXhRfoRr9gxtZMaoGCCbDxlZLVM,11221
|
|
1921
|
+
pygpt_net/plugin/idx_llama_index/worker.py,sha256=bv-ED7PAwWv5YwPtycNh2GxVJPq9_89zKgLnjMjkNL4,3362
|
|
1922
1922
|
pygpt_net/plugin/mailer/__init__.py,sha256=3CFRbMfxCodtGwsWTmOtY2KZdTFofe4moGaP8jgjP88,510
|
|
1923
1923
|
pygpt_net/plugin/mailer/config.py,sha256=Sc5ezdsOevx50v3XHRZdf_dgw1x4wUhRY0z2vcfg7Dc,4828
|
|
1924
1924
|
pygpt_net/plugin/mailer/plugin.py,sha256=JiOnJnt-IYvP7CNAkb0u-c48EAYrUeEPOgOSnqrD-_s,3387
|
|
@@ -1926,7 +1926,7 @@ pygpt_net/plugin/mailer/runner.py,sha256=xM-a6XWvJ8JwOzS2JRugBfxPj0CHVL7A8ZAmzC-
|
|
|
1926
1926
|
pygpt_net/plugin/mailer/worker.py,sha256=dl9_3i8comtHWr1zYukaXoIPVl3kJEvaCrdWR5TAu2g,3900
|
|
1927
1927
|
pygpt_net/plugin/openai_dalle/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1928
1928
|
pygpt_net/plugin/openai_dalle/config.py,sha256=XUYCRaT77BDlg2GnauyRwzbxZZWpTgfs6W_oMSKNWUw,4965
|
|
1929
|
-
pygpt_net/plugin/openai_dalle/plugin.py,sha256=
|
|
1929
|
+
pygpt_net/plugin/openai_dalle/plugin.py,sha256=dzBHfoRM-SXJW09cQzJtA0hdshrSlBSg46RCqonCtSc,5380
|
|
1930
1930
|
pygpt_net/plugin/openai_vision/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1931
1931
|
pygpt_net/plugin/openai_vision/config.py,sha256=V323eAXXKY01e8XJDTg6auavNzx7YMRIINgPiXGh_gk,4703
|
|
1932
1932
|
pygpt_net/plugin/openai_vision/plugin.py,sha256=nbzVAZK_4L3vnkOeIFGJlqGds37UaBZYKRvJU0kzuXo,11369
|
|
@@ -2244,15 +2244,15 @@ pygpt_net/tools/text_editor/ui/widgets.py,sha256=K_yxkyMyLfBfXXZ8iOczci10tPlsBJ5
|
|
|
2244
2244
|
pygpt_net/tools/translator/__init__.py,sha256=R4-y_danRZamZRwXctX1b0tI9oz4qM_xcVthXNyYjcU,508
|
|
2245
2245
|
pygpt_net/tools/translator/tool.py,sha256=3QIv50Bc7TgrkVQ-7qcuxIERAJz5e4Vy22Uj8K79_a0,14527
|
|
2246
2246
|
pygpt_net/tools/translator/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2247
|
-
pygpt_net/tools/translator/ui/dialogs.py,sha256=
|
|
2248
|
-
pygpt_net/tools/translator/ui/widgets.py,sha256=
|
|
2249
|
-
pygpt_net/ui/__init__.py,sha256=
|
|
2247
|
+
pygpt_net/tools/translator/ui/dialogs.py,sha256=qC-dCNtOLbOe-h586iBmsBTlv4KlUoxCkPqYOq8336k,4137
|
|
2248
|
+
pygpt_net/tools/translator/ui/widgets.py,sha256=2wQa1T0oWAkoQGTDntzFUE6r1slW-an5uretGxMAJeo,17540
|
|
2249
|
+
pygpt_net/ui/__init__.py,sha256=OoyVKGWLxPSlwTnEJ-fpwe5EH1GLdRGbTaNHwDoJ7PI,9313
|
|
2250
2250
|
pygpt_net/ui/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2251
|
-
pygpt_net/ui/base/config_dialog.py,sha256=
|
|
2251
|
+
pygpt_net/ui/base/config_dialog.py,sha256=djIXuMBC6AJN1WrUx-z35jjtZJyQvpwc7pYwNHN6Oqs,8584
|
|
2252
2252
|
pygpt_net/ui/base/context_menu.py,sha256=WqFYyAXJ0fguJ5LF5uOTSLyC38-DbewV2cDJVBYNWyk,4369
|
|
2253
2253
|
pygpt_net/ui/base/flow_layout.py,sha256=t6TeNSdmScs0NQKlIdzbFmR6oLogekzJGKPOYJUvXls,2803
|
|
2254
2254
|
pygpt_net/ui/dialog/__init__.py,sha256=1SGZ5i2G1UnKQpyj_HYkN0t-HLepD6jU_ICw1waaxlk,488
|
|
2255
|
-
pygpt_net/ui/dialog/about.py,sha256=
|
|
2255
|
+
pygpt_net/ui/dialog/about.py,sha256=6OCjEWJD10Fwz4ajx6qLh7D4oR0TsgDroczhneyGKEw,7072
|
|
2256
2256
|
pygpt_net/ui/dialog/applog.py,sha256=jOevcc3-DMasNyWEtNB7MrXZ8TEcxcPEUCzgGqT1VaA,5140
|
|
2257
2257
|
pygpt_net/ui/dialog/assistant.py,sha256=WJJvv9vSTd8sJNiWW5sVQb5YqpIvWgQH1eMTHvHfGAU,7614
|
|
2258
2258
|
pygpt_net/ui/dialog/assistant_store.py,sha256=F1fE3L2AnWT0IwRKeE7Z4eSXOIQrUY0t5jQ5ZORSfB8,22825
|
|
@@ -2268,17 +2268,17 @@ pygpt_net/ui/dialog/license.py,sha256=15Qrk_vnybnI3CAtvOHYJy8cSAkIG7fPG-HYqmSdct
|
|
|
2268
2268
|
pygpt_net/ui/dialog/logger.py,sha256=AGszZzKFL8gHtoVl96nxeRapebubEQrzB1fpG6QJRcc,2287
|
|
2269
2269
|
pygpt_net/ui/dialog/models.py,sha256=rURV8zf0rXXejdA4pahvwY3fjNY9AhCoFXq_OVW10Yk,13791
|
|
2270
2270
|
pygpt_net/ui/dialog/models_importer.py,sha256=RBAVr5lJgTEOq42V3MjagPBHsecLEJ2m0OadCOEAyAs,4547
|
|
2271
|
-
pygpt_net/ui/dialog/plugins.py,sha256
|
|
2271
|
+
pygpt_net/ui/dialog/plugins.py,sha256=--I4Jszj1fygXHHPgHqQuJdHEURFJwfz6De8YAICi-E,21191
|
|
2272
2272
|
pygpt_net/ui/dialog/preset.py,sha256=qSckSNtx57Ij4im1sj1XnAy7QhmmHSOQ1qtyLnfChjk,17864
|
|
2273
2273
|
pygpt_net/ui/dialog/preset_plugins.py,sha256=ynqc0aWjU7MTL4jxcVKaRH_tC9uzeWJCUzUjI74ADb0,3796
|
|
2274
2274
|
pygpt_net/ui/dialog/profile.py,sha256=Xk9NNQmr1A5pRUxdedu7ePEBq5OYhLT8UInuRWYBktU,4105
|
|
2275
2275
|
pygpt_net/ui/dialog/rename.py,sha256=Spb7cUVq1ivy3Zg28SBACJ7p_GwJ1gm82Oz9Ld_a_FU,973
|
|
2276
|
-
pygpt_net/ui/dialog/settings.py,sha256=
|
|
2276
|
+
pygpt_net/ui/dialog/settings.py,sha256=h8zo60D_t8jYMnhMwQS0R3HGXqwBA9s1XDjQlS_FOkA,15280
|
|
2277
2277
|
pygpt_net/ui/dialog/snap.py,sha256=LQlDsF4E-ernI8GFL1T-q9wZnoo57xyYpg5HKmeSbg4,1065
|
|
2278
2278
|
pygpt_net/ui/dialog/start.py,sha256=FPka-hcBepFtjEFKnkbUWH017xVZ7TBhNUA7wkY0E2M,2650
|
|
2279
2279
|
pygpt_net/ui/dialog/update.py,sha256=wJDe2D55XqlAd30vHLeWAuGmgaElwhTd82GIxzvqf4w,842
|
|
2280
2280
|
pygpt_net/ui/dialog/url.py,sha256=SziMn4Wzyld7Os6b4QdaYAxjwcIWfydmorhTSG7WeUo,949
|
|
2281
|
-
pygpt_net/ui/dialog/workdir.py,sha256=
|
|
2281
|
+
pygpt_net/ui/dialog/workdir.py,sha256=byvyoe3FtQZzo73KTdezOEmufnym31x3CsfllybK1oA,4474
|
|
2282
2282
|
pygpt_net/ui/dialogs.py,sha256=7EQUZZB0fYJPOKrkLyx4x3OendPUMOqa7NvaBFCgjPo,9846
|
|
2283
2283
|
pygpt_net/ui/layout/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2284
2284
|
pygpt_net/ui/layout/chat/__init__.py,sha256=WgwrBeowDL94ACYqFkzXoOvqceHgsBNGod4exeaAuck,508
|
|
@@ -2312,7 +2312,7 @@ pygpt_net/ui/layout/toolbox/presets.py,sha256=praww59pJLD7l5TITJh--B5H7V_OH1_8t3
|
|
|
2312
2312
|
pygpt_net/ui/layout/toolbox/prompt.py,sha256=jebF-q1S1Et6ISa9vI0_nM4sb7liDesAXJHtZ5Ll7ZI,4006
|
|
2313
2313
|
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=zEZr_XDz9QbPKL0u0KMSt1b8yOG-ao1gmZPvWWVpuVs,3392
|
|
2314
2314
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=GZY-N2z8re1LN1ntsy-3Ius8OY4DujmJpyJ1qP2ZRxs,2447
|
|
2315
|
-
pygpt_net/ui/main.py,sha256=
|
|
2315
|
+
pygpt_net/ui/main.py,sha256=7H3aGExUEECo5zoY-CDeLOcQZgTVigEe_Bpe_mS0pHo,14170
|
|
2316
2316
|
pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
|
|
2317
2317
|
pygpt_net/ui/menu/about.py,sha256=Y5Ok96MVsFPekvL4dPYK01QPGUUbZvfAsZztcxQhXh8,7232
|
|
2318
2318
|
pygpt_net/ui/menu/audio.py,sha256=Sb8NTAyMnPj4johTvBKwocHzq67XypIdw7K7hjf2760,3494
|
|
@@ -2423,7 +2423,7 @@ pygpt_net/ui/widget/textarea/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl
|
|
|
2423
2423
|
pygpt_net/ui/widget/textarea/calendar_note.py,sha256=qjs2uqX6OWQP11pr9y78V-nNL71qPEsXjOI2Mo_ezXw,5922
|
|
2424
2424
|
pygpt_net/ui/widget/textarea/console.py,sha256=nCV92S5JR4DiRWH6akWhygxg9kaLLxnCPoqXV0ZRK74,1333
|
|
2425
2425
|
pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13Jkq8EKhuI,1358
|
|
2426
|
-
pygpt_net/ui/widget/textarea/editor.py,sha256=
|
|
2426
|
+
pygpt_net/ui/widget/textarea/editor.py,sha256=MMFZ4Fee0YGzHer5ctgbcGHBtsg5qNzwG8AMRMhFlVM,6003
|
|
2427
2427
|
pygpt_net/ui/widget/textarea/find.py,sha256=29-5i6VByMI45M_yz_84bXpwN-Z0alUHg7sVOXZD6So,1543
|
|
2428
2428
|
pygpt_net/ui/widget/textarea/html.py,sha256=QnrCTYc5daqqm5pWhRAQETv0Mkpa-XlSAaBW_36oI8Q,12431
|
|
2429
2429
|
pygpt_net/ui/widget/textarea/input.py,sha256=SYrkkO7lomp2fT1GzzsqR-J2_UuHcZcghgJ9kT8K1h8,6664
|
|
@@ -2433,12 +2433,12 @@ pygpt_net/ui/widget/textarea/output.py,sha256=8T2spzqVYHKopSB83p1ULazGZ14nFJhXLB
|
|
|
2433
2433
|
pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
|
|
2434
2434
|
pygpt_net/ui/widget/textarea/search_input.py,sha256=phEXf50VcfCRBen0p2iEAzuX2zmrSE3nWVRfWmtHKpo,5228
|
|
2435
2435
|
pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
|
|
2436
|
-
pygpt_net/ui/widget/textarea/web.py,sha256=
|
|
2436
|
+
pygpt_net/ui/widget/textarea/web.py,sha256=xGI-47bZ5M_vf_jMc2R9sB1-vuHJbgd5FxE5tbKXj-Q,19815
|
|
2437
2437
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2438
2438
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
|
2439
2439
|
pygpt_net/utils.py,sha256=gGbw-lBTodGg_uBx6zKEwa58GaVNZN1I9zY_ZDyJ9xg,8872
|
|
2440
|
-
pygpt_net-2.6.
|
|
2441
|
-
pygpt_net-2.6.
|
|
2442
|
-
pygpt_net-2.6.
|
|
2443
|
-
pygpt_net-2.6.
|
|
2444
|
-
pygpt_net-2.6.
|
|
2440
|
+
pygpt_net-2.6.17.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2441
|
+
pygpt_net-2.6.17.dist-info/METADATA,sha256=XrpzGUb-XHaNioXVdmp9q5Xxj2snZNP_OdoKqK3v-z4,190129
|
|
2442
|
+
pygpt_net-2.6.17.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2443
|
+
pygpt_net-2.6.17.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2444
|
+
pygpt_net-2.6.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|