pygpt-net 2.5.16__py3-none-any.whl → 2.5.17__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 +5 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/data/config/config.json +4 -3
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/config/settings.json +13 -0
- pygpt_net/data/config/settings_section.json +3 -0
- pygpt_net/data/locale/locale.de.ini +3 -0
- pygpt_net/data/locale/locale.en.ini +3 -0
- pygpt_net/data/locale/locale.es.ini +3 -0
- pygpt_net/data/locale/locale.fr.ini +3 -0
- pygpt_net/data/locale/locale.it.ini +3 -0
- pygpt_net/data/locale/locale.pl.ini +3 -0
- pygpt_net/data/locale/locale.uk.ini +3 -0
- pygpt_net/data/locale/locale.zh.ini +3 -0
- pygpt_net/provider/core/config/patch.py +7 -0
- pygpt_net/provider/gpt/responses.py +2 -1
- pygpt_net/provider/llms/ollama_custom.py +2 -0
- {pygpt_net-2.5.16.dist-info → pygpt_net-2.5.17.dist-info}/METADATA +7 -2
- {pygpt_net-2.5.16.dist-info → pygpt_net-2.5.17.dist-info}/RECORD +22 -22
- {pygpt_net-2.5.16.dist-info → pygpt_net-2.5.17.dist-info}/LICENSE +0 -0
- {pygpt_net-2.5.16.dist-info → pygpt_net-2.5.17.dist-info}/WHEEL +0 -0
- {pygpt_net-2.5.16.dist-info → pygpt_net-2.5.17.dist-info}/entry_points.txt +0 -0
pygpt_net/CHANGELOG.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
2.5.17 (2025-06-25)
|
2
|
+
|
3
|
+
- Added settings for enable/disable Remote Tools via Responses API in Chat mode: Config -> Settings -> Remote tools. Currently only web-search-preview tool is available, rest of tools coming soon.
|
4
|
+
- Fixed context summarization in Ollama provider.
|
5
|
+
|
1
6
|
2.5.16 (2025-06-25)
|
2
7
|
|
3
8
|
- OpenAI API upgraded to 1.91.0.
|
pygpt_net/__init__.py
CHANGED
@@ -13,7 +13,7 @@ __author__ = "Marcin Szczygliński"
|
|
13
13
|
__copyright__ = "Copyright 2025, Marcin Szczygliński"
|
14
14
|
__credits__ = ["Marcin Szczygliński"]
|
15
15
|
__license__ = "MIT"
|
16
|
-
__version__ = "2.5.
|
16
|
+
__version__ = "2.5.17"
|
17
17
|
__build__ = "2025-06-25"
|
18
18
|
__maintainer__ = "Marcin Szczygliński"
|
19
19
|
__github__ = "https://github.com/szczyglis-dev/py-gpt"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"__meta__": {
|
3
|
-
"version": "2.5.
|
4
|
-
"app.version": "2.5.
|
3
|
+
"version": "2.5.17",
|
4
|
+
"app.version": "2.5.17",
|
5
5
|
"updated_at": "2025-06-25T00:00:00"
|
6
6
|
},
|
7
7
|
"access.audio.event.speech": false,
|
@@ -198,7 +198,7 @@
|
|
198
198
|
"llama.idx.auto.index": "base",
|
199
199
|
"llama.idx.auto.modes": "chat,completion,vision,assistant,langchain,llama_index,agent",
|
200
200
|
"llama.idx.chat.mode": "context",
|
201
|
-
"llama.idx.current":
|
201
|
+
"llama.idx.current": null,
|
202
202
|
"llama.idx.custom_meta": [
|
203
203
|
{
|
204
204
|
"extensions": "*",
|
@@ -307,6 +307,7 @@
|
|
307
307
|
"render.open_gl": false,
|
308
308
|
"render.plain": false,
|
309
309
|
"render.code_syntax": "github-dark",
|
310
|
+
"remote_tools.web_search": true,
|
310
311
|
"send_clear": true,
|
311
312
|
"send_mode": 2,
|
312
313
|
"store_history": true,
|
@@ -1198,6 +1198,19 @@
|
|
1198
1198
|
"step": null,
|
1199
1199
|
"advanced": false
|
1200
1200
|
},
|
1201
|
+
"remote_tools.web_search": {
|
1202
|
+
"section": "remote_tools",
|
1203
|
+
"type": "bool",
|
1204
|
+
"slider": false,
|
1205
|
+
"label": "settings.remote_tools.web_search",
|
1206
|
+
"description": "settings.remote_tools.web_search.desc",
|
1207
|
+
"value": true,
|
1208
|
+
"min": null,
|
1209
|
+
"max": null,
|
1210
|
+
"multiplier": null,
|
1211
|
+
"step": null,
|
1212
|
+
"advanced": false
|
1213
|
+
},
|
1201
1214
|
"llama.idx.list": {
|
1202
1215
|
"section": "llama-index",
|
1203
1216
|
"type": "dict",
|
@@ -899,6 +899,8 @@ settings.prompt.expert = Experte: Masteraufforderung
|
|
899
899
|
settings.prompt.expert.desc = Anweisung (Systemaufforderung) für den Master-Experten, wie man Sklavenexperten handhabt. Anweisungen für Sklavenexperten werden aus ihren Voreinstellungen gegeben.
|
900
900
|
settings.prompt.img = DALL-E: Bildgenerierung
|
901
901
|
settings.prompt.img.desc = Aufforderung zur Erzeugung von Anweisungen für DALL-E (falls Rohmodus deaktiviert ist). Nur im Bildmodus.
|
902
|
+
settings.remote_tools.web_search = Web Search
|
903
|
+
settings.remote_tools.web_search.desc = Aktiviert das `web_search` Remote-Tool im Chat-Modus / über die OpenAI Responses API.
|
902
904
|
settings.render.code_syntax = Stil der Syntaxhervorhebung für Code
|
903
905
|
settings.render.plain = Markdown-Formatierung in der Ausgabe deaktivieren (RAW-Textmodus)
|
904
906
|
settings.restart.required = Ein Neustart der Anwendung ist notwendig, damit die Änderungen für diese Option übernommen werden.
|
@@ -918,6 +920,7 @@ settings.section.images = Bilder
|
|
918
920
|
settings.section.layout = Layout
|
919
921
|
settings.section.llama_index = Indizes (LlamaIndex)
|
920
922
|
settings.section.model = Modelle
|
923
|
+
settings.section.remote_tools = Remote tools
|
921
924
|
settings.section.updates = Aktualisierungen
|
922
925
|
settings.section.vision = Vision
|
923
926
|
settings.store_history = Verlauf speichern
|
@@ -1127,6 +1127,8 @@ settings.prompt.expert = Expert: Master prompt
|
|
1127
1127
|
settings.prompt.expert.desc = Instruction (system prompt) for Master expert on how to handle slave experts. Instructions for slave experts are given from their presets.
|
1128
1128
|
settings.prompt.img = DALL-E: image generation
|
1129
1129
|
settings.prompt.img.desc = Prompt for generating prompts for DALL-E (if raw-mode is disabled). Image mode only.
|
1130
|
+
settings.remote_tools.web_search = Web Search
|
1131
|
+
settings.remote_tools.web_search.desc = Enable `web_search` remote tool in Chat mode / via OpenAI Responses API.
|
1130
1132
|
settings.render.code_syntax = Code syntax highlight
|
1131
1133
|
settings.render.engine = Rendering engine
|
1132
1134
|
settings.render.open_gl = OpenGL hardware acceleration
|
@@ -1162,6 +1164,7 @@ settings.section.llama-index.store = Vector Store
|
|
1162
1164
|
settings.section.llama-index.update = Update
|
1163
1165
|
settings.section.model = Models
|
1164
1166
|
settings.section.prompts = Prompts
|
1167
|
+
settings.section.remote_tools = Remote tools
|
1165
1168
|
settings.section.tab.general = General
|
1166
1169
|
settings.section.updates = Updates
|
1167
1170
|
settings.section.vision = Vision
|
@@ -899,6 +899,8 @@ settings.prompt.expert = Experto: Master prompt
|
|
899
899
|
settings.prompt.expert.desc = Instrucción (prompt del sistema) para el experto Master cómo manejar a los expertos subordinados. Las instrucciones para los expertos subordinados se dan desde sus presets.
|
900
900
|
settings.prompt.img = DALL-E: generación de imagen
|
901
901
|
settings.prompt.img.desc = Mensaje para generar comandos para DALL-E (si el modo crudo está desactivado). Solo modo de imagen.
|
902
|
+
settings.remote_tools.web_search = Web Search
|
903
|
+
settings.remote_tools.web_search.desc = Habilitar la herramienta remota `web_search` en modo Chat / a través de la API de OpenAI Responses.
|
902
904
|
settings.render.code_syntax = Estilo de resaltado de sintaxis de código
|
903
905
|
settings.render.plain = Desactivar el formato markdown en la salida (modo de texto plano RAW)
|
904
906
|
settings.restart.required = Es necesario reiniciar la aplicación para que los cambios en esta opción se apliquen.
|
@@ -918,6 +920,7 @@ settings.section.images = Imágenes
|
|
918
920
|
settings.section.layout = Diseño
|
919
921
|
settings.section.llama_index = Índices (LlamaIndex)
|
920
922
|
settings.section.model = Modelos
|
923
|
+
settings.section.remote_tools = Remote tools
|
921
924
|
settings.section.updates = Actualizaciones
|
922
925
|
settings.section.vision = Visión
|
923
926
|
settings.store_history = Almacenar historial
|
@@ -899,6 +899,8 @@ settings.prompt.expert = Expert : Master prompt
|
|
899
899
|
settings.prompt.expert.desc = Instruction (prompt système) pour l'expert Master sur comment gérer les experts esclaves. Les instructions pour les experts esclaves sont données à partir de leurs presets.
|
900
900
|
settings.prompt.img = DALL-E: génération d'image
|
901
901
|
settings.prompt.img.desc = Prompt pour générer des commandes pour DALL-E (si le mode brut est désactivé). Mode image uniquement.
|
902
|
+
settings.remote_tools.web_search = Web Search
|
903
|
+
settings.remote_tools.web_search.desc = Activer l'outil distant `web_search` en mode Chat / via l'API OpenAI Responses.
|
902
904
|
settings.render.code_syntax = Style de mise en évidence de la syntaxe du code
|
903
905
|
settings.render.plain = Désactiver le formatage markdown dans la sortie (mode texte brut RAW)
|
904
906
|
settings.restart.required = Un redémarrage de l'application est requis pour que les modifications de cette option soient appliquées.
|
@@ -918,6 +920,7 @@ settings.section.images = Images
|
|
918
920
|
settings.section.layout = Mise en page
|
919
921
|
settings.section.llama_index = Indexes (LlamaIndex)
|
920
922
|
settings.section.model = Modèles
|
923
|
+
settings.section.remote_tools = Remote tools
|
921
924
|
settings.section.updates = Mises à jour
|
922
925
|
settings.section.vision = Vision
|
923
926
|
settings.store_history = Stocker l'historique
|
@@ -900,6 +900,8 @@ settings.prompt.expert = Esperto: Master prompt
|
|
900
900
|
settings.prompt.expert.desc = Istruzione (prompt del sistema) per l'esperto Master su come gestire gli esperti subalterni. Le istruzioni per gli esperti subalterni sono date dalle loro preimpostazioni.
|
901
901
|
settings.prompt.img = DALL-E: generazione immagine
|
902
902
|
settings.prompt.img.desc = Prompt per generare comandi per DALL-E (se la modalità grezza è disabilitata). Solo modalità immagine.
|
903
|
+
settings.remote_tools.web_search = Web Search
|
904
|
+
settings.remote_tools.web_search.desc = Abilita lo strumento remoto `web_search` in modalità Chat / tramite OpenAI Responses API.
|
903
905
|
settings.render.code_syntax = Stile di evidenziazione della sintassi del codice
|
904
906
|
settings.restart.required = È necessario riavviare l'applicazione affinché le modifiche a questa opzione siano applicate.
|
905
907
|
settings.section.access = Accessibilità
|
@@ -918,6 +920,7 @@ settings.section.images = Immagini
|
|
918
920
|
settings.section.layout = Layout
|
919
921
|
settings.section.llama_index = Indici (LlamaIndex)
|
920
922
|
settings.section.model = Modelli
|
923
|
+
settings.section.remote_tools = Remote tools
|
921
924
|
settings.section.updates = Aggiornamenti
|
922
925
|
settings.section.vision = Visione
|
923
926
|
settings.store_history = Conserva la cronologia
|
@@ -900,6 +900,8 @@ settings.prompt.expert = Ekspert: Główna wskazówka
|
|
900
900
|
settings.prompt.expert.desc = Instrukcja (systemowa wskazówka) dla głównego eksperta, jak obsługiwać ekspertów pomocniczych. Instrukcje dla ekspertów pomocniczych są podawane z ich ustawień.
|
901
901
|
settings.prompt.img = DALL-E: generowanie obrazu
|
902
902
|
settings.prompt.img.desc = Prompt do generowania poleceń dla DALL-E (jeśli surowy tryb jest wyłączony). Tylko tryb obrazu.
|
903
|
+
settings.remote_tools.web_search = Web Search
|
904
|
+
settings.remote_tools.web_search.desc = Włącz zdalne narzędzie `web_search` w trybie czatu / używając OpenAI Responses API.
|
903
905
|
settings.render.code_syntax = Styl podświetlenia składni kodu
|
904
906
|
settings.render.plain = Wyłącz formatowanie markdown w wyjściu (tryb plain-text)
|
905
907
|
settings.restart.required = Restart aplikacji jest wymagany, aby zmiany dla tej opcji zostały wprowadzone.
|
@@ -919,6 +921,7 @@ settings.section.images = Obrazy
|
|
919
921
|
settings.section.layout = Wygląd
|
920
922
|
settings.section.llama_index = Indeksy (LlamaIndex)
|
921
923
|
settings.section.model = Modele
|
924
|
+
settings.section.remote_tools = Zdalne narzędzia
|
922
925
|
settings.section.updates = Aktualizacje
|
923
926
|
settings.section.vision = Wizja
|
924
927
|
settings.store_history = Zapisuj historię
|
@@ -899,6 +899,8 @@ settings.prompt.expert = Експерт: Основний запит
|
|
899
899
|
settings.prompt.expert.desc = Інструкція (системний запит) для ведучого експерта, як керувати підеекспертами. Інструкції для підеекспертів даються з їхніх налаштувань.
|
900
900
|
settings.prompt.img = DALL-E: генерація зображення
|
901
901
|
settings.prompt.img.desc = Підказка для генерації команддля DALL-E (якщо вимкнено сирівний режим). Тільки режим зображення.
|
902
|
+
settings.remote_tools.web_search = Web Search
|
903
|
+
settings.remote_tools.web_search.desc = Увімкнути віддалений інструмент `web_search` у режимі чату / через API відповідей OpenAI.
|
902
904
|
settings.render.code_syntax = Стиль підсвічування синтаксису коду
|
903
905
|
settings.render.plain = Вимкнути форматування markdown у виводі (режим простого тексту RAW)
|
904
906
|
settings.restart.required = Для внесення змін у цю опцію необхідно перезапустити програму.
|
@@ -918,6 +920,7 @@ settings.section.images = Зображення
|
|
918
920
|
settings.section.layout = Макет
|
919
921
|
settings.section.llama_index = Індекси (LlamaIndex)
|
920
922
|
settings.section.model = Моделі
|
923
|
+
settings.section.remote_tools = Remote tools
|
921
924
|
settings.section.updates = Оновлення
|
922
925
|
settings.section.vision = Візія
|
923
926
|
settings.store_history = Зберігати історію
|
@@ -1008,6 +1008,8 @@ settings.prompt.expert = 专家:主提示
|
|
1008
1008
|
settings.prompt.expert.desc = 对主专家如何处理奴隶专家的指令(系统提示)。奴隶专家的指令根据他们的预设给出。
|
1009
1009
|
settings.prompt.img = DALL-E:生成图像
|
1010
1010
|
settings.prompt.img.desc = 提示用于生成DALL-E的命令(如果原始模式被禁用)。仅图像模式。
|
1011
|
+
settings.remote_tools.web_search = Web Search
|
1012
|
+
settings.remote_tools.web_search.desc = 在聊天模式/通过 OpenAI Responses API 启用 `web_search` 远程工具。
|
1011
1013
|
settings.render.code_syntax = 代码语法高亮样式
|
1012
1014
|
settings.render.plain = 在輸出中禁用markdown格式化(RAW純文本模式)
|
1013
1015
|
settings.restart.required = 此選項生效需要重新啟動應用程序。
|
@@ -1032,6 +1034,7 @@ settings.section.llama-index.indexing = 索引
|
|
1032
1034
|
settings.section.llama-index.store = 向量存儲
|
1033
1035
|
settings.section.llama-index.update = 更新
|
1034
1036
|
settings.section.model = 模型
|
1037
|
+
settings.section.remote_tools = Remote tools
|
1035
1038
|
settings.section.tab.general = 一般設置
|
1036
1039
|
settings.section.updates = 更新
|
1037
1040
|
settings.section.vision = 視覺
|
@@ -1855,6 +1855,13 @@ class Patch:
|
|
1855
1855
|
data["api_endpoint_perplexity"] = "https://api.perplexity.ai"
|
1856
1856
|
updated = True
|
1857
1857
|
|
1858
|
+
# < 2.5.17
|
1859
|
+
if old < parse_version("2.5.17"):
|
1860
|
+
print("Migrating config from < 2.5.17...")
|
1861
|
+
if 'remote_tools.web_search' not in data:
|
1862
|
+
data["remote_tools.web_search"] = True
|
1863
|
+
updated = True
|
1864
|
+
|
1858
1865
|
# update file
|
1859
1866
|
migrated = False
|
1860
1867
|
if updated:
|
@@ -117,7 +117,8 @@ class Responses:
|
|
117
117
|
|
118
118
|
# extend tools with external tools
|
119
119
|
if not model.id.startswith("o1") and not model.id.startswith("o3"):
|
120
|
-
|
120
|
+
if self.window.core.config.get("remote_tools.web_search", False):
|
121
|
+
tools.append({"type": "web_search_preview"})
|
121
122
|
|
122
123
|
# tool calls are not supported for o1-mini and o1-preview
|
123
124
|
if (model.id is not None
|
@@ -299,6 +299,8 @@ class Ollama(FunctionCallingLLM):
|
|
299
299
|
error_on_no_tool_call: bool = True,
|
300
300
|
) -> List[ToolSelection]:
|
301
301
|
"""Predict and call the tool."""
|
302
|
+
if response.message.additional_kwargs.get("tool_calls", []) is None:
|
303
|
+
response.message.additional_kwargs["tool_calls"] = []
|
302
304
|
tool_calls = response.message.additional_kwargs.get("tool_calls", [])
|
303
305
|
if len(tool_calls) < 1:
|
304
306
|
if error_on_no_tool_call:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.5.
|
3
|
+
Version: 2.5.17
|
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, DeepSeek, 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
|
License: MIT
|
6
6
|
Keywords: py_gpt,py-gpt,pygpt,desktop,app,o1,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,deepseek,bielik,claude,tts,whisper,vision,chatgpt,dall-e,chat,chatbot,assistant,text completion,image generation,ai,api,openai,api key,langchain,llama-index,ollama,presets,ui,qt,pyside
|
@@ -100,7 +100,7 @@ Description-Content-Type: text/markdown
|
|
100
100
|
|
101
101
|
[](https://snapcraft.io/pygpt)
|
102
102
|
|
103
|
-
Release: **2.5.
|
103
|
+
Release: **2.5.17** | build: **2025-06-25** | Python: **>=3.10, <3.13**
|
104
104
|
|
105
105
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
106
106
|
>
|
@@ -4124,6 +4124,11 @@ may consume additional tokens that are not displayed in the main window.
|
|
4124
4124
|
|
4125
4125
|
## Recent changes:
|
4126
4126
|
|
4127
|
+
**2.5.17 (2025-06-25)**
|
4128
|
+
|
4129
|
+
- Added settings for enable/disable Remote Tools via Responses API in Chat mode: Config -> Settings -> Remote tools. Currently only web-search-preview tool is available, rest of tools coming soon.
|
4130
|
+
- Fixed context summarization in Ollama provider.
|
4131
|
+
|
4127
4132
|
**2.5.16 (2025-06-25)**
|
4128
4133
|
|
4129
4134
|
- OpenAI API upgraded to 1.91.0.
|
@@ -1,6 +1,6 @@
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=DeRVhaz-U56XcrMvkwVKFIBaBTOowSxRI8zlJ4LaqBA,84033
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
3
|
-
pygpt_net/__init__.py,sha256=
|
3
|
+
pygpt_net/__init__.py,sha256=jlnpVlIhAHZhMti33ojHl73UPhBNI1XiD8QFILXDz58,1373
|
4
4
|
pygpt_net/app.py,sha256=XXjn9XaKHGRcsHN8mMuqbRHAg8_Da0GLmACUU9ddjBc,16217
|
5
5
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
6
6
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
@@ -248,8 +248,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
248
248
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
249
249
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
250
250
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
251
|
-
pygpt_net/data/config/config.json,sha256=
|
252
|
-
pygpt_net/data/config/models.json,sha256=
|
251
|
+
pygpt_net/data/config/config.json,sha256=LDAZNmri0dzoRdc8DYQq0OF1NufvMiHfxbcbsOk4KzA,20116
|
252
|
+
pygpt_net/data/config/models.json,sha256=n6ZSt8jz7az-3beeJw6VxV-MemHmrqE1gKEIWBSH90I,124691
|
253
253
|
pygpt_net/data/config/modes.json,sha256=-q4Q4RsyoF2rLgvS0On59zXK0m0ml_kx6I0hNfLZRDY,2085
|
254
254
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
255
255
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
@@ -271,8 +271,8 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
271
271
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
272
272
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
273
273
|
pygpt_net/data/config/presets/joke_expert.json,sha256=aFBFCY97Uba71rRq0MSeakXaOj8yuaUqekQ842YHv64,683
|
274
|
-
pygpt_net/data/config/settings.json,sha256=
|
275
|
-
pygpt_net/data/config/settings_section.json,sha256=
|
274
|
+
pygpt_net/data/config/settings.json,sha256=CcJXMZJcptyLbD1keW7-DMRMuDJR1Ixf5jXUepXCalI,51192
|
275
|
+
pygpt_net/data/config/settings_section.json,sha256=Ng6kgmgxVmvt-KYFIqZvIDAEK4DfISNjNVF55DFWNjs,1082
|
276
276
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
277
277
|
pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUzC0,1122
|
278
278
|
pygpt_net/data/css/markdown.dark.css,sha256=ixAwuT69QLesZttKhO4RAy-QukplZwwfXCZsWLN9TP4,730
|
@@ -1487,14 +1487,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff,sha256=4U_tArGrp86fW
|
|
1487
1487
|
pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6vfGGkUzDNY7aU543kxlB8rL9SiH2jAs,13568
|
1488
1488
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
1489
1489
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
1490
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
1491
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
1492
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
1493
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
1494
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
1495
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
1496
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
1497
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
1490
|
+
pygpt_net/data/locale/locale.de.ini,sha256=MCv-wuxxnSwN4Jwxy_6EtcqgCD4Q2fFdhzA7KbKWfLo,66095
|
1491
|
+
pygpt_net/data/locale/locale.en.ini,sha256=jx0MF-Y3xtJKJdq8dXq0NY5CcOkFYWrMdgXHjitX1Tc,78763
|
1492
|
+
pygpt_net/data/locale/locale.es.ini,sha256=OVNmCMA6Xww3dFlNGbl4z9BSO5SzoxTFB_RvpUOEq6o,66253
|
1493
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=I0XkyYpE9gF6il5OJlDWA6dN5MG0H3wqP9SMJBttds0,68311
|
1494
|
+
pygpt_net/data/locale/locale.it.ini,sha256=PILGaGTCumfULasxW-2eJ0d3-06QJJJWC8_KEvjuuAs,64951
|
1495
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=mc49HhxN6C1feB0W5mBFZzXAKQoHQPLKhIuh6JFwPDE,65004
|
1496
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=rmD9S3iTxuOZRAj65RDxzMC6do-IM4X4zsXhGT_Gg-0,90432
|
1497
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=Vf8pOvpa20yq-dAfgmxJgvNDIN-gvb6csvGHrhSUpQ0,66458
|
1498
1498
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
1499
1499
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=88LkZUpilbV9l4QDbMyIdq_K9sbWt-CQPpavEttPjJU,1489
|
1500
1500
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
@@ -1822,7 +1822,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
1822
1822
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1823
1823
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
1824
1824
|
pygpt_net/provider/core/config/json_file.py,sha256=P78SRQpNr_nF7TYftYLnHl_DVo7GLPNs4_lvw97sqq8,5122
|
1825
|
-
pygpt_net/provider/core/config/patch.py,sha256=
|
1825
|
+
pygpt_net/provider/core/config/patch.py,sha256=5xaSuG6x9Dtgpr_JBQR41qrj3pIJkwhZhxsgAc09waM,97698
|
1826
1826
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1827
1827
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
1828
1828
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=G2pB7kZfREJRLJZmfv3DKTslXC-K7EhNN2sn56q6BFA,11753
|
@@ -1873,7 +1873,7 @@ pygpt_net/provider/gpt/audio.py,sha256=frHElxYVaHYkNDCMJ9tQMoGqxSaZ-s5oPlAEHUAck
|
|
1873
1873
|
pygpt_net/provider/gpt/chat.py,sha256=W-p6njN843JyExMcyqD_ClzmWv8de9F4-LdLwjS_4Pg,10406
|
1874
1874
|
pygpt_net/provider/gpt/completion.py,sha256=OusKOb4G11aYRJUjRWcMsf80cRQQvee9DzRe99ubLmc,6164
|
1875
1875
|
pygpt_net/provider/gpt/image.py,sha256=ZqYrtVTcfPa8Kf08pWLKy1Zhvi6pu61GBlslRBauoK0,8967
|
1876
|
-
pygpt_net/provider/gpt/responses.py,sha256=
|
1876
|
+
pygpt_net/provider/gpt/responses.py,sha256=qhgp-6aasIrvseOhW0FSYggajeeBWfoisGUPWJ7gnGk,9639
|
1877
1877
|
pygpt_net/provider/gpt/store.py,sha256=FaVd7SBC_QQ0W26_odJwcrLH54CSq0UZXZnuwIhRm54,17315
|
1878
1878
|
pygpt_net/provider/gpt/summarizer.py,sha256=449yUqxwshSqeVoO7WIZasTpYlopG1Z_1ShPE5rAnvc,2260
|
1879
1879
|
pygpt_net/provider/gpt/utils.py,sha256=O0H0EPb4lXUMfE1bFdWB56yuWLv7M5owVIGWRyDDv-E,855
|
@@ -1891,7 +1891,7 @@ pygpt_net/provider/llms/hugging_face.py,sha256=HLw0x8O0HuFNI-7yeI4m-ksl2KPpyENqT
|
|
1891
1891
|
pygpt_net/provider/llms/hugging_face_api.py,sha256=EmMQL4QJnE-2SZwHg102ZqSZzi8WMIo84inG2bRiaw8,2892
|
1892
1892
|
pygpt_net/provider/llms/local.py,sha256=s6Myi1dZ2fTCCno6UHT-gbffe0g5b_sYxnvMj5P8LlI,1393
|
1893
1893
|
pygpt_net/provider/llms/ollama.py,sha256=bA5m_IDSOyHPAOeCnsmxf1jaaTW8hiV4HgTT-Au7R0s,3985
|
1894
|
-
pygpt_net/provider/llms/ollama_custom.py,sha256=
|
1894
|
+
pygpt_net/provider/llms/ollama_custom.py,sha256=WVbLiEEwnz5loKiLy7EYmpuWz0Tp5Vhd1vOUB2051kI,24167
|
1895
1895
|
pygpt_net/provider/llms/openai.py,sha256=8HUn-YAVM4YQ10fBbsnGvv0eAOFlyKURVPlv9aL8d7U,3730
|
1896
1896
|
pygpt_net/provider/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1897
1897
|
pygpt_net/provider/loaders/base.py,sha256=3-qzzGAF2jxhriNHjE3Y2GtDXxs1_2_BIloaVJS4qzQ,3101
|
@@ -2184,8 +2184,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=2LebPHa_e5lvBqnIVzjwsLcFMoc11BonXgAUs
|
|
2184
2184
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2185
2185
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2186
2186
|
pygpt_net/utils.py,sha256=WtrdagJ-BlCjxGEEVq2rhsyAZMcU6JqltCXzOs823po,6707
|
2187
|
-
pygpt_net-2.5.
|
2188
|
-
pygpt_net-2.5.
|
2189
|
-
pygpt_net-2.5.
|
2190
|
-
pygpt_net-2.5.
|
2191
|
-
pygpt_net-2.5.
|
2187
|
+
pygpt_net-2.5.17.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
2188
|
+
pygpt_net-2.5.17.dist-info/METADATA,sha256=wlBPjxYTbqKADLNv3Njh_Qob-UWrQkJK2pD6Bg455YY,171888
|
2189
|
+
pygpt_net-2.5.17.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
2190
|
+
pygpt_net-2.5.17.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2191
|
+
pygpt_net-2.5.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|