pygpt-net 2.7.3__py3-none-any.whl → 2.7.5__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 +15 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +382 -350
- pygpt_net/app_core.py +4 -2
- pygpt_net/controller/__init__.py +5 -1
- pygpt_net/controller/assistant/assistant.py +1 -4
- pygpt_net/controller/assistant/batch.py +5 -504
- pygpt_net/controller/assistant/editor.py +5 -5
- pygpt_net/controller/assistant/files.py +16 -16
- pygpt_net/controller/chat/attachment.py +5 -1
- pygpt_net/controller/chat/handler/google_stream.py +307 -1
- pygpt_net/controller/chat/handler/worker.py +8 -1
- pygpt_net/controller/chat/image.py +15 -3
- pygpt_net/controller/dialogs/confirm.py +73 -101
- pygpt_net/controller/files/files.py +3 -1
- pygpt_net/controller/lang/mapping.py +9 -9
- pygpt_net/controller/layout/layout.py +2 -2
- pygpt_net/controller/painter/capture.py +50 -1
- pygpt_net/controller/presets/presets.py +2 -1
- pygpt_net/controller/remote_store/__init__.py +12 -0
- pygpt_net/{provider/core/assistant_file/db_sqlite → controller/remote_store/google}/__init__.py +2 -2
- pygpt_net/controller/remote_store/google/batch.py +402 -0
- pygpt_net/controller/remote_store/google/store.py +615 -0
- pygpt_net/controller/remote_store/openai/__init__.py +12 -0
- pygpt_net/controller/remote_store/openai/batch.py +524 -0
- pygpt_net/controller/{assistant → remote_store/openai}/store.py +63 -60
- pygpt_net/controller/remote_store/remote_store.py +35 -0
- pygpt_net/controller/theme/nodes.py +2 -1
- pygpt_net/controller/ui/mode.py +5 -1
- pygpt_net/controller/ui/ui.py +36 -2
- pygpt_net/core/assistants/assistants.py +3 -15
- pygpt_net/core/db/database.py +5 -3
- pygpt_net/core/filesystem/url.py +4 -1
- pygpt_net/core/locale/placeholder.py +35 -0
- pygpt_net/core/remote_store/__init__.py +12 -0
- pygpt_net/core/remote_store/google/__init__.py +11 -0
- pygpt_net/core/remote_store/google/files.py +224 -0
- pygpt_net/core/remote_store/google/store.py +248 -0
- pygpt_net/core/remote_store/openai/__init__.py +11 -0
- pygpt_net/core/{assistants → remote_store/openai}/files.py +26 -19
- pygpt_net/core/{assistants → remote_store/openai}/store.py +32 -15
- pygpt_net/core/remote_store/remote_store.py +24 -0
- pygpt_net/core/render/web/helpers.py +5 -0
- pygpt_net/data/config/config.json +8 -5
- pygpt_net/data/config/models.json +77 -3
- pygpt_net/data/config/settings.json +45 -14
- pygpt_net/data/css/web-blocks.css +3 -0
- pygpt_net/data/css/web-chatgpt.css +3 -0
- pygpt_net/data/locale/locale.de.ini +43 -41
- pygpt_net/data/locale/locale.en.ini +56 -44
- pygpt_net/data/locale/locale.es.ini +43 -41
- pygpt_net/data/locale/locale.fr.ini +43 -41
- pygpt_net/data/locale/locale.it.ini +43 -41
- pygpt_net/data/locale/locale.pl.ini +43 -41
- pygpt_net/data/locale/locale.uk.ini +43 -41
- pygpt_net/data/locale/locale.zh.ini +43 -41
- pygpt_net/data/locale/plugin.cmd_history.de.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.en.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.es.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.fr.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.it.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.pl.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.uk.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.zh.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_mouse_control.en.ini +14 -0
- pygpt_net/data/locale/plugin.cmd_web.de.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.en.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.es.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.it.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +1 -1
- pygpt_net/data/locale/plugin.idx_llama_index.de.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.en.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.es.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.it.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +2 -2
- pygpt_net/item/assistant.py +1 -211
- pygpt_net/item/ctx.py +3 -1
- pygpt_net/item/store.py +238 -0
- pygpt_net/launcher.py +115 -55
- pygpt_net/migrations/Version20260102190000.py +35 -0
- pygpt_net/migrations/__init__.py +3 -1
- pygpt_net/plugin/cmd_mouse_control/config.py +470 -1
- pygpt_net/plugin/cmd_mouse_control/plugin.py +488 -22
- pygpt_net/plugin/cmd_mouse_control/worker.py +464 -87
- pygpt_net/plugin/cmd_mouse_control/worker_sandbox.py +729 -0
- pygpt_net/plugin/idx_llama_index/config.py +2 -2
- pygpt_net/preload.py +243 -0
- pygpt_net/provider/api/google/__init__.py +16 -54
- pygpt_net/provider/api/google/chat.py +546 -129
- pygpt_net/provider/api/google/computer.py +190 -0
- pygpt_net/provider/api/google/image.py +74 -6
- pygpt_net/provider/api/google/realtime/realtime.py +2 -2
- pygpt_net/provider/api/google/remote_tools.py +93 -0
- pygpt_net/provider/api/google/store.py +546 -0
- pygpt_net/provider/api/google/video.py +9 -4
- pygpt_net/provider/api/google/worker/__init__.py +0 -0
- pygpt_net/provider/api/google/worker/importer.py +392 -0
- pygpt_net/provider/api/openai/computer.py +10 -1
- pygpt_net/provider/api/openai/image.py +42 -19
- pygpt_net/provider/api/openai/store.py +6 -6
- pygpt_net/provider/api/openai/video.py +27 -2
- pygpt_net/provider/api/openai/worker/importer.py +24 -24
- pygpt_net/provider/api/x_ai/image.py +25 -2
- pygpt_net/provider/core/config/patch.py +23 -1
- pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +3 -3
- pygpt_net/provider/core/model/patch.py +17 -3
- pygpt_net/provider/core/preset/json_file.py +13 -7
- pygpt_net/provider/core/{assistant_file → remote_file}/__init__.py +1 -1
- pygpt_net/provider/core/{assistant_file → remote_file}/base.py +9 -9
- pygpt_net/provider/core/remote_file/db_sqlite/__init__.py +12 -0
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/patch.py +1 -1
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/provider.py +23 -20
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/storage.py +35 -27
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/utils.py +5 -4
- pygpt_net/provider/core/{assistant_store → remote_store}/__init__.py +1 -1
- pygpt_net/provider/core/{assistant_store → remote_store}/base.py +10 -10
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/__init__.py +1 -1
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/patch.py +1 -1
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/provider.py +16 -15
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/storage.py +30 -23
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/utils.py +5 -4
- pygpt_net/provider/core/{assistant_store → remote_store}/json_file.py +9 -9
- pygpt_net/provider/llms/google.py +2 -2
- pygpt_net/ui/base/config_dialog.py +3 -2
- pygpt_net/ui/dialog/assistant.py +3 -3
- pygpt_net/ui/dialog/plugins.py +3 -1
- pygpt_net/ui/dialog/remote_store_google.py +539 -0
- pygpt_net/ui/dialog/{assistant_store.py → remote_store_openai.py} +95 -95
- pygpt_net/ui/dialogs.py +5 -3
- pygpt_net/ui/layout/chat/attachments_uploaded.py +3 -3
- pygpt_net/ui/layout/chat/input.py +20 -2
- pygpt_net/ui/layout/chat/painter.py +6 -4
- pygpt_net/ui/layout/toolbox/computer_env.py +26 -8
- pygpt_net/ui/layout/toolbox/image.py +5 -5
- pygpt_net/ui/layout/toolbox/video.py +5 -4
- pygpt_net/ui/main.py +84 -3
- pygpt_net/ui/menu/tools.py +13 -5
- pygpt_net/ui/widget/dialog/base.py +3 -10
- pygpt_net/ui/widget/dialog/remote_store_google.py +56 -0
- pygpt_net/ui/widget/dialog/{assistant_store.py → remote_store_openai.py} +9 -9
- pygpt_net/ui/widget/element/button.py +4 -4
- pygpt_net/ui/widget/lists/remote_store_google.py +248 -0
- pygpt_net/ui/widget/lists/{assistant_store.py → remote_store_openai.py} +21 -21
- pygpt_net/ui/widget/option/checkbox_list.py +47 -9
- pygpt_net/ui/widget/option/combo.py +158 -4
- pygpt_net/ui/widget/textarea/input_extra.py +664 -0
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/METADATA +48 -9
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/RECORD +157 -130
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/LICENSE +0 -0
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/WHEEL +0 -0
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.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.7.
|
|
3
|
+
Version: 2.7.5
|
|
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
|
|
@@ -91,6 +91,7 @@ Requires-Dist: pandas (==2.2.3)
|
|
|
91
91
|
Requires-Dist: paramiko (>=4.0.0,<5.0.0)
|
|
92
92
|
Requires-Dist: pillow (==10.4.0)
|
|
93
93
|
Requires-Dist: pinecone (>=7.0.1,<8.0.0)
|
|
94
|
+
Requires-Dist: playwright (>=1.57.0,<2.0.0)
|
|
94
95
|
Requires-Dist: psutil (>=7.0.0,<8.0.0)
|
|
95
96
|
Requires-Dist: pydub (>=0.25.1,<0.26.0)
|
|
96
97
|
Requires-Dist: pygame (>=2.6.1,<3.0.0)
|
|
@@ -119,7 +120,7 @@ Description-Content-Type: text/markdown
|
|
|
119
120
|
|
|
120
121
|
[](https://snapcraft.io/pygpt)
|
|
121
122
|
|
|
122
|
-
Release: **2.7.
|
|
123
|
+
Release: **2.7.5** | build: **2026-01-03** | Python: **>=3.10, <3.14**
|
|
123
124
|
|
|
124
125
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
125
126
|
>
|
|
@@ -159,18 +160,21 @@ You can download compiled 64-bit versions for Windows and Linux here: https://py
|
|
|
159
160
|
|
|
160
161
|
- Desktop AI Assistant for `Linux`, `Windows` and `Mac`, written in Python.
|
|
161
162
|
- Works similarly to `ChatGPT`, but locally (on a desktop computer).
|
|
162
|
-
- 11 modes of operation: Chat, Chat with Files, Realtime + audio, Research (Perplexity), Completion, Image and
|
|
163
|
+
- 11 modes of operation: Chat, Chat with Files, Realtime + audio, Research (Perplexity), Completion, Image and Video generation, Assistants, Experts, Computer use, Agents and Autonomous Mode.
|
|
163
164
|
- Supports multiple models like `OpenAI GPT-5`, `GPT-4`, `o1`, `o3`, `o4`, `Google Gemini`, `Anthropic Claude`, `xAI Grok`, `DeepSeek V3/R1`, `Perplexity / Sonar`, and any model accessible through `LlamaIndex` and `Ollama` such as `DeepSeek`, `gpt-oss`, `Llama 3`, `Mistral`, `Bielik`, etc.
|
|
164
165
|
- Chat with your own Files: integrated `LlamaIndex` support: chat with data such as: `txt`, `pdf`, `csv`, `html`, `md`, `docx`, `json`, `epub`, `xlsx`, `xml`, webpages, `Google`, `GitHub`, video/audio, images and other data types, or use conversation history as additional context provided to the model.
|
|
165
166
|
- Built-in vector databases support and automated files and data embedding.
|
|
166
|
-
-
|
|
167
|
-
-
|
|
167
|
+
- Image generation via models like `DALL-E`, `gpt-image`, `Imagen`, `Gemini`, and `Nano Banana`.
|
|
168
|
+
- Video generation via models like `Veo3` and `Sora2`.
|
|
168
169
|
- Internet access via `DuckDuckGo`, `Google` and `Microsoft Bing`.
|
|
169
170
|
- Speech synthesis via `Microsoft Azure`, `Google`, `Eleven Labs` and `OpenAI` Text-To-Speech services.
|
|
170
171
|
- Speech recognition via `OpenAI Whisper`, `Google` and `Microsoft Speech Recognition`.
|
|
172
|
+
- Plugins support with built-in plugins like `Files I/O`, `Code Interpreter`, `Web Search`, `Google`, `Facebook`, `X/Twitter`, `Slack`, `Telegram`, `GitHub`, `MCP`, and many more.
|
|
171
173
|
- MCP support.
|
|
172
174
|
- Real-time video camera capture in Vision mode.
|
|
173
|
-
- Image analysis via
|
|
175
|
+
- Image analysis via vision models.
|
|
176
|
+
- Included support features for individuals with disabilities: customizable keyboard shortcuts, voice control, and translation of on-screen actions into audio via speech synthesis.
|
|
177
|
+
- Handles and stores the full context of conversations (short and long-term memory).
|
|
174
178
|
- Integrated calendar, day notes and search in contexts by selected date.
|
|
175
179
|
- Tools and commands execution (via plugins: access to the local filesystem, Python Code Interpreter, system commands execution, and more).
|
|
176
180
|
- Custom commands creation and execution.
|
|
@@ -185,12 +189,9 @@ You can download compiled 64-bit versions for Windows and Linux here: https://py
|
|
|
185
189
|
- Includes an node-based Agents Builder.
|
|
186
190
|
- Supports multiple languages.
|
|
187
191
|
- Requires no previous knowledge of using AI models.
|
|
188
|
-
- Image generation via models like `DALL-E`, `gpt-image`, `Imagen` and `Nano Banana`.
|
|
189
|
-
- Video generation via models like `Veo3` and `Sora2`.
|
|
190
192
|
- Fully configurable.
|
|
191
193
|
- Themes support.
|
|
192
194
|
- Real-time code syntax highlighting.
|
|
193
|
-
- Plugins support with built-in plugins like `Files I/O`, `Code Interpreter`, `Web Search`, `Google`, `Facebook`, `X/Twitter`, `Slack`, `Telegram`, `GitHub`, `MCP`, and many more.
|
|
194
195
|
- Built-in token usage calculation.
|
|
195
196
|
- Possesses the potential to support future OpenAI models.
|
|
196
197
|
- **Open source**; source code is available on `GitHub`.
|
|
@@ -1030,6 +1031,17 @@ You can change the environment in which the navigation mode operates by using th
|
|
|
1030
1031
|
- Windows
|
|
1031
1032
|
- Mac
|
|
1032
1033
|
|
|
1034
|
+
You can run this mode in Sandbox (using `Playwright` - https://playwright.dev/) - to do it, just enable the `Sandbox` switch in the toolbox. Playwright browsers must be installed on your system. To do so, run:
|
|
1035
|
+
|
|
1036
|
+
```bash
|
|
1037
|
+
pip install playwright
|
|
1038
|
+
playwright install <chromium|firefox|webkit>
|
|
1039
|
+
```
|
|
1040
|
+
After that, set the path to directory with installed browsers in `Mouse and Keyborad` plugin settings option: `Sandbox (Playwright) / Browsers directory`.
|
|
1041
|
+
|
|
1042
|
+
Compiled binary and Snap versions have `chromium` preinstalled in the package.
|
|
1043
|
+
|
|
1044
|
+
|
|
1033
1045
|
**Tip:** DO NOT enable the `Mouse and Keyboard` plugin in Computer use mode—it is already connected to Computer use mode "in the background."
|
|
1034
1046
|
|
|
1035
1047
|
|
|
@@ -1198,12 +1210,14 @@ PyGPT has a preconfigured list of models (as of 2025-12-25):
|
|
|
1198
1210
|
- `codex-mini` (OpenAI)
|
|
1199
1211
|
- `dall-e-2` (OpenAI)
|
|
1200
1212
|
- `dall-e-3` (OpenAI)
|
|
1213
|
+
- `deep-research-pro-preview-12-2025` (Google)
|
|
1201
1214
|
- `deepseek-chat` (DeepSeek)
|
|
1202
1215
|
- `deepseek-r1:1.5b` (Ollama)
|
|
1203
1216
|
- `deepseek-r1:14b` (Ollama)
|
|
1204
1217
|
- `deepseek-r1:32b` (Ollama)
|
|
1205
1218
|
- `deepseek-r1:7b` (Ollama)
|
|
1206
1219
|
- `deepseek-reasoner` (DeepSeek)
|
|
1220
|
+
- `gemini-2.5-computer-use-preview-10-2025` (Google)
|
|
1207
1221
|
- `gemini-1.5-flash` (Google)
|
|
1208
1222
|
- `gemini-1.5-pro` (Google)
|
|
1209
1223
|
- `gemini-2.0-flash-exp` (Google)
|
|
@@ -2126,6 +2140,8 @@ PyGPT features several useful tools, including:
|
|
|
2126
2140
|
- Image viewer
|
|
2127
2141
|
- Text editor
|
|
2128
2142
|
- Transcribe audio/video files
|
|
2143
|
+
- OpenAI Vector Stores
|
|
2144
|
+
- Google Vector Stores
|
|
2129
2145
|
- Python Code Interpreter
|
|
2130
2146
|
- HTML/JS Canvas (built-in HTML renderer)
|
|
2131
2147
|
- Translator
|
|
@@ -2189,6 +2205,12 @@ A simple text editor that enables you to edit text files directly within the app
|
|
|
2189
2205
|
An audio transcription tool with which you can prepare a transcript from a video or audio file. It will use a speech recognition plugin to generate the text from the file.
|
|
2190
2206
|
|
|
2191
2207
|
|
|
2208
|
+
## OpenAI / Google Vector Stores
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
Remote vector stores management.
|
|
2212
|
+
|
|
2213
|
+
|
|
2192
2214
|
## Python Code Interpreter
|
|
2193
2215
|
|
|
2194
2216
|
|
|
@@ -3774,6 +3796,21 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3774
3796
|
|
|
3775
3797
|
## Recent changes:
|
|
3776
3798
|
|
|
3799
|
+
**2.7.5 (2026-01-03)**
|
|
3800
|
+
|
|
3801
|
+
- Added Sandbox/Playwright option to Computer Use mode.
|
|
3802
|
+
- Added support for Google models in Computer Use mode and introduced a new model: gemini-2.5-computer-use-preview-10-2025.
|
|
3803
|
+
- Added support for Google models in Research mode and introduced a new model: deep-research-pro-preview-12-2025.
|
|
3804
|
+
- Added the Google Vector Stores tool.
|
|
3805
|
+
|
|
3806
|
+
**2.7.4 (2025-12-31)**
|
|
3807
|
+
|
|
3808
|
+
- Added a splash screen.
|
|
3809
|
+
- Added Preview and Download links to the Image and Video outputs.
|
|
3810
|
+
- Added Negative prompt input to Image and Video mode.
|
|
3811
|
+
- Improved focus handling.
|
|
3812
|
+
- UI improvements.
|
|
3813
|
+
|
|
3777
3814
|
**2.7.3 (2025-12-30)**
|
|
3778
3815
|
|
|
3779
3816
|
- Added the `Remix/Extend` option in Image and Video generation mode. This allows the use of a previously generated image or video as a reference. It can be used for adding or changing elements in a previously generated image or video instead of creating a new one from scratch. See the docs: `Modes -> Image and Video generation -> Remix, Edit, or Extend`.
|
|
@@ -3891,3 +3928,5 @@ Markdown parsing powered by: https://github.com/markdown-it/markdown-it
|
|
|
3891
3928
|
|
|
3892
3929
|
LaTeX support by: https://katex.org
|
|
3893
3930
|
|
|
3931
|
+
Playwright: https://playwright.dev/
|
|
3932
|
+
|