pygpt-net 2.5.9__py3-none-any.whl → 2.5.11__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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.5.9",
4
- "app.version": "2.5.9",
5
- "updated_at": "2025-03-05T00:00:00"
3
+ "version": "2.5.10",
4
+ "app.version": "2.5.10",
5
+ "updated_at": "2025-03-06T00:00:00"
6
6
  },
7
7
  "items": {
8
8
  "chat": {
@@ -2,7 +2,7 @@
2
2
  "name": "*",
3
3
  "ai_name": "",
4
4
  "user_name": "",
5
- "prompt": "You are a helpful assistant.",
5
+ "prompt": "You are a helpful assistant. Use fenced code for code blocks.",
6
6
  "temperature": 1.0,
7
7
  "chat": true,
8
8
  "completion": false,
@@ -2,7 +2,7 @@
2
2
  "name": "*",
3
3
  "ai_name": "",
4
4
  "user_name": "",
5
- "prompt": "",
5
+ "prompt": "You are a helpful assistant. Use fenced code for code blocks.",
6
6
  "temperature": 1.0,
7
7
  "chat": false,
8
8
  "completion": false,
@@ -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.03.02 19:00:00 #
9
+ # Updated Date: 2025.03.06 03:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  from packaging.version import parse as parse_version, Version
@@ -509,6 +509,18 @@ class Patch:
509
509
  # add gpt-4.5-preview, sonar, R1
510
510
  updated = True
511
511
 
512
+ # < 2.5.10 <--- add claude-3-7-sonnet-latest
513
+ if old < parse_version("2.5.10"):
514
+ print("Migrating models from < 2.5.10...")
515
+ # add claude-3-7-sonnet-latest
516
+ updated = True
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
+
512
524
  # update file
513
525
  if updated:
514
526
  data = dict(sorted(data.items()))
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: pygpt-net
3
- Version: 2.5.9
3
+ Version: 2.5.11
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.7,<4.0)
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.18.0,<3.0.0)
24
- Requires-Dist: SQLAlchemy (>=2.0.27,<3.0.0)
25
- Requires-Dist: SpeechRecognition (>=3.10.1,<4.0.0)
26
- Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
27
- Requires-Dist: chromadb (>=0.5.17,<0.6.0)
28
- Requires-Dist: croniter (>=2.0.1,<3.0.0)
29
- Requires-Dist: docker (>=7.0.0,<8.0.0)
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.3,<0.9.0)
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.14,<0.3.0)
37
- Requires-Dist: langchain-community (>=0.2.12,<0.3.0)
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.22,<0.2.0)
40
- Requires-Dist: llama-index (>=0.12.11,<0.13.0)
41
- Requires-Dist: llama-index-agent-openai (>=0.4.2,<0.5.0)
42
- Requires-Dist: llama-index-core (==0.12.11)
43
- Requires-Dist: llama-index-embeddings-azure-openai (>=0.3.0,<0.4.0)
44
- Requires-Dist: llama-index-embeddings-gemini (>=0.3.1,<0.4.0)
45
- Requires-Dist: llama-index-embeddings-huggingface-api (>=0.3.0,<0.4.0)
41
+ Requires-Dist: langchain-openai (>=0.1.25,<0.2.0)
42
+ Requires-Dist: llama-index (>=0.12.22,<0.13.0)
43
+ Requires-Dist: llama-index-agent-openai (>=0.4.8,<0.5.0)
44
+ Requires-Dist: llama-index-core (==0.12.22)
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.3,<0.7.0)
49
- Requires-Dist: llama-index-llms-azure-openai (>=0.3.0,<0.4.0)
50
- Requires-Dist: llama-index-llms-deepseek (>=0.1.0,<0.2.0)
51
- Requires-Dist: llama-index-llms-gemini (>=0.4.3,<0.5.0)
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.0,<0.6.0)
54
- Requires-Dist: llama-index-llms-openai (>=0.3.13,<0.4.0)
55
- Requires-Dist: llama-index-llms-openai-like (>=0.3.3,<0.4.0)
56
- Requires-Dist: llama-index-multi-modal-llms-openai (>=0.4.2,<0.5.0)
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.3,<0.5.0)
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.3,<0.4.0)
65
- Requires-Dist: llama-index-vector-stores-chroma (>=0.4.1,<0.5.0)
66
- Requires-Dist: llama-index-vector-stores-elasticsearch (>=0.4.0,<0.5.0)
67
- Requires-Dist: llama-index-vector-stores-pinecone (>=0.4.2,<0.5.0)
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.1,<8.0.0)
71
- Requires-Dist: openai (>=1.55.1,<1.60.0)
72
- Requires-Dist: opencv-python (>=4.9.0.80,<5.0.0.0)
73
- Requires-Dist: packaging (>=23.2,<24.0)
74
- Requires-Dist: pandas (>=2.2.0,<3.0.0)
75
- Requires-Dist: pillow (>=10.2.0,<11.0.0)
76
- Requires-Dist: pinecone-client (>=3.1.0,<4.0.0)
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.5.2,<3.0.0)
79
- Requires-Dist: pynput (>=1.7.7,<2.0.0)
80
- Requires-Dist: pypdf (>=5.1.0,<6.0.0)
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.14,<3.0)
84
- Requires-Dist: redis (>=5.0.1,<6.0.0)
85
- Requires-Dist: show-in-file-manager (>=1.1.4,<2.0.0)
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.2,<0.7.0)
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
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
96
102
 
