pygpt-net 2.6.58__py3-none-any.whl → 2.6.59__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 +6 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/core/agents/runners/llama_workflow.py +0 -0
- pygpt_net/core/filesystem/parser.py +37 -24
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/locale/plugin.cmd_system.en.ini +68 -0
- pygpt_net/plugin/cmd_system/config.py +377 -1
- pygpt_net/plugin/cmd_system/plugin.py +52 -8
- pygpt_net/plugin/cmd_system/runner.py +508 -32
- pygpt_net/plugin/cmd_system/winapi.py +481 -0
- pygpt_net/plugin/cmd_system/worker.py +88 -15
- pygpt_net/provider/agents/llama_index/workflow/supervisor.py +0 -0
- pygpt_net/provider/llms/openai.py +6 -4
- pygpt_net/tools/code_interpreter/ui/html.py +2 -1
- pygpt_net/ui/widget/textarea/web.py +1 -1
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.59.dist-info}/METADATA +65 -61
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.59.dist-info}/RECORD +19 -18
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.59.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.59.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.58.dist-info → pygpt_net-2.6.59.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.59
|
|
4
4
|
Summary: Desktop AI Assistant powered by: OpenAI GPT-5, GPT-4, o1, o3, Gemini, Claude, Grok, DeepSeek, and other models supported by Llama Index, and Ollama. Chatbot, agents, completion, image generation, vision analysis, speech-to-text, plugins, MCP, internet access, file handling, command execution and more.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: ai,api,api key,app,assistant,bielik,chat,chatbot,chatgpt,claude,dall-e,deepseek,desktop,gemini,gpt,gpt-3.5,gpt-4,gpt-4-vision,gpt-4o,gpt-5,gpt-oss,gpt3.5,gpt4,grok,langchain,llama-index,llama3,mistral,o1,o3,ollama,openai,presets,py-gpt,py_gpt,pygpt,pyside,qt,text completion,tts,ui,vision,whisper
|
|
@@ -20,91 +20,89 @@ Requires-Dist: Markdown (>=3.8.2,<4.0.0)
|
|
|
20
20
|
Requires-Dist: PyAudio (>=0.2.14,<0.3.0)
|
|
21
21
|
Requires-Dist: PyAutoGUI (>=0.9.54,<0.10.0)
|
|
22
22
|
Requires-Dist: PySide6 (==6.9.1)
|
|
23
|
-
Requires-Dist: Pygments (
|
|
24
|
-
Requires-Dist: SQLAlchemy (
|
|
23
|
+
Requires-Dist: Pygments (==2.19.2)
|
|
24
|
+
Requires-Dist: SQLAlchemy (==2.0.43)
|
|
25
25
|
Requires-Dist: SpeechRecognition (>=3.14.3,<4.0.0)
|
|
26
26
|
Requires-Dist: Telethon (>=1.40.0,<2.0.0)
|
|
27
|
-
Requires-Dist: anthropic (>=0.
|
|
28
|
-
Requires-Dist: azure-core (
|
|
29
|
-
Requires-Dist: beautifulsoup4 (
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist: chromadb (>=0.5.20,<0.6.0)
|
|
27
|
+
Requires-Dist: anthropic (>=0.68.0,<0.69.0)
|
|
28
|
+
Requires-Dist: azure-core (==1.35.1)
|
|
29
|
+
Requires-Dist: beautifulsoup4 (==4.13.5)
|
|
30
|
+
Requires-Dist: chromadb (==1.1.0)
|
|
32
31
|
Requires-Dist: croniter (>=2.0.7,<3.0.0)
|
|
33
32
|
Requires-Dist: ddgs (>=9.5.5,<10.0.0)
|
|
34
33
|
Requires-Dist: docker (>=7.1.0,<8.0.0)
|
|
35
34
|
Requires-Dist: docx2txt (>=0.8,<0.9)
|
|
36
|
-
Requires-Dist: gkeepapi (
|
|
37
|
-
Requires-Dist: google-api-python-client (
|
|
38
|
-
Requires-Dist: google-generativeai (
|
|
39
|
-
Requires-Dist: grpcio (
|
|
40
|
-
Requires-Dist: httpx (
|
|
35
|
+
Requires-Dist: gkeepapi (==0.15.1)
|
|
36
|
+
Requires-Dist: google-api-python-client (==2.182.0)
|
|
37
|
+
Requires-Dist: google-generativeai (==0.8.5)
|
|
38
|
+
Requires-Dist: grpcio (==1.75.0)
|
|
39
|
+
Requires-Dist: httpx (==0.28.1)
|
|
41
40
|
Requires-Dist: httpx-socks (>=0.10.1,<0.11.0)
|
|
42
|
-
Requires-Dist: huggingface-hub (
|
|
41
|
+
Requires-Dist: huggingface-hub (==0.35.0)
|
|
43
42
|
Requires-Dist: ipykernel (>=6.30.1,<7.0.0)
|
|
44
43
|
Requires-Dist: jupyter_client (>=8.6.3,<9.0.0)
|
|
45
|
-
Requires-Dist: llama-index (
|
|
46
|
-
Requires-Dist: llama-index-
|
|
47
|
-
Requires-Dist: llama-index-
|
|
48
|
-
Requires-Dist: llama-index-embeddings-
|
|
49
|
-
Requires-Dist: llama-index-embeddings-
|
|
50
|
-
Requires-Dist: llama-index-embeddings-
|
|
51
|
-
Requires-Dist: llama-index-embeddings-
|
|
52
|
-
Requires-Dist: llama-index-embeddings-
|
|
53
|
-
Requires-Dist: llama-index-embeddings-
|
|
54
|
-
Requires-Dist: llama-index-embeddings-openai (>=0.
|
|
55
|
-
Requires-Dist: llama-index-embeddings-
|
|
56
|
-
Requires-Dist: llama-index-
|
|
57
|
-
Requires-Dist: llama-index-llms-
|
|
58
|
-
Requires-Dist: llama-index-llms-
|
|
59
|
-
Requires-Dist: llama-index-llms-
|
|
60
|
-
Requires-Dist: llama-index-llms-
|
|
61
|
-
Requires-Dist: llama-index-llms-
|
|
62
|
-
Requires-Dist: llama-index-llms-
|
|
63
|
-
Requires-Dist: llama-index-llms-
|
|
64
|
-
Requires-Dist: llama-index-llms-
|
|
65
|
-
Requires-Dist: llama-index-llms-openai (>=0.
|
|
66
|
-
Requires-Dist: llama-index-llms-
|
|
67
|
-
Requires-Dist: llama-index-llms-
|
|
68
|
-
Requires-Dist: llama-index-
|
|
69
|
-
Requires-Dist: llama-index-readers-
|
|
70
|
-
Requires-Dist: llama-index-readers-
|
|
71
|
-
Requires-Dist: llama-index-readers-
|
|
72
|
-
Requires-Dist: llama-index-readers-
|
|
73
|
-
Requires-Dist: llama-index-readers-
|
|
74
|
-
Requires-Dist: llama-index-readers-
|
|
75
|
-
Requires-Dist: llama-index-readers-
|
|
76
|
-
Requires-Dist: llama-index-
|
|
77
|
-
Requires-Dist: llama-index-vector-stores-
|
|
78
|
-
Requires-Dist: llama-index-vector-stores-
|
|
79
|
-
Requires-Dist: llama-index-vector-stores-
|
|
80
|
-
Requires-Dist: llama-index-vector-stores-redis (>=0.4.0,<0.5.0)
|
|
44
|
+
Requires-Dist: llama-index (==0.13.6)
|
|
45
|
+
Requires-Dist: llama-index-core (==0.13.6)
|
|
46
|
+
Requires-Dist: llama-index-embeddings-azure-openai (>=0.4.1,<0.5.0)
|
|
47
|
+
Requires-Dist: llama-index-embeddings-gemini (>=0.4.1,<0.5.0)
|
|
48
|
+
Requires-Dist: llama-index-embeddings-google-genai (>=0.3.1,<0.4.0)
|
|
49
|
+
Requires-Dist: llama-index-embeddings-huggingface-api (>=0.4.1,<0.5.0)
|
|
50
|
+
Requires-Dist: llama-index-embeddings-mistralai (>=0.4.1,<0.5.0)
|
|
51
|
+
Requires-Dist: llama-index-embeddings-ollama (>=0.8.3,<0.9.0)
|
|
52
|
+
Requires-Dist: llama-index-embeddings-openai (>=0.5.1,<0.6.0)
|
|
53
|
+
Requires-Dist: llama-index-embeddings-openai-like (>=0.2.2,<0.3.0)
|
|
54
|
+
Requires-Dist: llama-index-embeddings-voyageai (>=0.4.2,<0.5.0)
|
|
55
|
+
Requires-Dist: llama-index-llms-anthropic (>=0.8.6,<0.9.0)
|
|
56
|
+
Requires-Dist: llama-index-llms-azure-openai (>=0.4.1,<0.5.0)
|
|
57
|
+
Requires-Dist: llama-index-llms-deepseek (>=0.2.2,<0.3.0)
|
|
58
|
+
Requires-Dist: llama-index-llms-gemini (>=0.6.1,<0.7.0)
|
|
59
|
+
Requires-Dist: llama-index-llms-google-genai (>=0.3.1,<0.4.0)
|
|
60
|
+
Requires-Dist: llama-index-llms-huggingface-api (>=0.6.1,<0.7.0)
|
|
61
|
+
Requires-Dist: llama-index-llms-mistralai (>=0.7.1,<0.8.0)
|
|
62
|
+
Requires-Dist: llama-index-llms-ollama (>=0.7.3,<0.8.0)
|
|
63
|
+
Requires-Dist: llama-index-llms-openai (>=0.5.6,<0.6.0)
|
|
64
|
+
Requires-Dist: llama-index-llms-openai-like (>=0.5.1,<0.6.0)
|
|
65
|
+
Requires-Dist: llama-index-llms-perplexity (>=0.4.1,<0.5.0)
|
|
66
|
+
Requires-Dist: llama-index-multi-modal-llms-openai (>=0.6.1,<0.7.0)
|
|
67
|
+
Requires-Dist: llama-index-readers-chatgpt-plugin (>=0.4.1,<0.5.0)
|
|
68
|
+
Requires-Dist: llama-index-readers-database (>=0.5.1,<0.6.0)
|
|
69
|
+
Requires-Dist: llama-index-readers-file (>=0.5.4,<0.6.0)
|
|
70
|
+
Requires-Dist: llama-index-readers-github (>=0.8.2,<0.9.0)
|
|
71
|
+
Requires-Dist: llama-index-readers-google (>=0.7.2,<0.8.0)
|
|
72
|
+
Requires-Dist: llama-index-readers-microsoft-onedrive (>=0.4.1,<0.5.0)
|
|
73
|
+
Requires-Dist: llama-index-readers-twitter (>=0.4.1,<0.5.0)
|
|
74
|
+
Requires-Dist: llama-index-readers-web (>=0.5.3,<0.6.0)
|
|
75
|
+
Requires-Dist: llama-index-vector-stores-chroma (>=0.5.3,<0.6.0)
|
|
76
|
+
Requires-Dist: llama-index-vector-stores-elasticsearch (==0.5.1)
|
|
77
|
+
Requires-Dist: llama-index-vector-stores-pinecone (>=0.7.1,<0.8.0)
|
|
78
|
+
Requires-Dist: llama-index-vector-stores-redis (>=0.6.1,<0.7.0)
|
|
81
79
|
Requires-Dist: mcp (>=1.13.1,<2.0.0)
|
|
82
80
|
Requires-Dist: mss (>=9.0.2,<10.0.0)
|
|
83
81
|
Requires-Dist: nbconvert (>=7.16.6,<8.0.0)
|
|
84
|
-
Requires-Dist: numpy (
|
|
85
|
-
Requires-Dist: onnxruntime (==1.
|
|
86
|
-
Requires-Dist: openai (==1.
|
|
82
|
+
Requires-Dist: numpy (==1.26.4)
|
|
83
|
+
Requires-Dist: onnxruntime (==1.22.1)
|
|
84
|
+
Requires-Dist: openai (==1.108.2)
|
|
87
85
|
Requires-Dist: openai-agents (>=0.2.3,<0.3.0)
|
|
88
86
|
Requires-Dist: opencv-python (>=4.11.0.86,<5.0.0.0)
|
|
89
87
|
Requires-Dist: packaging (>=25.0,<26.0)
|
|
90
|
-
Requires-Dist: pandas (
|
|
88
|
+
Requires-Dist: pandas (==2.2.3)
|
|
91
89
|
Requires-Dist: paramiko (>=4.0.0,<5.0.0)
|
|
92
|
-
Requires-Dist: pillow (
|
|
90
|
+
Requires-Dist: pillow (==10.4.0)
|
|
93
91
|
Requires-Dist: pinecone (>=7.0.1,<8.0.0)
|
|
94
92
|
Requires-Dist: psutil (>=7.0.0,<8.0.0)
|
|
95
93
|
Requires-Dist: pydub (>=0.25.1,<0.26.0)
|
|
96
94
|
Requires-Dist: pygame (>=2.6.1,<3.0.0)
|
|
97
95
|
Requires-Dist: pynput (>=1.8.1,<2.0.0)
|
|
98
|
-
Requires-Dist: pypdf (
|
|
96
|
+
Requires-Dist: pypdf (==6.1.0)
|
|
99
97
|
Requires-Dist: pyserial (>=3.5,<4.0)
|
|
100
98
|
Requires-Dist: python-markdown-math (>=0.8,<0.9)
|
|
101
99
|
Requires-Dist: qasync (>=0.27.1,<0.28.0)
|
|
102
100
|
Requires-Dist: qt-material (>=2.17,<3.0)
|
|
103
|
-
Requires-Dist: redis (
|
|
101
|
+
Requires-Dist: redis (==5.3.1)
|
|
104
102
|
Requires-Dist: show-in-file-manager (>=1.1.5,<2.0.0)
|
|
105
|
-
Requires-Dist: tiktoken (
|
|
106
|
-
Requires-Dist: transformers (==4.
|
|
107
|
-
Requires-Dist: urllib3 (
|
|
103
|
+
Requires-Dist: tiktoken (==0.11.0)
|
|
104
|
+
Requires-Dist: transformers (==4.56.2)
|
|
105
|
+
Requires-Dist: urllib3 (==2.5.0)
|
|
108
106
|
Requires-Dist: wikipedia (>=1.4.0,<2.0.0)
|
|
109
107
|
Requires-Dist: xai-sdk (>=1.1.0,<2.0.0)
|
|
110
108
|
Requires-Dist: youtube-transcript-api (>=0.6.3,<0.7.0)
|
|
@@ -119,7 +117,7 @@ Description-Content-Type: text/markdown
|
|
|
119
117
|
|
|
120
118
|
[](https://snapcraft.io/pygpt)
|
|
121
119
|
|
|
122
|
-
Release: **2.6.
|
|
120
|
+
Release: **2.6.59** | build: **2025-09-23** | Python: **>=3.10, <3.14**
|
|
123
121
|
|
|
124
122
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
125
123
|
>
|
|
@@ -3660,6 +3658,12 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3660
3658
|
|
|
3661
3659
|
## Recent changes:
|
|
3662
3660
|
|
|
3661
|
+
**2.6.59 (2025-09-23)**
|
|
3662
|
+
|
|
3663
|
+
- LlamaIndex has been upgraded to v0.13.6.
|
|
3664
|
+
- The Responses API is disabled by default in Agents (LlamaIndex) for compatibility.
|
|
3665
|
+
- Added WinAPI support to the System (OS) plugin.
|
|
3666
|
+
|
|
3663
3667
|
**2.6.58 (2025-09-22)**
|
|
3664
3668
|
|
|
3665
3669
|
- Added: internal Web Browser tool.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=qwRlkyMm-QUdbfmCLpVh6iAilkSzmzkztS-lXKpOpTA,108342
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=8RcdihUE5GuEBcR_Tw1bcPEAo9kr63F4OJnjWemt0ks,1373
|
|
4
4
|
pygpt_net/app.py,sha256=bxXu6DO2hYVP5Fqq4jA-rQ2jN3edyp73dsgEGTsJxb0,23001
|
|
5
5
|
pygpt_net/app_core.py,sha256=PwBOV9wZLtr-O6SxBiazABhYXMHH8kZ6OgbvSv2OiZA,3827
|
|
6
6
|
pygpt_net/config.py,sha256=3CA7xXPKQsdRie1CY8_b5-Kk1taWMciUP9CesXRQNNY,18302
|
|
@@ -275,7 +275,7 @@ pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddY
|
|
|
275
275
|
pygpt_net/core/filesystem/filesystem.py,sha256=QYperv6KMGg6mwt8EVHMWT_KB2MH8wzUDB_CiIgaSGU,15602
|
|
276
276
|
pygpt_net/core/filesystem/opener.py,sha256=8EkieR_FwSz0HBykLcmV8TEw8Bn0e7WHqqiPTkDPp-M,7851
|
|
277
277
|
pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fVWTok1w,2568
|
|
278
|
-
pygpt_net/core/filesystem/parser.py,sha256=
|
|
278
|
+
pygpt_net/core/filesystem/parser.py,sha256=CLESCdASVQ1-cJ_6ZxbgDSxvwC-haznj_coE1_tWaQE,3548
|
|
279
279
|
pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUkTcqaA,3458
|
|
280
280
|
pygpt_net/core/filesystem/url.py,sha256=0eT7QbRQw-G19oxG3AwKgREU2CsaLSF8Fw-IO04CvUU,3676
|
|
281
281
|
pygpt_net/core/fixtures/__init__,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -400,8 +400,8 @@ pygpt_net/css_rc.py,sha256=PX6g9z5BsD-DXISuR2oq3jHcjiKfcJ4HsgcHez6wGMc,27762
|
|
|
400
400
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
401
401
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
402
402
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
403
|
-
pygpt_net/data/config/config.json,sha256=
|
|
404
|
-
pygpt_net/data/config/models.json,sha256=
|
|
403
|
+
pygpt_net/data/config/config.json,sha256=Mq1eyAAIz2B_Pggzdv1HqZh9mvItw8QuktP7pN35I3o,30943
|
|
404
|
+
pygpt_net/data/config/models.json,sha256=x8xOaiX4Uo9S0jiAnWFMoW2u1K9oE_bpsvCWpHANwXM,118192
|
|
405
405
|
pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
|
|
406
406
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
407
407
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -1795,7 +1795,7 @@ pygpt_net/data/locale/plugin.cmd_serial.pl.ini,sha256=1VdOYRB76gkjMtzysa4gp3ArTH
|
|
|
1795
1795
|
pygpt_net/data/locale/plugin.cmd_serial.uk.ini,sha256=wS4XPWBhMl6-3W0diAd0A2Oir9uzCILGX24kLmf4v08,1614
|
|
1796
1796
|
pygpt_net/data/locale/plugin.cmd_serial.zh.ini,sha256=Vvn-244zOAJeuCf81zEWb_GNH9MpqX-9RgkwlW7O-bQ,1014
|
|
1797
1797
|
pygpt_net/data/locale/plugin.cmd_system.de.ini,sha256=IW_n68N-qSDlBDkHHcf11cQOUQZKZKbUFpZwYh5ft3c,1301
|
|
1798
|
-
pygpt_net/data/locale/plugin.cmd_system.en.ini,sha256=
|
|
1798
|
+
pygpt_net/data/locale/plugin.cmd_system.en.ini,sha256=vfJQDIMCgUWN6VCD1kWr2QtSlHEEApx2jhyCAFMqX9Y,5518
|
|
1799
1799
|
pygpt_net/data/locale/plugin.cmd_system.es.ini,sha256=WGM8brSKpPa1YsVNvAKJjLLtg8oBsnb1Wq_SYmNOdX4,1381
|
|
1800
1800
|
pygpt_net/data/locale/plugin.cmd_system.fr.ini,sha256=PvBSlLRrl3oZDzY9tO-Btl5W-l2Fn3RXpVYPt2a65_I,1321
|
|
1801
1801
|
pygpt_net/data/locale/plugin.cmd_system.it.ini,sha256=grekD4hNTSLjeGgFcPR72BYVYcxVqNqh4XdBG_4RZHQ,1305
|
|
@@ -1993,12 +1993,13 @@ pygpt_net/plugin/cmd_serial/config.py,sha256=oXtnKRL42yadG7fUoCAwpvdgWAU-lOjeryH
|
|
|
1993
1993
|
pygpt_net/plugin/cmd_serial/plugin.py,sha256=42qeqL-3FSCXFVeA-qF3fEQIQoKKkVgTM-h3LR6mWRA,2945
|
|
1994
1994
|
pygpt_net/plugin/cmd_serial/worker.py,sha256=q9XAXjuvWRoTK6fh-qr10ZRY6XV-eZIR2jDUGxI7Ieo,7942
|
|
1995
1995
|
pygpt_net/plugin/cmd_system/__init__.py,sha256=PVCicfnsv5lwFO327NOanm6gxcXnlDUofhja3hOqM84,510
|
|
1996
|
-
pygpt_net/plugin/cmd_system/config.py,sha256=
|
|
1996
|
+
pygpt_net/plugin/cmd_system/config.py,sha256=VyuzWwk8koZrhFZS_1Vta1O-ZqOVHH7atHmC-5EqREU,22683
|
|
1997
1997
|
pygpt_net/plugin/cmd_system/docker.py,sha256=-TVrW4FzeQrPh6K6kL7jy43pNyHO1MOc88BF_FvWVho,1852
|
|
1998
1998
|
pygpt_net/plugin/cmd_system/output.py,sha256=-_jsePK2tOo45TBunstfkDnpU4ezWR4gJxMHfjhA7Q4,2138
|
|
1999
|
-
pygpt_net/plugin/cmd_system/plugin.py,sha256=
|
|
2000
|
-
pygpt_net/plugin/cmd_system/runner.py,sha256=
|
|
2001
|
-
pygpt_net/plugin/cmd_system/
|
|
1999
|
+
pygpt_net/plugin/cmd_system/plugin.py,sha256=wrnitJY0pUGBQR-Fl8mweLJK7veCNyqBoiVI5BYJFqw,6731
|
|
2000
|
+
pygpt_net/plugin/cmd_system/runner.py,sha256=eGa6ncy7yfBadBSnpMexLO4WfHRfssq3yoSSVYpRP-k,30013
|
|
2001
|
+
pygpt_net/plugin/cmd_system/winapi.py,sha256=eF72Z0MAGxb6312yzdNw432ABK2P-0OYaQFvMXycwWQ,19937
|
|
2002
|
+
pygpt_net/plugin/cmd_system/worker.py,sha256=0-0bDH3VycomrsVZOLpNJJP9hbOduZjUEEn9e4VmCTU,8549
|
|
2002
2003
|
pygpt_net/plugin/cmd_web/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
2003
2004
|
pygpt_net/plugin/cmd_web/config.py,sha256=XXeczlWJYh6BopfJ45eA8zpoy0iOiqLaRMtUdzmkkeg,14319
|
|
2004
2005
|
pygpt_net/plugin/cmd_web/plugin.py,sha256=gxWNhYh5vthFB7FJ90UNY6rY12oDk_GRZ78Q-A0qe2c,14550
|
|
@@ -2298,7 +2299,7 @@ pygpt_net/provider/llms/mistral.py,sha256=BstHVTS-7luMEoInzNNQqbR9BR9_ezH9MAsHcS
|
|
|
2298
2299
|
pygpt_net/provider/llms/ollama.py,sha256=vVqA22eH-APgyfHCaHSvJlAgxLSvspvZSaOCeaKWQCw,4434
|
|
2299
2300
|
pygpt_net/provider/llms/ollama_custom.py,sha256=WVbLiEEwnz5loKiLy7EYmpuWz0Tp5Vhd1vOUB2051kI,24167
|
|
2300
2301
|
pygpt_net/provider/llms/open_router.py,sha256=k4WgtT6A13bwhdT7oKQe4dO78x0Wog5deebbvfL7YVA,3815
|
|
2301
|
-
pygpt_net/provider/llms/openai.py,sha256=
|
|
2302
|
+
pygpt_net/provider/llms/openai.py,sha256=w8mZLg7sLaA1byGbhQx4pclEEETeZ13F43AhMUhFkDw,5709
|
|
2302
2303
|
pygpt_net/provider/llms/perplexity.py,sha256=JMMVS2zZBxApVhJQZKZ0i_BuP6dYDo19haEf-riZYcM,6173
|
|
2303
2304
|
pygpt_net/provider/llms/utils.py,sha256=5p83te7Hv9jUTtW-VXDDwzRO_0qvFSN5FdeRYioUedk,1336
|
|
2304
2305
|
pygpt_net/provider/llms/voyage.py,sha256=3tuLmayekAy-pNIK9z-Gwz9jEVYdt7CsAtsE57feUlA,1918
|
|
@@ -2395,7 +2396,7 @@ pygpt_net/tools/code_interpreter/body.py,sha256=jDEHJuAI8U1RjV0Dhm5CcL4Y8b09UNDw
|
|
|
2395
2396
|
pygpt_net/tools/code_interpreter/tool.py,sha256=XH3_ZUWp1tp21rGlj6-ULI723DXfY1xs7dN9Ye03Pm8,24185
|
|
2396
2397
|
pygpt_net/tools/code_interpreter/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2397
2398
|
pygpt_net/tools/code_interpreter/ui/dialogs.py,sha256=iYCtmn_gPMKhvy8Ygga_oYPVg80zP3-10SZgv0O6xYQ,5429
|
|
2398
|
-
pygpt_net/tools/code_interpreter/ui/html.py,sha256=
|
|
2399
|
+
pygpt_net/tools/code_interpreter/ui/html.py,sha256=wVGCUPSWU1GYU5zCXbyLD2AOfaKQRprjIskeBLKMwDc,27429
|
|
2399
2400
|
pygpt_net/tools/code_interpreter/ui/widgets.py,sha256=noOvecQNHcZKDfyfmgnupNr8KtY8WPvfbds63z6vOV0,18020
|
|
2400
2401
|
pygpt_net/tools/html_canvas/__init__.py,sha256=7FScUoJWFBsF6Rbmt14zb2YEERcywW_xAeX0GTAHhX4,508
|
|
2401
2402
|
pygpt_net/tools/html_canvas/tool.py,sha256=4-I7WfEGU9zMjauQ1LUoNxdt2oLy8dlEW9_-gA6JzDI,10210
|
|
@@ -2628,12 +2629,12 @@ pygpt_net/ui/widget/textarea/output.py,sha256=3yvlnxXhss-i5eRHwmNxxRZMhP4fiTbKA3
|
|
|
2628
2629
|
pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
|
|
2629
2630
|
pygpt_net/ui/widget/textarea/search_input.py,sha256=aoOlunBwxn-z3gIMNKfnghHX00sC36wQHl87dRlDJlM,5227
|
|
2630
2631
|
pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
|
|
2631
|
-
pygpt_net/ui/widget/textarea/web.py,sha256=
|
|
2632
|
+
pygpt_net/ui/widget/textarea/web.py,sha256=CDpsjv8OorG1mO0NoXp-otgx1YHZES9DilZ_wo_KEig,20272
|
|
2632
2633
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2633
2634
|
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2634
2635
|
pygpt_net/utils.py,sha256=m0fkJ06JaUKvTbxZQgdY-mpYt7ReZZhq1D90a2ANOQ0,10832
|
|
2635
|
-
pygpt_net-2.6.
|
|
2636
|
-
pygpt_net-2.6.
|
|
2637
|
-
pygpt_net-2.6.
|
|
2638
|
-
pygpt_net-2.6.
|
|
2639
|
-
pygpt_net-2.6.
|
|
2636
|
+
pygpt_net-2.6.59.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2637
|
+
pygpt_net-2.6.59.dist-info/METADATA,sha256=IUhugvRhpfjtsdDE0TsyvNEkvt9LPpvV03S6ywR7Xm0,167736
|
|
2638
|
+
pygpt_net-2.6.59.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2639
|
+
pygpt_net-2.6.59.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2640
|
+
pygpt_net-2.6.59.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|