pygpt-net 2.6.22__py3-none-any.whl → 2.6.24__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 +16 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/agent/llama.py +3 -0
- pygpt_net/controller/chat/response.py +6 -1
- 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/attachments/context.py +4 -4
- 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/idx/chat.py +1 -1
- pygpt_net/core/idx/indexing.py +3 -3
- pygpt_net/core/idx/llm.py +61 -2
- pygpt_net/core/platforms/platforms.py +5 -4
- pygpt_net/data/config/config.json +21 -3
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/settings.json +18 -0
- 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 +47 -0
- pygpt_net/data/locale/locale.en.ini +50 -1
- pygpt_net/data/locale/locale.es.ini +47 -0
- pygpt_net/data/locale/locale.fr.ini +47 -0
- pygpt_net/data/locale/locale.it.ini +47 -0
- pygpt_net/data/locale/locale.pl.ini +47 -0
- pygpt_net/data/locale/locale.uk.ini +47 -0
- pygpt_net/data/locale/locale.zh.ini +47 -0
- pygpt_net/provider/agents/llama_index/codeact_workflow.py +8 -7
- pygpt_net/provider/agents/llama_index/planner_workflow.py +11 -10
- pygpt_net/provider/agents/llama_index/supervisor_workflow.py +9 -8
- pygpt_net/provider/agents/openai/agent_b2b.py +30 -17
- pygpt_net/provider/agents/openai/agent_planner.py +29 -29
- pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +21 -23
- pygpt_net/provider/agents/openai/agent_with_feedback.py +21 -23
- pygpt_net/provider/agents/openai/bot_researcher.py +25 -30
- pygpt_net/provider/agents/openai/evolve.py +37 -39
- pygpt_net/provider/agents/openai/supervisor.py +16 -18
- pygpt_net/provider/core/config/patch.py +20 -1
- pygpt_net/provider/llms/anthropic.py +5 -4
- pygpt_net/provider/llms/google.py +2 -2
- 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.24.dist-info}/METADATA +34 -25
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.24.dist-info}/RECORD +55 -54
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.24.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.24.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.22.dist-info → pygpt_net-2.6.24.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.24
|
|
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
|
|
@@ -44,6 +44,7 @@ Requires-Dist: llama-index-agent-openai (>=0.4.8,<0.5.0)
|
|
|
44
44
|
Requires-Dist: llama-index-core (==0.12.44)
|
|
45
45
|
Requires-Dist: llama-index-embeddings-azure-openai (>=0.3.8,<0.4.0)
|
|
46
46
|
Requires-Dist: llama-index-embeddings-gemini (>=0.3.2,<0.4.0)
|
|
47
|
+
Requires-Dist: llama-index-embeddings-google-genai (>=0.2.1,<0.3.0)
|
|
47
48
|
Requires-Dist: llama-index-embeddings-huggingface-api (>=0.3.1,<0.4.0)
|
|
48
49
|
Requires-Dist: llama-index-embeddings-mistralai (>=0.3.0,<0.4.0)
|
|
49
50
|
Requires-Dist: llama-index-embeddings-ollama (>=0.5.0,<0.6.0)
|
|
@@ -111,7 +112,7 @@ Description-Content-Type: text/markdown
|
|
|
111
112
|
|
|
112
113
|
[](https://snapcraft.io/pygpt)
|
|
113
114
|
|
|
114
|
-
Release: **2.6.
|
|
115
|
+
Release: **2.6.24** | build: **2025-08-26** | Python: **>=3.10, <3.14**
|
|
115
116
|
|
|
116
117
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
117
118
|
>
|
|
@@ -278,7 +279,7 @@ pygpt
|
|
|
278
279
|
|
|
279
280
|
## Running from GitHub source code
|
|
280
281
|
|
|
281
|
-
An alternative method is to download the source code from `GitHub` and execute the application using the Python interpreter (`>=3.10`, `<3.
|
|
282
|
+
An alternative method is to download the source code from `GitHub` and execute the application using the Python interpreter (`>=3.10`, `<3.14`).
|
|
282
283
|
|
|
283
284
|
### Install with pip
|
|
284
285
|
|
|
@@ -1915,7 +1916,7 @@ PyGPT can be extended with:
|
|
|
1915
1916
|
|
|
1916
1917
|
- custom plugins
|
|
1917
1918
|
|
|
1918
|
-
- custom LLMs
|
|
1919
|
+
- custom LLMs
|
|
1919
1920
|
|
|
1920
1921
|
- custom vector store providers
|
|
1921
1922
|
|
|
@@ -1927,14 +1928,16 @@ PyGPT can be extended with:
|
|
|
1927
1928
|
|
|
1928
1929
|
- custom web search engine providers
|
|
1929
1930
|
|
|
1931
|
+
- custom agents
|
|
1932
|
+
|
|
1930
1933
|
|
|
1931
1934
|
See the section `Extending PyGPT / Adding a custom plugin` for more details.
|
|
1932
1935
|
|
|
1933
|
-
# Functions and
|
|
1936
|
+
# Functions, commands and tools
|
|
1934
1937
|
|
|
1935
1938
|
**Tip** remember to enable the `+ Tools` checkbox to enable execution of tools and commands from plugins.
|
|
1936
1939
|
|
|
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`.
|
|
1940
|
+
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
1941
|
|
|
1939
1942
|
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
1943
|
|
|
@@ -1942,33 +1945,28 @@ In background, **PyGPT** uses an internal syntax to define commands and their pa
|
|
|
1942
1945
|
|
|
1943
1946
|
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
1947
|
|
|
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).
|
|
1948
|
+
**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
1949
|
|
|
1947
1950
|

|
|
1948
1951
|
|
|
1949
1952
|
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
1953
|
|
|
1951
1954
|
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
|
|
1955
|
+
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
1956
|
|
|
1954
1957
|
https://platform.openai.com/docs/guides/function-calling
|
|
1955
1958
|
|
|
1956
1959
|
https://cookbook.openai.com/examples/how_to_call_functions_with_chat_models
|
|
1957
1960
|
|
|
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.
|
|
1962
|
-
|
|
1963
|
-
**Example of usage:**
|
|
1961
|
+
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.
|
|
1964
1962
|
|
|
1965
|
-
|
|
1963
|
+
Local functions and tools from plugins are available in all modes, except `Assistants`.
|
|
1966
1964
|
|
|
1967
|
-
|
|
1965
|
+
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
1966
|
|
|
1969
1967
|
**Name:** `send_email`
|
|
1970
1968
|
|
|
1971
|
-
**Description:** `
|
|
1969
|
+
**Description:** `Send a quote using email`
|
|
1972
1970
|
|
|
1973
1971
|
**Params (JSON):**
|
|
1974
1972
|
|
|
@@ -1991,7 +1989,7 @@ Then, in the `Custom Commands` plugin, create a new command with the same name a
|
|
|
1991
1989
|
|
|
1992
1990
|
**Command name:** `send_email`
|
|
1993
1991
|
|
|
1994
|
-
**Instruction/prompt:** `send mail`
|
|
1992
|
+
**Instruction/prompt:** `send mail`
|
|
1995
1993
|
|
|
1996
1994
|
**Params list:** `quote`
|
|
1997
1995
|
|
|
@@ -1999,7 +1997,7 @@ Then, in the `Custom Commands` plugin, create a new command with the same name a
|
|
|
1999
1997
|
|
|
2000
1998
|
At next, enable the `+ Tools` option and enable the plugin.
|
|
2001
1999
|
|
|
2002
|
-
Ask model
|
|
2000
|
+
Ask a model:
|
|
2003
2001
|
|
|
2004
2002
|
```Create a funny quote and email it```
|
|
2005
2003
|
|
|
@@ -2013,12 +2011,7 @@ As a result, response like this will be sent to the model:
|
|
|
2013
2011
|
|
|
2014
2012
|
```[{"request": {"cmd": "send_email"}, "result": "OK. Email sent: Why do we tell actors to 'break a leg?' Because every play has a cast!"}]```
|
|
2015
2013
|
|
|
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.
|
|
2014
|
+
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
2015
|
|
|
2023
2016
|
# Tools
|
|
2024
2017
|
|
|
@@ -3536,6 +3529,22 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3536
3529
|
|
|
3537
3530
|
## Recent changes:
|
|
3538
3531
|
|
|
3532
|
+
**2.6.24 (2025-08-26)**
|
|
3533
|
+
|
|
3534
|
+
- Added a new option: LlamaIndex -> Embeddings -> Default embedding providers for attachments.
|
|
3535
|
+
- The same model provider is now used for both embedding and RAG query in attachment indexing.
|
|
3536
|
+
- Translations have been added to Agents.
|
|
3537
|
+
- Fixed fetching Anthropic models list.
|
|
3538
|
+
- Added Google GenAI Embeddings.
|
|
3539
|
+
|
|
3540
|
+
**2.6.23 (2025-08-25)**
|
|
3541
|
+
|
|
3542
|
+
- Added an inline "Add a new chat" button to the right of the tabs.
|
|
3543
|
+
- Added an "Add Attachment" button in the input field.
|
|
3544
|
+
- Improved file open in the system's file manager
|
|
3545
|
+
- Fixed the restoration of input text color when changing themes from light to dark.
|
|
3546
|
+
- Fixed last eval step finish if 100% complete.
|
|
3547
|
+
-
|
|
3539
3548
|
**2.6.22 (2025-08-25)**
|
|
3540
3549
|
|
|
3541
3550
|
- UI refactor and optimizations.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=CelRTQEoRdFZzFkEvyV1hcafcEd6kQIiy9YUWYwLQKc,101925
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=fuXSfpRaKO8SHnOaAHsKG-CzdLXT7lUXV9YYIznwW18,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=yCUWpa5OdrtIoTFyX_cxId9jLDrRNyqj-NT_9RPFJ4E,11413
|
|
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
|
|
@@ -165,7 +165,7 @@ pygpt_net/core/assistants/files.py,sha256=rmIVxDNfLrpA95Ghs_mc5s8Yn4xiC7POynpZMz
|
|
|
165
165
|
pygpt_net/core/assistants/store.py,sha256=4zz8_10_f6o8gdRekEPo5Ox0tLwuZO8tKyVsz-AhYfs,8211
|
|
166
166
|
pygpt_net/core/attachments/__init__.py,sha256=3bka_IoE6AoExlhFqDxcTaD6Uf1wM6VZzy_YX8Ry4f0,515
|
|
167
167
|
pygpt_net/core/attachments/attachments.py,sha256=bUqvfPqlpdXiGf3GvS1kTE45A0Q1Eo3kpUKypnRwDpk,12919
|
|
168
|
-
pygpt_net/core/attachments/context.py,sha256=
|
|
168
|
+
pygpt_net/core/attachments/context.py,sha256=e7ipcZRGmNfmrS97i5q3LPYtJqJzSHMtRssvaYgqJHE,25169
|
|
169
169
|
pygpt_net/core/attachments/worker.py,sha256=NgZmrAPGzD8_97UXgvMZKYI_DtJKRTOG62_QLBsm0Gs,1677
|
|
170
170
|
pygpt_net/core/audio/__init__.py,sha256=SNShKpjqXzLhaSKxWiM8b6lasHRkrdSZ8ck-X7RJ-VY,509
|
|
171
171
|
pygpt_net/core/audio/audio.py,sha256=_WaS1JHT9S3BqmzEc7bOcWwMfth6ueMJQVs13jzoy4c,7709
|
|
@@ -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,18 +238,19 @@ 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
|
|
248
|
-
pygpt_net/core/idx/chat.py,sha256=
|
|
249
|
+
pygpt_net/core/idx/chat.py,sha256=be6ojNA6KTx3IVHxaIwXgdO1VbmymzkYAe1iLHo8tBQ,29598
|
|
249
250
|
pygpt_net/core/idx/context.py,sha256=fo62m22xBE-rtOgLMeOS-AR2SRRmaGipN7nY5BFax58,10146
|
|
250
251
|
pygpt_net/core/idx/idx.py,sha256=QworuvYkSGo0mrGb_3cWGJug9C-CgCeAExWaNCtWSo4,18422
|
|
251
|
-
pygpt_net/core/idx/indexing.py,sha256=
|
|
252
|
-
pygpt_net/core/idx/llm.py,sha256=
|
|
252
|
+
pygpt_net/core/idx/indexing.py,sha256=Thgt3cPwWFziPB0agYCEGEcC8NxqDYKC6IUt31_GmeQ,42601
|
|
253
|
+
pygpt_net/core/idx/llm.py,sha256=BdHdVK1nq7qqucM9GIZ0BOA291LitdNQM4DCzGl-pPw,7382
|
|
253
254
|
pygpt_net/core/idx/metadata.py,sha256=69jrZ54S2wYZ3HzVooozADkbjgK2Rg4MuXTgfd6rcsI,5445
|
|
254
255
|
pygpt_net/core/idx/response.py,sha256=X4K706Ppage3fSAVPSqMK1w1PflMsJ6QA6Tl-Y9P0vs,5008
|
|
255
256
|
pygpt_net/core/idx/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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=A1UKmT4CGf0b2G_-bwvIXVbiF4IhYVNIKQvSFjAsqYw,25284
|
|
351
|
+
pygpt_net/data/config/models.json,sha256=LHxbLINmi1WPN8c3m_VTOR5UYmHihrHlur-aYJ73Yis,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
|
|
@@ -382,7 +383,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
|
382
383
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
|
383
384
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
|
384
385
|
pygpt_net/data/config/presets/joke_expert.json,sha256=jjcoIYEOaEp8kLoIbecxQROiq4J3Zess5w8_HmngPOY,671
|
|
385
|
-
pygpt_net/data/config/settings.json,sha256=
|
|
386
|
+
pygpt_net/data/config/settings.json,sha256=A3HI0xqGzzcpd1q4WBL2yOQmd6VAClqNJBFUOi6QVbc,67059
|
|
386
387
|
pygpt_net/data/config/settings_section.json,sha256=OLWgjs3hHFzk50iwzVyUpcFW7dfochOnbZS0vDoMlDU,1158
|
|
387
388
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
|
388
389
|
pygpt_net/data/css/fix_windows.dark.css,sha256=7hGbT_qI5tphYC_WlFpJRDAcmjBb0AQ2Yc-y-_Zzf2M,161
|
|
@@ -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=-9uJDmILG7HXvU-L4HbYGmKEwHLqbH0CKVfuZnkguz4,102617
|
|
1611
|
+
pygpt_net/data/locale/locale.en.ini,sha256=fYULHBTXfq81D41JDSYl8igDpgfSnxUFprpKisCKbKI,93270
|
|
1612
|
+
pygpt_net/data/locale/locale.es.ini,sha256=OuXZrLbmPDDYWXgzREf74F4t7KYvGHRJZtb_EbreyCQ,103268
|
|
1613
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=6Qu9cL_MM6mQ6dWXt3_-zKh4W_mmAVA4woDylOZXavk,106069
|
|
1614
|
+
pygpt_net/data/locale/locale.it.ini,sha256=6FhyvqOs_jtlawtTBoDp5D2q9yOU8j3W0MnvruvkXvo,101076
|
|
1615
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=3_6gKkKtzWFSUO2eZoIwhXohWhewfb1ASVQro0BgNVQ,100821
|
|
1616
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=H1s0l2XnjZNVJSI2SmKqBP5pkDJpBpB4i5bBksHPJo4,140531
|
|
1617
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=7Pd1dN6X3hbRSCAsLezbmTUDPxV3I4oV2IvxCaPktpI,89996
|
|
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
|
|
@@ -1960,16 +1961,16 @@ pygpt_net/provider/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRi
|
|
|
1960
1961
|
pygpt_net/provider/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1961
1962
|
pygpt_net/provider/agents/base.py,sha256=reCwWTHGm0ejW2hvClpd2SjLiKIiUUYNjxoQ608DpJI,3763
|
|
1962
1963
|
pygpt_net/provider/agents/llama_index/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1963
|
-
pygpt_net/provider/agents/llama_index/codeact_workflow.py,sha256=
|
|
1964
|
+
pygpt_net/provider/agents/llama_index/codeact_workflow.py,sha256=NmJy2y4i0Hu7daGVSS9fVzeV3TbVeG01s8phEKnyg7c,3556
|
|
1964
1965
|
pygpt_net/provider/agents/llama_index/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1965
1966
|
pygpt_net/provider/agents/llama_index/legacy/openai.py,sha256=j3Od0FPIh1NyMh-jb3CaocxuCUi_4b4CijEqaPA2PeQ,1644
|
|
1966
1967
|
pygpt_net/provider/agents/llama_index/legacy/openai_assistant.py,sha256=ZjxhMvltzDNGCmzCCS64wWYK6Z5Zn2V8CJBv12skyk4,3956
|
|
1967
1968
|
pygpt_net/provider/agents/llama_index/legacy/planner.py,sha256=xStcGSTRuCrRkYIRidM6oyodxOfMU6GoSUbRbRBxqvo,1859
|
|
1968
1969
|
pygpt_net/provider/agents/llama_index/legacy/react.py,sha256=rjWcNNhuB2gQfjoNbQp7WOgFMJ305eae-a1-EdCMo_U,2273
|
|
1969
1970
|
pygpt_net/provider/agents/llama_index/openai_workflow.py,sha256=_gLzsayNWuTLwvm2WBJFw1ooWR_9iy2OTr1u5HEtAEI,1752
|
|
1970
|
-
pygpt_net/provider/agents/llama_index/planner_workflow.py,sha256=
|
|
1971
|
+
pygpt_net/provider/agents/llama_index/planner_workflow.py,sha256=M6ne_4ofDI6YtlpbmEEfBKgkX6OePOMxl7FHOprkQWE,4139
|
|
1971
1972
|
pygpt_net/provider/agents/llama_index/react_workflow.py,sha256=s8LAo_gVy7129kSbUo_QZr8Vaoc5LZ-5vquf9_dAcnE,2436
|
|
1972
|
-
pygpt_net/provider/agents/llama_index/supervisor_workflow.py,sha256=
|
|
1973
|
+
pygpt_net/provider/agents/llama_index/supervisor_workflow.py,sha256=5inTkuGl_pzyjpE1tL1RqAX62xvDvRdGK6ymQpPVeU0,4203
|
|
1973
1974
|
pygpt_net/provider/agents/llama_index/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1974
1975
|
pygpt_net/provider/agents/llama_index/workflow/codeact.py,sha256=6uiHTffK69Gf5lvwvjXQqGcqv4Lyf5Tt9hOMKu9FQes,20776
|
|
1975
1976
|
pygpt_net/provider/agents/llama_index/workflow/events.py,sha256=Oicqo3td43G5OqydcfQZ3tjyYs_SyUUG6d6a4aA4OKk,884
|
|
@@ -1978,12 +1979,12 @@ pygpt_net/provider/agents/llama_index/workflow/planner.py,sha256=jCuiIyCnSjAsGHV
|
|
|
1978
1979
|
pygpt_net/provider/agents/llama_index/workflow/supervisor.py,sha256=L8j7BeCz85dNO1HmD2gRFjCuZ1C0Xfch15tKrVV_TKY,11907
|
|
1979
1980
|
pygpt_net/provider/agents/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1980
1981
|
pygpt_net/provider/agents/openai/agent.py,sha256=J8H_m6E4Q1MV3zXYv-yYUKL3Cq_dz2P3G6q-vJhUBDo,6297
|
|
1981
|
-
pygpt_net/provider/agents/openai/agent_b2b.py,sha256=
|
|
1982
|
-
pygpt_net/provider/agents/openai/agent_planner.py,sha256=
|
|
1982
|
+
pygpt_net/provider/agents/openai/agent_b2b.py,sha256=y5WVYJw0PeXToYcr55FjBZimwGspJQna4KIbd4MwtqY,17704
|
|
1983
|
+
pygpt_net/provider/agents/openai/agent_planner.py,sha256=XjHk34GpKPBa3-LzltxslGWNXuL28ZQl7Weti9oyZ74,19684
|
|
1983
1984
|
pygpt_net/provider/agents/openai/agent_with_experts.py,sha256=EaIP5cQq4ZeR28R4-b2s90HjkHA_jUqGD16tw7ygZ6E,5384
|
|
1984
|
-
pygpt_net/provider/agents/openai/agent_with_experts_feedback.py,sha256=
|
|
1985
|
-
pygpt_net/provider/agents/openai/agent_with_feedback.py,sha256=
|
|
1986
|
-
pygpt_net/provider/agents/openai/bot_researcher.py,sha256=
|
|
1985
|
+
pygpt_net/provider/agents/openai/agent_with_experts_feedback.py,sha256=boL050dgk8B1o3JvR_9QzJ5pC_n3cv_TMpAnbtEBsgk,14485
|
|
1986
|
+
pygpt_net/provider/agents/openai/agent_with_feedback.py,sha256=Q5dohxhFhlNBQXBRKY885SvS2U_zNXteTebK7t91i8Y,14442
|
|
1987
|
+
pygpt_net/provider/agents/openai/bot_researcher.py,sha256=2QFbcJvVVtYUZ3ffJiIaMgnrpJ7s3OJk_ZFAxvAtsgg,11394
|
|
1987
1988
|
pygpt_net/provider/agents/openai/bots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1988
1989
|
pygpt_net/provider/agents/openai/bots/research_bot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1989
1990
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1991,8 +1992,8 @@ pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py,sha25
|
|
|
1991
1992
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py,sha256=3fSrmwY6TA78FETBCOSsq4Zh6qeYiz-wvvYUz4zk1J8,2082
|
|
1992
1993
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py,sha256=jTOUSEy9uFpPXhY19il_H321hpzSJDXD444__LhqFA8,1816
|
|
1993
1994
|
pygpt_net/provider/agents/openai/bots/research_bot/manager.py,sha256=n3BJiEogkfPvWsbA7ieHWnMoLve5koQ1ihAKO5ty7jk,7310
|
|
1994
|
-
pygpt_net/provider/agents/openai/evolve.py,sha256=
|
|
1995
|
-
pygpt_net/provider/agents/openai/supervisor.py,sha256=
|
|
1995
|
+
pygpt_net/provider/agents/openai/evolve.py,sha256=SIYP8IHH01So1wtQo_CP4UQJtxji268NKZBq3hXsxpk,22925
|
|
1996
|
+
pygpt_net/provider/agents/openai/supervisor.py,sha256=yWlaMIHjyNRANizW2j3c0splDAneKP0W2zsSRQN1FR4,13201
|
|
1996
1997
|
pygpt_net/provider/audio_input/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
|
|
1997
1998
|
pygpt_net/provider/audio_input/base.py,sha256=2PxE9QeEd4fODLYx_sO-1iVdAFOxHVHjtse7-GIqix8,1826
|
|
1998
1999
|
pygpt_net/provider/audio_input/bing_speech_recognition.py,sha256=Rmpo7yaU8pU7r8KaH57U8Lc-NVE9EpF5wToL_qpMKhw,2825
|
|
@@ -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=vcRb36T1VVKW6JP_CNb5srvFqj7wR5gvkavUBidv8OQ,121650
|
|
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
|
|
@@ -2111,11 +2112,11 @@ pygpt_net/provider/gpt/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
2111
2112
|
pygpt_net/provider/gpt/worker/assistants.py,sha256=AzoY9wAaK57STRw2-6LIuhJ1RRDbQLRcjIZJtxr3lmQ,21510
|
|
2112
2113
|
pygpt_net/provider/gpt/worker/importer.py,sha256=4O4J_bEeiw7iaRv4HqE1AHfiywhc0td5SztA2uIfQiU,16308
|
|
2113
2114
|
pygpt_net/provider/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2114
|
-
pygpt_net/provider/llms/anthropic.py,sha256=
|
|
2115
|
+
pygpt_net/provider/llms/anthropic.py,sha256=UtX-5NieNtm9idy-bQuDnKWYgqED5yC-Vn8aLNIr9j8,2434
|
|
2115
2116
|
pygpt_net/provider/llms/azure_openai.py,sha256=aUE0ztKPWopoIDDzB20Ez1I11WdzU2eLWvq6WS28fYI,3522
|
|
2116
2117
|
pygpt_net/provider/llms/base.py,sha256=YIkISmtDIABv4YMho-fvu5Jwn1zPwT0Gqvi3zFI0RYA,6347
|
|
2117
2118
|
pygpt_net/provider/llms/deepseek_api.py,sha256=9inBaiHUFcN4FmEpcwmQ6IzFr5izQizl29_tzBolnRA,2023
|
|
2118
|
-
pygpt_net/provider/llms/google.py,sha256=
|
|
2119
|
+
pygpt_net/provider/llms/google.py,sha256=2fegINTcG8r7IikgWNefXHHdibHDTukL3h6BY1UZOBU,3056
|
|
2119
2120
|
pygpt_net/provider/llms/hugging_face.py,sha256=qWyGVqosDw9WVsKbZc5IG7j4jjfVPeCKr6gPAn8Tyus,1800
|
|
2120
2121
|
pygpt_net/provider/llms/hugging_face_api.py,sha256=IOEbX2sErfeort7U8w1fB_IRj1iHrTHDt1_3tjwAjJQ,3032
|
|
2121
2122
|
pygpt_net/provider/llms/hugging_face_router.py,sha256=gVqlwvmRrXxP6mXIUIDA82Qq8NrZ-Sp1uU3Nh9bOWYE,3730
|
|
@@ -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=oyjsW072RFQYd2pTr65kIi0P7xKOc7SVRvvb9TrU4pM,9551
|
|
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.24.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2449
|
+
pygpt_net-2.6.24.dist-info/METADATA,sha256=5WOXzrV4OoizgSRsLW0CdDT6xtKnWEa4Y9SUKG6zyKs,157048
|
|
2450
|
+
pygpt_net-2.6.24.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2451
|
+
pygpt_net-2.6.24.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2452
|
+
pygpt_net-2.6.24.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|