97
- Release: **2.5.9** | build: **2025.03.05** | Python: **>=3.10, <3.13**
103
+ Release: **2.5.11** | build: **2025-06-21** | 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 2024-11-27):
1006
+ PyGPT has built-in support for models (as of 2025-06-21):
1001
1007
 
1002
- - `bielik-11b-v2.2-instruct:Q4_K_M`
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,20 @@ may consume additional tokens that are not displayed in the main window.
4064
4070
 
4065
4071
  ## Recent changes:
4066
4072
 
4073
+ **2.5.11 (2025-06-21)**
4074
+
4075
+ - Added a new models: OpenAI o1-pro and o3-pro, Anthropic Claude 4.0 Opus and Claude 4.0 Sonnet, Alibaba Qwen and Qwen2.
4076
+ - Bielik model upgraded to v2.3 / merged PR #101.
4077
+ - Fixed HTML output formatting.
4078
+ - Fixed empty index in chat mode.
4079
+
4080
+ **2.5.10 (2025-03-06)**
4081
+
4082
+ - Added a new model: Claude 3.7 Sonnet.
4083
+ - Fixed the context switch issue when the column changed and the tab is not a chat tab.
4084
+ - LlamaIndex upgraded to 0.12.22.
4085
+ - LlamaIndex LLMs upgraded to recent versions.
4086
+
4067
4087
  **2.5.9 (2025-03-05)**
4068
4088
 
4069
4089
  - Improved formatting of HTML code in the output.
@@ -4163,6 +4183,8 @@ GitHub's community:
4163
4183
 
