pygpt-net 2.6.22__py3-none-any.whl → 2.6.23__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 +8 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/controller/agent/llama.py +3 -0
- pygpt_net/controller/chat/response.py +4 -0
- pygpt_net/controller/files/files.py +24 -55
- pygpt_net/controller/theme/theme.py +3 -3
- pygpt_net/core/agents/observer/evaluation.py +2 -2
- pygpt_net/core/agents/runners/loop.py +1 -0
- pygpt_net/core/bridge/bridge.py +2 -0
- pygpt_net/core/filesystem/opener.py +261 -0
- pygpt_net/core/filesystem/url.py +13 -10
- pygpt_net/core/platforms/platforms.py +5 -4
- pygpt_net/data/config/config.json +2 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/css/web-blocks.dark.css +7 -1
- pygpt_net/data/css/web-blocks.light.css +5 -2
- pygpt_net/data/css/web-chatgpt.dark.css +7 -1
- pygpt_net/data/css/web-chatgpt.light.css +3 -0
- pygpt_net/data/css/web-chatgpt_wide.dark.css +7 -1
- pygpt_net/data/css/web-chatgpt_wide.light.css +3 -0
- pygpt_net/data/locale/locale.de.ini +1 -0
- pygpt_net/data/locale/locale.en.ini +1 -0
- pygpt_net/data/locale/locale.es.ini +1 -0
- pygpt_net/data/locale/locale.fr.ini +1 -0
- pygpt_net/data/locale/locale.it.ini +1 -0
- pygpt_net/data/locale/locale.pl.ini +1 -0
- pygpt_net/data/locale/locale.uk.ini +1 -0
- pygpt_net/data/locale/locale.zh.ini +1 -0
- pygpt_net/provider/core/config/patch.py +12 -1
- pygpt_net/ui/layout/toolbox/agent_llama.py +2 -3
- pygpt_net/ui/widget/tabs/layout.py +6 -4
- pygpt_net/ui/widget/tabs/output.py +348 -13
- pygpt_net/ui/widget/textarea/input.py +74 -8
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.23.dist-info}/METADATA +25 -25
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.23.dist-info}/RECORD +38 -37
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.23.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.23.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.23.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.23
|
|
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, 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
|
|
@@ -111,7 +111,7 @@ Description-Content-Type: text/markdown
|
|
|
111
111
|
|
|
112
112
|
[](https://snapcraft.io/pygpt)
|
|
113
113
|
|
|
114
|
-
Release: **2.6.
|
|
114
|
+
Release: **2.6.23** | build: **2025-08-25** | Python: **>=3.10, <3.14**
|
|
115
115
|
|
|
116
116
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
117
117
|
>
|
|
@@ -278,7 +278,7 @@ pygpt
|
|
|
278
278
|
|
|
279
279
|
## Running from GitHub source code
|
|
280
280
|
|
|
281
|
-
An alternative method is to download the source code from `GitHub` and execute the application using the Python interpreter (`>=3.10`, `<3.
|
|
281
|
+
An alternative method is to download the source code from `GitHub` and execute the application using the Python interpreter (`>=3.10`, `<3.14`).
|
|
282
282
|
|
|
283
283
|
### Install with pip
|
|
284
284
|
|
|
@@ -1915,7 +1915,7 @@ PyGPT can be extended with:
|
|
|
1915
1915
|
|
|
1916
1916
|
- custom plugins
|
|
1917
1917
|
|
|
1918
|
-
- custom LLMs
|
|
1918
|
+
- custom LLMs
|
|
1919
1919
|
|
|
1920
1920
|
- custom vector store providers
|
|
1921
1921
|
|
|
@@ -1927,14 +1927,16 @@ PyGPT can be extended with:
|
|
|
1927
1927
|
|
|
1928
1928
|
- custom web search engine providers
|
|
1929
1929
|
|
|
1930
|
+
- custom agents
|
|
1931
|
+
|
|
1930
1932
|
|
|
1931
1933
|
See the section `Extending PyGPT / Adding a custom plugin` for more details.
|
|
1932
1934
|
|
|
1933
|
-
# Functions and
|
|
1935
|
+
# Functions, commands and tools
|
|
1934
1936
|
|
|
1935
1937
|
**Tip** remember to enable the `+ Tools` checkbox to enable execution of tools and commands from plugins.
|
|
1936
1938
|
|
|
1937
|
-
From version `2.2.20` PyGPT uses native API function calls by default. You can go back to internal syntax (described below) by switching off option `Config -> Settings -> Prompts -> Use native API function calls`.
|
|
1939
|
+
From version `2.2.20` PyGPT uses native API function calls by default. You can go back to internal syntax (described below) by switching off option `Config -> Settings -> Prompts -> Use native API function calls`. You must also enable `Tool calls` checkbox in model advanced settings to use native function calls with the specified model.
|
|
1938
1940
|
|
|
1939
1941
|
In background, **PyGPT** uses an internal syntax to define commands and their parameters, which can then be used by the model and executed on the application side or even directly in the system. This syntax looks as follows (example command below):
|
|
1940
1942
|
|
|
@@ -1942,33 +1944,28 @@ In background, **PyGPT** uses an internal syntax to define commands and their pa
|
|
|
1942
1944
|
|
|
1943
1945
|
It is a JSON object wrapped between `<tool>` tags. The application extracts the JSON object from such formatted text and executes the appropriate function based on the provided parameters and command name. Many of these types of commands are defined in plugins (e.g., those used for file operations or internet searches). You can also define your own commands using the `Custom Commands` plugin, or simply by creating your own plugin and adding it to the application.
|
|
1944
1946
|
|
|
1945
|
-
**Tip:** The `+ Tools` option checkbox must be enabled to allow the execution of commands from plugins. Disable the option if you do not want to use commands, to prevent additional token usage (as the command execution system prompt consumes additional tokens).
|
|
1947
|
+
**Tip:** The `+ Tools` option checkbox must be enabled to allow the execution of commands from plugins. Disable the option if you do not want to use commands, to prevent additional token usage (as the command execution system prompt consumes additional tokens and may slow down local models).
|
|
1946
1948
|
|
|
1947
1949
|

|
|
1948
1950
|
|
|
1949
1951
|
When native API function calls are disabled, a special system prompt responsible for invoking commands is added to the main system prompt if the `+ Tools` option is active.
|
|
1950
1952
|
|
|
1951
1953
|
However, there is an additional possibility to define your own commands and execute them with the help of model.
|
|
1952
|
-
These are functions - defined on the
|
|
1954
|
+
These are functions / tools - defined on the API side and described using JSON objects. You can find a complete guide on how to define functions here:
|
|
1953
1955
|
|
|
1954
1956
|
https://platform.openai.com/docs/guides/function-calling
|
|
1955
1957
|
|
|
1956
1958
|
https://cookbook.openai.com/examples/how_to_call_functions_with_chat_models
|
|
1957
1959
|
|
|
1958
|
-
PyGPT offers compatibility of these functions with commands used in the application. All you need to do is define the appropriate functions using the
|
|
1959
|
-
|
|
1960
|
-
You can define functions for modes: `Chat` and `Assistants`.
|
|
1961
|
-
Note that - in Chat mode, they should be defined in `Presets`, and for Assistants, in the `Assistant` settings.
|
|
1960
|
+
PyGPT offers compatibility of these functions with commands (tools) used in the application. All you need to do is define the appropriate functions using the correct JSON schema, and PyGPT will do the rest, translating such syntax on the fly into its own internal format.
|
|
1962
1961
|
|
|
1963
|
-
|
|
1962
|
+
Local functions and tools from plugins are available in all modes, except `Assistants`.
|
|
1964
1963
|
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
Create a new Preset, open the Preset edit dialog and add a new function using `+ Function` button with the following content:
|
|
1964
|
+
To enable local functions for `Assistants` mode (in this mode remote tools are used by default), create a new Assistant, open the Preset edit dialog and import tools from plugins or add a new function using `+ Function` button e.g. with the following content:
|
|
1968
1965
|
|
|
1969
1966
|
**Name:** `send_email`
|
|
1970
1967
|
|
|
1971
|
-
**Description:** `
|
|
1968
|
+
**Description:** `Send a quote using email`
|
|
1972
1969
|
|
|
1973
1970
|
**Params (JSON):**
|
|
1974
1971
|
|
|
@@ -1991,7 +1988,7 @@ Then, in the `Custom Commands` plugin, create a new command with the same name a
|
|
|
1991
1988
|
|
|
1992
1989
|
**Command name:** `send_email`
|
|
1993
1990
|
|
|
1994
|
-
**Instruction/prompt:** `send mail`
|
|
1991
|
+
**Instruction/prompt:** `send mail`
|
|
1995
1992
|
|
|
1996
1993
|
**Params list:** `quote`
|
|
1997
1994
|
|
|
@@ -1999,7 +1996,7 @@ Then, in the `Custom Commands` plugin, create a new command with the same name a
|
|
|
1999
1996
|
|
|
2000
1997
|
At next, enable the `+ Tools` option and enable the plugin.
|
|
2001
1998
|
|
|
2002
|
-
Ask model
|
|
1999
|
+
Ask a model:
|
|
2003
2000
|
|
|
2004
2001
|
```Create a funny quote and email it```
|
|
2005
2002
|
|
|
@@ -2013,12 +2010,7 @@ As a result, response like this will be sent to the model:
|
|
|
2013
2010
|
|
|
2014
2011
|
```[{"request": {"cmd": "send_email"}, "result": "OK. Email sent: Why do we tell actors to 'break a leg?' Because every play has a cast!"}]```
|
|
2015
2012
|
|
|
2016
|
-
|
|
2017
|
-
2) Assistant
|
|
2018
|
-
|
|
2019
|
-
In this mode (via Assistants API), it should be done similarly, with the difference that here the functions should be defined in the assistant's settings.
|
|
2020
|
-
|
|
2021
|
-
With this flow you can use both forms - OpenAI and PyGPT - to define and execute commands and functions in the application. They will cooperate with each other and you can use them interchangeably.
|
|
2013
|
+
With this flow you can use both forms - API provider JSON schema and PyGPT schema - to define and execute commands and functions in the application. They will cooperate with each other and you can use them interchangeably.
|
|
2022
2014
|
|
|
2023
2015
|
# Tools
|
|
2024
2016
|
|
|
@@ -3536,6 +3528,14 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3536
3528
|
|
|
3537
3529
|
## Recent changes:
|
|
3538
3530
|
|
|
3531
|
+
**2.6.23 (2025-08-25)**
|
|
3532
|
+
|
|
3533
|
+
- Added an inline "Add a new chat" button to the right of the tabs.
|
|
3534
|
+
- Added an "Add Attachment" button in the input field.
|
|
3535
|
+
- Improved file open in the system's file manager
|
|
3536
|
+
- Fixed the restoration of input text color when changing themes from light to dark.
|
|
3537
|
+
- Fixed last eval step finish if 100% complete.
|
|
3538
|
+
-
|
|
3539
3539
|
**2.6.22 (2025-08-25)**
|
|
3540
3540
|
|
|
3541
3541
|
- UI refactor and optimizations.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=m0rG4_pGSkCsVTWslMbwxio7u3GbQUW1OQP9564ZBMk,101598
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=l-YfeJ-qg0t-RIyt9RXjw3TSDA8eOp_G5MgI40OL-eM,1373
|
|
4
4
|
pygpt_net/app.py,sha256=8Yz8r16FpNntiVn2pN-_qnoYHd-jVdugKP0P_MOiYSA,21133
|
|
5
5
|
pygpt_net/config.py,sha256=LCKrqQfePVNrAvH3EY_1oZx1Go754sDoyUneJ0iGWFI,16660
|
|
6
6
|
pygpt_net/container.py,sha256=NsMSHURaEC_eW8vrCNdztwqkxB7jui3yVlzUOMYvCHg,4124
|
|
@@ -14,7 +14,7 @@ pygpt_net/controller/agent/agent.py,sha256=2MYfXbWB4z11eAo5Y3Iz8kll3RKwA156E8D_B
|
|
|
14
14
|
pygpt_net/controller/agent/common.py,sha256=55CHhV-dsWeNe5QvdvNoyhEYVhQNrHt_Lv-VDTuiYRc,3871
|
|
15
15
|
pygpt_net/controller/agent/experts.py,sha256=LGe22y5zyiKScv08vRLiEZmZDv7tRKbTLwuX-qiq10g,5639
|
|
16
16
|
pygpt_net/controller/agent/legacy.py,sha256=iOr1SD-A83Jgr6olZQMjhMr7UiQ7iWum0YNDYgZmkSw,14504
|
|
17
|
-
pygpt_net/controller/agent/llama.py,sha256=
|
|
17
|
+
pygpt_net/controller/agent/llama.py,sha256=_sF4cAzCnBwGqY7VGqj-rbkNu-c1ye3w02d0mdXW6LQ,6115
|
|
18
18
|
pygpt_net/controller/assistant/__init__.py,sha256=y5uoiH6oZki5Q3N1vt8szAJmxXRK_98RfSSXqVbDmQ0,513
|
|
19
19
|
pygpt_net/controller/assistant/assistant.py,sha256=WntItb7HGI_psv6TN02hrmyImHZvzIP-uzrnYms7VIg,11488
|
|
20
20
|
pygpt_net/controller/assistant/batch.py,sha256=mHbqBC_m3-auUlz46LRXkn9OhT2JGdsDkLZYs-OVYXc,20643
|
|
@@ -42,7 +42,7 @@ pygpt_net/controller/chat/image.py,sha256=2mZdFiCyej1RimfsKn0CSuu9kLOw0Za6B3lhEU
|
|
|
42
42
|
pygpt_net/controller/chat/input.py,sha256=5CKEHSzx1SU1F-ktIUt9VA3TLtxP5kSqWyvYzANqruY,7846
|
|
43
43
|
pygpt_net/controller/chat/output.py,sha256=q-0SJQpT14pGVZLGk1o1a5hfyE_9FigJRdGBAFR6M-Y,8202
|
|
44
44
|
pygpt_net/controller/chat/render.py,sha256=-Z-beOsEvw_tS4I8kBT5Z0n9KhDlgrEQH4x1PLDvxhE,20613
|
|
45
|
-
pygpt_net/controller/chat/response.py,sha256=
|
|
45
|
+
pygpt_net/controller/chat/response.py,sha256=X07Tv3tVqi3dOFcaZkGWCeICBn2H0-kLUY00qwCpyOA,11379
|
|
46
46
|
pygpt_net/controller/chat/stream.py,sha256=zmDGI_Z9Rn8IYv6vEIVBMTOGjjY0zlfmM3qJMddRGRI,21994
|
|
47
47
|
pygpt_net/controller/chat/text.py,sha256=Dvfn8GLJok5uAGRkztY2bXK2gozblzjBc5wUzzbeeaU,8757
|
|
48
48
|
pygpt_net/controller/chat/vision.py,sha256=LsFc0TZZwY8dVtJH6Q5iha8rUQCf5HhOMuRXMtnLzZU,3578
|
|
@@ -73,7 +73,7 @@ pygpt_net/controller/dialogs/debug.py,sha256=v6E85vyCwfaDG9XZysxhBjRwlrDkbYC-NxU
|
|
|
73
73
|
pygpt_net/controller/dialogs/dialogs.py,sha256=sJHyZxkAn9QKTegUqx_xETesN2ecMBkrtf-VsCubr2w,1008
|
|
74
74
|
pygpt_net/controller/dialogs/info.py,sha256=mjQdj6cbTB09aIul5FChsnJsQoeqsRUQpKc3rP7lFeM,3757
|
|
75
75
|
pygpt_net/controller/files/__init__.py,sha256=4dJY1HOUTQ6GPAvvUQmTNwTRJKoShyCP8Lo8j2dD0ec,509
|
|
76
|
-
pygpt_net/controller/files/files.py,sha256=
|
|
76
|
+
pygpt_net/controller/files/files.py,sha256=799WXr7Tk4p78uSWuy6x2HjupYxZCZ8zf9308h7A2zU,15475
|
|
77
77
|
pygpt_net/controller/finder/__init__.py,sha256=EUogcwzk4T0zyms2PJXduL3o1PzWwu0Q0qSo8Eu_8bw,510
|
|
78
78
|
pygpt_net/controller/finder/finder.py,sha256=4jl8EzTVR1Wc0dJkVwacAdvBiuF1CyOSKB4Qewju0Jw,4955
|
|
79
79
|
pygpt_net/controller/idx/__init__.py,sha256=EJ6C2RaW3RO72I7exGSoCcT6ooK-cuaLimM_9C_c7MA,507
|
|
@@ -125,7 +125,7 @@ pygpt_net/controller/theme/common.py,sha256=z5mzpMnfkTeFstKm_uodDboAa3xj5vTpMKGC
|
|
|
125
125
|
pygpt_net/controller/theme/markdown.py,sha256=iH34dsZWyXCtIZuuRBHiAV__W0P4bY-7OuzEwehizr0,6064
|
|
126
126
|
pygpt_net/controller/theme/menu.py,sha256=17D8mW5i97D_nENKFM2EZ9KgR7RP0whiaYXLzHO2rb8,7452
|
|
127
127
|
pygpt_net/controller/theme/nodes.py,sha256=RTaxLR2aXXDrVNIpS9585xbFQlqrGI3gAO7Jng8NUHs,4871
|
|
128
|
-
pygpt_net/controller/theme/theme.py,sha256=
|
|
128
|
+
pygpt_net/controller/theme/theme.py,sha256=3T5DrR5jFyGhchGS8OUsquyCGfp1qh4U2boCWAwt9Qw,8781
|
|
129
129
|
pygpt_net/controller/tools/__init__.py,sha256=ds63rOuwLEIe-SlY_sQkhWSdXS0lfVwseUiHkg2NTD4,509
|
|
130
130
|
pygpt_net/controller/tools/tools.py,sha256=bWxdwL3J2-WHBS3MBiKsS3kTW_rQI_nS9z8-8iKifKg,2920
|
|
131
131
|
pygpt_net/controller/ui/__init__.py,sha256=cxfh2SYeEDATGAZpcYDqCxYfp4KReQ1CYehevSf89EU,507
|
|
@@ -146,7 +146,7 @@ pygpt_net/core/agents/bridge.py,sha256=KhCbMTZNigNlgOhXEMN1kqWGNUhkEdjFdiHBBVTAr
|
|
|
146
146
|
pygpt_net/core/agents/legacy.py,sha256=DdlyIpFjmeAC4XUGtq3F5_1BLGZLPOej0RZ6x9ycFjM,1731
|
|
147
147
|
pygpt_net/core/agents/memory.py,sha256=9Jz9kT-xT8QPpGeXEpWopJUGBLLHu6Ys_-fRrg6BWDg,5210
|
|
148
148
|
pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
|
|
149
|
-
pygpt_net/core/agents/observer/evaluation.py,sha256=
|
|
149
|
+
pygpt_net/core/agents/observer/evaluation.py,sha256=AEcXfoMNNER1yRu5WeVnQypC53QPJMRXh4QlPzJzEYM,8115
|
|
150
150
|
pygpt_net/core/agents/provider.py,sha256=seaeoYa8Q_YB43Z29J74cFN87_RMJgP-a979ok3thTk,3154
|
|
151
151
|
pygpt_net/core/agents/runner.py,sha256=mJHCMsXoycapqFOZWdi81s-INgZv5MS0MAm3oC_P-kk,12372
|
|
152
152
|
pygpt_net/core/agents/runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -156,7 +156,7 @@ pygpt_net/core/agents/runners/llama_assistant.py,sha256=a_Abkc8u1S8vr6lUIDRrzTM9
|
|
|
156
156
|
pygpt_net/core/agents/runners/llama_plan.py,sha256=CC3WPG9KUxd_dRjPZROOrmPQrWQ_u8C0nRx0TCzi9bE,13391
|
|
157
157
|
pygpt_net/core/agents/runners/llama_steps.py,sha256=1SBLp5t4TUsxpYIUtSSnBy5Sd2AxheDlv2AXimls-Vg,7328
|
|
158
158
|
pygpt_net/core/agents/runners/llama_workflow.py,sha256=rWCUge9IBxvOITceqxd6rrgzg-3RDyo28oJBorsjwyc,12717
|
|
159
|
-
pygpt_net/core/agents/runners/loop.py,sha256=
|
|
159
|
+
pygpt_net/core/agents/runners/loop.py,sha256=PLM6dAYqYuHQto5YygDZCeCo4ihDfS5C2KUP11I4lk8,6142
|
|
160
160
|
pygpt_net/core/agents/runners/openai_workflow.py,sha256=d5aWFckj34Zca5p35dYIzEECz17Z757J6ZzY94damG8,8766
|
|
161
161
|
pygpt_net/core/agents/tools.py,sha256=UW5-3q-cPpmx_FlDyuF2qymbgIJRmkklNmng3IokEUM,22116
|
|
162
162
|
pygpt_net/core/assistants/__init__.py,sha256=FujLn0ia5S3-7nX-Td_0S5Zqiw6Yublh58c4Di7rRgY,514
|
|
@@ -178,7 +178,7 @@ pygpt_net/core/audio/context.py,sha256=2XpXWhDC09iUvc0FRMq9BF2_rnQ60ZG4Js6LbO5Mo
|
|
|
178
178
|
pygpt_net/core/audio/output.py,sha256=qhXw1rziBShha84b1lBKstNlA470Yuz-abkx9aNId6U,2737
|
|
179
179
|
pygpt_net/core/audio/whisper.py,sha256=WZ_fNQ06s1NBxyoYB-lTFqDO6ARcnq9MZFekRaTNxTo,993
|
|
180
180
|
pygpt_net/core/bridge/__init__.py,sha256=RCrT3CuP8-Gf_APr5mBXyNcRigrfHcgS-SYVVP_9flE,510
|
|
181
|
-
pygpt_net/core/bridge/bridge.py,sha256=
|
|
181
|
+
pygpt_net/core/bridge/bridge.py,sha256=4OzePwnGOrkS6y7MIt9uYlNYfvn1_nUFnc-Wd5FsEXg,10619
|
|
182
182
|
pygpt_net/core/bridge/context.py,sha256=FgVIHLjEyZ3Z4YIeEElHQCXAeq7N2Wc3Thu7D5bddos,5282
|
|
183
183
|
pygpt_net/core/bridge/worker.py,sha256=dgWtMNxZoBIRrZTHnyKW5s9XRCa-nn7tAxUuoj-zIbs,6456
|
|
184
184
|
pygpt_net/core/calendar/__init__.py,sha256=AyzoNqYgxV35CMEzoi_SCSsQh4ehg_Wu_2nsK3xsbyg,512
|
|
@@ -238,10 +238,11 @@ pygpt_net/core/filesystem/__init__.py,sha256=KZLS3s_otd3Md9eDA6FN-b4CtOCWl_fplUl
|
|
|
238
238
|
pygpt_net/core/filesystem/actions.py,sha256=nb5kG_pS6OZPDrv8qngliFQmY671DRf5nF-vzGRPCoI,4126
|
|
239
239
|
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
|
240
240
|
pygpt_net/core/filesystem/filesystem.py,sha256=SVA3Pot6f-SsxHWXViexUjI02EwicedKjyGTsfIef7k,15630
|
|
241
|
+
pygpt_net/core/filesystem/opener.py,sha256=8EkieR_FwSz0HBykLcmV8TEw8Bn0e7WHqqiPTkDPp-M,7851
|
|
241
242
|
pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fVWTok1w,2568
|
|
242
243
|
pygpt_net/core/filesystem/parser.py,sha256=NqFwNbF8QJai34Oz9WFtAWZa6uPx6AfuUgM2ZdAOgbI,2960
|
|
243
244
|
pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUkTcqaA,3458
|
|
244
|
-
pygpt_net/core/filesystem/url.py,sha256=
|
|
245
|
+
pygpt_net/core/filesystem/url.py,sha256=A97SXzodjVKQR26xwUwUcRz1OuZIYzrGiBestdtQ8OA,3341
|
|
245
246
|
pygpt_net/core/history/__init__.py,sha256=OVtJM8Cf-9WV9-WmB6x__qB3QK4ZGaYzjpl4Fk8RdWM,511
|
|
246
247
|
pygpt_net/core/history/history.py,sha256=PDE5Ut03mEgY9YPLZjqrimKQAyxoE7itViuqFV-VQf0,3123
|
|
247
248
|
pygpt_net/core/idx/__init__.py,sha256=8-HStPMODmgzC3dBaJB6MDqGJHCHnKxNdt30Vzyu3cM,507
|
|
@@ -277,7 +278,7 @@ pygpt_net/core/modes/modes.py,sha256=Dm1mChW26dzjrMe8QPUAbwnl95o62vyqbQVxwztMX5A
|
|
|
277
278
|
pygpt_net/core/notepad/__init__.py,sha256=Uro9_4CfihHzn92I2Ar0q0t-MAGkikUMrY5kGAuLlSw,511
|
|
278
279
|
pygpt_net/core/notepad/notepad.py,sha256=zYE7BRERDOxROMMfjTwS6M5Vk08DXxXqHdKi1aX33i0,4243
|
|
279
280
|
pygpt_net/core/platforms/__init__.py,sha256=NRmTzf4xFxcYseYs1mgCPZA0YUH2v0Aufq4CG1_mKDE,513
|
|
280
|
-
pygpt_net/core/platforms/platforms.py,sha256=
|
|
281
|
+
pygpt_net/core/platforms/platforms.py,sha256=4zCAfzZQnxwsJ8lMwKTDvHj7EOMgVS7H4-lTGEErbQA,5203
|
|
281
282
|
pygpt_net/core/plugins/__init__.py,sha256=NOKL-CNsF4rrKTBpsN-ue92H4pTUGKlgDCwr1iA0geY,511
|
|
282
283
|
pygpt_net/core/plugins/plugins.py,sha256=Qnm6y75i5WFz405zR9quIh7oF-XmfVCZwxUl6CS04cI,15198
|
|
283
284
|
pygpt_net/core/presets/__init__.py,sha256=NZjBxjGv4fgEX6Hp8FznsWK5QqD1Tl7zyp2Ir3ufXv4,511
|
|
@@ -346,8 +347,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
346
347
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
347
348
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
348
349
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
349
|
-
pygpt_net/data/config/config.json,sha256=
|
|
350
|
-
pygpt_net/data/config/models.json,sha256=
|
|
350
|
+
pygpt_net/data/config/config.json,sha256=TffkC7yicJzwxz4EjFT5lOHIbV5qFybLZrxcwVsgzfw,24922
|
|
351
|
+
pygpt_net/data/config/models.json,sha256=5WS2Cw2dDN6-gsgBj_P-XVxHwKeqfT4i6r1_Vd9eTHk,110162
|
|
351
352
|
pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
|
|
352
353
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
353
354
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -394,14 +395,14 @@ pygpt_net/data/css/style.css,sha256=dgVlVqEL38zF-4Ok-y1rwfALC8zETJAIuIbkwat_hTk,
|
|
|
394
395
|
pygpt_net/data/css/style.dark.css,sha256=Uzgr_KomVwwRVvFoJY4duLymLv7aBYRW_SBRrzHqUMw,2339
|
|
395
396
|
pygpt_net/data/css/style.light.css,sha256=g8tWOpjPgm6PBi1XyQoXQqi5-txDBzDkD9EEggw6T_A,4924
|
|
396
397
|
pygpt_net/data/css/web-blocks.css,sha256=hI2G0a7J6fsoiQUq8k9w_n0mBEIkoPCxC2H6x_eB4EU,7345
|
|
397
|
-
pygpt_net/data/css/web-blocks.dark.css,sha256=
|
|
398
|
-
pygpt_net/data/css/web-blocks.light.css,sha256=
|
|
398
|
+
pygpt_net/data/css/web-blocks.dark.css,sha256=eU8-uXcvu4weRp55CZmhB-6nK7P6n9m-OyJwGV95rJc,1514
|
|
399
|
+
pygpt_net/data/css/web-blocks.light.css,sha256=bmJyOCi6qytbxLmBrO4hVU99y0ymOo9kof3EGLEZRLg,1541
|
|
399
400
|
pygpt_net/data/css/web-chatgpt.css,sha256=k7kCJ-RCRimk5I_CUPhIOA4_RC4U2VwyMhlowsibTEg,7846
|
|
400
|
-
pygpt_net/data/css/web-chatgpt.dark.css,sha256=
|
|
401
|
-
pygpt_net/data/css/web-chatgpt.light.css,sha256=
|
|
401
|
+
pygpt_net/data/css/web-chatgpt.dark.css,sha256=McgR0R1lE3-LHY-pFye5OBDIIwXG5Ha9DDaS0ocEHW0,1365
|
|
402
|
+
pygpt_net/data/css/web-chatgpt.light.css,sha256=JhrgBt3S9Dj_25QXxUAvENI6BdnCJnIP-EDsUEXxjZo,1421
|
|
402
403
|
pygpt_net/data/css/web-chatgpt_wide.css,sha256=qU8TkohtZCwb2FC4S1AoqFi99_NBc4_gW5wdW3RD9Aw,7729
|
|
403
|
-
pygpt_net/data/css/web-chatgpt_wide.dark.css,sha256=
|
|
404
|
-
pygpt_net/data/css/web-chatgpt_wide.light.css,sha256=
|
|
404
|
+
pygpt_net/data/css/web-chatgpt_wide.dark.css,sha256=McgR0R1lE3-LHY-pFye5OBDIIwXG5Ha9DDaS0ocEHW0,1365
|
|
405
|
+
pygpt_net/data/css/web-chatgpt_wide.light.css,sha256=JhrgBt3S9Dj_25QXxUAvENI6BdnCJnIP-EDsUEXxjZo,1421
|
|
405
406
|
pygpt_net/data/fonts/Lato/Lato-Black.ttf,sha256=iUTaWoYezgAYX6Fz6mUyTn1Hl6qGPG-g8D4GaAWXS2w,69484
|
|
406
407
|
pygpt_net/data/fonts/Lato/Lato-BlackItalic.ttf,sha256=G7asNGubFS-gk9VAMO_NBz4o5R7AB8-3bCAflv103mc,71948
|
|
407
408
|
pygpt_net/data/fonts/Lato/Lato-Bold.ttf,sha256=e3IFmfiu07rFuVMf7PZ1DI-n5ZO3J3ObwGkvzA9Vtng,73316
|
|
@@ -1606,14 +1607,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
|
1606
1607
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
|
1607
1608
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
|
1608
1609
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1609
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
|
1610
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1611
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
|
1612
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
|
1613
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
|
1614
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
|
1615
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
|
1616
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
|
1610
|
+
pygpt_net/data/locale/locale.de.ini,sha256=hkDTnxA2NLpYROXp3ZBL2kvIqjT_mNcqWcCfLf5nYcc,100319
|
|
1611
|
+
pygpt_net/data/locale/locale.en.ini,sha256=m-76xdca2l69ekiR9Oz0KPrZiAOBhpD8UNKXRMmNEWY,90889
|
|
1612
|
+
pygpt_net/data/locale/locale.es.ini,sha256=lNUxeso0EcoFYWPMz4E1X36rL3eq67QvMKPOcWSKKrg,100896
|
|
1613
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=ORUcTD0d7VTOukhxwJG-1uPd3lWd7t5rxVhFSjck1MM,103643
|
|
1614
|
+
pygpt_net/data/locale/locale.it.ini,sha256=Q3pIka5iSy0sP9rGSADAuxTNRv5LunL4HlFPdVwXxEc,98698
|
|
1615
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=73Fkc4QxC_1__35xiQGk7EfwRVEbP-rDmcMAfvu1JXc,98406
|
|
1616
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=Dy2b-W0PlB6-miYVV9t0tq-HDxCPOvYXFRKe3_ECDhc,137261
|
|
1617
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=WoxR0vKPxlJQi2nBlh1wcaZvGY4Hr4mFqgJicbYpfDc,87859
|
|
1617
1618
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
|
1618
1619
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
|
|
1619
1620
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
|
@@ -2037,7 +2038,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
|
2037
2038
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2038
2039
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
|
2039
2040
|
pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
|
|
2040
|
-
pygpt_net/provider/core/config/patch.py,sha256
|
|
2041
|
+
pygpt_net/provider/core/config/patch.py,sha256=-KCjyvAw62bXMsZF4fJJMGWR_8OAcx7rpoWUTT3sP1k,121278
|
|
2041
2042
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2042
2043
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
|
2043
2044
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=0dP8VhI4bnFsQQKxAkaleKFlyaMycDD_cnE7gBCa57Y,512
|
|
@@ -2307,7 +2308,7 @@ pygpt_net/ui/layout/ctx/video.py,sha256=RzzyGObhlXamXIJHRqA9D2o6eVVulF4kNPVf3BkU
|
|
|
2307
2308
|
pygpt_net/ui/layout/status.py,sha256=bhRCXP25ODBZHl-aXCZft68Y_6ccprDkrQjJVIG_ulM,2015
|
|
2308
2309
|
pygpt_net/ui/layout/toolbox/__init__.py,sha256=JiCbbll8f0RABCeBxgErw-tAXj0zeSLFGZVKv8853GE,511
|
|
2309
2310
|
pygpt_net/ui/layout/toolbox/agent.py,sha256=2aQb2DWrzn3GHULw77-u0284LZcMwrF--IE2TCJ0SgQ,2490
|
|
2310
|
-
pygpt_net/ui/layout/toolbox/agent_llama.py,sha256=
|
|
2311
|
+
pygpt_net/ui/layout/toolbox/agent_llama.py,sha256=Znnh3-nhJz8dyhxzeKkng6ll2EbdRG8SXMI2XdtkvqE,3088
|
|
2311
2312
|
pygpt_net/ui/layout/toolbox/assistants.py,sha256=xcGlZNWOCrli0BPiVgRT7K63LcX-pMhZZN__XvAgzu0,4442
|
|
2312
2313
|
pygpt_net/ui/layout/toolbox/computer_env.py,sha256=QP_Qv4X28ineVX4vFfykmV-RDjgJpQp_oBHne3R4zY4,2210
|
|
2313
2314
|
pygpt_net/ui/layout/toolbox/footer.py,sha256=zK7127--ow19SYcKQGGhiEzT5FZBOKzFk-xyf7UVZM0,5649
|
|
@@ -2424,8 +2425,8 @@ pygpt_net/ui/widget/option/toggle_label.py,sha256=JZwI_mpqLX6Ml9ovijXMWBHTT0t_nf
|
|
|
2424
2425
|
pygpt_net/ui/widget/tabs/Input.py,sha256=ELHpaWjhHJdKRhtTjDIByaMF_BqaHCyKwEWDofm0Gls,1875
|
|
2425
2426
|
pygpt_net/ui/widget/tabs/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2426
2427
|
pygpt_net/ui/widget/tabs/body.py,sha256=lSb0DxsjymBa0bzGpiAIRSn9DfFlqtmdRglBuRZlwFA,3219
|
|
2427
|
-
pygpt_net/ui/widget/tabs/layout.py,sha256=
|
|
2428
|
-
pygpt_net/ui/widget/tabs/output.py,sha256=
|
|
2428
|
+
pygpt_net/ui/widget/tabs/layout.py,sha256=6b6bN04IFS0I0cYvq-nUxN2eWwHVUBiNwPXoNgLokM4,6628
|
|
2429
|
+
pygpt_net/ui/widget/tabs/output.py,sha256=aHJQzqiwj7FeAwqDsEC-m__n324LxRlNSpBjRl7TKsc,25036
|
|
2429
2430
|
pygpt_net/ui/widget/textarea/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2430
2431
|
pygpt_net/ui/widget/textarea/calendar_note.py,sha256=4LsPZ2ZHHZAsgjvgn6iZLKupKFq9fLGDu1PFEQVkaGw,5896
|
|
2431
2432
|
pygpt_net/ui/widget/textarea/console.py,sha256=nCV92S5JR4DiRWH6akWhygxg9kaLLxnCPoqXV0ZRK74,1333
|
|
@@ -2433,7 +2434,7 @@ pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13
|
|
|
2433
2434
|
pygpt_net/ui/widget/textarea/editor.py,sha256=qCMFJk8T7f4u3TFYKi02r2kOFSzzwrasWm_zSMsisPE,5153
|
|
2434
2435
|
pygpt_net/ui/widget/textarea/find.py,sha256=fQu6t-_LTZGFRNCkezywtMVsL-DocIkGBR_HbRFq61g,1534
|
|
2435
2436
|
pygpt_net/ui/widget/textarea/html.py,sha256=4DOnUYtHBhN-6X5w13GK-ceAAvTPd8M4mH_N-c3L_h0,12344
|
|
2436
|
-
pygpt_net/ui/widget/textarea/input.py,sha256=
|
|
2437
|
+
pygpt_net/ui/widget/textarea/input.py,sha256=idg8d-MQpPNzaNb97EZFyoKdOSLkn4n0u1NHZmrfRtA,9554
|
|
2437
2438
|
pygpt_net/ui/widget/textarea/name.py,sha256=vcyAY_pJWJoS_IJqdJjhIeDSniTL9rfpt8aaobWNFVY,1132
|
|
2438
2439
|
pygpt_net/ui/widget/textarea/notepad.py,sha256=Yl2fvJyRzADxvZe0B44QG8E15LdZtPjwGcdM2iIcgu4,9858
|
|
2439
2440
|
pygpt_net/ui/widget/textarea/output.py,sha256=krWta3GHwdlPOqcxLln150bo7iUOtbFL_yJzMucGOFU,6246
|
|
@@ -2444,8 +2445,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=cqs5i67bD19_BNgcYL7NXlwYBei4UYSL_IYPZ
|
|
|
2444
2445
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2445
2446
|
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2446
2447
|
pygpt_net/utils.py,sha256=GBAXOpp_Wjfu7Al7TnTV62-R-JPMiP9GuPXLJ0HmeJU,8906
|
|
2447
|
-
pygpt_net-2.6.
|
|
2448
|
-
pygpt_net-2.6.
|
|
2449
|
-
pygpt_net-2.6.
|
|
2450
|
-
pygpt_net-2.6.
|
|
2451
|
-
pygpt_net-2.6.
|
|
2448
|
+
pygpt_net-2.6.23.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2449
|
+
pygpt_net-2.6.23.dist-info/METADATA,sha256=qXQbA_brodRfn-mfqpeQ43ad3WG8W7SMvJIG4F3WBC8,156649
|
|
2450
|
+
pygpt_net-2.6.23.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2451
|
+
pygpt_net-2.6.23.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2452
|
+
pygpt_net-2.6.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|