pygpt-net 2.5.11__py3-none-any.whl → 2.5.13__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 +13 -1
- pygpt_net/controller/painter/capture.py +1 -1
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +124 -3
- pygpt_net/data/locale/locale.en.ini +1 -1
- pygpt_net/provider/core/model/patch.py +7 -1
- {pygpt_net-2.5.11.dist-info → pygpt_net-2.5.13.dist-info}/METADATA +12 -2
- {pygpt_net-2.5.11.dist-info → pygpt_net-2.5.13.dist-info}/RECORD +13 -13
- {pygpt_net-2.5.11.dist-info → pygpt_net-2.5.13.dist-info}/LICENSE +0 -0
- {pygpt_net-2.5.11.dist-info → pygpt_net-2.5.13.dist-info}/WHEEL +0 -0
- {pygpt_net-2.5.11.dist-info → pygpt_net-2.5.13.dist-info}/entry_points.txt +0 -0
pygpt_net/CHANGELOG.txt
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
2.5.13 (2025-06-22)
|
2
|
+
|
3
|
+
- Disabled auto-switch to vision mode in Painer.
|
4
|
+
- UI fixes.
|
5
|
+
|
6
|
+
2.5.12 (2025-06-22)
|
7
|
+
|
8
|
+
- Fixed send-mode radio buttons switch.
|
9
|
+
- Added a new models: qwen2.5-coder, OpenAI gpt-4.1-mini.
|
10
|
+
|
1
11
|
2.5.11 (2025-06-21)
|
2
12
|
|
3
13
|
- Added a new models: OpenAI o1-pro and o3-pro, Anthropic Claude 4.0 Opus and Claude 4.0 Sonnet, Alibaba Qwen and Qwen2.
|
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-22 02: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.13"
|
17
|
+
__build__ = "2025-06-22"
|
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"
|
@@ -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.22 01:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import os
|
@@ -185,6 +185,18 @@ class Common:
|
|
185
185
|
|
186
186
|
:param value: True if enabled
|
187
187
|
"""
|
188
|
+
if value == 0:
|
189
|
+
self.window.ui.nodes['input.send_none'].setChecked(True)
|
190
|
+
self.window.ui.nodes['input.send_shift_enter'].setChecked(False)
|
191
|
+
self.window.ui.nodes['input.send_enter'].setChecked(False)
|
192
|
+
elif value == 1:
|
193
|
+
self.window.ui.nodes['input.send_enter'].setChecked(True)
|
194
|
+
self.window.ui.nodes['input.send_shift_enter'].setChecked(False)
|
195
|
+
self.window.ui.nodes['input.send_none'].setChecked(False)
|
196
|
+
elif value == 2:
|
197
|
+
self.window.ui.nodes['input.send_shift_enter'].setChecked(True)
|
198
|
+
self.window.ui.nodes['input.send_enter'].setChecked(False)
|
199
|
+
self.window.ui.nodes['input.send_none'].setChecked(False)
|
188
200
|
self.window.core.config.set('send_mode', value)
|
189
201
|
|
190
202
|
def focus_input(self):
|
@@ -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():
|
@@ -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.13",
|
4
|
+
"app.version": "2.5.13",
|
5
|
+
"updated_at": "2025-06-22T00:00:00"
|
6
6
|
},
|
7
7
|
"access.audio.event.speech": false,
|
8
8
|
"access.audio.event.speech.disabled": [],
|
@@ -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.13",
|
4
|
+
"app.version": "2.5.13",
|
5
|
+
"updated_at": "2025-06-22T00:00:00"
|
6
6
|
},
|
7
7
|
"items": {
|
8
8
|
"claude-3-5-sonnet-20240620": {
|
@@ -2197,6 +2197,85 @@
|
|
2197
2197
|
"tokens": 32768,
|
2198
2198
|
"default": false
|
2199
2199
|
},
|
2200
|
+
"gpt-4.1-mini": {
|
2201
|
+
"id": "gpt-4.1-mini",
|
2202
|
+
"name": "gpt-4.1-mini",
|
2203
|
+
"mode": [
|
2204
|
+
"chat",
|
2205
|
+
"assistant",
|
2206
|
+
"langchain",
|
2207
|
+
"llama_index",
|
2208
|
+
"vision",
|
2209
|
+
"agent",
|
2210
|
+
"agent_llama",
|
2211
|
+
"expert"
|
2212
|
+
],
|
2213
|
+
"langchain": {
|
2214
|
+
"provider": "openai",
|
2215
|
+
"mode": [
|
2216
|
+
"chat"
|
2217
|
+
],
|
2218
|
+
"args": [
|
2219
|
+
{
|
2220
|
+
"name": "model_name",
|
2221
|
+
"value": "gpt-4.1-mini",
|
2222
|
+
"type": "str"
|
2223
|
+
}
|
2224
|
+
],
|
2225
|
+
"env": [
|
2226
|
+
{
|
2227
|
+
"name": "OPENAI_API_KEY",
|
2228
|
+
"value": "{api_key}"
|
2229
|
+
},
|
2230
|
+
{
|
2231
|
+
"name": "OPENAI_API_BASE",
|
2232
|
+
"value": "{api_endpoint}"
|
2233
|
+
},
|
2234
|
+
{
|
2235
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
2236
|
+
"value": "{api_azure_endpoint}"
|
2237
|
+
},
|
2238
|
+
{
|
2239
|
+
"name": "OPENAI_API_VERSION",
|
2240
|
+
"value": "{api_azure_version}"
|
2241
|
+
}
|
2242
|
+
]
|
2243
|
+
},
|
2244
|
+
"llama_index": {
|
2245
|
+
"provider": "openai",
|
2246
|
+
"mode": [
|
2247
|
+
"chat"
|
2248
|
+
],
|
2249
|
+
"args": [
|
2250
|
+
{
|
2251
|
+
"name": "model",
|
2252
|
+
"value": "gpt-4.1-mini",
|
2253
|
+
"type": "str"
|
2254
|
+
}
|
2255
|
+
],
|
2256
|
+
"env": [
|
2257
|
+
{
|
2258
|
+
"name": "OPENAI_API_KEY",
|
2259
|
+
"value": "{api_key}"
|
2260
|
+
},
|
2261
|
+
{
|
2262
|
+
"name": "OPENAI_API_BASE",
|
2263
|
+
"value": "{api_endpoint}"
|
2264
|
+
},
|
2265
|
+
{
|
2266
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
2267
|
+
"value": "{api_azure_endpoint}"
|
2268
|
+
},
|
2269
|
+
{
|
2270
|
+
"name": "OPENAI_API_VERSION",
|
2271
|
+
"value": "{api_azure_version}"
|
2272
|
+
}
|
2273
|
+
]
|
2274
|
+
},
|
2275
|
+
"ctx": 1047576,
|
2276
|
+
"tokens": 32768,
|
2277
|
+
"default": false
|
2278
|
+
},
|
2200
2279
|
"gpt-4.5-preview": {
|
2201
2280
|
"id": "gpt-4.5-preview",
|
2202
2281
|
"name": "gpt-4.5-preview",
|
@@ -3655,6 +3734,48 @@
|
|
3655
3734
|
"tokens": 4096,
|
3656
3735
|
"default": false
|
3657
3736
|
},
|
3737
|
+
"qwen2.5-coder:7b": {
|
3738
|
+
"id": "qwen2.5-coder:7b",
|
3739
|
+
"name": "qwen2.5-coder:7b",
|
3740
|
+
"mode": [
|
3741
|
+
"langchain",
|
3742
|
+
"llama_index",
|
3743
|
+
"agent",
|
3744
|
+
"agent_llama",
|
3745
|
+
"expert"
|
3746
|
+
],
|
3747
|
+
"langchain": {
|
3748
|
+
"provider": "ollama",
|
3749
|
+
"mode": [
|
3750
|
+
"chat"
|
3751
|
+
],
|
3752
|
+
"args": [
|
3753
|
+
{
|
3754
|
+
"name": "model",
|
3755
|
+
"value": "qwen2.5-coder:7b",
|
3756
|
+
"type": "str"
|
3757
|
+
}
|
3758
|
+
],
|
3759
|
+
"env": []
|
3760
|
+
},
|
3761
|
+
"llama_index": {
|
3762
|
+
"provider": "ollama",
|
3763
|
+
"mode": [
|
3764
|
+
"chat"
|
3765
|
+
],
|
3766
|
+
"args": [
|
3767
|
+
{
|
3768
|
+
"name": "model",
|
3769
|
+
"value": "qwen2.5-coder:7b",
|
3770
|
+
"type": "str"
|
3771
|
+
}
|
3772
|
+
],
|
3773
|
+
"env": []
|
3774
|
+
},
|
3775
|
+
"ctx": 32000,
|
3776
|
+
"tokens": 4096,
|
3777
|
+
"default": false
|
3778
|
+
},
|
3658
3779
|
"sonar-deep-research": {
|
3659
3780
|
"id": "sonar-deep-research",
|
3660
3781
|
"name": "sonar-deep-research",
|
@@ -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
|
@@ -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.22 03:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
from packaging.version import parse as parse_version, Version
|
@@ -521,6 +521,12 @@ class Patch:
|
|
521
521
|
# update Bielik from v2.2 to v2.3
|
522
522
|
updated = True
|
523
523
|
|
524
|
+
# < 2.5.12 <--- add gpt-4.1-mini, qwen2.5-coder
|
525
|
+
if old < parse_version("2.5.12"):
|
526
|
+
print("Migrating models from < 2.5.12...")
|
527
|
+
# add gpt-4.1-mini, qwen2.5-coder
|
528
|
+
updated = True
|
529
|
+
|
524
530
|
# update file
|
525
531
|
if updated:
|
526
532
|
data = dict(sorted(data.items()))
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.5.
|
3
|
+
Version: 2.5.13
|
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.13** | build: **2025-06-22** | 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.13 (2025-06-22)**
|
4074
|
+
|
4075
|
+
- Disabled auto-switch to vision mode in Painer.
|
4076
|
+
- UI fixes.
|
4077
|
+
|
4078
|
+
**2.5.12 (2025-06-22)**
|
4079
|
+
|
4080
|
+
- Fixed send-mode radio buttons switch.
|
4081
|
+
- Added a new models: qwen2.5-coder, OpenAI gpt-4.1-mini.
|
4082
|
+
|
4073
4083
|
**2.5.11 (2025-06-21)**
|
4074
4084
|
|
4075
4085
|
- Added a new models: OpenAI o1-pro and o3-pro, Anthropic Claude 4.0 Opus and Claude 4.0 Sonnet, Alibaba Qwen and Qwen2.
|
@@ -1,6 +1,6 @@
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=qbyShD0569dXu872HQa8sx7FWWpSE6m7C8l7sWtI8Ks,83264
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
3
|
-
pygpt_net/__init__.py,sha256=
|
3
|
+
pygpt_net/__init__.py,sha256=ZuMDGxXwA4J74JWV2uUh2P2o0fC3UFY7X29WZ6bK7zQ,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
|
@@ -247,8 +247,8 @@ 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=
|
250
|
+
pygpt_net/data/config/config.json,sha256=20sCvfYbc4-pHap9DcKOYjuzM_hvw1nHoX0otdAATyQ,19973
|
251
|
+
pygpt_net/data/config/models.json,sha256=C07YuiWgdJDC6WPQzirjgjnoga0tDZI-oKoAdV2QzY4,124735
|
252
252
|
pygpt_net/data/config/modes.json,sha256=aOoswOizqG_nITWbw59vRokfbh57_D8FrDlCAtVhDJY,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
|
@@ -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
|
@@ -1848,7 +1848,7 @@ pygpt_net/provider/core/mode/patch.py,sha256=VS2KCYW05jxLd-lcStNY1k4fHKUUrVVLTdR
|
|
1848
1848
|
pygpt_net/provider/core/model/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1849
1849
|
pygpt_net/provider/core/model/base.py,sha256=L1x2rHha8a8hnCUYxZr88utay1EWEx5qBXW_2acpAN0,1319
|
1850
1850
|
pygpt_net/provider/core/model/json_file.py,sha256=k6M6KhiXJ0xsXdYXUFsHPcaJ-v_dMkzX8311Rk-d57s,6566
|
1851
|
-
pygpt_net/provider/core/model/patch.py,sha256=
|
1851
|
+
pygpt_net/provider/core/model/patch.py,sha256=LkQVYNeVDA02fVZVhr8adde4EcBG0wh1NzunUbfDjkA,24814
|
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
|
@@ -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.13.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
2182
|
+
pygpt_net-2.5.13.dist-info/METADATA,sha256=McuC23hM39cIFlUAdcdOyE_XobOJxK8cG8coIWvqCEw,169789
|
2183
|
+
pygpt_net-2.5.13.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
2184
|
+
pygpt_net-2.5.13.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2185
|
+
pygpt_net-2.5.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|