4164
4184
  - [@linnflux](https://github.com/linnflux)
4165
4185
 
4186
+ - [@lukasz-pekala](https://github.com/lukasz-pekala)
4187
+
4166
4188
  - [@moritz-t-w](https://github.com/moritz-t-w)
4167
4189
 
4168
4190
  - [@oleksii-honchar](https://github.com/oleksii-honchar)
@@ -1,9 +1,6 @@
1
- CHANGELOG.md,sha256=0RkwUwpAm67iwh_cJ9UTxXYlvqzTVx8OMS8z53RIck0,84099
2
- README.md,sha256=VY6K24mQXNZvWgI-jNHUTMuc6QZIy_0LRHe-cT_jwAI,163806
3
- icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
4
- pygpt_net/CHANGELOG.txt,sha256=5Hk3tnrZSUo4SU6Y1tv2W85ncrSwcHjqnnywLX41f3I,82558
1
+ pygpt_net/CHANGELOG.txt,sha256=COH_8Pa_w99iTqQyAwOwHsSY9eQzLi27ArE44fKD0v0,83061
5
2
  pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
6
- pygpt_net/__init__.py,sha256=g-guih2WNl2GwmkJIE_4nqDKTcqSrlA7blsdFY4iOWc,1372
3
+ pygpt_net/__init__.py,sha256=4SUIDQJkjUJgkuFJtigcLfuy6thBlsB1DRYXyQrSdJI,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
@@ -102,7 +99,7 @@ pygpt_net/controller/theme/nodes.py,sha256=6SCKMGQ5SZdKgy4t69raiikTLQDPPkjoYTPwl
102
99
  pygpt_net/controller/tools/__init__.py,sha256=b_yt413iRUI9fWHzZGdtM4333UjzrJb-zmq_exYTgy4,2723
103
100
  pygpt_net/controller/ui/__init__.py,sha256=LDAvURc007zxboXlgnAI5VPFCT5WSZljD2W3ApKD4zM,6098
104
101
  pygpt_net/controller/ui/mode.py,sha256=8mw_tmRo7sArvgv-k1yfwx5SCfVOkwdc96U8ZiW83Q0,10231
105
- pygpt_net/controller/ui/tabs.py,sha256=7DxDCkkx0mPJ8VbVp-mRt8cb2Mgjbv7Jv3OOVkJp91k,20321
102
+ pygpt_net/controller/ui/tabs.py,sha256=vwVB3w_hU5rudom00doyJPHzGjLm5e2akHWtb01M8-4,20366
106
103
  pygpt_net/controller/ui/vision.py,sha256=KrP8wFuuz-gsO9iwbLDnzvC5iqWVlWjFarQ27HkHdEg,2303
107
104
  pygpt_net/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
105
  pygpt_net/core/access/__init__.py,sha256=rFKp9xMsuJHS_wxiMEMMHVRd5lXdkPj7LuObAIdQFBY,942
@@ -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=JOpdkn88bBnO9k1EQ_iQjNDW_ZyXEl8-8ZuUr7hlwl0,24270
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=VDJiNrGi35IHLGo_yX9JQ37tz-5w2qm6Z-MhFs_3MyA,15267
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=dDLQJa1SrPm7n1n_GRpf9Rvuyt1UsfMjzDev4qR3424,29520
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=vVMiFxffct1iCOtMhkF28N5AOM54g80haAszmoiuDD8,39227
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,9 +247,9 @@ 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=Bkw-7Udd23A4Bo4pWFVaC0ErCZcKlgyKQih40uaE6Io,19971
254
- pygpt_net/data/config/models.json,sha256=Acu5fqXLjyGiQ5-j7WpUgxQ0LjrpUhdWqcL34SRMQNQ,101755
255
- pygpt_net/data/config/modes.json,sha256=5qlQDvB3D5JDCAFkJ-QNBxOjUkxLFm5VPKlE7PiJOos,2083
250
+ pygpt_net/data/config/config.json,sha256=3JfHCtu8TM87sRFYvjy5KXzdAGJm10kKmx38Nhv8Io8,19973
251
+ pygpt_net/data/config/models.json,sha256=9rwUEl9l1R2am-KrbrkXpNPv-bM3L6FNNIeKLbkCHAU,121080
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
258
255
  pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
@@ -262,12 +259,12 @@ pygpt_net/data/config/presets/current.agent.json,sha256=aSkA0Eh1bziRaXFHMkEE1OG2
262
259
  pygpt_net/data/config/presets/current.agent_llama.json,sha256=-XdX5tAWXDc34FCDa7GotQjg1tPNigG5RdJbV2CAphU,705
263
260
  pygpt_net/data/config/presets/current.assistant.json,sha256=zORIJwns1wTEFXjwabm1z-Pqd8KKpCumflHiNxzBKZg,419
264
261
  pygpt_net/data/config/presets/current.audio.json,sha256=bf24XyMudkA5uBT63oktncLAbsUHDbovuysYLIdoiVQ,733
265
- pygpt_net/data/config/presets/current.chat.json,sha256=-8z97XIx1hkEeI_ei4AHboCryaeIvW2v3_IjoiE3D-I,447
262
+ pygpt_net/data/config/presets/current.chat.json,sha256=izDX6u8CZFysmwhT4N2A805HYPIEtV3XcTHjbzBtG20,480
266
263
  pygpt_net/data/config/presets/current.completion.json,sha256=JU5vjqKc_L3nECPr3HazXYhlo2bzCxZ6cDPfA40A4Zg,436
267
264
  pygpt_net/data/config/presets/current.expert.json,sha256=V0I633FyU2ZLZnTApiSF29tila85zYBqYadojedXWJw,419
268
265
  pygpt_net/data/config/presets/current.img.json,sha256=hr6gj6ZqcQgv0CJdqFSsGMUTFRixcsTa-sDX2_9P7Io,419
269
266
  pygpt_net/data/config/presets/current.langchain.json,sha256=yVOmJ1VpX0saxdBO_8tGaWM5oxa8EGbIcS6Wrk7Nqzo,433
270
- pygpt_net/data/config/presets/current.llama_index.json,sha256=jQVfdxgY-mf3G_YL1hQUnw6dVej8Py_Ycsx77iiwE7E,419
267
+ pygpt_net/data/config/presets/current.llama_index.json,sha256=1ZcALHvPgf1g-1W2tyfK77gDDHFzlGZVMNg87jT5N_s,480
271
268
  pygpt_net/data/config/presets/current.research.json,sha256=dExl7MoUUKAUyRd1njumD6C9viT8qyZSZwhU4PCCNQg,759
272
269
  pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXUnfugXNJ5730ZcuRXEO1I,447
273
270
  pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
@@ -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=hptdG1peCX_BwSki9yjTgD1qlCacEZe5DXRssYsWg1E,24077
1851
+ pygpt_net/provider/core/model/patch.py,sha256=6oj7-OHsUKF4W3pf5-0YCTAGLCAq0PBsylxP6VQL3gg,24566
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.9.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2185
- pygpt_net-2.5.9.dist-info/METADATA,sha256=9DViB_jgCu9DmFSgQhbB9UXwHHGPClaC5-zgSF5EpVU,168761
2186
- pygpt_net-2.5.9.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
2187
- pygpt_net-2.5.9.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2188
- pygpt_net-2.5.9.dist-info/RECORD,,
2181
+ pygpt_net-2.5.11.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2182
+ pygpt_net-2.5.11.dist-info/METADATA,sha256=5XkcHVK4_FgGPs1y5iW1XT9XstlziN6c4UWJ5p3XNwY,169578
2183
+ pygpt_net-2.5.11.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2184
+ pygpt_net-2.5.11.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2185
+ pygpt_net-2.5.11.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.8.1
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any