pygpt-net 2.6.20__py3-none-any.whl → 2.6.22__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 +13 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +3 -1
- pygpt_net/controller/__init__.py +4 -8
- pygpt_net/controller/access/voice.py +2 -2
- pygpt_net/controller/agent/agent.py +130 -2
- pygpt_net/controller/agent/experts.py +93 -96
- pygpt_net/controller/agent/llama.py +2 -1
- pygpt_net/controller/assistant/assistant.py +18 -1
- pygpt_net/controller/assistant/batch.py +2 -3
- pygpt_net/controller/assistant/editor.py +2 -2
- pygpt_net/controller/assistant/files.py +2 -3
- pygpt_net/controller/assistant/store.py +2 -2
- pygpt_net/controller/attachment/attachment.py +17 -1
- pygpt_net/controller/audio/audio.py +2 -2
- pygpt_net/controller/camera/camera.py +15 -7
- pygpt_net/controller/chat/chat.py +2 -2
- pygpt_net/controller/chat/common.py +50 -33
- pygpt_net/controller/chat/image.py +67 -77
- pygpt_net/controller/chat/input.py +94 -166
- pygpt_net/controller/chat/output.py +83 -140
- pygpt_net/controller/chat/response.py +83 -102
- pygpt_net/controller/chat/text.py +116 -149
- pygpt_net/controller/ctx/common.py +2 -1
- pygpt_net/controller/ctx/ctx.py +87 -6
- pygpt_net/controller/files/files.py +13 -1
- pygpt_net/controller/idx/idx.py +26 -2
- pygpt_net/controller/idx/indexer.py +85 -76
- pygpt_net/controller/kernel/reply.py +53 -66
- pygpt_net/controller/kernel/stack.py +16 -16
- pygpt_net/controller/lang/lang.py +52 -34
- pygpt_net/controller/model/importer.py +3 -2
- pygpt_net/controller/model/model.py +62 -3
- pygpt_net/controller/notepad/notepad.py +86 -84
- pygpt_net/controller/plugins/settings.py +3 -4
- pygpt_net/controller/settings/editor.py +4 -4
- pygpt_net/controller/settings/profile.py +105 -124
- pygpt_net/controller/theme/menu.py +154 -57
- pygpt_net/controller/theme/nodes.py +51 -44
- pygpt_net/controller/theme/theme.py +33 -9
- pygpt_net/controller/tools/tools.py +2 -2
- pygpt_net/controller/ui/tabs.py +2 -3
- pygpt_net/controller/ui/ui.py +16 -2
- pygpt_net/core/agents/observer/evaluation.py +3 -3
- pygpt_net/core/agents/provider.py +25 -3
- pygpt_net/core/agents/runner.py +4 -1
- pygpt_net/core/agents/runners/llama_workflow.py +19 -7
- pygpt_net/core/agents/runners/loop.py +3 -1
- pygpt_net/core/agents/runners/openai_workflow.py +17 -3
- pygpt_net/core/agents/tools.py +4 -1
- pygpt_net/core/bridge/context.py +34 -37
- pygpt_net/core/ctx/container.py +13 -12
- pygpt_net/core/ctx/ctx.py +1 -1
- pygpt_net/core/ctx/output.py +7 -4
- pygpt_net/core/db/database.py +2 -2
- pygpt_net/core/debug/console/console.py +2 -2
- pygpt_net/core/debug/debug.py +12 -1
- pygpt_net/core/dispatcher/dispatcher.py +24 -1
- pygpt_net/core/events/app.py +7 -7
- pygpt_net/core/events/control.py +26 -26
- pygpt_net/core/events/event.py +6 -3
- pygpt_net/core/events/kernel.py +2 -2
- pygpt_net/core/events/render.py +13 -13
- pygpt_net/core/experts/experts.py +76 -82
- pygpt_net/core/experts/worker.py +12 -12
- pygpt_net/core/filesystem/actions.py +1 -2
- pygpt_net/core/models/models.py +5 -1
- pygpt_net/core/models/ollama.py +14 -5
- pygpt_net/core/render/plain/helpers.py +2 -5
- pygpt_net/core/render/plain/renderer.py +26 -30
- pygpt_net/core/render/web/body.py +1 -1
- pygpt_net/core/render/web/helpers.py +2 -2
- pygpt_net/core/render/web/renderer.py +4 -4
- pygpt_net/core/settings/settings.py +43 -13
- pygpt_net/core/tabs/tabs.py +20 -13
- pygpt_net/core/types/__init__.py +2 -1
- pygpt_net/core/types/agent.py +4 -4
- pygpt_net/core/types/base.py +19 -0
- pygpt_net/core/types/console.py +6 -6
- pygpt_net/core/types/mode.py +8 -8
- pygpt_net/core/types/multimodal.py +3 -3
- pygpt_net/core/types/openai.py +2 -1
- pygpt_net/data/config/config.json +5 -5
- pygpt_net/data/config/models.json +19 -3
- pygpt_net/data/config/settings.json +14 -14
- pygpt_net/data/locale/locale.de.ini +4 -1
- pygpt_net/data/locale/locale.en.ini +6 -3
- pygpt_net/data/locale/locale.es.ini +4 -1
- pygpt_net/data/locale/locale.fr.ini +4 -1
- pygpt_net/data/locale/locale.it.ini +4 -1
- pygpt_net/data/locale/locale.pl.ini +5 -4
- pygpt_net/data/locale/locale.uk.ini +4 -1
- pygpt_net/data/locale/locale.zh.ini +4 -1
- pygpt_net/item/ctx.py +256 -240
- pygpt_net/item/model.py +59 -116
- pygpt_net/item/preset.py +122 -105
- pygpt_net/plugin/twitter/plugin.py +2 -2
- pygpt_net/provider/agents/llama_index/workflow/planner.py +3 -3
- pygpt_net/provider/agents/openai/agent.py +4 -12
- pygpt_net/provider/agents/openai/agent_b2b.py +10 -15
- pygpt_net/provider/agents/openai/agent_planner.py +4 -4
- pygpt_net/provider/agents/openai/agent_with_experts.py +3 -7
- pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +4 -8
- pygpt_net/provider/agents/openai/agent_with_feedback.py +4 -8
- pygpt_net/provider/agents/openai/bot_researcher.py +2 -18
- pygpt_net/provider/agents/openai/bots/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py +1 -1
- pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py +1 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py +1 -1
- pygpt_net/provider/agents/openai/bots/research_bot/manager.py +1 -10
- pygpt_net/provider/agents/openai/evolve.py +5 -9
- pygpt_net/provider/agents/openai/supervisor.py +4 -8
- pygpt_net/provider/core/config/patch.py +10 -3
- pygpt_net/provider/core/ctx/db_sqlite/utils.py +43 -43
- pygpt_net/provider/core/model/patch.py +11 -1
- pygpt_net/provider/core/preset/json_file.py +47 -49
- pygpt_net/provider/gpt/agents/experts.py +2 -2
- pygpt_net/tools/audio_transcriber/ui/dialogs.py +44 -54
- pygpt_net/tools/code_interpreter/body.py +1 -2
- pygpt_net/tools/code_interpreter/tool.py +7 -4
- pygpt_net/tools/code_interpreter/ui/html.py +1 -3
- pygpt_net/tools/code_interpreter/ui/widgets.py +2 -3
- pygpt_net/tools/html_canvas/ui/widgets.py +1 -3
- pygpt_net/tools/image_viewer/ui/dialogs.py +40 -37
- pygpt_net/tools/indexer/ui/widgets.py +2 -4
- pygpt_net/tools/media_player/tool.py +2 -5
- pygpt_net/tools/media_player/ui/widgets.py +60 -36
- pygpt_net/tools/text_editor/ui/widgets.py +18 -19
- pygpt_net/tools/translator/ui/widgets.py +39 -35
- pygpt_net/ui/base/context_menu.py +9 -4
- pygpt_net/ui/dialog/db.py +1 -3
- pygpt_net/ui/dialog/models.py +1 -3
- pygpt_net/ui/dialog/models_importer.py +2 -4
- pygpt_net/ui/dialogs.py +34 -30
- pygpt_net/ui/layout/chat/attachments.py +72 -84
- pygpt_net/ui/layout/chat/attachments_ctx.py +40 -44
- pygpt_net/ui/layout/chat/attachments_uploaded.py +36 -39
- pygpt_net/ui/layout/chat/calendar.py +100 -70
- pygpt_net/ui/layout/chat/chat.py +23 -17
- pygpt_net/ui/layout/chat/input.py +95 -118
- pygpt_net/ui/layout/chat/output.py +100 -162
- pygpt_net/ui/layout/chat/painter.py +89 -61
- pygpt_net/ui/layout/ctx/ctx_list.py +43 -52
- pygpt_net/ui/layout/status.py +23 -14
- pygpt_net/ui/layout/toolbox/agent.py +27 -38
- pygpt_net/ui/layout/toolbox/agent_llama.py +42 -45
- pygpt_net/ui/layout/toolbox/assistants.py +42 -38
- pygpt_net/ui/layout/toolbox/computer_env.py +32 -23
- pygpt_net/ui/layout/toolbox/footer.py +13 -16
- pygpt_net/ui/layout/toolbox/image.py +18 -21
- pygpt_net/ui/layout/toolbox/indexes.py +46 -89
- pygpt_net/ui/layout/toolbox/mode.py +20 -7
- pygpt_net/ui/layout/toolbox/model.py +12 -10
- pygpt_net/ui/layout/toolbox/presets.py +68 -52
- pygpt_net/ui/layout/toolbox/prompt.py +31 -58
- pygpt_net/ui/layout/toolbox/toolbox.py +25 -21
- pygpt_net/ui/layout/toolbox/vision.py +20 -22
- pygpt_net/ui/main.py +2 -4
- pygpt_net/ui/menu/about.py +64 -84
- pygpt_net/ui/menu/audio.py +87 -63
- pygpt_net/ui/menu/config.py +121 -127
- pygpt_net/ui/menu/debug.py +69 -76
- pygpt_net/ui/menu/file.py +32 -35
- pygpt_net/ui/menu/menu.py +2 -3
- pygpt_net/ui/menu/plugins.py +69 -33
- pygpt_net/ui/menu/theme.py +45 -46
- pygpt_net/ui/menu/tools.py +56 -60
- pygpt_net/ui/menu/video.py +20 -25
- pygpt_net/ui/tray.py +1 -2
- pygpt_net/ui/widget/audio/bar.py +1 -3
- pygpt_net/ui/widget/audio/input_button.py +3 -4
- pygpt_net/ui/widget/calendar/select.py +1 -2
- pygpt_net/ui/widget/dialog/base.py +12 -9
- pygpt_net/ui/widget/dialog/editor_file.py +20 -23
- pygpt_net/ui/widget/dialog/find.py +25 -24
- pygpt_net/ui/widget/dialog/profile.py +57 -53
- pygpt_net/ui/widget/draw/painter.py +62 -93
- pygpt_net/ui/widget/element/button.py +42 -30
- pygpt_net/ui/widget/element/checkbox.py +23 -15
- pygpt_net/ui/widget/element/group.py +6 -5
- pygpt_net/ui/widget/element/labels.py +1 -2
- pygpt_net/ui/widget/filesystem/explorer.py +93 -102
- pygpt_net/ui/widget/image/display.py +1 -2
- pygpt_net/ui/widget/lists/assistant.py +1 -2
- pygpt_net/ui/widget/lists/attachment.py +1 -2
- pygpt_net/ui/widget/lists/attachment_ctx.py +1 -2
- pygpt_net/ui/widget/lists/context.py +2 -4
- pygpt_net/ui/widget/lists/index.py +1 -2
- pygpt_net/ui/widget/lists/model.py +1 -2
- pygpt_net/ui/widget/lists/model_editor.py +1 -2
- pygpt_net/ui/widget/lists/model_importer.py +1 -2
- pygpt_net/ui/widget/lists/preset.py +1 -2
- pygpt_net/ui/widget/lists/preset_plugins.py +1 -2
- pygpt_net/ui/widget/lists/profile.py +1 -2
- pygpt_net/ui/widget/lists/uploaded.py +1 -2
- pygpt_net/ui/widget/option/checkbox.py +2 -4
- pygpt_net/ui/widget/option/checkbox_list.py +1 -4
- pygpt_net/ui/widget/option/cmd.py +1 -4
- pygpt_net/ui/widget/option/dictionary.py +25 -28
- pygpt_net/ui/widget/option/input.py +1 -3
- pygpt_net/ui/widget/tabs/Input.py +16 -12
- pygpt_net/ui/widget/tabs/body.py +5 -3
- pygpt_net/ui/widget/tabs/layout.py +36 -25
- pygpt_net/ui/widget/tabs/output.py +96 -74
- pygpt_net/ui/widget/textarea/calendar_note.py +1 -2
- pygpt_net/ui/widget/textarea/editor.py +41 -73
- pygpt_net/ui/widget/textarea/find.py +11 -10
- pygpt_net/ui/widget/textarea/html.py +3 -6
- pygpt_net/ui/widget/textarea/input.py +63 -64
- pygpt_net/ui/widget/textarea/notepad.py +54 -38
- pygpt_net/ui/widget/textarea/output.py +65 -54
- pygpt_net/ui/widget/textarea/search_input.py +5 -4
- pygpt_net/ui/widget/textarea/web.py +2 -4
- pygpt_net/ui/widget/vision/camera.py +2 -31
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/METADATA +25 -154
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/RECORD +218 -217
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.22.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.08.
|
|
9
|
+
# Updated Date: 2025.08.24 23:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
from PySide6.QtCore import Qt, QObject, Signal, Slot, QEvent, QTimer
|
|
@@ -24,8 +24,6 @@ from pygpt_net.utils import trans, mem_clean
|
|
|
24
24
|
|
|
25
25
|
SHARED_PROFILE = None
|
|
26
26
|
|
|
27
|
-
import pygpt_net.icons_rc
|
|
28
|
-
|
|
29
27
|
class ChatWebOutput(QWebEngineView):
|
|
30
28
|
def __init__(self, window=None):
|
|
31
29
|
"""
|
|
@@ -327,7 +325,7 @@ class ChatWebOutput(QWebEngineView):
|
|
|
327
325
|
menu.addAction(action)
|
|
328
326
|
|
|
329
327
|
# copy to
|
|
330
|
-
copy_to_menu = self.window.ui.context_menu.get_copy_to_menu(
|
|
328
|
+
copy_to_menu = self.window.ui.context_menu.get_copy_to_menu(menu, self.get_selected_text())
|
|
331
329
|
menu.addMenu(copy_to_menu)
|
|
332
330
|
|
|
333
331
|
# save as (selected) - get selection at the moment of click
|
|
@@ -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.08.24 23:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
from PySide6.QtCore import Qt
|
|
@@ -57,33 +57,4 @@ class VideoLabel(QLabel):
|
|
|
57
57
|
"""
|
|
58
58
|
if event.button() == Qt.LeftButton:
|
|
59
59
|
self.window.controller.camera.manual_capture()
|
|
60
|
-
|
|
61
|
-
pass
|
|
62
|
-
elif event.button() == Qt.MiddleButton:
|
|
63
|
-
pass
|
|
64
|
-
|
|
65
|
-
def mouseDoubleClickEvent(self, event):
|
|
66
|
-
"""
|
|
67
|
-
Mouse double click
|
|
68
|
-
|
|
69
|
-
:param event: mouse event
|
|
70
|
-
"""
|
|
71
|
-
if event.button() == Qt.LeftButton:
|
|
72
|
-
pass
|
|
73
|
-
elif event.button() == Qt.RightButton:
|
|
74
|
-
pass
|
|
75
|
-
elif event.button() == Qt.MiddleButton:
|
|
76
|
-
pass
|
|
77
|
-
|
|
78
|
-
def mouseReleaseEvent(self, event):
|
|
79
|
-
"""
|
|
80
|
-
Mouse release
|
|
81
|
-
|
|
82
|
-
:param event: mouse event
|
|
83
|
-
"""
|
|
84
|
-
if event.button() == Qt.LeftButton:
|
|
85
|
-
pass
|
|
86
|
-
elif event.button() == Qt.RightButton:
|
|
87
|
-
pass
|
|
88
|
-
elif event.button() == Qt.MiddleButton:
|
|
89
|
-
pass
|
|
60
|
+
super(VideoLabel, self).mousePressEvent(event)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
4
|
-
Summary: Desktop AI Assistant powered by: OpenAI GPT-5, o1, o3,
|
|
3
|
+
Version: 2.6.22
|
|
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
|
-
Keywords:
|
|
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
|
|
7
7
|
Author: Marcin Szczyglinski
|
|
8
8
|
Author-email: info@pygpt.net
|
|
9
9
|
Requires-Python: >=3.10,<3.14
|
|
@@ -111,7 +111,7 @@ Description-Content-Type: text/markdown
|
|
|
111
111
|
|
|
112
112
|
[](https://snapcraft.io/pygpt)
|
|
113
113
|
|
|
114
|
-
Release: **2.6.
|
|
114
|
+
Release: **2.6.22** | build: **2025-08-25** | Python: **>=3.10, <3.14**
|
|
115
115
|
|
|
116
116
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
117
117
|
>
|
|
@@ -123,15 +123,15 @@ Release: **2.6.20** | build: **2025-08-22** | Python: **>=3.10, <3.14**
|
|
|
123
123
|
|
|
124
124
|
## Overview
|
|
125
125
|
|
|
126
|
-
**PyGPT** is **all-in-one** Desktop AI Assistant that provides direct interaction with OpenAI language models, including `
|
|
126
|
+
**PyGPT** is **all-in-one** Desktop AI Assistant that provides direct interaction with OpenAI language models, including `GPT-5`, `GPT-4`, `o1`, `o3` and more, through the `OpenAI API`. By utilizing `LlamaIndex`, the application also supports alternative LLMs, like those available on `HuggingFace`, locally available models via `Ollama` (like `gpt-oss`, `Llama 3`,`Mistral`, `DeepSeek V3/R1` or `Bielik`), and other models like `Google Gemini`, `Anthropic Claude`, `Perplexity / Sonar`, and `xAI Grok`.
|
|
127
127
|
|
|
128
|
-
This assistant offers multiple modes of operation such as chat, assistants, completions, and image-related tasks
|
|
128
|
+
This assistant offers multiple modes of operation such as chat, assistants, agents, completions, and image-related tasks like image generation and 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`.
|
|
129
129
|
|
|
130
130
|
For audio interactions, **PyGPT** includes speech synthesis using the `Microsoft Azure`, `Google`, `Eleven Labs` and `OpenAI` Text-To-Speech services. Additionally, it features speech recognition capabilities provided by `OpenAI Whisper`, `Google` and `Bing` enabling the application to understand spoken commands and transcribe audio inputs into text. It features context memory with save and load functionality, enabling users to resume interactions from predefined points in the conversation. Prompt creation and management are streamlined through an intuitive preset system.
|
|
131
131
|
|
|
132
|
-
**PyGPT**'s functionality extends through plugin support, allowing for custom enhancements. Its multi-modal capabilities make it an adaptable tool for a range of AI-assisted operations, such as text-based interactions, system automation, daily assisting, vision applications, natural language processing, code generation and image creation.
|
|
132
|
+
**PyGPT**'s functionality extends through plugin support, allowing for custom enhancements (with multiple plugins included). Its multi-modal capabilities make it an adaptable tool for a range of AI-assisted operations, such as text-based interactions, system automation, daily assisting, vision applications, natural language processing, code generation and image creation.
|
|
133
133
|
|
|
134
|
-
Multiple operation modes are included, such as chat, text completion, assistant, vision, Chat with Files (via `LlamaIndex`), commands execution, external API calls and image generation, making **PyGPT** a multi-tool for many AI-driven tasks.
|
|
134
|
+
Multiple operation modes are included, such as chat, text completion, assistant, agents, vision, Chat with Files (via `LlamaIndex`), commands execution, external API calls and image generation, making **PyGPT** a multi-tool for many AI-driven tasks.
|
|
135
135
|
|
|
136
136
|
**Showcase** (mp4, version `2.5.65`, build `2025-07-24`):
|
|
137
137
|
|
|
@@ -152,7 +152,7 @@ You can download compiled 64-bit versions for Windows and Linux here: https://py
|
|
|
152
152
|
- Desktop AI Assistant for `Linux`, `Windows` and `Mac`, written in Python.
|
|
153
153
|
- Works similarly to `ChatGPT`, but locally (on a desktop computer).
|
|
154
154
|
- 12 modes of operation: Chat, Chat with Files, Chat with Audio, Research (Perplexity), Completion, Image generation, Vision, Assistants, Experts, Computer use, Agents and Autonomous Mode.
|
|
155
|
-
- Supports multiple models
|
|
155
|
+
- Supports multiple models like `OpenAI GPT-5`, `GPT-4`, `o1`, `o3`, `o4`, `Google Gemini`, `Anthropic Claude`, `xAI Grok`, `DeepSeek V3/R1`, `Perplexity / Sonar`, and any model accessible through `LlamaIndex` and `Ollama` such as `DeepSeek`, `gpt-oss`, `Llama 3`, `Mistral`, `Bielik`, etc.
|
|
156
156
|
- 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.
|
|
157
157
|
- Built-in vector databases support and automated files and data embedding.
|
|
158
158
|
- Included support features for individuals with disabilities: customizable keyboard shortcuts, voice control, and translation of on-screen actions into audio via speech synthesis.
|
|
@@ -161,7 +161,7 @@ You can download compiled 64-bit versions for Windows and Linux here: https://py
|
|
|
161
161
|
- Speech synthesis via `Microsoft Azure`, `Google`, `Eleven Labs` and `OpenAI` Text-To-Speech services.
|
|
162
162
|
- Speech recognition via `OpenAI Whisper`, `Google` and `Microsoft Speech Recognition`.
|
|
163
163
|
- Real-time video camera capture in Vision mode.
|
|
164
|
-
- Image analysis via `GPT-
|
|
164
|
+
- Image analysis via `GPT-5` and `GPT-4o`.
|
|
165
165
|
- Integrated calendar, day notes and search in contexts by selected date.
|
|
166
166
|
- Tools and commands execution (via plugins: access to the local filesystem, Python Code Interpreter, system commands execution, and more).
|
|
167
167
|
- Custom commands creation and execution.
|
|
@@ -179,7 +179,7 @@ You can download compiled 64-bit versions for Windows and Linux here: https://py
|
|
|
179
179
|
- Fully configurable.
|
|
180
180
|
- Themes support.
|
|
181
181
|
- Real-time code syntax highlighting.
|
|
182
|
-
- Plugins support.
|
|
182
|
+
- Plugins support with built-in plugins like `Files I/O`, `Code Interpreter`, `Web Search`, `Google`, `Facebook`, `X/Twitter`, `Slack`, `Telegram`, `GitHub`, and many more.
|
|
183
183
|
- Built-in token usage calculation.
|
|
184
184
|
- Possesses the potential to support future OpenAI models.
|
|
185
185
|
- **Open source**; source code is available on `GitHub`.
|
|
@@ -930,8 +930,6 @@ Below is a pattern for how different types of agents work. You can use these pat
|
|
|
930
930
|
|
|
931
931
|
- When the `Computer use` tool is selected for an expert or when the `computer-use` model is chosen, all other tools will not be available for that model.
|
|
932
932
|
|
|
933
|
-
- Ollama models are not supported in this mode.
|
|
934
|
-
|
|
935
933
|
## Agent (Autonomous)
|
|
936
934
|
|
|
937
935
|
This is an older version of the Agent mode, still available as legacy. However, it is recommended to use the newer mode: `Agent (LlamaIndex)`.
|
|
@@ -2489,8 +2487,6 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
2489
2487
|
|
|
2490
2488
|
- `Use ReAct agent for Tool calls in Chat with Files mode`: Enable ReAct agent for tool calls in Chat with Files mode.
|
|
2491
2489
|
|
|
2492
|
-
- `Display full agent output in chat window`: If enabled, a real-time output from agent reasoning will be displayed with the response.
|
|
2493
|
-
|
|
2494
2490
|
- `Auto-retrieve additional context`: Enable automatic retrieve of additional context from vector store in every query.
|
|
2495
2491
|
|
|
2496
2492
|
**Embeddings**
|
|
@@ -2545,6 +2541,8 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
2545
2541
|
|
|
2546
2542
|
- `Display a tray notification when the goal is achieved.`: If enabled, a notification will be displayed after goal achieved / finished run.
|
|
2547
2543
|
|
|
2544
|
+
- `Display full agent output in chat window`: If enabled, a real-time output from agent reasoning will be displayed with the response.
|
|
2545
|
+
|
|
2548
2546
|
**Agents (LlamaIndex / OpenAI)**
|
|
2549
2547
|
|
|
2550
2548
|
- `Max steps (per iteration)` - Max steps is one iteration before goal achieved
|
|
@@ -3538,150 +3536,23 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3538
3536
|
|
|
3539
3537
|
## Recent changes:
|
|
3540
3538
|
|
|
3541
|
-
**2.6.
|
|
3542
|
-
|
|
3543
|
-
- Added a new plugin: Server (FTP/SSH) - connect to remote servers using FTP, SFTP, and SSH. Execute remote commands, upload, download, and more (beta).
|
|
3544
|
-
- Added support for Wayland in Snap/compiled versions.
|
|
3545
|
-
|
|
3546
|
-
**2.6.19 (2025-08-22)**
|
|
3547
|
-
|
|
3548
|
-
- Fixed: added prevention for summarizing an empty context.
|
|
3549
|
-
- Improved the speed of context item refreshing.
|
|
3550
|
-
|
|
3551
|
-
**2.6.18 (2025-08-21)**
|
|
3552
|
-
|
|
3553
|
-
- Refactor and optimizations.
|
|
3554
|
-
- Fix: Evolve agent stop event calling.
|
|
3555
|
-
|
|
3556
|
-
**2.6.17 (2025-08-21)**
|
|
3557
|
-
|
|
3558
|
-
- Optimized profile switching.
|
|
3559
|
-
- Fixed: setting initial splitter size on first launch.
|
|
3560
|
-
- Added smoother view reload.
|
|
3561
|
-
|
|
3562
|
-
**2.6.16 (2025-08-20)**
|
|
3563
|
-
|
|
3564
|
-
- Fixed: Attachment string joining.
|
|
3565
|
-
- Improved expert function calls.
|
|
3566
|
-
- Added sorting to the plugin list.
|
|
3567
|
-
|
|
3568
|
-
**2.6.15 (2025-08-20)**
|
|
3569
|
-
|
|
3570
|
-
- Added: do not change the context menu font size in text editing.
|
|
3571
|
-
- Added: do not reload context items on tab change if already loaded.
|
|
3572
|
-
- Fixed: appending of names and avatars in the stream chunk.
|
|
3573
|
-
|
|
3574
|
-
**2.6.14 (2025-08-19)**
|
|
3575
|
-
|
|
3576
|
-
- Fixed: Agent evaluation tool runs even if tools are disabled.
|
|
3577
|
-
- Extended agent response evaluation by providing the full context of the output.
|
|
3578
|
-
|
|
3579
|
-
**2.6.13 (2025-08-19)**
|
|
3580
|
-
|
|
3581
|
-
- Fix: Do not load the index in experts if it is not provided.
|
|
3582
|
-
- Fix: Load remote images in the webview.
|
|
3583
|
-
- Fix: Presets list refresh.
|
|
3584
|
-
- Optimize context items reload.
|
|
3585
|
-
|
|
3586
|
-
**2.6.12 (2025-08-19)**
|
|
3587
|
-
|
|
3588
|
-
- Optimized web renderer memory cleanup.
|
|
3589
|
-
|
|
3590
|
-
**2.6.11 (2025-08-18)**
|
|
3591
|
-
|
|
3592
|
-
- Added the ability to close the dialog window with the Esc key.
|
|
3593
|
-
- Made context item deletion without output refresh.
|
|
3594
|
-
- Optimizations.
|
|
3595
|
-
|
|
3596
|
-
**2.6.10 (2025-08-17)**
|
|
3597
|
-
|
|
3598
|
-
- Enhanced the handling of the context list.
|
|
3599
|
-
- Integrated RAG into OpenAI Agents.
|
|
3600
|
-
- Enhanced RAG management in Agents.
|
|
3601
|
-
- Added an option: Config -> Agents -> General -> Auto-retrieve additional context from RAG.
|
|
3602
|
-
- Included Google Docs, Maps, and Colab in the Google plugin.
|
|
3539
|
+
**2.6.22 (2025-08-25)**
|
|
3603
3540
|
|
|
3604
|
-
|
|
3541
|
+
- UI refactor and optimizations.
|
|
3605
3542
|
|
|
3606
|
-
|
|
3543
|
+
**2.6.21 (2025-08-24)**
|
|
3607
3544
|
|
|
3608
|
-
|
|
3545
|
+
- Ollama models are now available in OpenAI Agents mode.
|
|
3546
|
+
- Improved parsing of responses from Agents.
|
|
3547
|
+
- Fix: do not initialize index in Agents mode if not provided.
|
|
3548
|
+
- Fix: agent response evaluation steps limit.
|
|
3549
|
+
- Fix: do not execute code in agents if Tools are disabled.
|
|
3550
|
+
- Refactoring.
|
|
3609
3551
|
|
|
3610
|
-
-
|
|
3611
|
-
- Added switching to duplicated preset after creation.
|
|
3612
|
-
- Reduced delay after selecting context.
|
|
3613
|
-
- Optimized rendering of mathematical formulas.
|
|
3614
|
-
|
|
3615
|
-
**2.6.7 (2025-08-16)**
|
|
3616
|
-
|
|
3617
|
-
- Fix: missing entity sanitize.
|
|
3618
|
-
|
|
3619
|
-
**2.6.6 (2025-08-16)**
|
|
3620
|
-
|
|
3621
|
-
- Output rendering optimization.
|
|
3622
|
-
|
|
3623
|
-
**2.6.5 (2025-08-16)**
|
|
3624
|
-
|
|
3625
|
-
- Fix: crash when creating a context in a new group.
|
|
3626
|
-
- Fix: high CPU usage after switching profiles.
|
|
3627
|
-
|
|
3628
|
-
**2.6.4 (2025-08-15)**
|
|
3629
|
-
|
|
3630
|
-
- Fix: tool execution in OpenAI Agents.
|
|
3631
|
-
- Optimizations.
|
|
3632
|
-
|
|
3633
|
-
**2.6.3 (2025-08-15)**
|
|
3634
|
-
|
|
3635
|
-
- Optimized streaming and CPU usage.
|
|
3636
|
-
- Fixed crash on set label color and ctx duplicate.
|
|
3637
|
-
|
|
3638
|
-
**2.6.2 (2025-08-15)**
|
|
3639
|
-
|
|
3640
|
-
- Added plugins (beta): Google, Facebook, X/Twitter, Telegram, Slack, GitHub, Bitbucket.
|
|
3641
|
-
|
|
3642
|
-
**2.6.1 (2025-08-14)**
|
|
3643
|
-
|
|
3644
|
-
- LlamaIndex Agents refactored to Workflows.
|
|
3645
|
-
|
|
3646
|
-
**2.6.0 (2025-08-13)**
|
|
3647
|
-
|
|
3648
|
-
- Added split responses to the OpenAI Agents in non-streaming mode.
|
|
3649
|
-
- Disabled auto-scroll when manually scrolled to the top.
|
|
3650
|
-
- Increased scrollbar width in the light theme.
|
|
3651
|
-
- Optimized the clearing of the streaming buffer.
|
|
3652
|
-
- Optimized imports.
|
|
3653
|
-
- Made CSS improvements.
|
|
3654
|
-
|
|
3655
|
-
**2.5.98 (2025-08-12)**
|
|
3656
|
-
|
|
3657
|
-
- Added support for GPT-5 in LlamaIndex/Chat with Files mode.
|
|
3658
|
-
- Experts are now allowed in all OpenAI agent types.
|
|
3659
|
-
- Improved the output of OpenAI agents (separated context items).
|
|
3660
|
-
- Refactored memory cleanup for thread workers.
|
|
3661
|
-
- Optimized streaming.
|
|
3662
|
-
|
|
3663
|
-
**2.5.97 (2025-08-11)**
|
|
3664
|
-
|
|
3665
|
-
- Fix: attribute error in prev ctx.
|
|
3666
|
-
|
|
3667
|
-
**2.5.96 (2025-08-10)**
|
|
3668
|
-
|
|
3669
|
-
- Fixed memory leaks.
|
|
3670
|
-
|
|
3671
|
-
**2.5.95 (2025-08-09)**
|
|
3672
|
-
|
|
3673
|
-
- Added user info personalization in Config -> Personalization, where you can provide information about yourself to the model.
|
|
3674
|
-
- Added presets personalization with configurable AI names and avatars.
|
|
3675
|
-
- Added a search field in the Translator tool.
|
|
3676
|
-
- Fixed <> tags replacement in code blocks.
|
|
3677
|
-
|
|
3678
|
-
**2.5.94 (2025-08-09)**
|
|
3552
|
+
**2.6.20 (2025-08-22)**
|
|
3679
3553
|
|
|
3680
|
-
- Added a new
|
|
3681
|
-
-
|
|
3682
|
-
- Added a new agent mode in OpenAI Agents: Bot 2 Bot.
|
|
3683
|
-
- Fixed: Storing the last used context ID when empty.
|
|
3684
|
-
- Fixed: Reloading items when an agent run is stopped.
|
|
3554
|
+
- Added a new plugin: Server (FTP/SSH) - connect to remote servers using FTP, SFTP, and SSH. Execute remote commands, upload, download, and more (beta).
|
|
3555
|
+
- Added support for Wayland in Snap/compiled versions.
|
|
3685
3556
|
|
|
3686
3557
|
# Credits and links
|
|
3687
3558
|
|