pygpt-net 2.5.12__py3-none-any.whl → 2.5.14__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 +10 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/chat/common.py +1 -0
- pygpt_net/controller/painter/capture.py +1 -1
- pygpt_net/core/camera/__init__.py +1 -1
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/modes.json +3 -3
- pygpt_net/data/locale/locale.en.ini +1 -1
- pygpt_net/item/__init__.py +0 -0
- pygpt_net/item/assistant.py +1 -1
- pygpt_net/item/attachment.py +2 -2
- pygpt_net/item/calendar_note.py +1 -1
- pygpt_net/item/ctx.py +1 -1
- pygpt_net/item/index.py +0 -0
- pygpt_net/item/mode.py +0 -0
- pygpt_net/item/notepad.py +2 -2
- pygpt_net/item/preset.py +0 -0
- pygpt_net/item/prompt.py +2 -2
- pygpt_net/provider/core/ctx/db_sqlite/patch.py +2 -1
- pygpt_net/provider/core/notepad/db_sqlite/patch.py +1 -0
- pygpt_net/ui/main.py +4 -1
- {pygpt_net-2.5.12.dist-info → pygpt_net-2.5.14.dist-info}/METADATA +12 -2
- {pygpt_net-2.5.12.dist-info → pygpt_net-2.5.14.dist-info}/RECORD +23 -23
- {pygpt_net-2.5.12.dist-info → pygpt_net-2.5.14.dist-info}/LICENSE +0 -0
- {pygpt_net-2.5.12.dist-info → pygpt_net-2.5.14.dist-info}/WHEEL +0 -0
- {pygpt_net-2.5.12.dist-info → pygpt_net-2.5.14.dist-info}/entry_points.txt +0 -0
pygpt_net/CHANGELOG.txt
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
2.5.14 (2025-06-23)
|
2
|
+
|
3
|
+
- Fix: crash if empty shortcuts in config.
|
4
|
+
- Fix: UUID serialization.
|
5
|
+
|
6
|
+
2.5.13 (2025-06-22)
|
7
|
+
|
8
|
+
- Disabled auto-switch to vision mode in Painter.
|
9
|
+
- UI fixes.
|
10
|
+
|
1
11
|
2.5.12 (2025-06-22)
|
2
12
|
|
3
13
|
- Fixed send-mode radio buttons switch.
|
pygpt_net/__init__.py
CHANGED
@@ -6,15 +6,15 @@
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
7
|
# MIT License #
|
8
8
|
# Created By : Marcin Szczygliński #
|
9
|
-
# Updated Date: 2025-06-
|
9
|
+
# Updated Date: 2025-06-23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
__author__ = "Marcin Szczygliński"
|
13
13
|
__copyright__ = "Copyright 2025, Marcin Szczygliński"
|
14
14
|
__credits__ = ["Marcin Szczygliński"]
|
15
15
|
__license__ = "MIT"
|
16
|
-
__version__ = "2.5.
|
17
|
-
__build__ = "2025-06-
|
16
|
+
__version__ = "2.5.14"
|
17
|
+
__build__ = "2025-06-23"
|
18
18
|
__maintainer__ = "Marcin Szczygliński"
|
19
19
|
__github__ = "https://github.com/szczyglis-dev/py-gpt"
|
20
20
|
__report__ = "https://github.com/szczyglis-dev/py-gpt/issues"
|
@@ -188,6 +188,7 @@ class Common:
|
|
188
188
|
if value == 0:
|
189
189
|
self.window.ui.nodes['input.send_none'].setChecked(True)
|
190
190
|
self.window.ui.nodes['input.send_shift_enter'].setChecked(False)
|
191
|
+
self.window.ui.nodes['input.send_enter'].setChecked(False)
|
191
192
|
elif value == 1:
|
192
193
|
self.window.ui.nodes['input.send_enter'].setChecked(True)
|
193
194
|
self.window.ui.nodes['input.send_shift_enter'].setChecked(False)
|
@@ -136,7 +136,7 @@ class Capture:
|
|
136
136
|
def use(self):
|
137
137
|
"""Use current image"""
|
138
138
|
# switch to vision mode if needed
|
139
|
-
self.window.controller.chat.vision.switch_to_vision()
|
139
|
+
# self.window.controller.chat.vision.switch_to_vision()
|
140
140
|
|
141
141
|
# clear attachments before capture if needed
|
142
142
|
if self.window.controller.attachment.is_capture_clear():
|
@@ -61,7 +61,7 @@ class CaptureWorker(QRunnable):
|
|
61
61
|
try:
|
62
62
|
# get params from global config
|
63
63
|
self.capture = cv2.VideoCapture(self.window.core.config.get('vision.capture.idx'))
|
64
|
-
if not self.capture.isOpened():
|
64
|
+
if not self.capture or not self.capture.isOpened():
|
65
65
|
self.allow_finish = False
|
66
66
|
self.signals.unfinished.emit()
|
67
67
|
return
|
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"__meta__": {
|
3
|
-
"version": "2.5.
|
4
|
-
"app.version": "2.5.
|
5
|
-
"updated_at": "2025-06-
|
3
|
+
"version": "2.5.14",
|
4
|
+
"app.version": "2.5.14",
|
5
|
+
"updated_at": "2025-06-23T00:00:00"
|
6
6
|
},
|
7
7
|
"access.audio.event.speech": false,
|
8
8
|
"access.audio.event.speech.disabled": [],
|
pygpt_net/data/config/modes.json
CHANGED
@@ -810,7 +810,7 @@ model.llama_index.mode.desc = Available sub-modes: chat
|
|
810
810
|
model.llama_index.provider = [LlamaIndex] Provider
|
811
811
|
model.llama_index.provider.desc = LLM provider to use in "Chat with Files" mode
|
812
812
|
model.mode = Mode(s)
|
813
|
-
model.mode.desc = Available modes: chat, completion, img, vision, assistant, langchain, llama_index, agent, agent_llama
|
813
|
+
model.mode.desc = Available modes: chat, completion, img, audio, vision, assistant, langchain, llama_index, agent, agent_llama, research
|
814
814
|
model.name = Name
|
815
815
|
model.tokens = Output tokens
|
816
816
|
model.tokens.desc = Max model output tokens
|
pygpt_net/item/__init__.py
CHANGED
File without changes
|
pygpt_net/item/assistant.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:
|
9
|
+
# Updated Date: 2025.06.23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import json
|
pygpt_net/item/attachment.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:
|
9
|
+
# Updated Date: 2025.06.23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import json
|
@@ -43,7 +43,7 @@ class AttachmentItem:
|
|
43
43
|
"""
|
44
44
|
return {
|
45
45
|
'id': self.id,
|
46
|
-
'uuid': self.uuid,
|
46
|
+
'uuid': str(self.uuid),
|
47
47
|
'name': self.name,
|
48
48
|
'path': self.path,
|
49
49
|
'size': self.size,
|
pygpt_net/item/calendar_note.py
CHANGED
pygpt_net/item/ctx.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:
|
9
|
+
# Updated Date: 2025.06.23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import copy
|
pygpt_net/item/index.py
CHANGED
File without changes
|
pygpt_net/item/mode.py
CHANGED
File without changes
|
pygpt_net/item/notepad.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:
|
9
|
+
# Updated Date: 2025.06.23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import json
|
@@ -29,7 +29,7 @@ class NotepadItem:
|
|
29
29
|
def to_dict(self):
|
30
30
|
return {
|
31
31
|
'id': self.id,
|
32
|
-
'uuid': self.uuid,
|
32
|
+
'uuid': str(self.uuid),
|
33
33
|
'idx': self.idx,
|
34
34
|
'title': self.title,
|
35
35
|
'content': self.content,
|
pygpt_net/item/preset.py
CHANGED
File without changes
|
pygpt_net/item/prompt.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:
|
9
|
+
# Updated Date: 2025.06.23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import json
|
@@ -28,7 +28,7 @@ class PromptItem:
|
|
28
28
|
:return: serialized item
|
29
29
|
"""
|
30
30
|
return {
|
31
|
-
'id': self.id,
|
31
|
+
'id': str(self.id),
|
32
32
|
'name': self.name,
|
33
33
|
'content': self.content,
|
34
34
|
}
|
@@ -6,7 +6,7 @@
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
7
|
# MIT License #
|
8
8
|
# Created By : Marcin Szczygliński #
|
9
|
-
# Updated Date:
|
9
|
+
# Updated Date: 2025.06.23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import datetime
|
@@ -47,6 +47,7 @@ class Patch:
|
|
47
47
|
|
48
48
|
:return: True if imported
|
49
49
|
"""
|
50
|
+
return True
|
50
51
|
# use json provider to load old contexts
|
51
52
|
provider = self.window.core.ctx.providers['json_file']
|
52
53
|
provider.attach(self.window)
|
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.06.23 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import copy
|
@@ -375,6 +375,9 @@ class MainWindow(QMainWindow, QtStyleTools):
|
|
375
375
|
self.shortcuts.append(escape_shortcut)
|
376
376
|
|
377
377
|
config = copy.deepcopy(self.core.config.get("access.shortcuts"))
|
378
|
+
if config is None:
|
379
|
+
return
|
380
|
+
|
378
381
|
for shortcut_conf in config:
|
379
382
|
key = shortcut_conf.get('key', '')
|
380
383
|
key_modifier = shortcut_conf.get('key_modifier', '')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.5.
|
3
|
+
Version: 2.5.14
|
4
4
|
Summary: Desktop AI Assistant powered by models: OpenAI o1, GPT-4o, GPT-4, GPT-4 Vision, GPT-3.5, DALL-E 3, Llama 3, Mistral, Gemini, Claude, DeepSeek, Bielik, and other models supported by Langchain, Llama Index, and Ollama. Features include chatbot, text completion, image generation, vision analysis, speech-to-text, internet access, file handling, command execution and more.
|
5
5
|
License: MIT
|
6
6
|
Keywords: py_gpt,py-gpt,pygpt,desktop,app,o1,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,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
|
@@ -100,7 +100,7 @@ Description-Content-Type: text/markdown
|
|
100
100
|
|
101
101
|
[](https://snapcraft.io/pygpt)
|
102
102
|
|
103
|
-
Release: **2.5.
|
103
|
+
Release: **2.5.14** | build: **2025-06-23** | Python: **>=3.10, <3.13**
|
104
104
|
|
105
105
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
106
106
|
>
|
@@ -4070,6 +4070,16 @@ may consume additional tokens that are not displayed in the main window.
|
|
4070
4070
|
|
4071
4071
|
## Recent changes:
|
4072
4072
|
|
4073
|
+
**2.5.14 (2025-06-23)**
|
4074
|
+
|
4075
|
+
- Fix: crash if empty shortcuts in config.
|
4076
|
+
- Fix: UUID serialization.
|
4077
|
+
|
4078
|
+
**2.5.13 (2025-06-22)**
|
4079
|
+
|
4080
|
+
- Disabled auto-switch to vision mode in Painter.
|
4081
|
+
- UI fixes.
|
4082
|
+
|
4073
4083
|
**2.5.12 (2025-06-22)**
|
4074
4084
|
|
4075
4085
|
- Fixed send-mode radio buttons switch.
|
@@ -1,6 +1,6 @@
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=eicPa8iM0_RslC21PHY4jpvSnzrBkumJRLCbY2amLj8,83357
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
3
|
-
pygpt_net/__init__.py,sha256=
|
3
|
+
pygpt_net/__init__.py,sha256=ANHS_QkiNPLIZDlIrCBmJjPTpvwLanQZvm94A2aFK1A,1373
|
4
4
|
pygpt_net/app.py,sha256=XXjn9XaKHGRcsHN8mMuqbRHAg8_Da0GLmACUU9ddjBc,16217
|
5
5
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
6
6
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
@@ -28,7 +28,7 @@ pygpt_net/controller/chat/__init__.py,sha256=JUDt_DqxgpBROpr6k2jFQ03EIqXwmrAkwkk
|
|
28
28
|
pygpt_net/controller/chat/attachment.py,sha256=6BzM8cKeazp12Ej6_3IH3I6NEMR5WON7N4PMY-i0h30,20974
|
29
29
|
pygpt_net/controller/chat/audio.py,sha256=QsU36McxqlRoP6B-NSeck968g1M8JhlLkLwGLunbapw,3210
|
30
30
|
pygpt_net/controller/chat/command.py,sha256=3fNYvgt9NmCZPNrlqfLXivmN63ZRsuFseNjj1ZLnwts,3293
|
31
|
-
pygpt_net/controller/chat/common.py,sha256=
|
31
|
+
pygpt_net/controller/chat/common.py,sha256=6CWvXPD39RLl2TgppgCiDRViFPTSZDhoHXrgpy9B9jg,14682
|
32
32
|
pygpt_net/controller/chat/files.py,sha256=VFiiTeWTYR15Nwf1CTLEmeXqlmRHzNQVkNaU6hY2Gz4,2846
|
33
33
|
pygpt_net/controller/chat/image.py,sha256=XghPvTP8n3DxFgRrZ3bCfeLNTvOKSxbl-ewTwUTd4HM,8308
|
34
34
|
pygpt_net/controller/chat/input.py,sha256=H6gmYjD3fSzSD_Xj7bpR0JooRtNgsyVkU6kobBUoSpk,10946
|
@@ -79,7 +79,7 @@ pygpt_net/controller/model/__init__.py,sha256=qRXFmBje0zu_obAku3qTkhnr01z5D5yDN4
|
|
79
79
|
pygpt_net/controller/model/editor.py,sha256=8UaNi_Ui5ooPdio9_mw4ECihTxE7Iq5n5hDl41D3hu0,12675
|
80
80
|
pygpt_net/controller/notepad/__init__.py,sha256=zLWbPvcOQ1yY7VFT27iarpBZqz9BPkOi4KvkLtUUsK4,9438
|
81
81
|
pygpt_net/controller/painter/__init__.py,sha256=1Ekmr2a3irDkSb2wowiPXhW59rfdZOW1tdbxeubph-k,2747
|
82
|
-
pygpt_net/controller/painter/capture.py,sha256=
|
82
|
+
pygpt_net/controller/painter/capture.py,sha256=X3TqnNypxT_wngkQ4ovfS9glQwoGHyM-peR5aLJQGvk,6666
|
83
83
|
pygpt_net/controller/painter/common.py,sha256=gTRCIcmAsgYhueUWNfEIwIJo-40YBVhoNSksOY1Oj34,6395
|
84
84
|
pygpt_net/controller/plugins/__init__.py,sha256=yvzAjlrNvRoPihr7kkrU8eqjVD6zCoHLT9ZRl-01dk0,14466
|
85
85
|
pygpt_net/controller/plugins/presets.py,sha256=SaMJTUENCsssz0lU__URBeFZXZHpkKiSjNEgKz-yYA4,12061
|
@@ -129,7 +129,7 @@ pygpt_net/core/bridge/__init__.py,sha256=4qEZJkMIe2o861ukwAlFy0ba_ri8sqx4nwLhUZX
|
|
129
129
|
pygpt_net/core/bridge/context.py,sha256=zIqbbFyZYsU5JEJGvwBg07u9QeeMUKsdTnURyp8tR4Y,4351
|
130
130
|
pygpt_net/core/bridge/worker.py,sha256=aq0xA6LCvEK7BHTx3I1vziZpFtE29IHl-19yzsEB7mE,5817
|
131
131
|
pygpt_net/core/calendar/__init__.py,sha256=ao9kQk6Xjse95m1TbL1Mlbo1k1Q8D9eGc10L-71G9TY,7227
|
132
|
-
pygpt_net/core/camera/__init__.py,sha256=
|
132
|
+
pygpt_net/core/camera/__init__.py,sha256=iJ7ZIQPi3nFb5FtvH8Rig4v9pjRgccrHzSlY_ua0B_g,4077
|
133
133
|
pygpt_net/core/chain/__init__.py,sha256=C7Xm88bRblcyM4e0wZMFG-6SQCdw_frXN9kqnWzce60,3541
|
134
134
|
pygpt_net/core/chain/chat.py,sha256=5LxPWHkocjrIAAwrdDH1ss6knAnh4_owfbHPsOQYSws,5238
|
135
135
|
pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-IiBPg,5698
|
@@ -247,9 +247,9 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
247
247
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
248
248
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
249
249
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
250
|
-
pygpt_net/data/config/config.json,sha256=
|
251
|
-
pygpt_net/data/config/models.json,sha256=
|
252
|
-
pygpt_net/data/config/modes.json,sha256
|
250
|
+
pygpt_net/data/config/config.json,sha256=VFB34iFq74Hr13W7791UxPuchtJIH-DXZ3cBy7bLVGc,19973
|
251
|
+
pygpt_net/data/config/models.json,sha256=Tp_hqv-k5TWcpFzDTxEgKnXBSR_zxAyBjlRxxjY3vuk,124735
|
252
|
+
pygpt_net/data/config/modes.json,sha256=-q4Q4RsyoF2rLgvS0On59zXK0m0ml_kx6I0hNfLZRDY,2085
|
253
253
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
254
254
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
255
255
|
pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
|
@@ -1487,7 +1487,7 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
1487
1487
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
1488
1488
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
1489
1489
|
pygpt_net/data/locale/locale.de.ini,sha256=j3Wfno6oS_1G_ZyCC8RaicXz6SREpilN8e034zEYPl0,64611
|
1490
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
1490
|
+
pygpt_net/data/locale/locale.en.ini,sha256=La20hfu0T6OytXyyAlaLjTCjYPt7kquLgNjJMOW0hhY,77498
|
1491
1491
|
pygpt_net/data/locale/locale.es.ini,sha256=BYaHtKQCIYgXH-dMait7dU5LL_n50uo1PNRhOF9Vayw,64794
|
1492
1492
|
pygpt_net/data/locale/locale.fr.ini,sha256=lidia86KWGyWXiKz7pjZx9giTaELVndduS7ai91lAFc,66840
|
1493
1493
|
pygpt_net/data/locale/locale.it.ini,sha256=jVsWf8fm3E5FDzVxxm5Y2YMfJsiqU1rAmGRVo0h1jeU,63544
|
@@ -1668,16 +1668,16 @@ pygpt_net/fonts_rc.py,sha256=EVwgIVDq-Sudy9DYpHbzuhQ_jd9pUuQ8e3-nycPzj3A,3238283
|
|
1668
1668
|
pygpt_net/icons.qrc,sha256=7etxjwGtJm61IfTFIloyO7yonX06Jc1ZoSniGUFTho4,14981
|
1669
1669
|
pygpt_net/icons_rc.py,sha256=FWRllE_kudX-jI4lOto-Pvf5NDCFDrpAxuQgXgldg6k,92180
|
1670
1670
|
pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1671
|
-
pygpt_net/item/assistant.py,sha256=
|
1672
|
-
pygpt_net/item/attachment.py,sha256=
|
1673
|
-
pygpt_net/item/calendar_note.py,sha256=
|
1674
|
-
pygpt_net/item/ctx.py,sha256=
|
1671
|
+
pygpt_net/item/assistant.py,sha256=AjbpL-EnolBc-esGkBSAAaNPrgFqMSbevvtIulhu9b4,9587
|
1672
|
+
pygpt_net/item/attachment.py,sha256=DttKEdCuWa_0O1CLoDiBLoST73bXPIbdqryeui00bD4,2818
|
1673
|
+
pygpt_net/item/calendar_note.py,sha256=Y9rfMmTbWwcFrHNra62aUww-NGPIE6O03wHRrF5TyAg,2113
|
1674
|
+
pygpt_net/item/ctx.py,sha256=i4lKRQ9xx_SaOVuiRJlKnsA5sBjl5pRby8MtJvsp3lc,18904
|
1675
1675
|
pygpt_net/item/index.py,sha256=gDQYPlhwHF0QVGwX4TFGxHyO7pt5tqHcuyc3DPgPCA0,1681
|
1676
1676
|
pygpt_net/item/mode.py,sha256=bhX6ZOvTKsiLI6-N-7cuJ_9izlAqq6bsXF1FjufJvfw,600
|
1677
1677
|
pygpt_net/item/model.py,sha256=gP3WKq9XWwoI-aOnr62t6va-4IV13fjJP_6o0Javg2k,8166
|
1678
|
-
pygpt_net/item/notepad.py,sha256=
|
1678
|
+
pygpt_net/item/notepad.py,sha256=l5e0JAnwz5a3fPSaSq1ih3XfgrLX5365xAg5HYIqIyQ,1513
|
1679
1679
|
pygpt_net/item/preset.py,sha256=m03LtRjODd64xoZ92EJaOPp82VXOZ3zBUDtJEFyxvc4,5575
|
1680
|
-
pygpt_net/item/prompt.py,sha256=
|
1680
|
+
pygpt_net/item/prompt.py,sha256=aDzXxQ4kLQ0Ve1EvCmO8p9CzYVm2BYuR9ubYf6HFr4g,1563
|
1681
1681
|
pygpt_net/js.qrc,sha256=OqPzGN6U2Y-uENLFlfDY2BxywCAnU0uds4QcbB7me5Q,542
|
1682
1682
|
pygpt_net/js_rc.py,sha256=5f7l2zJIzW-gHHndytWVXz2sjKyR924GCpOSmDX9sZI,2456868
|
1683
1683
|
pygpt_net/launcher.py,sha256=v_wlnRB_fYkCLP9VYvxPjPyBLJK_j8gg7GOppPMCyeQ,9339
|
@@ -1825,7 +1825,7 @@ pygpt_net/provider/core/config/patch.py,sha256=JYNOz-_7ePQRBWfcc1SYHaeCZAZKox8Vo
|
|
1825
1825
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1826
1826
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
1827
1827
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=G2pB7kZfREJRLJZmfv3DKTslXC-K7EhNN2sn56q6BFA,11753
|
1828
|
-
pygpt_net/provider/core/ctx/db_sqlite/patch.py,sha256=
|
1828
|
+
pygpt_net/provider/core/ctx/db_sqlite/patch.py,sha256=YN_KRCvV8WqW_wmtbLurqikhT_46PbhoFpZcMNksKag,3121
|
1829
1829
|
pygpt_net/provider/core/ctx/db_sqlite/storage.py,sha256=YkyS29h3vroGyiAdHdW5A3T5zF3KbQXpG3pd6hsQRJk,43714
|
1830
1830
|
pygpt_net/provider/core/ctx/db_sqlite/utils.py,sha256=XuZYx-z9FEmt_TG5yFZ-5Zf6PgbSkG7Svx5oLEHXigY,8953
|
1831
1831
|
pygpt_net/provider/core/ctx/json_file.py,sha256=g1U4vOxfyA2jydwYvPQ9HpUIQihyBK2K4K6SQ75jEEs,11665
|
@@ -1852,7 +1852,7 @@ pygpt_net/provider/core/model/patch.py,sha256=LkQVYNeVDA02fVZVhr8adde4EcBG0wh1Nz
|
|
1852
1852
|
pygpt_net/provider/core/notepad/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1853
1853
|
pygpt_net/provider/core/notepad/base.py,sha256=7aPhild8cALTaN3JEbI0YrkIW1DRIycGQWTfsdH6WcQ,1323
|
1854
1854
|
pygpt_net/provider/core/notepad/db_sqlite/__init__.py,sha256=DQnVKJxvLq-6zlRlLk3MXSQZEObFtcQ5p5mEnuRzwYE,3104
|
1855
|
-
pygpt_net/provider/core/notepad/db_sqlite/patch.py,sha256=
|
1855
|
+
pygpt_net/provider/core/notepad/db_sqlite/patch.py,sha256=W-M7Kd5xaBVWPe8jydux7tVzkRCKOn4Hldg-0y0ucXc,2825
|
1856
1856
|
pygpt_net/provider/core/notepad/db_sqlite/storage.py,sha256=vrPVz3yliDUS57YLBip_X1Lf9gK_aRBxOUhXXUKveYk,7320
|
1857
1857
|
pygpt_net/provider/core/notepad/json_file.py,sha256=8PDjqJax417JmTZPd6-DKPPVZotOyW_qmblK4I5tjxw,7555
|
1858
1858
|
pygpt_net/provider/core/plugin_preset/__init__.py,sha256=XMtqv_Yl6rBM0G3k59DZJLJu7SWAHPL7nO8j50pKwHo,488
|
@@ -2057,7 +2057,7 @@ pygpt_net/ui/layout/toolbox/model.py,sha256=9JHW8yzTHUh6TJmOAylriwlDsyrB8J9wDpJp
|
|
2057
2057
|
pygpt_net/ui/layout/toolbox/presets.py,sha256=Afb_hLddPQlTcCUcWSCPhfp7ApKdbypkDJdjNnv1oFk,5797
|
2058
2058
|
pygpt_net/ui/layout/toolbox/prompt.py,sha256=QC5CZx5TvO0-CZVXea4eIuAHFjoYcGxYrLBtny15ATI,3937
|
2059
2059
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=GZY-N2z8re1LN1ntsy-3Ius8OY4DujmJpyJ1qP2ZRxs,2447
|
2060
|
-
pygpt_net/ui/main.py,sha256=
|
2060
|
+
pygpt_net/ui/main.py,sha256=yfUhhmvPgkg7GSVI0iA1P5x2TOVLgZoPLt7vFepGwAU,12812
|
2061
2061
|
pygpt_net/ui/menu/__init__.py,sha256=hGxe2_tp3-hDGm2EjjMwBc69zmK3cr664LoV3cm2vGk,1877
|
2062
2062
|
pygpt_net/ui/menu/about.py,sha256=bs0iGge52THU72oyu98QBxvh5iKA9APQIStRKQT5IQc,5891
|
2063
2063
|
pygpt_net/ui/menu/audio.py,sha256=Sb8NTAyMnPj4johTvBKwocHzq67XypIdw7K7hjf2760,3494
|
@@ -2178,8 +2178,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=2LebPHa_e5lvBqnIVzjwsLcFMoc11BonXgAUs
|
|
2178
2178
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2179
2179
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2180
2180
|
pygpt_net/utils.py,sha256=WtrdagJ-BlCjxGEEVq2rhsyAZMcU6JqltCXzOs823po,6707
|
2181
|
-
pygpt_net-2.5.
|
2182
|
-
pygpt_net-2.5.
|
2183
|
-
pygpt_net-2.5.
|
2184
|
-
pygpt_net-2.5.
|
2185
|
-
pygpt_net-2.5.
|
2181
|
+
pygpt_net-2.5.14.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
2182
|
+
pygpt_net-2.5.14.dist-info/METADATA,sha256=zFTUWAunb6J8E7JmiWjk_KnowjJFlVpmXXjJksyZqOQ,169886
|
2183
|
+
pygpt_net-2.5.14.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
2184
|
+
pygpt_net-2.5.14.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2185
|
+
pygpt_net-2.5.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|