pygpt-net 2.6.23__py3-none-any.whl → 2.6.25__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 +14 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/chat/response.py +6 -5
- pygpt_net/controller/config/placeholder.py +3 -1
- pygpt_net/controller/model/importer.py +28 -5
- pygpt_net/core/agents/runners/loop.py +36 -3
- pygpt_net/core/attachments/context.py +4 -4
- 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/data/config/config.json +41 -4
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/settings.json +56 -1
- pygpt_net/data/locale/locale.de.ini +46 -0
- pygpt_net/data/locale/locale.en.ini +53 -1
- pygpt_net/data/locale/locale.es.ini +46 -0
- pygpt_net/data/locale/locale.fr.ini +46 -0
- pygpt_net/data/locale/locale.it.ini +46 -0
- pygpt_net/data/locale/locale.pl.ini +47 -1
- pygpt_net/data/locale/locale.uk.ini +46 -0
- pygpt_net/data/locale/locale.zh.ini +46 -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 +45 -1
- pygpt_net/provider/llms/anthropic.py +38 -7
- pygpt_net/provider/llms/azure_openai.py +9 -4
- pygpt_net/provider/llms/deepseek_api.py +36 -3
- pygpt_net/provider/llms/google.py +9 -3
- pygpt_net/provider/llms/hugging_face_api.py +9 -3
- pygpt_net/provider/llms/hugging_face_router.py +17 -3
- pygpt_net/provider/llms/llama_index/x_ai/__init__.py +0 -0
- pygpt_net/provider/llms/llama_index/x_ai/embedding.py +71 -0
- pygpt_net/provider/llms/local.py +25 -1
- pygpt_net/provider/llms/mistral.py +29 -1
- pygpt_net/provider/llms/ollama.py +3 -1
- pygpt_net/provider/llms/openai.py +7 -2
- pygpt_net/provider/llms/x_ai.py +19 -3
- pygpt_net/ui/widget/textarea/input.py +3 -3
- {pygpt_net-2.6.23.dist-info → pygpt_net-2.6.25.dist-info}/METADATA +54 -28
- {pygpt_net-2.6.23.dist-info → pygpt_net-2.6.25.dist-info}/RECORD +51 -49
- {pygpt_net-2.6.23.dist-info → pygpt_net-2.6.25.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.23.dist-info → pygpt_net-2.6.25.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.23.dist-info → pygpt_net-2.6.25.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.25
|
|
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
|
|
@@ -21,38 +21,42 @@ 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
23
|
Requires-Dist: Pygments (>=2.19.2,<3.0.0)
|
|
24
|
-
Requires-Dist: SQLAlchemy (>=2.0.
|
|
24
|
+
Requires-Dist: SQLAlchemy (>=2.0.43,<3.0.0)
|
|
25
25
|
Requires-Dist: SpeechRecognition (>=3.14.3,<4.0.0)
|
|
26
26
|
Requires-Dist: Telethon (>=1.40.0,<2.0.0)
|
|
27
27
|
Requires-Dist: anthropic (>=0.54.0,<0.55.0)
|
|
28
|
-
Requires-Dist: azure-core (>=1.
|
|
29
|
-
Requires-Dist: beautifulsoup4 (>=4.13.
|
|
30
|
-
Requires-Dist: boto3 (>=1.
|
|
28
|
+
Requires-Dist: azure-core (>=1.35.0,<2.0.0)
|
|
29
|
+
Requires-Dist: beautifulsoup4 (>=4.13.5,<5.0.0)
|
|
30
|
+
Requires-Dist: boto3 (>=1.40.17,<2.0.0)
|
|
31
31
|
Requires-Dist: chromadb (>=0.5.20,<0.6.0)
|
|
32
32
|
Requires-Dist: croniter (>=2.0.7,<3.0.0)
|
|
33
33
|
Requires-Dist: docker (>=7.1.0,<8.0.0)
|
|
34
34
|
Requires-Dist: docx2txt (>=0.8,<0.9)
|
|
35
35
|
Requires-Dist: gkeepapi (>=0.15.1,<0.16.0)
|
|
36
|
-
Requires-Dist: google-api-python-client (>=2.
|
|
36
|
+
Requires-Dist: google-api-python-client (>=2.179.0,<3.0.0)
|
|
37
37
|
Requires-Dist: google-generativeai (>=0.8.5,<0.9.0)
|
|
38
|
+
Requires-Dist: grpcio (>=1.74.0,<2.0.0)
|
|
38
39
|
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
|
39
40
|
Requires-Dist: httpx-socks (>=0.10.1,<0.11.0)
|
|
40
|
-
Requires-Dist:
|
|
41
|
+
Requires-Dist: huggingface-hub (>=0.33.5,<0.34.0)
|
|
42
|
+
Requires-Dist: ipykernel (>=6.30.1,<7.0.0)
|
|
41
43
|
Requires-Dist: jupyter_client (>=8.6.3,<9.0.0)
|
|
42
44
|
Requires-Dist: llama-index (>=0.12.44,<0.13.0)
|
|
43
|
-
Requires-Dist: llama-index-agent-openai (>=0.4.
|
|
45
|
+
Requires-Dist: llama-index-agent-openai (>=0.4.12,<0.5.0)
|
|
44
46
|
Requires-Dist: llama-index-core (==0.12.44)
|
|
45
|
-
Requires-Dist: llama-index-embeddings-azure-openai (>=0.3.
|
|
47
|
+
Requires-Dist: llama-index-embeddings-azure-openai (>=0.3.9,<0.4.0)
|
|
46
48
|
Requires-Dist: llama-index-embeddings-gemini (>=0.3.2,<0.4.0)
|
|
49
|
+
Requires-Dist: llama-index-embeddings-google-genai (>=0.2.1,<0.3.0)
|
|
47
50
|
Requires-Dist: llama-index-embeddings-huggingface-api (>=0.3.1,<0.4.0)
|
|
48
51
|
Requires-Dist: llama-index-embeddings-mistralai (>=0.3.0,<0.4.0)
|
|
49
52
|
Requires-Dist: llama-index-embeddings-ollama (>=0.5.0,<0.6.0)
|
|
50
53
|
Requires-Dist: llama-index-embeddings-openai (>=0.3.1,<0.4.0)
|
|
51
|
-
Requires-Dist: llama-index-
|
|
52
|
-
Requires-Dist: llama-index-llms-
|
|
53
|
-
Requires-Dist: llama-index-llms-
|
|
54
|
+
Requires-Dist: llama-index-embeddings-voyageai (>=0.3.6,<0.4.0)
|
|
55
|
+
Requires-Dist: llama-index-llms-anthropic (>=0.6.19,<0.7.0)
|
|
56
|
+
Requires-Dist: llama-index-llms-azure-openai (>=0.3.4,<0.4.0)
|
|
57
|
+
Requires-Dist: llama-index-llms-deepseek (>=0.1.2,<0.2.0)
|
|
54
58
|
Requires-Dist: llama-index-llms-gemini (>=0.5.0,<0.6.0)
|
|
55
|
-
Requires-Dist: llama-index-llms-google-genai (>=0.2.
|
|
59
|
+
Requires-Dist: llama-index-llms-google-genai (>=0.2.6,<0.3.0)
|
|
56
60
|
Requires-Dist: llama-index-llms-huggingface-api (>=0.3.1,<0.4.0)
|
|
57
61
|
Requires-Dist: llama-index-llms-mistralai (>=0.6.1,<0.7.0)
|
|
58
62
|
Requires-Dist: llama-index-llms-ollama (>=0.6.2,<0.7.0)
|
|
@@ -62,7 +66,7 @@ Requires-Dist: llama-index-llms-perplexity (>=0.3.7,<0.4.0)
|
|
|
62
66
|
Requires-Dist: llama-index-multi-modal-llms-openai (>=0.5.1,<0.6.0)
|
|
63
67
|
Requires-Dist: llama-index-readers-chatgpt-plugin (>=0.3.0,<0.4.0)
|
|
64
68
|
Requires-Dist: llama-index-readers-database (>=0.3.0,<0.4.0)
|
|
65
|
-
Requires-Dist: llama-index-readers-file (>=0.4.
|
|
69
|
+
Requires-Dist: llama-index-readers-file (>=0.4.11,<0.5.0)
|
|
66
70
|
Requires-Dist: llama-index-readers-github (>=0.5.0,<0.6.0)
|
|
67
71
|
Requires-Dist: llama-index-readers-google (>=0.5.0,<0.6.0)
|
|
68
72
|
Requires-Dist: llama-index-readers-microsoft-onedrive (>=0.3.0,<0.4.0)
|
|
@@ -79,26 +83,27 @@ Requires-Dist: onnxruntime (==1.20.1)
|
|
|
79
83
|
Requires-Dist: openai (==1.96.1)
|
|
80
84
|
Requires-Dist: openai-agents (>=0.2.3,<0.3.0)
|
|
81
85
|
Requires-Dist: opencv-python (>=4.11.0.86,<5.0.0.0)
|
|
82
|
-
Requires-Dist: packaging (>=
|
|
86
|
+
Requires-Dist: packaging (>=25.0,<26.0)
|
|
83
87
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
|
84
88
|
Requires-Dist: paramiko (>=4.0.0,<5.0.0)
|
|
85
89
|
Requires-Dist: pillow (>=10.4.0,<11.0.0)
|
|
86
|
-
Requires-Dist: pinecone
|
|
90
|
+
Requires-Dist: pinecone (>=7.0.1,<8.0.0)
|
|
87
91
|
Requires-Dist: psutil (>=7.0.0,<8.0.0)
|
|
88
92
|
Requires-Dist: pydub (>=0.25.1,<0.26.0)
|
|
89
93
|
Requires-Dist: pygame (>=2.6.1,<3.0.0)
|
|
90
94
|
Requires-Dist: pynput (>=1.8.1,<2.0.0)
|
|
91
|
-
Requires-Dist: pypdf (>=5.
|
|
95
|
+
Requires-Dist: pypdf (>=5.9.0,<6.0.0)
|
|
92
96
|
Requires-Dist: pyserial (>=3.5,<4.0)
|
|
93
97
|
Requires-Dist: python-markdown-math (>=0.8,<0.9)
|
|
94
98
|
Requires-Dist: qasync (>=0.27.1,<0.28.0)
|
|
95
99
|
Requires-Dist: qt-material (>=2.17,<3.0)
|
|
96
|
-
Requires-Dist: redis (>=5.3.
|
|
100
|
+
Requires-Dist: redis (>=5.3.1,<6.0.0)
|
|
97
101
|
Requires-Dist: show-in-file-manager (>=1.1.5,<2.0.0)
|
|
98
102
|
Requires-Dist: tiktoken (>=0.9.0,<0.10.0)
|
|
99
103
|
Requires-Dist: transformers (==4.48.3)
|
|
100
104
|
Requires-Dist: urllib3 (>=1.26.20,<2.0.0)
|
|
101
105
|
Requires-Dist: wikipedia (>=1.4.0,<2.0.0)
|
|
106
|
+
Requires-Dist: xai-sdk (>=1.1.0,<2.0.0)
|
|
102
107
|
Requires-Dist: youtube-transcript-api (>=0.6.3,<0.7.0)
|
|
103
108
|
Project-URL: Changelog, https://github.com/szczyglis-dev/py-gpt/blob/master/CHANGELOG.md
|
|
104
109
|
Project-URL: Documentation, https://pygpt.readthedocs.io/
|
|
@@ -111,7 +116,7 @@ Description-Content-Type: text/markdown
|
|
|
111
116
|
|
|
112
117
|
[](https://snapcraft.io/pygpt)
|
|
113
118
|
|
|
114
|
-
Release: **2.6.
|
|
119
|
+
Release: **2.6.25** | build: **2025-08-26** | Python: **>=3.10, <3.14**
|
|
115
120
|
|
|
116
121
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
117
122
|
>
|
|
@@ -1244,6 +1249,8 @@ PyGPT has built-in support for models (as of 2025-07-26):
|
|
|
1244
1249
|
All models are specified in the configuration file `models.json`, which you can customize.
|
|
1245
1250
|
This file is located in your working directory. You can add new models provided directly by `OpenAI API` (or compatible) and those supported by `LlamaIndex` or `Ollama` to this file. Configuration for LlamaIndex is placed in `llama_index` key.
|
|
1246
1251
|
|
|
1252
|
+
**Tip**: Anthropic and Deepseek API providers use VoyageAI for embeddings, so you must also configure the Voyage API key if you want to use embeddings from these providers.
|
|
1253
|
+
|
|
1247
1254
|
## Adding a custom model
|
|
1248
1255
|
|
|
1249
1256
|
You can add your own models. See the section `Extending PyGPT / Adding a new model` for more info.
|
|
@@ -1339,8 +1346,7 @@ Define parameters like model name and Ollama base URL in the Embeddings provider
|
|
|
1339
1346
|
|
|
1340
1347
|
### Google Gemini, Anthropic Claude, xAI Grok, etc.
|
|
1341
1348
|
|
|
1342
|
-
|
|
1343
|
-
If you want to use `Chat with Files` mode (LlamaIndex), then remember to configure the required parameters like API keys in the model ENV config fields:
|
|
1349
|
+
If you want to use non-OpenAI models in `Chat with Files` and `Agents (LlamaIndex)` modes, then remember to configure the required parameters like API keys in the model config fields. `Chat` mode works via OpenAI SDK (compatible API), `Chat with Files` and `Agents (LlamaIndex)` modes works via LlamaIndex.
|
|
1344
1350
|
|
|
1345
1351
|
**Google Gemini**
|
|
1346
1352
|
|
|
@@ -2483,11 +2489,13 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
2483
2489
|
|
|
2484
2490
|
**Embeddings**
|
|
2485
2491
|
|
|
2486
|
-
- `Embeddings provider`:
|
|
2492
|
+
- `Embeddings provider`: Global embeddings provider (for indexing and Chat with Files).
|
|
2493
|
+
|
|
2494
|
+
- `Embeddings provider (ENV)`: ENV vars for global embeddings provider (API keys, etc.).
|
|
2487
2495
|
|
|
2488
|
-
- `Embeddings provider (
|
|
2496
|
+
- `Embeddings provider (**kwargs)`: Keyword arguments for global embeddings provider (model_name, etc.).
|
|
2489
2497
|
|
|
2490
|
-
- `
|
|
2498
|
+
- `Default embedding providers for attachments`: Define embedding model by provider to use in attachments.
|
|
2491
2499
|
|
|
2492
2500
|
- `RPM limit for embeddings API calls`: Specify the limit of maximum requests per minute (RPM), 0 = no limit.
|
|
2493
2501
|
|
|
@@ -2537,13 +2545,15 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
2537
2545
|
|
|
2538
2546
|
**Agents (LlamaIndex / OpenAI)**
|
|
2539
2547
|
|
|
2540
|
-
- `Max steps (per iteration)
|
|
2548
|
+
- `Max steps (per iteration)`: Max steps is one iteration before goal achieved
|
|
2549
|
+
|
|
2550
|
+
- `Max evaluation steps in loop`: Maximum evaluation steps to achieve the final result, set 0 to infinity
|
|
2541
2551
|
|
|
2542
|
-
- `
|
|
2552
|
+
- `Model for evaluation`: Model used for evaluation with score/percentage (loop). If not selected, then current active model will be used.
|
|
2543
2553
|
|
|
2544
|
-
- `Append and compare previous evaluation prompt in next evaluation
|
|
2554
|
+
- `Append and compare previous evaluation prompt in next evaluation`: If enabled, previous improvement prompt will be checked in next eval in loop, default: False
|
|
2545
2555
|
|
|
2546
|
-
- `Split response messages
|
|
2556
|
+
- `Split response messages`: Split response messages to separated context items in OpenAI Agents mode.
|
|
2547
2557
|
|
|
2548
2558
|
**Autonomous (Legacy agents)**
|
|
2549
2559
|
|
|
@@ -3025,6 +3035,8 @@ PyGPT can be extended with:
|
|
|
3025
3035
|
|
|
3026
3036
|
- custom web search engine providers
|
|
3027
3037
|
|
|
3038
|
+
- custom agents
|
|
3039
|
+
|
|
3028
3040
|
**Examples (tutorial files)**
|
|
3029
3041
|
|
|
3030
3042
|
See the `examples` directory in this repository with examples of custom launcher, plugin, vector store, LLM (LlamaIndex) provider and data loader:
|
|
@@ -3528,6 +3540,20 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3528
3540
|
|
|
3529
3541
|
## Recent changes:
|
|
3530
3542
|
|
|
3543
|
+
**2.6.25 (2025-08-26)**
|
|
3544
|
+
|
|
3545
|
+
- Fixed the empty agent ID issue in OpenAI Agents evaluation.
|
|
3546
|
+
- Added the ability to select a custom model for evaluation.
|
|
3547
|
+
- Added embedding providers: Anthropic, Deepseek, MistralAI, xAI, VoyageAI.
|
|
3548
|
+
|
|
3549
|
+
**2.6.24 (2025-08-26)**
|
|
3550
|
+
|
|
3551
|
+
- Added a new option: LlamaIndex -> Embeddings -> Default embedding providers for attachments.
|
|
3552
|
+
- The same model provider is now used for both embedding and RAG query in attachment indexing.
|
|
3553
|
+
- Translations have been added to Agents.
|
|
3554
|
+
- Fixed fetching Anthropic models list.
|
|
3555
|
+
- Added Google GenAI Embeddings.
|
|
3556
|
+
|
|
3531
3557
|
**2.6.23 (2025-08-25)**
|
|
3532
3558
|
|
|
3533
3559
|
- Added an inline "Add a new chat" button to the right of the tabs.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=H2S4Ef-StXOJORUfHzAlXuDM2RfGCcqfjX1phBCXdvM,102146
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=nUePp_QEAhrDVl76LALHaSxBux29fjPz6LxnAoBSKIg,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
|
|
@@ -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
|
|
@@ -59,7 +59,7 @@ pygpt_net/controller/config/field/dictionary.py,sha256=m3nSL8xAp0NRnr_rVmTZA5uTQ
|
|
|
59
59
|
pygpt_net/controller/config/field/input.py,sha256=Dx04ivrwM1KqA41uHYNGzwq1c7O-zPnU_NI-3I45hPY,3992
|
|
60
60
|
pygpt_net/controller/config/field/slider.py,sha256=dYbICd3ID-aLlc2a-bvFgWS4jceVz2UliTQKYy7Pl1Q,4560
|
|
61
61
|
pygpt_net/controller/config/field/textarea.py,sha256=Ln545IHzXBeFIjnfMIpmlUr-V3wNYjw4qGiz4NYRw34,2796
|
|
62
|
-
pygpt_net/controller/config/placeholder.py,sha256=
|
|
62
|
+
pygpt_net/controller/config/placeholder.py,sha256=tbjSgX8OzT5eLsJgfxfhLxiN2PMqTqdy8_EB0ULoyb0,16138
|
|
63
63
|
pygpt_net/controller/ctx/__init__.py,sha256=0wH7ziC75WscBW8cxpeGBwEz5tolo_kCxGPoz2udI_E,507
|
|
64
64
|
pygpt_net/controller/ctx/common.py,sha256=1jjRfEK1S4IqnzEGg1CIF-QqSN_83NLpaVtfB610NcM,6592
|
|
65
65
|
pygpt_net/controller/ctx/ctx.py,sha256=xJqgfHGXa_DmvIdGMnoiJZWENYaeGQYgtcZuUUv1CXk,39209
|
|
@@ -99,7 +99,7 @@ pygpt_net/controller/mode/__init__.py,sha256=1Kcz0xHc2IW_if9S9eQozBUvIu69eLAe7T-
|
|
|
99
99
|
pygpt_net/controller/mode/mode.py,sha256=F3rERGN_sAgAqDITFYd1Nj56_4MiBIS9TwjjSPH1uEc,7437
|
|
100
100
|
pygpt_net/controller/model/__init__.py,sha256=mQXq9u269D8TD3u_44J6DFFyHKkaZplk-tRFCssBGbE,509
|
|
101
101
|
pygpt_net/controller/model/editor.py,sha256=_WDVFTrgZKM5Y8MZiWur4e5oSuRbXr-Q3PDozVtZ9fw,16384
|
|
102
|
-
pygpt_net/controller/model/importer.py,sha256=
|
|
102
|
+
pygpt_net/controller/model/importer.py,sha256=BO7nIN83qGq-sxROwY5C9v2OhcVwKcHx3-IJTz8nZX4,22996
|
|
103
103
|
pygpt_net/controller/model/model.py,sha256=E0VfgIwNn75pjnB_v3RnqHr6jV1Eeua8VgpreQlA8vI,9132
|
|
104
104
|
pygpt_net/controller/notepad/__init__.py,sha256=ZbMh4D6nsGuI4AwYMdegfij5ubmUznEE_UcqSSDjSPk,511
|
|
105
105
|
pygpt_net/controller/notepad/notepad.py,sha256=mQgXalIMKkYTVKGkUD1mEHkHIzhTlt3QSiSb5eIhZgo,10767
|
|
@@ -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=7Vu50yidu2HSOifOX6bhbyTEHBS5An4GmGUBMYdHOco,7273
|
|
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
|
|
@@ -246,11 +246,11 @@ pygpt_net/core/filesystem/url.py,sha256=A97SXzodjVKQR26xwUwUcRz1OuZIYzrGiBestdtQ
|
|
|
246
246
|
pygpt_net/core/history/__init__.py,sha256=OVtJM8Cf-9WV9-WmB6x__qB3QK4ZGaYzjpl4Fk8RdWM,511
|
|
247
247
|
pygpt_net/core/history/history.py,sha256=PDE5Ut03mEgY9YPLZjqrimKQAyxoE7itViuqFV-VQf0,3123
|
|
248
248
|
pygpt_net/core/idx/__init__.py,sha256=8-HStPMODmgzC3dBaJB6MDqGJHCHnKxNdt30Vzyu3cM,507
|
|
249
|
-
pygpt_net/core/idx/chat.py,sha256=
|
|
249
|
+
pygpt_net/core/idx/chat.py,sha256=be6ojNA6KTx3IVHxaIwXgdO1VbmymzkYAe1iLHo8tBQ,29598
|
|
250
250
|
pygpt_net/core/idx/context.py,sha256=fo62m22xBE-rtOgLMeOS-AR2SRRmaGipN7nY5BFax58,10146
|
|
251
251
|
pygpt_net/core/idx/idx.py,sha256=QworuvYkSGo0mrGb_3cWGJug9C-CgCeAExWaNCtWSo4,18422
|
|
252
|
-
pygpt_net/core/idx/indexing.py,sha256=
|
|
253
|
-
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
|
|
254
254
|
pygpt_net/core/idx/metadata.py,sha256=69jrZ54S2wYZ3HzVooozADkbjgK2Rg4MuXTgfd6rcsI,5445
|
|
255
255
|
pygpt_net/core/idx/response.py,sha256=X4K706Ppage3fSAVPSqMK1w1PflMsJ6QA6Tl-Y9P0vs,5008
|
|
256
256
|
pygpt_net/core/idx/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -347,8 +347,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
347
347
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
348
348
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
349
349
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
350
|
-
pygpt_net/data/config/config.json,sha256=
|
|
351
|
-
pygpt_net/data/config/models.json,sha256=
|
|
350
|
+
pygpt_net/data/config/config.json,sha256=YpcIHA_-OsuXiTmf_PoqW_UBadC8M7H7VAUgwxopj2w,25678
|
|
351
|
+
pygpt_net/data/config/models.json,sha256=6qBHttexFm4ehoQGa5oXrIGjafHn44XmS7R7VXncTXw,110162
|
|
352
352
|
pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
|
|
353
353
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
354
354
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -383,7 +383,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
|
383
383
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
|
384
384
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
|
385
385
|
pygpt_net/data/config/presets/joke_expert.json,sha256=jjcoIYEOaEp8kLoIbecxQROiq4J3Zess5w8_HmngPOY,671
|
|
386
|
-
pygpt_net/data/config/settings.json,sha256=
|
|
386
|
+
pygpt_net/data/config/settings.json,sha256=PzWl89Gi3mbmEtZtsG3koVlQIPw_4gwun9HTCGbsmhc,68019
|
|
387
387
|
pygpt_net/data/config/settings_section.json,sha256=OLWgjs3hHFzk50iwzVyUpcFW7dfochOnbZS0vDoMlDU,1158
|
|
388
388
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
|
389
389
|
pygpt_net/data/css/fix_windows.dark.css,sha256=7hGbT_qI5tphYC_WlFpJRDAcmjBb0AQ2Yc-y-_Zzf2M,161
|
|
@@ -1607,14 +1607,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
|
1607
1607
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
|
1608
1608
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
|
1609
1609
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1610
|
-
pygpt_net/data/locale/locale.de.ini,sha256
|
|
1611
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1612
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
|
1613
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
|
1614
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
|
1615
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
|
1616
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
|
1617
|
-
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=pXzxi_iuUSZmK8UUsrXPMQIaHEmluwGglWCA2FC6t3c,93624
|
|
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
|
|
1618
1618
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
|
1619
1619
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
|
|
1620
1620
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
|
@@ -1961,16 +1961,16 @@ pygpt_net/provider/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRi
|
|
|
1961
1961
|
pygpt_net/provider/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1962
1962
|
pygpt_net/provider/agents/base.py,sha256=reCwWTHGm0ejW2hvClpd2SjLiKIiUUYNjxoQ608DpJI,3763
|
|
1963
1963
|
pygpt_net/provider/agents/llama_index/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1964
|
-
pygpt_net/provider/agents/llama_index/codeact_workflow.py,sha256=
|
|
1964
|
+
pygpt_net/provider/agents/llama_index/codeact_workflow.py,sha256=NmJy2y4i0Hu7daGVSS9fVzeV3TbVeG01s8phEKnyg7c,3556
|
|
1965
1965
|
pygpt_net/provider/agents/llama_index/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1966
1966
|
pygpt_net/provider/agents/llama_index/legacy/openai.py,sha256=j3Od0FPIh1NyMh-jb3CaocxuCUi_4b4CijEqaPA2PeQ,1644
|
|
1967
1967
|
pygpt_net/provider/agents/llama_index/legacy/openai_assistant.py,sha256=ZjxhMvltzDNGCmzCCS64wWYK6Z5Zn2V8CJBv12skyk4,3956
|
|
1968
1968
|
pygpt_net/provider/agents/llama_index/legacy/planner.py,sha256=xStcGSTRuCrRkYIRidM6oyodxOfMU6GoSUbRbRBxqvo,1859
|
|
1969
1969
|
pygpt_net/provider/agents/llama_index/legacy/react.py,sha256=rjWcNNhuB2gQfjoNbQp7WOgFMJ305eae-a1-EdCMo_U,2273
|
|
1970
1970
|
pygpt_net/provider/agents/llama_index/openai_workflow.py,sha256=_gLzsayNWuTLwvm2WBJFw1ooWR_9iy2OTr1u5HEtAEI,1752
|
|
1971
|
-
pygpt_net/provider/agents/llama_index/planner_workflow.py,sha256=
|
|
1971
|
+
pygpt_net/provider/agents/llama_index/planner_workflow.py,sha256=M6ne_4ofDI6YtlpbmEEfBKgkX6OePOMxl7FHOprkQWE,4139
|
|
1972
1972
|
pygpt_net/provider/agents/llama_index/react_workflow.py,sha256=s8LAo_gVy7129kSbUo_QZr8Vaoc5LZ-5vquf9_dAcnE,2436
|
|
1973
|
-
pygpt_net/provider/agents/llama_index/supervisor_workflow.py,sha256=
|
|
1973
|
+
pygpt_net/provider/agents/llama_index/supervisor_workflow.py,sha256=5inTkuGl_pzyjpE1tL1RqAX62xvDvRdGK6ymQpPVeU0,4203
|
|
1974
1974
|
pygpt_net/provider/agents/llama_index/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1975
1975
|
pygpt_net/provider/agents/llama_index/workflow/codeact.py,sha256=6uiHTffK69Gf5lvwvjXQqGcqv4Lyf5Tt9hOMKu9FQes,20776
|
|
1976
1976
|
pygpt_net/provider/agents/llama_index/workflow/events.py,sha256=Oicqo3td43G5OqydcfQZ3tjyYs_SyUUG6d6a4aA4OKk,884
|
|
@@ -1979,12 +1979,12 @@ pygpt_net/provider/agents/llama_index/workflow/planner.py,sha256=jCuiIyCnSjAsGHV
|
|
|
1979
1979
|
pygpt_net/provider/agents/llama_index/workflow/supervisor.py,sha256=L8j7BeCz85dNO1HmD2gRFjCuZ1C0Xfch15tKrVV_TKY,11907
|
|
1980
1980
|
pygpt_net/provider/agents/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1981
1981
|
pygpt_net/provider/agents/openai/agent.py,sha256=J8H_m6E4Q1MV3zXYv-yYUKL3Cq_dz2P3G6q-vJhUBDo,6297
|
|
1982
|
-
pygpt_net/provider/agents/openai/agent_b2b.py,sha256=
|
|
1983
|
-
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
|
|
1984
1984
|
pygpt_net/provider/agents/openai/agent_with_experts.py,sha256=EaIP5cQq4ZeR28R4-b2s90HjkHA_jUqGD16tw7ygZ6E,5384
|
|
1985
|
-
pygpt_net/provider/agents/openai/agent_with_experts_feedback.py,sha256=
|
|
1986
|
-
pygpt_net/provider/agents/openai/agent_with_feedback.py,sha256=
|
|
1987
|
-
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
|
|
1988
1988
|
pygpt_net/provider/agents/openai/bots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1989
1989
|
pygpt_net/provider/agents/openai/bots/research_bot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1990
1990
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1992,8 +1992,8 @@ pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py,sha25
|
|
|
1992
1992
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py,sha256=3fSrmwY6TA78FETBCOSsq4Zh6qeYiz-wvvYUz4zk1J8,2082
|
|
1993
1993
|
pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py,sha256=jTOUSEy9uFpPXhY19il_H321hpzSJDXD444__LhqFA8,1816
|
|
1994
1994
|
pygpt_net/provider/agents/openai/bots/research_bot/manager.py,sha256=n3BJiEogkfPvWsbA7ieHWnMoLve5koQ1ihAKO5ty7jk,7310
|
|
1995
|
-
pygpt_net/provider/agents/openai/evolve.py,sha256=
|
|
1996
|
-
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
|
|
1997
1997
|
pygpt_net/provider/audio_input/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
|
|
1998
1998
|
pygpt_net/provider/audio_input/base.py,sha256=2PxE9QeEd4fODLYx_sO-1iVdAFOxHVHjtse7-GIqix8,1826
|
|
1999
1999
|
pygpt_net/provider/audio_input/bing_speech_recognition.py,sha256=Rmpo7yaU8pU7r8KaH57U8Lc-NVE9EpF5wToL_qpMKhw,2825
|
|
@@ -2038,7 +2038,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
|
2038
2038
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2039
2039
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
|
2040
2040
|
pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
|
|
2041
|
-
pygpt_net/provider/core/config/patch.py,sha256
|
|
2041
|
+
pygpt_net/provider/core/config/patch.py,sha256=7eIeCvxm6Bn3tck6blq22LD5W8xQ5f9brQigX4EvqFA,123347
|
|
2042
2042
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2043
2043
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
|
2044
2044
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=0dP8VhI4bnFsQQKxAkaleKFlyaMycDD_cnE7gBCa57Y,512
|
|
@@ -2112,27 +2112,29 @@ pygpt_net/provider/gpt/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
2112
2112
|
pygpt_net/provider/gpt/worker/assistants.py,sha256=AzoY9wAaK57STRw2-6LIuhJ1RRDbQLRcjIZJtxr3lmQ,21510
|
|
2113
2113
|
pygpt_net/provider/gpt/worker/importer.py,sha256=4O4J_bEeiw7iaRv4HqE1AHfiywhc0td5SztA2uIfQiU,16308
|
|
2114
2114
|
pygpt_net/provider/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2115
|
-
pygpt_net/provider/llms/anthropic.py,sha256=
|
|
2116
|
-
pygpt_net/provider/llms/azure_openai.py,sha256=
|
|
2115
|
+
pygpt_net/provider/llms/anthropic.py,sha256=j31yrHFFMOP_robMOarMz0oOPXpyyO2h3DxhMSi4e54,3609
|
|
2116
|
+
pygpt_net/provider/llms/azure_openai.py,sha256=QxgK3KeqEEa38B-ezro6AJyd4D4bR9d8E3fW0a6Mc0Q,3812
|
|
2117
2117
|
pygpt_net/provider/llms/base.py,sha256=YIkISmtDIABv4YMho-fvu5Jwn1zPwT0Gqvi3zFI0RYA,6347
|
|
2118
|
-
pygpt_net/provider/llms/deepseek_api.py,sha256=
|
|
2119
|
-
pygpt_net/provider/llms/google.py,sha256=
|
|
2118
|
+
pygpt_net/provider/llms/deepseek_api.py,sha256=Jljj6Ce123q3eCrIizfFPQIsf47OzRaBK4jIbNZdLzg,3267
|
|
2119
|
+
pygpt_net/provider/llms/google.py,sha256=3Td8JsvJ6fclSY_zn4YaEWilPcBCFqeIBzWcZ7Gg1nI,3432
|
|
2120
2120
|
pygpt_net/provider/llms/hugging_face.py,sha256=qWyGVqosDw9WVsKbZc5IG7j4jjfVPeCKr6gPAn8Tyus,1800
|
|
2121
|
-
pygpt_net/provider/llms/hugging_face_api.py,sha256=
|
|
2122
|
-
pygpt_net/provider/llms/hugging_face_router.py,sha256=
|
|
2121
|
+
pygpt_net/provider/llms/hugging_face_api.py,sha256=oY5dE-9rFv8Cd6Hv8ZriHvL46ZrT3KyvJFuLokNaNRY,3402
|
|
2122
|
+
pygpt_net/provider/llms/hugging_face_router.py,sha256=db_P5DktU0SNObKqumaFfzEcyR1Wn7f9FwoLVlN4u2U,4477
|
|
2123
2123
|
pygpt_net/provider/llms/llama_index/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2124
2124
|
pygpt_net/provider/llms/llama_index/openai/__init__.py,sha256=nkQoENFdv-dmjf50Ic-iZuVhZisCfFwwDSpK4h6iLVM,183
|
|
2125
2125
|
pygpt_net/provider/llms/llama_index/openai/base.py,sha256=Z6NAmZ3OBvGLDNmYdJfB3Vp95BdHSTQriPVsCTYPeoU,42259
|
|
2126
2126
|
pygpt_net/provider/llms/llama_index/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2127
2127
|
pygpt_net/provider/llms/llama_index/openai/responses.py,sha256=dOzrPV0u1CQRloU2cws7GDI4OJwrnivo9uoqKACLV8Y,36159
|
|
2128
2128
|
pygpt_net/provider/llms/llama_index/openai/utils.py,sha256=IdvbjJ2y5zWDkntoPgBZ2pGbcrYIbGbg1smoju2XkUI,29243
|
|
2129
|
-
pygpt_net/provider/llms/
|
|
2130
|
-
pygpt_net/provider/llms/
|
|
2131
|
-
pygpt_net/provider/llms/
|
|
2129
|
+
pygpt_net/provider/llms/llama_index/x_ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2130
|
+
pygpt_net/provider/llms/llama_index/x_ai/embedding.py,sha256=QrGgpkD0F4Jm5cMJgN6oYai7UK_bJ0YoGr7Uvy5GtRU,2458
|
|
2131
|
+
pygpt_net/provider/llms/local.py,sha256=7vU0xWlMrFLzLMc6Os_xD-oAMxLEitvEHQcSdvCEY50,2290
|
|
2132
|
+
pygpt_net/provider/llms/mistral.py,sha256=e8pcWyNT8HjA3KLZL1vO7z4FlBxer-QCVpaGtKgQ4UY,3858
|
|
2133
|
+
pygpt_net/provider/llms/ollama.py,sha256=vVqA22eH-APgyfHCaHSvJlAgxLSvspvZSaOCeaKWQCw,4434
|
|
2132
2134
|
pygpt_net/provider/llms/ollama_custom.py,sha256=WVbLiEEwnz5loKiLy7EYmpuWz0Tp5Vhd1vOUB2051kI,24167
|
|
2133
|
-
pygpt_net/provider/llms/openai.py,sha256=
|
|
2135
|
+
pygpt_net/provider/llms/openai.py,sha256=oaPCEffOQI3TGe_l15Ta3Mt_MKshxsONRCSc59fINaE,5419
|
|
2134
2136
|
pygpt_net/provider/llms/perplexity.py,sha256=DO5RZaUEDmRhps0Hoa1OX05no5n4uxT4JjwOGWPshPY,3899
|
|
2135
|
-
pygpt_net/provider/llms/x_ai.py,sha256=
|
|
2137
|
+
pygpt_net/provider/llms/x_ai.py,sha256=TkOdSce3OndH4lSoYgBB7FkljM0eqbSX3OT5UtT0Cqc,4509
|
|
2136
2138
|
pygpt_net/provider/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2137
2139
|
pygpt_net/provider/loaders/base.py,sha256=3-qzzGAF2jxhriNHjE3Y2GtDXxs1_2_BIloaVJS4qzQ,3101
|
|
2138
2140
|
pygpt_net/provider/loaders/file_csv.py,sha256=br4zlMFXMVkhq1n71tqCNk2CS1wBxvClpn9vivq3l2g,1266
|
|
@@ -2434,7 +2436,7 @@ pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13
|
|
|
2434
2436
|
pygpt_net/ui/widget/textarea/editor.py,sha256=qCMFJk8T7f4u3TFYKi02r2kOFSzzwrasWm_zSMsisPE,5153
|
|
2435
2437
|
pygpt_net/ui/widget/textarea/find.py,sha256=fQu6t-_LTZGFRNCkezywtMVsL-DocIkGBR_HbRFq61g,1534
|
|
2436
2438
|
pygpt_net/ui/widget/textarea/html.py,sha256=4DOnUYtHBhN-6X5w13GK-ceAAvTPd8M4mH_N-c3L_h0,12344
|
|
2437
|
-
pygpt_net/ui/widget/textarea/input.py,sha256=
|
|
2439
|
+
pygpt_net/ui/widget/textarea/input.py,sha256=oyjsW072RFQYd2pTr65kIi0P7xKOc7SVRvvb9TrU4pM,9551
|
|
2438
2440
|
pygpt_net/ui/widget/textarea/name.py,sha256=vcyAY_pJWJoS_IJqdJjhIeDSniTL9rfpt8aaobWNFVY,1132
|
|
2439
2441
|
pygpt_net/ui/widget/textarea/notepad.py,sha256=Yl2fvJyRzADxvZe0B44QG8E15LdZtPjwGcdM2iIcgu4,9858
|
|
2440
2442
|
pygpt_net/ui/widget/textarea/output.py,sha256=krWta3GHwdlPOqcxLln150bo7iUOtbFL_yJzMucGOFU,6246
|
|
@@ -2445,8 +2447,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=cqs5i67bD19_BNgcYL7NXlwYBei4UYSL_IYPZ
|
|
|
2445
2447
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2446
2448
|
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2447
2449
|
pygpt_net/utils.py,sha256=GBAXOpp_Wjfu7Al7TnTV62-R-JPMiP9GuPXLJ0HmeJU,8906
|
|
2448
|
-
pygpt_net-2.6.
|
|
2449
|
-
pygpt_net-2.6.
|
|
2450
|
-
pygpt_net-2.6.
|
|
2451
|
-
pygpt_net-2.6.
|
|
2452
|
-
pygpt_net-2.6.
|
|
2450
|
+
pygpt_net-2.6.25.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2451
|
+
pygpt_net-2.6.25.dist-info/METADATA,sha256=4FP0zTdSkVksnIePP4ra6wSV5C7bYGowxWagKQ6eCEc,157900
|
|
2452
|
+
pygpt_net-2.6.25.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2453
|
+
pygpt_net-2.6.25.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2454
|
+
pygpt_net-2.6.25.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|