pygpt-net 2.6.21__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.
Files changed (144) hide show
  1. pygpt_net/CHANGELOG.txt +4 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +3 -1
  4. pygpt_net/controller/__init__.py +4 -8
  5. pygpt_net/controller/access/voice.py +2 -2
  6. pygpt_net/controller/assistant/batch.py +2 -3
  7. pygpt_net/controller/assistant/editor.py +2 -2
  8. pygpt_net/controller/assistant/files.py +2 -3
  9. pygpt_net/controller/assistant/store.py +2 -2
  10. pygpt_net/controller/audio/audio.py +2 -2
  11. pygpt_net/controller/ctx/ctx.py +2 -1
  12. pygpt_net/controller/idx/indexer.py +85 -76
  13. pygpt_net/controller/lang/lang.py +52 -34
  14. pygpt_net/controller/model/importer.py +2 -2
  15. pygpt_net/controller/notepad/notepad.py +86 -84
  16. pygpt_net/controller/plugins/settings.py +3 -4
  17. pygpt_net/controller/settings/profile.py +105 -124
  18. pygpt_net/controller/theme/menu.py +154 -57
  19. pygpt_net/controller/theme/nodes.py +51 -44
  20. pygpt_net/controller/theme/theme.py +33 -9
  21. pygpt_net/controller/tools/tools.py +2 -2
  22. pygpt_net/controller/ui/tabs.py +2 -3
  23. pygpt_net/core/ctx/container.py +13 -12
  24. pygpt_net/core/ctx/output.py +7 -4
  25. pygpt_net/core/debug/console/console.py +2 -2
  26. pygpt_net/core/filesystem/actions.py +1 -2
  27. pygpt_net/core/render/plain/helpers.py +2 -5
  28. pygpt_net/core/render/plain/renderer.py +26 -30
  29. pygpt_net/core/render/web/body.py +1 -1
  30. pygpt_net/core/settings/settings.py +43 -13
  31. pygpt_net/core/tabs/tabs.py +20 -13
  32. pygpt_net/data/config/config.json +4 -4
  33. pygpt_net/data/config/models.json +3 -3
  34. pygpt_net/data/locale/locale.de.ini +4 -1
  35. pygpt_net/data/locale/locale.en.ini +4 -1
  36. pygpt_net/data/locale/locale.es.ini +4 -1
  37. pygpt_net/data/locale/locale.fr.ini +4 -1
  38. pygpt_net/data/locale/locale.it.ini +4 -1
  39. pygpt_net/data/locale/locale.pl.ini +5 -4
  40. pygpt_net/data/locale/locale.uk.ini +4 -1
  41. pygpt_net/data/locale/locale.zh.ini +4 -1
  42. pygpt_net/plugin/twitter/plugin.py +2 -2
  43. pygpt_net/tools/audio_transcriber/ui/dialogs.py +44 -54
  44. pygpt_net/tools/code_interpreter/body.py +1 -2
  45. pygpt_net/tools/code_interpreter/tool.py +7 -4
  46. pygpt_net/tools/code_interpreter/ui/html.py +1 -3
  47. pygpt_net/tools/code_interpreter/ui/widgets.py +2 -3
  48. pygpt_net/tools/html_canvas/ui/widgets.py +1 -3
  49. pygpt_net/tools/image_viewer/ui/dialogs.py +40 -37
  50. pygpt_net/tools/indexer/ui/widgets.py +2 -4
  51. pygpt_net/tools/media_player/tool.py +2 -5
  52. pygpt_net/tools/media_player/ui/widgets.py +60 -36
  53. pygpt_net/tools/text_editor/ui/widgets.py +18 -19
  54. pygpt_net/tools/translator/ui/widgets.py +39 -35
  55. pygpt_net/ui/base/context_menu.py +9 -4
  56. pygpt_net/ui/dialog/db.py +1 -3
  57. pygpt_net/ui/dialog/models.py +1 -3
  58. pygpt_net/ui/dialog/models_importer.py +2 -4
  59. pygpt_net/ui/dialogs.py +34 -30
  60. pygpt_net/ui/layout/chat/attachments.py +72 -84
  61. pygpt_net/ui/layout/chat/attachments_ctx.py +40 -44
  62. pygpt_net/ui/layout/chat/attachments_uploaded.py +36 -39
  63. pygpt_net/ui/layout/chat/calendar.py +100 -70
  64. pygpt_net/ui/layout/chat/chat.py +23 -17
  65. pygpt_net/ui/layout/chat/input.py +95 -118
  66. pygpt_net/ui/layout/chat/output.py +100 -162
  67. pygpt_net/ui/layout/chat/painter.py +89 -61
  68. pygpt_net/ui/layout/ctx/ctx_list.py +43 -52
  69. pygpt_net/ui/layout/status.py +23 -14
  70. pygpt_net/ui/layout/toolbox/agent.py +27 -38
  71. pygpt_net/ui/layout/toolbox/agent_llama.py +42 -45
  72. pygpt_net/ui/layout/toolbox/assistants.py +42 -38
  73. pygpt_net/ui/layout/toolbox/computer_env.py +32 -23
  74. pygpt_net/ui/layout/toolbox/footer.py +13 -16
  75. pygpt_net/ui/layout/toolbox/image.py +18 -21
  76. pygpt_net/ui/layout/toolbox/indexes.py +46 -89
  77. pygpt_net/ui/layout/toolbox/mode.py +20 -7
  78. pygpt_net/ui/layout/toolbox/model.py +12 -10
  79. pygpt_net/ui/layout/toolbox/presets.py +68 -52
  80. pygpt_net/ui/layout/toolbox/prompt.py +31 -58
  81. pygpt_net/ui/layout/toolbox/toolbox.py +25 -21
  82. pygpt_net/ui/layout/toolbox/vision.py +20 -22
  83. pygpt_net/ui/main.py +2 -4
  84. pygpt_net/ui/menu/about.py +64 -84
  85. pygpt_net/ui/menu/audio.py +87 -63
  86. pygpt_net/ui/menu/config.py +121 -127
  87. pygpt_net/ui/menu/debug.py +69 -76
  88. pygpt_net/ui/menu/file.py +32 -35
  89. pygpt_net/ui/menu/menu.py +2 -3
  90. pygpt_net/ui/menu/plugins.py +69 -33
  91. pygpt_net/ui/menu/theme.py +45 -46
  92. pygpt_net/ui/menu/tools.py +56 -60
  93. pygpt_net/ui/menu/video.py +20 -25
  94. pygpt_net/ui/tray.py +1 -2
  95. pygpt_net/ui/widget/audio/bar.py +1 -3
  96. pygpt_net/ui/widget/audio/input_button.py +3 -4
  97. pygpt_net/ui/widget/calendar/select.py +1 -2
  98. pygpt_net/ui/widget/dialog/base.py +12 -9
  99. pygpt_net/ui/widget/dialog/editor_file.py +20 -23
  100. pygpt_net/ui/widget/dialog/find.py +25 -24
  101. pygpt_net/ui/widget/dialog/profile.py +57 -53
  102. pygpt_net/ui/widget/draw/painter.py +62 -93
  103. pygpt_net/ui/widget/element/button.py +42 -30
  104. pygpt_net/ui/widget/element/checkbox.py +23 -15
  105. pygpt_net/ui/widget/element/group.py +6 -5
  106. pygpt_net/ui/widget/element/labels.py +1 -2
  107. pygpt_net/ui/widget/filesystem/explorer.py +93 -102
  108. pygpt_net/ui/widget/image/display.py +1 -2
  109. pygpt_net/ui/widget/lists/assistant.py +1 -2
  110. pygpt_net/ui/widget/lists/attachment.py +1 -2
  111. pygpt_net/ui/widget/lists/attachment_ctx.py +1 -2
  112. pygpt_net/ui/widget/lists/context.py +2 -4
  113. pygpt_net/ui/widget/lists/index.py +1 -2
  114. pygpt_net/ui/widget/lists/model.py +1 -2
  115. pygpt_net/ui/widget/lists/model_editor.py +1 -2
  116. pygpt_net/ui/widget/lists/model_importer.py +1 -2
  117. pygpt_net/ui/widget/lists/preset.py +1 -2
  118. pygpt_net/ui/widget/lists/preset_plugins.py +1 -2
  119. pygpt_net/ui/widget/lists/profile.py +1 -2
  120. pygpt_net/ui/widget/lists/uploaded.py +1 -2
  121. pygpt_net/ui/widget/option/checkbox.py +2 -4
  122. pygpt_net/ui/widget/option/checkbox_list.py +1 -4
  123. pygpt_net/ui/widget/option/cmd.py +1 -4
  124. pygpt_net/ui/widget/option/dictionary.py +25 -28
  125. pygpt_net/ui/widget/option/input.py +1 -3
  126. pygpt_net/ui/widget/tabs/Input.py +16 -12
  127. pygpt_net/ui/widget/tabs/body.py +5 -3
  128. pygpt_net/ui/widget/tabs/layout.py +36 -25
  129. pygpt_net/ui/widget/tabs/output.py +96 -74
  130. pygpt_net/ui/widget/textarea/calendar_note.py +1 -2
  131. pygpt_net/ui/widget/textarea/editor.py +41 -73
  132. pygpt_net/ui/widget/textarea/find.py +11 -10
  133. pygpt_net/ui/widget/textarea/html.py +3 -6
  134. pygpt_net/ui/widget/textarea/input.py +63 -64
  135. pygpt_net/ui/widget/textarea/notepad.py +54 -38
  136. pygpt_net/ui/widget/textarea/output.py +65 -54
  137. pygpt_net/ui/widget/textarea/search_input.py +5 -4
  138. pygpt_net/ui/widget/textarea/web.py +2 -4
  139. pygpt_net/ui/widget/vision/camera.py +2 -31
  140. {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/METADATA +15 -151
  141. {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/RECORD +144 -144
  142. {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/LICENSE +0 -0
  143. {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/WHEEL +0 -0
  144. {pygpt_net-2.6.21.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.19 07:00:00 #
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(self, self.get_selected_text())
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: 2023.12.25 21:00:00 #
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
- elif event.button() == Qt.RightButton:
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.21
4
- Summary: Desktop AI Assistant powered by: OpenAI GPT-5, o1, o3, GPT-4, 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.
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: py_gpt,py-gpt,pygpt,desktop,app,o1,o3,gpt-5,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,grok,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
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
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
113
113
 
114
- Release: **2.6.21** | build: **2025-08-24** | Python: **>=3.10, <3.14**
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.21** | build: **2025-08-24** | 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 `gpt-5`, `o1`, `o3`, `gpt-4o`, `gpt-4`, `gpt-4 Vision`, and `gpt-3.5`, through the `OpenAI API`. By utilizing `LlamaIndex`, the application also supports alternative LLMs, like those available on `HuggingFace`, locally available models via `Ollama` (like `Llama 3`,`Mistral`, `DeepSeek V3/R1` or `Bielik`), `Google Gemini`, `Anthropic Claude`, `Perplexity Sonar`, and `xAI Grok`.
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 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`.
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: `gpt-5`, `o1`, `o3`, `GPT-4o`, `GPT-4`, `GPT-3.5`, and any model accessible through `LlamaIndex` and `Ollama` such as `Llama 3`, `Mistral`, `Google Gemini`, `Anthropic Claude`, `xAI Grok`, `DeepSeek V3/R1`, `Perplexity Sonar`, `Bielik`, etc.
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-4 Vision` and `GPT-4o`.
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`.
@@ -3536,6 +3536,10 @@ may consume additional tokens that are not displayed in the main window.
3536
3536
 
3537
3537
  ## Recent changes:
3538
3538
 
3539
+ **2.6.22 (2025-08-25)**
3540
+
3541
+ - UI refactor and optimizations.
3542
+
3539
3543
  **2.6.21 (2025-08-24)**
3540
3544
 
3541
3545
  - Ollama models are now available in OpenAI Agents mode.
@@ -3550,146 +3554,6 @@ may consume additional tokens that are not displayed in the main window.
3550
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).
3551
3555
  - Added support for Wayland in Snap/compiled versions.
3552
3556
 
3553
- **2.6.19 (2025-08-22)**
3554
-
3555
- - Fixed: added prevention for summarizing an empty context.
3556
- - Improved the speed of context item refreshing.
3557
-
3558
- **2.6.18 (2025-08-21)**
3559
-
3560
- - Refactor and optimizations.
3561
- - Fix: Evolve agent stop event calling.
3562
-
3563
- **2.6.17 (2025-08-21)**
3564
-
3565
- - Optimized profile switching.
3566
- - Fixed: setting initial splitter size on first launch.
3567
- - Added smoother view reload.
3568
-
3569
- **2.6.16 (2025-08-20)**
3570
-
3571
- - Fixed: Attachment string joining.
3572
- - Improved expert function calls.
3573
- - Added sorting to the plugin list.
3574
-
3575
- **2.6.15 (2025-08-20)**
3576
-
3577
- - Added: do not change the context menu font size in text editing.
3578
- - Added: do not reload context items on tab change if already loaded.
3579
- - Fixed: appending of names and avatars in the stream chunk.
3580
-
3581
- **2.6.14 (2025-08-19)**
3582
-
3583
- - Fixed: Agent evaluation tool runs even if tools are disabled.
3584
- - Extended agent response evaluation by providing the full context of the output.
3585
-
3586
- **2.6.13 (2025-08-19)**
3587
-
3588
- - Fix: Do not load the index in experts if it is not provided.
3589
- - Fix: Load remote images in the webview.
3590
- - Fix: Presets list refresh.
3591
- - Optimize context items reload.
3592
-
3593
- **2.6.12 (2025-08-19)**
3594
-
3595
- - Optimized web renderer memory cleanup.
3596
-
3597
- **2.6.11 (2025-08-18)**
3598
-
3599
- - Added the ability to close the dialog window with the Esc key.
3600
- - Made context item deletion without output refresh.
3601
- - Optimizations.
3602
-
3603
- **2.6.10 (2025-08-17)**
3604
-
3605
- - Enhanced the handling of the context list.
3606
- - Integrated RAG into OpenAI Agents.
3607
- - Enhanced RAG management in Agents.
3608
- - Added an option: Config -> Agents -> General -> Auto-retrieve additional context from RAG.
3609
- - Included Google Docs, Maps, and Colab in the Google plugin.
3610
-
3611
- **2.6.9 (2025-08-17)**
3612
-
3613
- - Added two new agents for LlamaIndex and OpenAI: Supervisor and Worker (beta).
3614
-
3615
- **2.6.8 (2025-08-16)**
3616
-
3617
- - Fixed: updated paragraph color on theme switch.
3618
- - Added switching to duplicated preset after creation.
3619
- - Reduced delay after selecting context.
3620
- - Optimized rendering of mathematical formulas.
3621
-
3622
- **2.6.7 (2025-08-16)**
3623
-
3624
- - Fix: missing entity sanitize.
3625
-
3626
- **2.6.6 (2025-08-16)**
3627
-
3628
- - Output rendering optimization.
3629
-
3630
- **2.6.5 (2025-08-16)**
3631
-
3632
- - Fix: crash when creating a context in a new group.
3633
- - Fix: high CPU usage after switching profiles.
3634
-
3635
- **2.6.4 (2025-08-15)**
3636
-
3637
- - Fix: tool execution in OpenAI Agents.
3638
- - Optimizations.
3639
-
3640
- **2.6.3 (2025-08-15)**
3641
-
3642
- - Optimized streaming and CPU usage.
3643
- - Fixed crash on set label color and ctx duplicate.
3644
-
3645
- **2.6.2 (2025-08-15)**
3646
-
3647
- - Added plugins (beta): Google, Facebook, X/Twitter, Telegram, Slack, GitHub, Bitbucket.
3648
-
3649
- **2.6.1 (2025-08-14)**
3650
-
3651
- - LlamaIndex Agents refactored to Workflows.
3652
-
3653
- **2.6.0 (2025-08-13)**
3654
-
3655
- - Added split responses to the OpenAI Agents in non-streaming mode.
3656
- - Disabled auto-scroll when manually scrolled to the top.
3657
- - Increased scrollbar width in the light theme.
3658
- - Optimized the clearing of the streaming buffer.
3659
- - Optimized imports.
3660
- - Made CSS improvements.
3661
-
3662
- **2.5.98 (2025-08-12)**
3663
-
3664
- - Added support for GPT-5 in LlamaIndex/Chat with Files mode.
3665
- - Experts are now allowed in all OpenAI agent types.
3666
- - Improved the output of OpenAI agents (separated context items).
3667
- - Refactored memory cleanup for thread workers.
3668
- - Optimized streaming.
3669
-
3670
- **2.5.97 (2025-08-11)**
3671
-
3672
- - Fix: attribute error in prev ctx.
3673
-
3674
- **2.5.96 (2025-08-10)**
3675
-
3676
- - Fixed memory leaks.
3677
-
3678
- **2.5.95 (2025-08-09)**
3679
-
3680
- - Added user info personalization in Config -> Personalization, where you can provide information about yourself to the model.
3681
- - Added presets personalization with configurable AI names and avatars.
3682
- - Added a search field in the Translator tool.
3683
- - Fixed <> tags replacement in code blocks.
3684
-
3685
- **2.5.94 (2025-08-09)**
3686
-
3687
- - Added a new LLM provider: HuggingFace Router.
3688
- - Introduced a new model: gpt-oss (OpenAI open-source model available in HuggingFace and Ollama).
3689
- - Added a new agent mode in OpenAI Agents: Bot 2 Bot.
3690
- - Fixed: Storing the last used context ID when empty.
3691
- - Fixed: Reloading items when an agent run is stopped.
3692
-
3693
3557
  # Credits and links
3694
3558
 
3695
3559
  **Official website:** <https://pygpt.net>