pygpt-net 2.5.10__py3-none-any.whl → 2.5.12__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/common.py +12 -1
- pygpt_net/core/idx/chat.py +10 -5
- pygpt_net/core/render/plain/renderer.py +14 -14
- pygpt_net/core/render/web/body.py +27 -17
- pygpt_net/core/render/web/renderer.py +3 -1
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +785 -67
- pygpt_net/provider/core/model/patch.py +13 -1
- {pygpt_net-2.5.10.dist-info → pygpt_net-2.5.12.dist-info}/METADATA +69 -49
- {pygpt_net-2.5.10.dist-info → pygpt_net-2.5.12.dist-info}/RECORD +15 -18
- {pygpt_net-2.5.10.dist-info → pygpt_net-2.5.12.dist-info}/WHEEL +1 -1
- CHANGELOG.md +0 -2259
- README.md +0 -4105
- icon.png +0 -0
- {pygpt_net-2.5.10.dist-info → pygpt_net-2.5.12.dist-info}/LICENSE +0 -0
- {pygpt_net-2.5.10.dist-info → pygpt_net-2.5.12.dist-info}/entry_points.txt +0 -0
@@ -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
|
@@ -515,6 +515,18 @@ class Patch:
|
|
515
515
|
# add claude-3-7-sonnet-latest
|
516
516
|
updated = True
|
517
517
|
|
518
|
+
# < 2.5.11 <--- update Bielik from v2.2 to v2.3
|
519
|
+
if old < parse_version("2.5.11"):
|
520
|
+
print("Migrating models from < 2.5.11...")
|
521
|
+
# update Bielik from v2.2 to v2.3
|
522
|
+
updated = True
|
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
|
+
|
518
530
|
# update file
|
519
531
|
if updated:
|
520
532
|
data = dict(sorted(data.items()))
|
@@ -1,8 +1,7 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.5.
|
3
|
+
Version: 2.5.12
|
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
|
-
Home-page: https://pygpt.net
|
6
5
|
License: MIT
|
7
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
|
8
7
|
Author: Marcin Szczyglinski
|
@@ -16,77 +15,84 @@ Classifier: Programming Language :: Python :: 3.11
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.12
|
17
16
|
Classifier: Topic :: Utilities
|
18
17
|
Requires-Dist: EbookLib (>=0.18,<0.19)
|
19
|
-
Requires-Dist: Markdown (>=3.
|
18
|
+
Requires-Dist: Markdown (>=3.8.2,<4.0.0)
|
20
19
|
Requires-Dist: PyAudio (>=0.2.14,<0.3.0)
|
21
20
|
Requires-Dist: PyAutoGUI (>=0.9.54,<0.10.0)
|
22
21
|
Requires-Dist: PySide6 (==6.6.2)
|
23
|
-
Requires-Dist: Pygments (>=2.
|
24
|
-
Requires-Dist: SQLAlchemy (>=2.0.
|
25
|
-
Requires-Dist: SpeechRecognition (>=3.
|
26
|
-
Requires-Dist:
|
27
|
-
Requires-Dist:
|
28
|
-
Requires-Dist:
|
29
|
-
Requires-Dist:
|
22
|
+
Requires-Dist: Pygments (>=2.19.2,<3.0.0)
|
23
|
+
Requires-Dist: SQLAlchemy (>=2.0.41,<3.0.0)
|
24
|
+
Requires-Dist: SpeechRecognition (>=3.14.3,<4.0.0)
|
25
|
+
Requires-Dist: anthropic (>=0.54.0,<0.55.0)
|
26
|
+
Requires-Dist: azure-core (>=1.34.0,<2.0.0)
|
27
|
+
Requires-Dist: beautifulsoup4 (>=4.13.4,<5.0.0)
|
28
|
+
Requires-Dist: boto3 (>=1.38.41,<2.0.0)
|
29
|
+
Requires-Dist: chromadb (>=0.5.20,<0.6.0)
|
30
|
+
Requires-Dist: croniter (>=2.0.7,<3.0.0)
|
31
|
+
Requires-Dist: docker (>=7.1.0,<8.0.0)
|
30
32
|
Requires-Dist: docx2txt (>=0.8,<0.9)
|
31
|
-
Requires-Dist: google-generativeai (>=0.8.
|
33
|
+
Requires-Dist: google-generativeai (>=0.8.5,<0.9.0)
|
32
34
|
Requires-Dist: httpx (>=0.27.2,<0.28.0)
|
33
35
|
Requires-Dist: httpx-socks (>=0.9.2,<0.10.0)
|
34
36
|
Requires-Dist: ipykernel (>=6.29.5,<7.0.0)
|
35
37
|
Requires-Dist: jupyter_client (>=8.6.3,<9.0.0)
|
36
|
-
Requires-Dist: langchain (>=0.2.
|
37
|
-
Requires-Dist: langchain-community (>=0.2.
|
38
|
+
Requires-Dist: langchain (>=0.2.17,<0.3.0)
|
39
|
+
Requires-Dist: langchain-community (>=0.2.19,<0.3.0)
|
38
40
|
Requires-Dist: langchain-experimental (>=0.0.64,<0.0.65)
|
39
|
-
Requires-Dist: langchain-openai (>=0.1.
|
41
|
+
Requires-Dist: langchain-openai (>=0.1.25,<0.2.0)
|
40
42
|
Requires-Dist: llama-index (>=0.12.22,<0.13.0)
|
41
|
-
Requires-Dist: llama-index-agent-openai (>=0.4.
|
43
|
+
Requires-Dist: llama-index-agent-openai (>=0.4.8,<0.5.0)
|
42
44
|
Requires-Dist: llama-index-core (==0.12.22)
|
43
|
-
Requires-Dist: llama-index-embeddings-azure-openai (>=0.3.
|
44
|
-
Requires-Dist: llama-index-embeddings-gemini (>=0.3.
|
45
|
-
Requires-Dist: llama-index-embeddings-huggingface-api (>=0.3.
|
45
|
+
Requires-Dist: llama-index-embeddings-azure-openai (>=0.3.8,<0.4.0)
|
46
|
+
Requires-Dist: llama-index-embeddings-gemini (>=0.3.2,<0.4.0)
|
47
|
+
Requires-Dist: llama-index-embeddings-huggingface-api (>=0.3.1,<0.4.0)
|
46
48
|
Requires-Dist: llama-index-embeddings-ollama (>=0.5.0,<0.6.0)
|
47
49
|
Requires-Dist: llama-index-embeddings-openai (>=0.3.1,<0.4.0)
|
48
|
-
Requires-Dist: llama-index-llms-anthropic (>=0.6.
|
49
|
-
Requires-Dist: llama-index-llms-azure-openai (>=0.3.
|
50
|
-
Requires-Dist: llama-index-llms-deepseek (>=0.1.
|
51
|
-
Requires-Dist: llama-index-llms-gemini (>=0.4.
|
50
|
+
Requires-Dist: llama-index-llms-anthropic (>=0.6.12,<0.7.0)
|
51
|
+
Requires-Dist: llama-index-llms-azure-openai (>=0.3.2,<0.4.0)
|
52
|
+
Requires-Dist: llama-index-llms-deepseek (>=0.1.1,<0.2.0)
|
53
|
+
Requires-Dist: llama-index-llms-gemini (>=0.4.14,<0.5.0)
|
52
54
|
Requires-Dist: llama-index-llms-huggingface-api (>=0.3.1,<0.4.0)
|
53
|
-
Requires-Dist: llama-index-llms-ollama (>=0.5.
|
54
|
-
Requires-Dist: llama-index-llms-openai (>=0.3.
|
55
|
-
Requires-Dist: llama-index-llms-openai-like (>=0.3.
|
56
|
-
Requires-Dist: llama-index-multi-modal-llms-openai (>=0.4.
|
55
|
+
Requires-Dist: llama-index-llms-ollama (>=0.5.6,<0.6.0)
|
56
|
+
Requires-Dist: llama-index-llms-openai (>=0.3.28,<0.4.0)
|
57
|
+
Requires-Dist: llama-index-llms-openai-like (>=0.3.4,<0.4.0)
|
58
|
+
Requires-Dist: llama-index-multi-modal-llms-openai (>=0.4.3,<0.5.0)
|
57
59
|
Requires-Dist: llama-index-readers-chatgpt-plugin (>=0.3.0,<0.4.0)
|
58
60
|
Requires-Dist: llama-index-readers-database (>=0.3.0,<0.4.0)
|
59
|
-
Requires-Dist: llama-index-readers-file (>=0.4.
|
61
|
+
Requires-Dist: llama-index-readers-file (>=0.4.9,<0.5.0)
|
60
62
|
Requires-Dist: llama-index-readers-github (>=0.5.0,<0.6.0)
|
61
63
|
Requires-Dist: llama-index-readers-google (>=0.5.0,<0.6.0)
|
62
64
|
Requires-Dist: llama-index-readers-microsoft-onedrive (>=0.3.0,<0.4.0)
|
63
65
|
Requires-Dist: llama-index-readers-twitter (>=0.3.0,<0.4.0)
|
64
|
-
Requires-Dist: llama-index-readers-web (>=0.3.
|
65
|
-
Requires-Dist: llama-index-vector-stores-chroma (>=0.4.
|
66
|
-
Requires-Dist: llama-index-vector-stores-elasticsearch (
|
67
|
-
Requires-Dist: llama-index-vector-stores-pinecone (>=0.4.
|
66
|
+
Requires-Dist: llama-index-readers-web (>=0.3.9,<0.4.0)
|
67
|
+
Requires-Dist: llama-index-vector-stores-chroma (>=0.4.2,<0.5.0)
|
68
|
+
Requires-Dist: llama-index-vector-stores-elasticsearch (==0.4.0)
|
69
|
+
Requires-Dist: llama-index-vector-stores-pinecone (>=0.4.5,<0.5.0)
|
68
70
|
Requires-Dist: llama-index-vector-stores-redis (>=0.4.0,<0.5.0)
|
69
71
|
Requires-Dist: mss (>=9.0.2,<10.0.0)
|
70
|
-
Requires-Dist: nbconvert (>=7.16.
|
71
|
-
Requires-Dist:
|
72
|
-
Requires-Dist:
|
73
|
-
Requires-Dist:
|
74
|
-
Requires-Dist:
|
75
|
-
Requires-Dist:
|
76
|
-
Requires-Dist:
|
72
|
+
Requires-Dist: nbconvert (>=7.16.6,<8.0.0)
|
73
|
+
Requires-Dist: onnxruntime (==1.20.1)
|
74
|
+
Requires-Dist: openai (>=1.59.9,<1.60.0)
|
75
|
+
Requires-Dist: opencv-python (>=4.11.0.86,<5.0.0.0)
|
76
|
+
Requires-Dist: packaging (>=24.2,<25.0)
|
77
|
+
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
78
|
+
Requires-Dist: pillow (>=10.4.0,<11.0.0)
|
79
|
+
Requires-Dist: pinecone-client (>=3.2.2,<4.0.0)
|
77
80
|
Requires-Dist: pydub (>=0.25.1,<0.26.0)
|
78
|
-
Requires-Dist: pygame (>=2.
|
79
|
-
Requires-Dist: pynput (>=1.
|
80
|
-
Requires-Dist: pypdf (>=5.
|
81
|
+
Requires-Dist: pygame (>=2.6.1,<3.0.0)
|
82
|
+
Requires-Dist: pynput (>=1.8.1,<2.0.0)
|
83
|
+
Requires-Dist: pypdf (>=5.6.0,<6.0.0)
|
81
84
|
Requires-Dist: pyserial (>=3.5,<4.0)
|
82
85
|
Requires-Dist: python-markdown-math (>=0.8,<0.9)
|
83
|
-
Requires-Dist: qt-material (>=2.
|
84
|
-
Requires-Dist: redis (>=5.0
|
85
|
-
Requires-Dist: show-in-file-manager (>=1.1.
|
86
|
+
Requires-Dist: qt-material (>=2.17,<3.0)
|
87
|
+
Requires-Dist: redis (>=5.3.0,<6.0.0)
|
88
|
+
Requires-Dist: show-in-file-manager (>=1.1.5,<2.0.0)
|
86
89
|
Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
|
90
|
+
Requires-Dist: transformers (==4.48.3)
|
91
|
+
Requires-Dist: urllib3 (>=1.26.20,<2.0.0)
|
87
92
|
Requires-Dist: wikipedia (>=1.4.0,<2.0.0)
|
88
|
-
Requires-Dist: youtube-transcript-api (>=0.6.
|
93
|
+
Requires-Dist: youtube-transcript-api (>=0.6.3,<0.7.0)
|
89
94
|
Project-URL: Documentation, https://pygpt.readthedocs.io/
|
95
|
+
Project-URL: Homepage, https://pygpt.net
|
90
96
|
Project-URL: Repository, https://github.com/szczyglis-dev/py-gpt
|
91
97
|
Description-Content-Type: text/markdown
|
92
98
|
|
@@ -94,7 +100,7 @@ Description-Content-Type: text/markdown
|
|
94
100
|
|
95
101
|
[](https://snapcraft.io/pygpt)
|
96
102
|
|
97
|
-
Release: **2.5.
|
103
|
+
Release: **2.5.12** | build: **2025-06-22** | Python: **>=3.10, <3.13**
|
98
104
|
|
99
105
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
100
106
|
>
|
@@ -997,9 +1003,9 @@ The name of the currently active profile is shown as (Profile Name) in the windo
|
|
997
1003
|
|
998
1004
|
## Built-in models
|
999
1005
|
|
1000
|
-
PyGPT has built-in support for models (as of
|
1006
|
+
PyGPT has built-in support for models (as of 2025-06-21):
|
1001
1007
|
|
1002
|
-
- `bielik-11b-v2.
|
1008
|
+
- `bielik-11b-v2.3-instruct:Q4_K_M`
|
1003
1009
|
- `chatgpt-4o-latest`
|
1004
1010
|
- `claude-3-5-sonnet-20240620`
|
1005
1011
|
- `claude-3-opus-20240229`
|
@@ -4064,6 +4070,18 @@ may consume additional tokens that are not displayed in the main window.
|
|
4064
4070
|
|
4065
4071
|
## Recent changes:
|
4066
4072
|
|
4073
|
+
**2.5.12 (2025-06-22)**
|
4074
|
+
|
4075
|
+
- Fixed send-mode radio buttons switch.
|
4076
|
+
- Added a new models: qwen2.5-coder, OpenAI gpt-4.1-mini.
|
4077
|
+
|
4078
|
+
**2.5.11 (2025-06-21)**
|
4079
|
+
|
4080
|
+
- Added a new models: OpenAI o1-pro and o3-pro, Anthropic Claude 4.0 Opus and Claude 4.0 Sonnet, Alibaba Qwen and Qwen2.
|
4081
|
+
- Bielik model upgraded to v2.3 / merged PR #101.
|
4082
|
+
- Fixed HTML output formatting.
|
4083
|
+
- Fixed empty index in chat mode.
|
4084
|
+
|
4067
4085
|
**2.5.10 (2025-03-06)**
|
4068
4086
|
|
4069
4087
|
- Added a new model: Claude 3.7 Sonnet.
|
@@ -4170,6 +4188,8 @@ GitHub's community:
|
|
4170
4188
|
|
4171
4189
|
- [@linnflux](https://github.com/linnflux)
|
4172
4190
|
|
4191
|
+
- [@lukasz-pekala](https://github.com/lukasz-pekala)
|
4192
|
+
|
4173
4193
|
- [@moritz-t-w](https://github.com/moritz-t-w)
|
4174
4194
|
|
4175
4195
|
- [@oleksii-honchar](https://github.com/oleksii-honchar)
|
@@ -1,9 +1,6 @@
|
|
1
|
-
CHANGELOG.
|
2
|
-
README.md,sha256=iVsOOE7xjUAUbuor0lKapEI4cPNTzrdh3041KGASh_M,164044
|
3
|
-
icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
|
4
|
-
pygpt_net/CHANGELOG.txt,sha256=fJvNvI73tUVdzu_cwiOC2EiXefBgs2qzGOa63DU-miE,82791
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=x2XqVIthMvCobvdKAX_frRiHBnBOsUPjCi12_xG45IA,83181
|
5
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
6
|
-
pygpt_net/__init__.py,sha256=
|
3
|
+
pygpt_net/__init__.py,sha256=MJuFlDvfKFPjypiVHsGxSLRmNkOIMvDKD2CEtwYnStY,1373
|
7
4
|
pygpt_net/app.py,sha256=XXjn9XaKHGRcsHN8mMuqbRHAg8_Da0GLmACUU9ddjBc,16217
|
8
5
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
9
6
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
@@ -31,7 +28,7 @@ pygpt_net/controller/chat/__init__.py,sha256=JUDt_DqxgpBROpr6k2jFQ03EIqXwmrAkwkk
|
|
31
28
|
pygpt_net/controller/chat/attachment.py,sha256=6BzM8cKeazp12Ej6_3IH3I6NEMR5WON7N4PMY-i0h30,20974
|
32
29
|
pygpt_net/controller/chat/audio.py,sha256=QsU36McxqlRoP6B-NSeck968g1M8JhlLkLwGLunbapw,3210
|
33
30
|
pygpt_net/controller/chat/command.py,sha256=3fNYvgt9NmCZPNrlqfLXivmN63ZRsuFseNjj1ZLnwts,3293
|
34
|
-
pygpt_net/controller/chat/common.py,sha256
|
31
|
+
pygpt_net/controller/chat/common.py,sha256=hbI0OvI46pCvwvOBfCAEHXkbDFjQa-AyBW6Y5jGaFKg,14611
|
35
32
|
pygpt_net/controller/chat/files.py,sha256=VFiiTeWTYR15Nwf1CTLEmeXqlmRHzNQVkNaU6hY2Gz4,2846
|
36
33
|
pygpt_net/controller/chat/image.py,sha256=XghPvTP8n3DxFgRrZ3bCfeLNTvOKSxbl-ewTwUTd4HM,8308
|
37
34
|
pygpt_net/controller/chat/input.py,sha256=H6gmYjD3fSzSD_Xj7bpR0JooRtNgsyVkU6kobBUoSpk,10946
|
@@ -179,7 +176,7 @@ pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUk
|
|
179
176
|
pygpt_net/core/filesystem/url.py,sha256=cXctpPHBY1-fwn7vFqfZi3CeP73n2nFXF-ZnePiRk7U,3236
|
180
177
|
pygpt_net/core/history/__init__.py,sha256=PDE5Ut03mEgY9YPLZjqrimKQAyxoE7itViuqFV-VQf0,3123
|
181
178
|
pygpt_net/core/idx/__init__.py,sha256=sK6zQDxetao3dnqcBaaT2HTKOz4zxOSEKmsHLQlsLGY,18115
|
182
|
-
pygpt_net/core/idx/chat.py,sha256=
|
179
|
+
pygpt_net/core/idx/chat.py,sha256=kuWHDyyrvuUN0VfkBYhfl0cDfEnSpMWNzd0GWHGJkhM,24447
|
183
180
|
pygpt_net/core/idx/context.py,sha256=uISNiKprcA_Qv9t0PbMj1vDWCm1eccYbk5iGS-QcfG0,3143
|
184
181
|
pygpt_net/core/idx/indexing.py,sha256=lj0FnPGBhL3AvmOT-NIQcdH6zY-Tpp3DB0zei2SV7xo,42989
|
185
182
|
pygpt_net/core/idx/llm.py,sha256=RmYLBKhvMIL7XcvWa39HdNxq4yC-f2C34e93Wx7yaM8,4885
|
@@ -221,13 +218,13 @@ pygpt_net/core/render/plain/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ
|
|
221
218
|
pygpt_net/core/render/plain/body.py,sha256=i2iQ8VGzh2E3r32XHPTArAQA1Lu-Xlr1tAjJyUwBZd8,4226
|
222
219
|
pygpt_net/core/render/plain/helpers.py,sha256=qf1w6EXa6cCFcMkipOA8MzxIRFIYNVv3uXZ3MT2XwfI,1628
|
223
220
|
pygpt_net/core/render/plain/pid.py,sha256=yngcS0o1lBQ2RlRzWrs5JwqT_ThamvnWftp3cXcyiG8,770
|
224
|
-
pygpt_net/core/render/plain/renderer.py,sha256=
|
221
|
+
pygpt_net/core/render/plain/renderer.py,sha256=ESbDBH-2V66ydfqGp1Ci1YFkDXA7-7HaLkNd7ZeN6QA,15220
|
225
222
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
226
|
-
pygpt_net/core/render/web/body.py,sha256=
|
223
|
+
pygpt_net/core/render/web/body.py,sha256=4sieQEevnBYGz-oJw-rThwRSQBp4sbKqU96rdxLMgKg,30108
|
227
224
|
pygpt_net/core/render/web/helpers.py,sha256=ymJl1vUAYoEh3PyMmtjpRtH4KyhZIhMjRhpwR73NLic,3576
|
228
225
|
pygpt_net/core/render/web/parser.py,sha256=49Vq3jqRrUWWKy0WlBiwR8JcDzp3_MKoLNEXOpbL3qU,10230
|
229
226
|
pygpt_net/core/render/web/pid.py,sha256=ZyYmzB01adMqY9-1Zi0QhGgrzyg-E9xC_VxqjNvTHWk,1331
|
230
|
-
pygpt_net/core/render/web/renderer.py,sha256=
|
227
|
+
pygpt_net/core/render/web/renderer.py,sha256=khZX06XDum2j9vlbkUglNGZpaXGSyf4_q4UDhFFfEqQ,39329
|
231
228
|
pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9enXV_cMEuaJ3C43U,2005
|
232
229
|
pygpt_net/core/settings/__init__.py,sha256=onqwNiICm2VhHfmXLvp1MiEJ14m2jzeeI2pjUiaUwtY,7787
|
233
230
|
pygpt_net/core/tabs/__init__.py,sha256=ZNKeb0o3eOw2t-Cwadt3cHmtMKzn2XyphwdnmsBgJkQ,25213
|
@@ -250,8 +247,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
250
247
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
251
248
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
252
249
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
253
|
-
pygpt_net/data/config/config.json,sha256=
|
254
|
-
pygpt_net/data/config/models.json,sha256=
|
250
|
+
pygpt_net/data/config/config.json,sha256=Jrm2y8xjleWAvAPbnF_3X1WKabkKDKCNsDaKOLN4g_U,19973
|
251
|
+
pygpt_net/data/config/models.json,sha256=r2oS5AwfgcOLBEeEwFNLGuFdQ4lia0nD5GpZyqatowQ,124735
|
255
252
|
pygpt_net/data/config/modes.json,sha256=aOoswOizqG_nITWbw59vRokfbh57_D8FrDlCAtVhDJY,2085
|
256
253
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
257
254
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
@@ -1851,7 +1848,7 @@ pygpt_net/provider/core/mode/patch.py,sha256=VS2KCYW05jxLd-lcStNY1k4fHKUUrVVLTdR
|
|
1851
1848
|
pygpt_net/provider/core/model/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1852
1849
|
pygpt_net/provider/core/model/base.py,sha256=L1x2rHha8a8hnCUYxZr88utay1EWEx5qBXW_2acpAN0,1319
|
1853
1850
|
pygpt_net/provider/core/model/json_file.py,sha256=k6M6KhiXJ0xsXdYXUFsHPcaJ-v_dMkzX8311Rk-d57s,6566
|
1854
|
-
pygpt_net/provider/core/model/patch.py,sha256=
|
1851
|
+
pygpt_net/provider/core/model/patch.py,sha256=LkQVYNeVDA02fVZVhr8adde4EcBG0wh1NzunUbfDjkA,24814
|
1855
1852
|
pygpt_net/provider/core/notepad/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1856
1853
|
pygpt_net/provider/core/notepad/base.py,sha256=7aPhild8cALTaN3JEbI0YrkIW1DRIycGQWTfsdH6WcQ,1323
|
1857
1854
|
pygpt_net/provider/core/notepad/db_sqlite/__init__.py,sha256=DQnVKJxvLq-6zlRlLk3MXSQZEObFtcQ5p5mEnuRzwYE,3104
|
@@ -2181,8 +2178,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=2LebPHa_e5lvBqnIVzjwsLcFMoc11BonXgAUs
|
|
2181
2178
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2182
2179
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2183
2180
|
pygpt_net/utils.py,sha256=WtrdagJ-BlCjxGEEVq2rhsyAZMcU6JqltCXzOs823po,6707
|
2184
|
-
pygpt_net-2.5.
|
2185
|
-
pygpt_net-2.5.
|
2186
|
-
pygpt_net-2.5.
|
2187
|
-
pygpt_net-2.5.
|
2188
|
-
pygpt_net-2.5.
|
2181
|
+
pygpt_net-2.5.12.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
2182
|
+
pygpt_net-2.5.12.dist-info/METADATA,sha256=h5WEM042DA_jNzZR10TN7mWJivnoHvzNZYvv6e2yKoY,169702
|
2183
|
+
pygpt_net-2.5.12.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
2184
|
+
pygpt_net-2.5.12.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2185
|
+
pygpt_net-2.5.12.dist-info/RECORD,,
|