pygpt-net 2.4.57__py3-none-any.whl → 2.5.0__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.
- CHANGELOG.md +10 -0
- README.md +13 -3
- pygpt_net/CHANGELOG.txt +10 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +3 -1
- pygpt_net/controller/chat/command.py +12 -2
- pygpt_net/controller/chat/stream.py +9 -1
- pygpt_net/controller/chat/text.py +1 -0
- pygpt_net/core/command/__init__.py +68 -1
- pygpt_net/core/experts/__init__.py +1 -0
- pygpt_net/core/idx/chat.py +21 -9
- pygpt_net/core/prompt/__init__.py +30 -6
- pygpt_net/core/tokens/__init__.py +7 -4
- pygpt_net/core/updater/__init__.py +13 -1
- pygpt_net/data/config/config.json +4 -3
- pygpt_net/data/config/models.json +590 -3
- pygpt_net/data/config/modes.json +3 -3
- pygpt_net/data/config/settings.json +19 -0
- pygpt_net/data/locale/locale.en.ini +3 -0
- pygpt_net/provider/core/config/patch.py +8 -1
- pygpt_net/provider/core/model/patch.py +7 -1
- pygpt_net/provider/gpt/chat.py +5 -1
- pygpt_net/provider/llms/deepseek_api.py +42 -0
- pygpt_net/provider/llms/ollama.py +3 -1
- {pygpt_net-2.4.57.dist-info → pygpt_net-2.5.0.dist-info}/METADATA +15 -4
- {pygpt_net-2.4.57.dist-info → pygpt_net-2.5.0.dist-info}/RECORD +29 -28
- {pygpt_net-2.4.57.dist-info → pygpt_net-2.5.0.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.57.dist-info → pygpt_net-2.5.0.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.57.dist-info → pygpt_net-2.5.0.dist-info}/entry_points.txt +0 -0
@@ -6,7 +6,7 @@
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
7
|
# MIT License #
|
8
8
|
# Created By : Marcin Szczygliński #
|
9
|
-
# Updated Date: 2025.01.
|
9
|
+
# Updated Date: 2025.01.31 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
from packaging.version import parse as parse_version, Version
|
@@ -475,6 +475,12 @@ class Patch:
|
|
475
475
|
# add gemini-2.0-flash-exp
|
476
476
|
updated = True
|
477
477
|
|
478
|
+
# < 2.5.0 <--- add o1, DeepSeek R1, V3
|
479
|
+
if old < parse_version("2.5.0"):
|
480
|
+
print("Migrating models from < 2.5.0...")
|
481
|
+
# add o1, DeepSeek R1, V3
|
482
|
+
updated = True
|
483
|
+
|
478
484
|
# update file
|
479
485
|
if updated:
|
480
486
|
data = dict(sorted(data.items()))
|
pygpt_net/provider/gpt/chat.py
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
7
|
# MIT License #
|
8
8
|
# Created By : Marcin Szczygliński #
|
9
|
-
# Updated Date:
|
9
|
+
# Updated Date: 2025.01.31 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import json
|
@@ -116,6 +116,10 @@ class Chat:
|
|
116
116
|
response_kwargs['frequency_penalty'] = self.window.core.config.get('frequency_penalty')
|
117
117
|
response_kwargs['temperature'] = self.window.core.config.get('temperature')
|
118
118
|
response_kwargs['top_p'] = self.window.core.config.get('top_p')
|
119
|
+
|
120
|
+
# tool calls are not supported for o1-mini and o1-preview
|
121
|
+
if (model.id is not None
|
122
|
+
and model.id not in ["o1-mini", "o1-preview"]):
|
119
123
|
if len(tools) > 0:
|
120
124
|
response_kwargs['tools'] = tools
|
121
125
|
|
@@ -0,0 +1,42 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
# -*- coding: utf-8 -*-
|
3
|
+
# ================================================== #
|
4
|
+
# This file is a part of PYGPT package #
|
5
|
+
# Website: https://pygpt.net #
|
6
|
+
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
|
+
# MIT License #
|
8
|
+
# Created By : Marcin Szczygliński #
|
9
|
+
# Updated Date: 2025.01.31 19:00:00 #
|
10
|
+
# ================================================== #
|
11
|
+
|
12
|
+
from pygpt_net.core.types import (
|
13
|
+
MODE_LLAMA_INDEX,
|
14
|
+
)
|
15
|
+
from llama_index.llms.deepseek import DeepSeek
|
16
|
+
from llama_index.core.llms.llm import BaseLLM as LlamaBaseLLM
|
17
|
+
from pygpt_net.provider.llms.base import BaseLLM
|
18
|
+
from pygpt_net.item.model import ModelItem
|
19
|
+
|
20
|
+
|
21
|
+
class DeepseekApiLLM(BaseLLM):
|
22
|
+
def __init__(self, *args, **kwargs):
|
23
|
+
super(DeepseekApiLLM, self).__init__(*args, **kwargs)
|
24
|
+
self.id = "deepseek_api"
|
25
|
+
self.type = [MODE_LLAMA_INDEX]
|
26
|
+
|
27
|
+
def llama(
|
28
|
+
self,
|
29
|
+
window,
|
30
|
+
model: ModelItem,
|
31
|
+
stream: bool = False
|
32
|
+
) -> LlamaBaseLLM:
|
33
|
+
"""
|
34
|
+
Return LLM provider instance for llama
|
35
|
+
|
36
|
+
:param window: window instance
|
37
|
+
:param model: model instance
|
38
|
+
:param stream: stream mode
|
39
|
+
:return: LLM provider instance
|
40
|
+
"""
|
41
|
+
args = self.parse_args(model.llama_index)
|
42
|
+
return DeepSeek(**args)
|
@@ -6,7 +6,7 @@
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
7
|
# MIT License #
|
8
8
|
# Created By : Marcin Szczygliński #
|
9
|
-
# Updated Date:
|
9
|
+
# Updated Date: 2025.01.31 19:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import os
|
@@ -83,6 +83,8 @@ class OllamaLLM(BaseLLM):
|
|
83
83
|
"""
|
84
84
|
nest_asyncio.apply()
|
85
85
|
args = self.parse_args(model.llama_index)
|
86
|
+
if "request_timeout" not in args:
|
87
|
+
args["request_timeout"] = 120
|
86
88
|
return Ollama(**args)
|
87
89
|
|
88
90
|
def get_embeddings_model(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.5.0
|
4
4
|
Summary: Desktop AI Assistant powered by models: OpenAI o1, GPT-4o, GPT-4, GPT-4 Vision, GPT-3.5, DALL-E 3, Llama 3, Mistral, Gemini, Claude, Bielik, and other models supported by Langchain, Llama Index, and Ollama. Features include chatbot, text completion, image generation, vision analysis, speech-to-text, internet access, file handling, command execution and more.
|
5
5
|
Home-page: https://pygpt.net
|
6
6
|
License: MIT
|
@@ -47,6 +47,7 @@ Requires-Dist: llama-index-embeddings-ollama (>=0.5.0,<0.6.0)
|
|
47
47
|
Requires-Dist: llama-index-embeddings-openai (>=0.3.1,<0.4.0)
|
48
48
|
Requires-Dist: llama-index-llms-anthropic (>=0.6.3,<0.7.0)
|
49
49
|
Requires-Dist: llama-index-llms-azure-openai (>=0.3.0,<0.4.0)
|
50
|
+
Requires-Dist: llama-index-llms-deepseek (>=0.1.0,<0.2.0)
|
50
51
|
Requires-Dist: llama-index-llms-gemini (>=0.4.3,<0.5.0)
|
51
52
|
Requires-Dist: llama-index-llms-huggingface-api (>=0.3.1,<0.4.0)
|
52
53
|
Requires-Dist: llama-index-llms-ollama (>=0.5.0,<0.6.0)
|
@@ -93,7 +94,7 @@ Description-Content-Type: text/markdown
|
|
93
94
|
|
94
95
|
[](https://snapcraft.io/pygpt)
|
95
96
|
|
96
|
-
Release: **2.
|
97
|
+
Release: **2.5.0** | build: **2025.01.31** | Python: **>=3.10, <3.13**
|
97
98
|
|
98
99
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
99
100
|
>
|
@@ -105,7 +106,7 @@ Release: **2.4.57** | build: **2025.01.19** | Python: **>=3.10, <3.13**
|
|
105
106
|
|
106
107
|
## Overview
|
107
108
|
|
108
|
-
**PyGPT** is **all-in-one** Desktop AI Assistant that provides direct interaction with OpenAI language models, including `o1`, `gpt-4o`, `gpt-4`, `gpt-4 Vision`, and `gpt-3.5`, through the `OpenAI API`. By utilizing `LangChain` and `LlamaIndex`, the application also supports alternative LLMs, like those available on `HuggingFace`, locally available models (like `Llama 3`,`Mistral` or `Bielik`), `Google Gemini` and `Anthropic Claude`.
|
109
|
+
**PyGPT** is **all-in-one** Desktop AI Assistant that provides direct interaction with OpenAI language models, including `o1`, `gpt-4o`, `gpt-4`, `gpt-4 Vision`, and `gpt-3.5`, through the `OpenAI API`. By utilizing `LangChain` and `LlamaIndex`, the application also supports alternative LLMs, like those available on `HuggingFace`, locally available models (like `Llama 3`,`Mistral`, `DeepSeek V3/R1` or `Bielik`), `Google Gemini` and `Anthropic Claude`.
|
109
110
|
|
110
111
|
This assistant offers multiple modes of operation such as chat, assistants, completions, and image-related tasks using `DALL-E 3` for generation and `gpt-4 Vision` for image analysis. **PyGPT** has filesystem capabilities for file I/O, can generate and run Python code, execute system commands, execute custom commands and manage file transfers. It also allows models to perform web searches with the `Google` and `Microsoft Bing`.
|
111
112
|
|
@@ -130,7 +131,7 @@ You can download compiled 64-bit versions for Windows and Linux here: https://py
|
|
130
131
|
- Desktop AI Assistant for `Linux`, `Windows` and `Mac`, written in Python.
|
131
132
|
- Works similarly to `ChatGPT`, but locally (on a desktop computer).
|
132
133
|
- 11 modes of operation: Chat, Vision, Completion, Assistant, Image generation, LangChain, Chat with Files, Chat with Audio, Experts, Autonomous Mode and Agents.
|
133
|
-
- Supports multiple models: `o1`, `GPT-4o`, `GPT-4`, `GPT-3.5`, and any model accessible through `LangChain`, `LlamaIndex` and `Ollama` such as `Llama 3`, `Mistral`, `Google Gemini`, `Anthropic Claude`, `Bielik`, etc.
|
134
|
+
- Supports multiple models: `o1`, `GPT-4o`, `GPT-4`, `GPT-3.5`, and any model accessible through `LangChain`, `LlamaIndex` and `Ollama` such as `Llama 3`, `Mistral`, `Google Gemini`, `Anthropic Claude`, `DeepSeek V3/R1`, `Bielik`, etc.
|
134
135
|
- Chat with your own Files: integrated `LlamaIndex` support: chat with data such as: `txt`, `pdf`, `csv`, `html`, `md`, `docx`, `json`, `epub`, `xlsx`, `xml`, webpages, `Google`, `GitHub`, video/audio, images and other data types, or use conversation history as additional context provided to the model.
|
135
136
|
- Built-in vector databases support and automated files and data embedding.
|
136
137
|
- Included support features for individuals with disabilities: customizable keyboard shortcuts, voice control, and translation of on-screen actions into audio via speech synthesis.
|
@@ -4051,6 +4052,16 @@ may consume additional tokens that are not displayed in the main window.
|
|
4051
4052
|
|
4052
4053
|
## Recent changes:
|
4053
4054
|
|
4055
|
+
**2.5.0 (2025-01-31)**
|
4056
|
+
|
4057
|
+
- Added provider for DeepSeek (in Chat with Files mode, beta).
|
4058
|
+
- Added new models: OpenAI o1, Llama 3.3, DeepSeek V3 and R1 (API + local, with Ollama).
|
4059
|
+
- Added tool calls for OpenAI o1.
|
4060
|
+
- Added native vision for OpenAI o1.
|
4061
|
+
- Fix: tool calls in Ollama provider.
|
4062
|
+
- Fix: error handling in stream mode.
|
4063
|
+
- Fix: added check for active plugin tools before tool call.
|
4064
|
+
|
4054
4065
|
**2.4.57 (2025-01-19)**
|
4055
4066
|
|
4056
4067
|
- Logging fix.
|
@@ -1,10 +1,10 @@
|
|
1
|
-
CHANGELOG.md,sha256=
|
2
|
-
README.md,sha256=
|
1
|
+
CHANGELOG.md,sha256=nCqrMhpVp6V38Ovxz09DrXDE2eqIJyRktNJfaz97Mxc,82414
|
2
|
+
README.md,sha256=iq_1asZt8R57nKN9ONOPY9Qdkx-4tuUHkRi1L8vRbHU,163457
|
3
3
|
icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
|
4
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
4
|
+
pygpt_net/CHANGELOG.txt,sha256=LlQ4boFFfojlQNWF6MpjNGjM6t9S2m8C7yR-8rnNvPs,80904
|
5
5
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
6
|
-
pygpt_net/__init__.py,sha256=
|
7
|
-
pygpt_net/app.py,sha256=
|
6
|
+
pygpt_net/__init__.py,sha256=__LBli5d4T6noWkyxB44rYkpJcX-cp8qfqfhNPv2u1Q,1306
|
7
|
+
pygpt_net/app.py,sha256=McSaBiqz7zHRlzXi_QtdiZIhn0o2iflY6NmRgCkvoCw,16132
|
8
8
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
9
9
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
10
10
|
pygpt_net/controller/__init__.py,sha256=wtlkw4viFVuf2sP0iMSkK0jI1QMa3kcPfvQaqnC-1io,5917
|
@@ -30,7 +30,7 @@ pygpt_net/controller/camera/__init__.py,sha256=zi3Ozv9SsClAnFYI9vAhE_vuAguuIVeXf
|
|
30
30
|
pygpt_net/controller/chat/__init__.py,sha256=JUDt_DqxgpBROpr6k2jFQ03EIqXwmrAkwkkN0hN6jFU,3086
|
31
31
|
pygpt_net/controller/chat/attachment.py,sha256=6BzM8cKeazp12Ej6_3IH3I6NEMR5WON7N4PMY-i0h30,20974
|
32
32
|
pygpt_net/controller/chat/audio.py,sha256=QsU36McxqlRoP6B-NSeck968g1M8JhlLkLwGLunbapw,3210
|
33
|
-
pygpt_net/controller/chat/command.py,sha256=
|
33
|
+
pygpt_net/controller/chat/command.py,sha256=3fNYvgt9NmCZPNrlqfLXivmN63ZRsuFseNjj1ZLnwts,3293
|
34
34
|
pygpt_net/controller/chat/common.py,sha256=-BJa2wHRHLDY-BHgp36GFhSr0yGNclkJGMiJQDktHaA,13958
|
35
35
|
pygpt_net/controller/chat/files.py,sha256=VFiiTeWTYR15Nwf1CTLEmeXqlmRHzNQVkNaU6hY2Gz4,2846
|
36
36
|
pygpt_net/controller/chat/image.py,sha256=UR6R5Nj2MXPIg8goxA1BUc8vGD26x7Xs04KhEE9nigQ,8039
|
@@ -38,8 +38,8 @@ pygpt_net/controller/chat/input.py,sha256=yLIhEPh0oh5BYQnOxYUI9raaRziAJdjQlQolmT
|
|
38
38
|
pygpt_net/controller/chat/output.py,sha256=VuziVuI9Lj_4kZmTWvXg8t2tq4w9uD7J1g2MqlMCV6s,9272
|
39
39
|
pygpt_net/controller/chat/render.py,sha256=h23QCvMDIAaCpInqwwADa4G43sSpSn-CE5celnk1LSc,17206
|
40
40
|
pygpt_net/controller/chat/response.py,sha256=UnTnnn2on-Qg2_T_QcQcklTCcuq6XhyLLxs1fn-D9Tg,9450
|
41
|
-
pygpt_net/controller/chat/stream.py,sha256=
|
42
|
-
pygpt_net/controller/chat/text.py,sha256=
|
41
|
+
pygpt_net/controller/chat/stream.py,sha256=uBYDHQh4vzySHqjNtmMKO81d3f2QYDH2yQnaOwW-ZWc,7715
|
42
|
+
pygpt_net/controller/chat/text.py,sha256=UfqItTZQ2xIXASwrddwbwDkkTKFAJsySjMSZy97vC1U,10342
|
43
43
|
pygpt_net/controller/chat/vision.py,sha256=bTQ6TFEh9NsPSDSLpExS7KvxQMtqm2sDPm5A0skyOGo,2838
|
44
44
|
pygpt_net/controller/command/__init__.py,sha256=sUvnvsKISkHTrbv7woQQ8r4SAGDR8Gy85H42q8eAg78,5671
|
45
45
|
pygpt_net/controller/config/__init__.py,sha256=cpVI1-_DkrnDkl5K4rGjOhYD-TzXKUoQx99pKzwXjKg,4863
|
@@ -136,7 +136,7 @@ pygpt_net/core/camera/__init__.py,sha256=K74D_4Q_GN1M66pTH6H2D1em_FlWohGLgb0aDQ6
|
|
136
136
|
pygpt_net/core/chain/__init__.py,sha256=C7Xm88bRblcyM4e0wZMFG-6SQCdw_frXN9kqnWzce60,3541
|
137
137
|
pygpt_net/core/chain/chat.py,sha256=5LxPWHkocjrIAAwrdDH1ss6knAnh4_owfbHPsOQYSws,5238
|
138
138
|
pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-IiBPg,5698
|
139
|
-
pygpt_net/core/command/__init__.py,sha256=
|
139
|
+
pygpt_net/core/command/__init__.py,sha256=rsANJyp2c1m3UKyyJAhJOjSBAm3A9D8VKiD0tuoLlGM,24123
|
140
140
|
pygpt_net/core/ctx/__init__.py,sha256=5W5ZPYE5rkbBRRdL7mT9MFvnWZKjib0cMBiC-9HFl28,43311
|
141
141
|
pygpt_net/core/ctx/bag.py,sha256=-LRhttDRiQkw1Msl3kbGQYaY9w8zqn1o0miNRdqjHtQ,1286
|
142
142
|
pygpt_net/core/ctx/container.py,sha256=tdPHPRfTi8yGY1MZGgFtYtx2lvc5K9OTqhjde16wivY,4232
|
@@ -170,7 +170,7 @@ pygpt_net/core/events/control.py,sha256=57EjCTnKMyC17aRIYpA81veKwwlHciCdk-VWNwKD
|
|
170
170
|
pygpt_net/core/events/event.py,sha256=TuhTVRI7wPg1o8GervrGrEchNF53jCC-3ttEkldcTnQ,3779
|
171
171
|
pygpt_net/core/events/kernel.py,sha256=QLhD7CMszdyg6TIs4q_5bHikjEY-cxOOhQkGnG113t8,1919
|
172
172
|
pygpt_net/core/events/render.py,sha256=EnZspEs10WwJbtvbSYu2CqkuXJ_3BOHoNXmZ2FLtFGM,2167
|
173
|
-
pygpt_net/core/experts/__init__.py,sha256=
|
173
|
+
pygpt_net/core/experts/__init__.py,sha256=nnZBzoSiaDd7D5ZsZ3k-dvk4qNRLO17wZy9uNpQC9R4,17572
|
174
174
|
pygpt_net/core/filesystem/__init__.py,sha256=gtJSEonPy_Nt1K9IJmBtt8JvtNIsJKQi6u5inNVHZU8,15566
|
175
175
|
pygpt_net/core/filesystem/actions.py,sha256=2lRVF_MpIxCwbH8DkugP0K6pY6FymLeH6LKVR2rtQGQ,4152
|
176
176
|
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
@@ -179,7 +179,7 @@ pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUk
|
|
179
179
|
pygpt_net/core/filesystem/url.py,sha256=cXctpPHBY1-fwn7vFqfZi3CeP73n2nFXF-ZnePiRk7U,3236
|
180
180
|
pygpt_net/core/history/__init__.py,sha256=PDE5Ut03mEgY9YPLZjqrimKQAyxoE7itViuqFV-VQf0,3123
|
181
181
|
pygpt_net/core/idx/__init__.py,sha256=sK6zQDxetao3dnqcBaaT2HTKOz4zxOSEKmsHLQlsLGY,18115
|
182
|
-
pygpt_net/core/idx/chat.py,sha256=
|
182
|
+
pygpt_net/core/idx/chat.py,sha256=NFctd4uON0FjnSp0dJtoHZ5RjpLZMYJvJWRPRx7I9OI,23761
|
183
183
|
pygpt_net/core/idx/context.py,sha256=uISNiKprcA_Qv9t0PbMj1vDWCm1eccYbk5iGS-QcfG0,3143
|
184
184
|
pygpt_net/core/idx/indexing.py,sha256=lj0FnPGBhL3AvmOT-NIQcdH6zY-Tpp3DB0zei2SV7xo,42989
|
185
185
|
pygpt_net/core/idx/llm.py,sha256=RmYLBKhvMIL7XcvWa39HdNxq4yC-f2C34e93Wx7yaM8,4885
|
@@ -203,7 +203,7 @@ pygpt_net/core/platforms/__init__.py,sha256=QygvsQadTpWW1K4_GraO38r7u82sYpgz3FI4
|
|
203
203
|
pygpt_net/core/plugins/__init__.py,sha256=gHrT61w1kVhcdTO0QTaitol5CV8h2bnrQaCG9eNVi-g,15106
|
204
204
|
pygpt_net/core/presets/__init__.py,sha256=fNUwFk5mNxBTf340uixDAPD-g5fZHBjZMdKAzIjAFb4,14747
|
205
205
|
pygpt_net/core/profile/__init__.py,sha256=ZpXKTwbViskCUDBn8JvxSk7wRFdfrwMfs7Gb3O7N_48,7840
|
206
|
-
pygpt_net/core/prompt/__init__.py,sha256=
|
206
|
+
pygpt_net/core/prompt/__init__.py,sha256=4zBBJ-rJrJ5mp32wGJEltvJRj9b5ZlfarJfRv70L2y4,6338
|
207
207
|
pygpt_net/core/prompt/custom.py,sha256=kexQrazSm_pCmHclTkVT2YId3aNiF53kg6UCSCFZ-KE,7849
|
208
208
|
pygpt_net/core/prompt/template.py,sha256=FFZHRtDdSO-0rUwGn8yPfl_njocG1qW8CIARB7tKc-E,3287
|
209
209
|
pygpt_net/core/render/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
@@ -233,10 +233,10 @@ pygpt_net/core/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
233
233
|
pygpt_net/core/text/finder.py,sha256=2p8lwNgJ28skGbIKAErP7cDOdhPbemrJzqikmfgVBcc,6566
|
234
234
|
pygpt_net/core/text/utils.py,sha256=Jq38mu0-yenI8iZwYaV2I6P9BYWZiK5kifphah4k4Vk,2292
|
235
235
|
pygpt_net/core/text/web_finder.py,sha256=fLqlyQJ90d9jrfKN9A_Be_nRVsWONvOVBm_HO9tv-Gg,6487
|
236
|
-
pygpt_net/core/tokens/__init__.py,sha256=
|
236
|
+
pygpt_net/core/tokens/__init__.py,sha256=SY2NW8Kl7dyPSRgs8JE6TZOhWI33dbaZQrhR0syZQcU,15596
|
237
237
|
pygpt_net/core/types/__init__.py,sha256=oj7Ax1ODy5YwDCb920WaRbVcdxMeLn8KQMucJGXTBe4,508
|
238
238
|
pygpt_net/core/types/mode.py,sha256=fDUJB1jqENVWw10FO9pFONT1xc13syamKNHu9UXwhNA,769
|
239
|
-
pygpt_net/core/updater/__init__.py,sha256=
|
239
|
+
pygpt_net/core/updater/__init__.py,sha256=rrtWjclP1x0JtBx9ww0qLqd_PdLTdVdYIg6ASmxhau4,16042
|
240
240
|
pygpt_net/core/vision/__init__.py,sha256=JX_tazW31Xesd6nPY1I1UcGmPd_V0hCG3JfMYW06oHo,728
|
241
241
|
pygpt_net/core/vision/analyzer.py,sha256=7FqAvwrOSCKVTxvbbRGtGpdzj-LRG57mRMNtfeji_Us,4619
|
242
242
|
pygpt_net/core/web/__init__.py,sha256=l37jujlnTUGF1YwGy54FDvm1DGZbB1_rHHtnXLXCZ50,2703
|
@@ -247,9 +247,9 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
247
247
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
248
248
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
249
249
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
250
|
-
pygpt_net/data/config/config.json,sha256=
|
251
|
-
pygpt_net/data/config/models.json,sha256=
|
252
|
-
pygpt_net/data/config/modes.json,sha256=
|
250
|
+
pygpt_net/data/config/config.json,sha256=V1XMLzW21WB6WGFyUF_RSiK-WlrZn5wUTLduOsxd4Rs,19884
|
251
|
+
pygpt_net/data/config/models.json,sha256=5-cgCVhW7j_K0p1jI_b2SFklGYkHjjGcvGNI2TnX-u0,79275
|
252
|
+
pygpt_net/data/config/modes.json,sha256=xr-0knRY_8u6nrPTgHWUh8tyX2dlaLOXTU35s9RfkVQ,1921
|
253
253
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
254
254
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
255
255
|
pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
|
@@ -269,7 +269,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
269
269
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
270
270
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
271
271
|
pygpt_net/data/config/presets/joke_expert.json,sha256=aFBFCY97Uba71rRq0MSeakXaOj8yuaUqekQ842YHv64,683
|
272
|
-
pygpt_net/data/config/settings.json,sha256=
|
272
|
+
pygpt_net/data/config/settings.json,sha256=Z2bMx5PnR0mj-hychyOG-DK0ynpD9q7qOIo8xDf4dP0,50316
|
273
273
|
pygpt_net/data/config/settings_section.json,sha256=M22jrZvly6KliNr_fhkS6rk_bdzlFK4OyoWZ6TiyRnY,1004
|
274
274
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
275
275
|
pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUzC0,1122
|
@@ -1486,7 +1486,7 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
1486
1486
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
1487
1487
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
1488
1488
|
pygpt_net/data/locale/locale.de.ini,sha256=ejI7RPX3FqvOcYcXvgPWNTeA9S58IVYI6L6u2WdXWjA,64162
|
1489
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
1489
|
+
pygpt_net/data/locale/locale.en.ini,sha256=h9lZilBf0bXaraPFEPOWwd7JMlpllouI7YBdAWbP7UQ,76770
|
1490
1490
|
pygpt_net/data/locale/locale.es.ini,sha256=5rKfjtkUwItP9FBpK-vnnPEpsg-5fbqATm_2e1Ot6U8,64391
|
1491
1491
|
pygpt_net/data/locale/locale.fr.ini,sha256=WuP5IGawZdAYl21H0ZZM0fPpmk7L0cnVyO8V_AjuahY,66403
|
1492
1492
|
pygpt_net/data/locale/locale.it.ini,sha256=7irOYJlOW2NDB9hr6DtXwhtBHpzxYtlakmGDxjOpHhE,63144
|
@@ -1820,7 +1820,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
1820
1820
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1821
1821
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
1822
1822
|
pygpt_net/provider/core/config/json_file.py,sha256=P78SRQpNr_nF7TYftYLnHl_DVo7GLPNs4_lvw97sqq8,5122
|
1823
|
-
pygpt_net/provider/core/config/patch.py,sha256=
|
1823
|
+
pygpt_net/provider/core/config/patch.py,sha256=zCO3zokgSSDmLvM-uCu7hhRvaDrMmGPtTecvWbN-L4A,96582
|
1824
1824
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1825
1825
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
1826
1826
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=G2pB7kZfREJRLJZmfv3DKTslXC-K7EhNN2sn56q6BFA,11753
|
@@ -1847,7 +1847,7 @@ pygpt_net/provider/core/mode/patch.py,sha256=VS2KCYW05jxLd-lcStNY1k4fHKUUrVVLTdR
|
|
1847
1847
|
pygpt_net/provider/core/model/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1848
1848
|
pygpt_net/provider/core/model/base.py,sha256=L1x2rHha8a8hnCUYxZr88utay1EWEx5qBXW_2acpAN0,1319
|
1849
1849
|
pygpt_net/provider/core/model/json_file.py,sha256=g0u1tbOm7QKutjD5mZLRwzmYmoIqA8b6bDQ6wKbucYM,6484
|
1850
|
-
pygpt_net/provider/core/model/patch.py,sha256=
|
1850
|
+
pygpt_net/provider/core/model/patch.py,sha256=_gEt8DBWgluuxEHzaBBdHsxCSngq90tEPE7wsvoLISg,22878
|
1851
1851
|
pygpt_net/provider/core/notepad/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1852
1852
|
pygpt_net/provider/core/notepad/base.py,sha256=7aPhild8cALTaN3JEbI0YrkIW1DRIycGQWTfsdH6WcQ,1323
|
1853
1853
|
pygpt_net/provider/core/notepad/db_sqlite/__init__.py,sha256=DQnVKJxvLq-6zlRlLk3MXSQZEObFtcQ5p5mEnuRzwYE,3104
|
@@ -1868,7 +1868,7 @@ pygpt_net/provider/core/prompt/json_file.py,sha256=5yfW1RgEa36tX4-ntze4PavWLry0Y
|
|
1868
1868
|
pygpt_net/provider/gpt/__init__.py,sha256=1nY17w9PqNCQs4gY77CkQgh4PhLZDfJ81or6czWw_4c,8614
|
1869
1869
|
pygpt_net/provider/gpt/assistants.py,sha256=DSw1YB_J9n2rFD5CPDWZy59I38VSG6uLpYydGLTUPMQ,14083
|
1870
1870
|
pygpt_net/provider/gpt/audio.py,sha256=frHElxYVaHYkNDCMJ9tQMoGqxSaZ-s5oPlAEHUAckkc,2032
|
1871
|
-
pygpt_net/provider/gpt/chat.py,sha256=
|
1871
|
+
pygpt_net/provider/gpt/chat.py,sha256=ibUCKOsR0FnJPGBcFmchwxa-3VRJu2sztUcWEbkTOgw,9747
|
1872
1872
|
pygpt_net/provider/gpt/completion.py,sha256=OusKOb4G11aYRJUjRWcMsf80cRQQvee9DzRe99ubLmc,6164
|
1873
1873
|
pygpt_net/provider/gpt/image.py,sha256=ZqYrtVTcfPa8Kf08pWLKy1Zhvi6pu61GBlslRBauoK0,8967
|
1874
1874
|
pygpt_net/provider/gpt/store.py,sha256=FaVd7SBC_QQ0W26_odJwcrLH54CSq0UZXZnuwIhRm54,17315
|
@@ -1882,11 +1882,12 @@ pygpt_net/provider/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
1882
1882
|
pygpt_net/provider/llms/anthropic.py,sha256=SLRWOZfYrtKMjwR1k_Vz5Eg3klAB04mYD_gKCglNFCI,1647
|
1883
1883
|
pygpt_net/provider/llms/azure_openai.py,sha256=Yr0-sRrxM1pyConA7PP4Vd74-ZF9WcTODCIPCPRiuc4,3459
|
1884
1884
|
pygpt_net/provider/llms/base.py,sha256=7--jZH2NBO1i8qFU9l8wAbUDrY9zSBF9CN9XXPqLfRU,4931
|
1885
|
+
pygpt_net/provider/llms/deepseek_api.py,sha256=11OiHC4pJOQV3uoSt-OuGrng1F8smQ5XIeCbuw9wrqQ,1401
|
1885
1886
|
pygpt_net/provider/llms/google.py,sha256=6jVlCR8Mm57FKCPEbTiQRn0OgAPTNyjXIbH5uYB6Gy8,2312
|
1886
1887
|
pygpt_net/provider/llms/hugging_face.py,sha256=HLw0x8O0HuFNI-7yeI4m-ksl2KPpyENqT1ZiJ1_xEQs,1702
|
1887
1888
|
pygpt_net/provider/llms/hugging_face_api.py,sha256=EmMQL4QJnE-2SZwHg102ZqSZzi8WMIo84inG2bRiaw8,2892
|
1888
1889
|
pygpt_net/provider/llms/local.py,sha256=s6Myi1dZ2fTCCno6UHT-gbffe0g5b_sYxnvMj5P8LlI,1393
|
1889
|
-
pygpt_net/provider/llms/ollama.py,sha256=
|
1890
|
+
pygpt_net/provider/llms/ollama.py,sha256=fRn5oRY_CScV6HhxvZAm5B2jXCeFaVvoUQnJXUBDsMw,3783
|
1890
1891
|
pygpt_net/provider/llms/openai.py,sha256=8HUn-YAVM4YQ10fBbsnGvv0eAOFlyKURVPlv9aL8d7U,3730
|
1891
1892
|
pygpt_net/provider/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1892
1893
|
pygpt_net/provider/loaders/base.py,sha256=3-qzzGAF2jxhriNHjE3Y2GtDXxs1_2_BIloaVJS4qzQ,3101
|
@@ -2176,8 +2177,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=2LebPHa_e5lvBqnIVzjwsLcFMoc11BonXgAUs
|
|
2176
2177
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2177
2178
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2178
2179
|
pygpt_net/utils.py,sha256=Gsh_mITVke3bb8o-Ke57l__xA5a9Wv4t7tlsnSQULj8,6655
|
2179
|
-
pygpt_net-2.
|
2180
|
-
pygpt_net-2.
|
2181
|
-
pygpt_net-2.
|
2182
|
-
pygpt_net-2.
|
2183
|
-
pygpt_net-2.
|
2180
|
+
pygpt_net-2.5.0.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
2181
|
+
pygpt_net-2.5.0.dist-info/METADATA,sha256=5Gq2mtx95uP_9vwSUuy9iiC8KrI2FEsCwCY0eKNWzKM,168393
|
2182
|
+
pygpt_net-2.5.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
2183
|
+
pygpt_net-2.5.0.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2184
|
+
pygpt_net-2.5.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|