pygpt-net 2.4.37__py3-none-any.whl → 2.4.41__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 +29 -0
- README.md +44 -115
- pygpt_net/CHANGELOG.txt +29 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/__init__.py +7 -3
- pygpt_net/controller/access/control.py +1 -1
- pygpt_net/controller/access/voice.py +11 -5
- pygpt_net/controller/agent/experts.py +11 -6
- pygpt_net/controller/agent/legacy.py +8 -6
- pygpt_net/controller/agent/llama.py +4 -2
- pygpt_net/controller/assistant/__init__.py +9 -4
- pygpt_net/controller/assistant/batch.py +38 -21
- pygpt_net/controller/assistant/editor.py +7 -6
- pygpt_net/controller/assistant/files.py +23 -7
- pygpt_net/controller/assistant/store.py +20 -7
- pygpt_net/controller/assistant/threads.py +34 -8
- pygpt_net/controller/attachment.py +29 -10
- pygpt_net/controller/audio/__init__.py +25 -4
- pygpt_net/controller/calendar/__init__.py +23 -4
- pygpt_net/controller/calendar/note.py +57 -11
- pygpt_net/controller/camera.py +3 -2
- pygpt_net/controller/chat/__init__.py +5 -3
- pygpt_net/controller/chat/attachment.py +34 -7
- pygpt_net/controller/chat/command.py +4 -2
- pygpt_net/controller/chat/common.py +11 -4
- pygpt_net/controller/chat/files.py +10 -3
- pygpt_net/controller/chat/image.py +17 -5
- pygpt_net/controller/chat/input.py +10 -7
- pygpt_net/controller/chat/output.py +21 -6
- pygpt_net/controller/chat/render.py +100 -21
- pygpt_net/controller/chat/response.py +34 -7
- pygpt_net/controller/chat/stream.py +4 -2
- pygpt_net/controller/chat/text.py +6 -4
- pygpt_net/controller/command.py +11 -3
- pygpt_net/controller/config/__init__.py +34 -6
- pygpt_net/controller/config/field/checkbox.py +7 -4
- pygpt_net/controller/config/field/cmd.py +7 -5
- pygpt_net/controller/config/field/combo.py +14 -6
- pygpt_net/controller/config/field/dictionary.py +14 -11
- pygpt_net/controller/config/field/input.py +9 -6
- pygpt_net/controller/config/field/slider.py +11 -8
- pygpt_net/controller/config/field/textarea.py +8 -5
- pygpt_net/controller/config/placeholder.py +52 -21
- pygpt_net/controller/ctx/__init__.py +138 -49
- pygpt_net/controller/ctx/common.py +15 -4
- pygpt_net/controller/ctx/extra.py +11 -3
- pygpt_net/controller/ctx/summarizer.py +24 -5
- pygpt_net/controller/debug/__init__.py +27 -6
- pygpt_net/controller/dialogs/confirm.py +34 -7
- pygpt_net/controller/dialogs/debug.py +4 -2
- pygpt_net/controller/dialogs/info.py +7 -2
- pygpt_net/controller/files.py +48 -10
- pygpt_net/controller/finder.py +11 -5
- pygpt_net/controller/idx/__init__.py +10 -3
- pygpt_net/controller/idx/common.py +4 -2
- pygpt_net/controller/idx/indexer.py +25 -17
- pygpt_net/controller/idx/settings.py +9 -3
- pygpt_net/controller/kernel/__init__.py +34 -8
- pygpt_net/controller/kernel/reply.py +12 -3
- pygpt_net/controller/kernel/stack.py +5 -3
- pygpt_net/controller/lang/custom.py +2 -7
- pygpt_net/controller/lang/mapping.py +5 -3
- pygpt_net/controller/layout.py +2 -2
- pygpt_net/controller/mode.py +16 -4
- pygpt_net/controller/model/__init__.py +14 -3
- pygpt_net/controller/model/editor.py +8 -3
- pygpt_net/controller/notepad.py +26 -12
- pygpt_net/controller/painter/capture.py +23 -4
- pygpt_net/controller/painter/common.py +9 -7
- pygpt_net/controller/plugins/__init__.py +19 -5
- pygpt_net/controller/plugins/presets.py +15 -6
- pygpt_net/controller/plugins/settings.py +9 -3
- pygpt_net/controller/presets/__init__.py +55 -16
- pygpt_net/controller/presets/editor.py +26 -10
- pygpt_net/controller/settings/__init__.py +3 -2
- pygpt_net/controller/settings/editor.py +29 -7
- pygpt_net/controller/settings/profile.py +22 -5
- pygpt_net/controller/theme/__init__.py +54 -12
- pygpt_net/controller/theme/common.py +24 -2
- pygpt_net/controller/theme/markdown.py +32 -16
- pygpt_net/controller/theme/menu.py +26 -5
- pygpt_net/controller/theme/nodes.py +2 -5
- pygpt_net/controller/tools/__init__.py +40 -2
- pygpt_net/controller/ui/__init__.py +4 -6
- pygpt_net/controller/ui/tabs.py +363 -65
- pygpt_net/core/access/actions.py +6 -4
- pygpt_net/core/access/shortcuts.py +4 -3
- pygpt_net/core/access/voice.py +6 -5
- pygpt_net/core/agents/legacy.py +4 -2
- pygpt_net/core/agents/memory.py +7 -2
- pygpt_net/core/agents/observer/evaluation.py +15 -7
- pygpt_net/core/agents/provider.py +9 -4
- pygpt_net/core/agents/runner.py +61 -15
- pygpt_net/core/agents/tools.py +23 -5
- pygpt_net/core/assistants/__init__.py +6 -4
- pygpt_net/core/assistants/files.py +35 -12
- pygpt_net/core/assistants/store.py +20 -10
- pygpt_net/core/attachments/__init__.py +54 -15
- pygpt_net/core/attachments/context.py +92 -29
- pygpt_net/core/audio/__init__.py +71 -3
- pygpt_net/core/audio/context.py +7 -2
- pygpt_net/core/bridge/__init__.py +22 -6
- pygpt_net/core/bridge/context.py +5 -3
- pygpt_net/core/calendar/__init__.py +57 -11
- pygpt_net/core/chain/__init__.py +8 -2
- pygpt_net/core/chain/chat.py +10 -8
- pygpt_net/core/chain/completion.py +10 -7
- pygpt_net/core/command.py +62 -17
- pygpt_net/core/ctx/__init__.py +260 -58
- pygpt_net/core/ctx/bag.py +25 -4
- pygpt_net/core/ctx/container.py +28 -17
- pygpt_net/core/ctx/idx.py +45 -8
- pygpt_net/core/ctx/output.py +95 -74
- pygpt_net/core/ctx/reply.py +5 -2
- pygpt_net/core/db/__init__.py +8 -7
- pygpt_net/core/db/viewer.py +17 -11
- pygpt_net/core/debug/__init__.py +10 -9
- pygpt_net/core/debug/tabs.py +5 -2
- pygpt_net/core/docker/__init__.py +11 -5
- pygpt_net/core/docker/builder.py +11 -3
- pygpt_net/core/events/app.py +5 -3
- pygpt_net/core/events/base.py +11 -5
- pygpt_net/core/events/control.py +5 -3
- pygpt_net/core/events/event.py +17 -7
- pygpt_net/core/events/kernel.py +5 -3
- pygpt_net/core/events/render.py +5 -3
- pygpt_net/core/experts/__init__.py +5 -4
- pygpt_net/core/filesystem/__init__.py +52 -34
- pygpt_net/core/filesystem/actions.py +8 -5
- pygpt_net/core/filesystem/editor.py +13 -3
- pygpt_net/core/filesystem/types.py +12 -7
- pygpt_net/core/filesystem/url.py +7 -3
- pygpt_net/core/idx/__init__.py +34 -25
- pygpt_net/core/idx/chat.py +40 -16
- pygpt_net/core/idx/context.py +6 -2
- pygpt_net/core/idx/indexing.py +84 -35
- pygpt_net/core/idx/llm.py +11 -3
- pygpt_net/core/idx/metadata.py +13 -3
- pygpt_net/core/idx/types/ctx.py +32 -6
- pygpt_net/core/idx/types/external.py +41 -7
- pygpt_net/core/idx/types/files.py +31 -6
- pygpt_net/core/image.py +15 -4
- pygpt_net/core/llm/__init__.py +13 -3
- pygpt_net/core/locale.py +34 -8
- pygpt_net/core/models.py +4 -3
- pygpt_net/core/notepad.py +9 -4
- pygpt_net/core/plugins.py +7 -6
- pygpt_net/core/presets.py +19 -10
- pygpt_net/core/profile.py +12 -6
- pygpt_net/core/prompt/__init__.py +10 -3
- pygpt_net/core/prompt/custom.py +7 -6
- pygpt_net/core/prompt/template.py +9 -3
- pygpt_net/core/render/base.py +117 -22
- pygpt_net/core/render/markdown/body.py +27 -7
- pygpt_net/core/render/markdown/renderer.py +119 -22
- pygpt_net/core/render/plain/body.py +22 -5
- pygpt_net/core/render/plain/renderer.py +97 -21
- pygpt_net/core/render/web/body.py +75 -25
- pygpt_net/core/render/web/renderer.py +313 -63
- pygpt_net/core/settings.py +9 -4
- pygpt_net/core/tabs/__init__.py +290 -103
- pygpt_net/core/tabs/tab.py +17 -4
- pygpt_net/core/tokens.py +44 -11
- pygpt_net/core/updater/__init__.py +20 -7
- pygpt_net/core/vision/analyzer.py +29 -6
- pygpt_net/core/web.py +130 -2
- pygpt_net/data/config/config.json +15 -4
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/modes.json +3 -3
- pygpt_net/data/config/settings.json +55 -10
- pygpt_net/data/config/settings_section.json +3 -0
- pygpt_net/data/css/style.light.css +1 -0
- pygpt_net/data/css/{web.css → web-blocks.css} +162 -133
- pygpt_net/data/css/{web.light.css → web-blocks.light.css} +7 -0
- pygpt_net/data/css/web-chatgpt.css +350 -0
- pygpt_net/data/css/web-chatgpt.dark.css +64 -0
- pygpt_net/data/css/web-chatgpt.light.css +75 -0
- pygpt_net/data/css/web-chatgpt_wide.css +350 -0
- pygpt_net/data/css/web-chatgpt_wide.dark.css +64 -0
- pygpt_net/data/css/web-chatgpt_wide.light.css +75 -0
- pygpt_net/data/icons/split_screen.svg +1 -0
- pygpt_net/data/locale/locale.de.ini +12 -0
- pygpt_net/data/locale/locale.en.ini +17 -2
- pygpt_net/data/locale/locale.es.ini +12 -0
- pygpt_net/data/locale/locale.fr.ini +12 -0
- pygpt_net/data/locale/locale.it.ini +12 -0
- pygpt_net/data/locale/locale.pl.ini +12 -0
- pygpt_net/data/locale/locale.uk.ini +12 -0
- pygpt_net/data/locale/locale.zh.ini +12 -0
- pygpt_net/data/locale/plugin.cmd_web.de.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.en.ini +20 -10
- pygpt_net/data/locale/plugin.cmd_web.es.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.it.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +2 -0
- pygpt_net/icons.qrc +1 -0
- pygpt_net/icons_rc.py +165 -136
- pygpt_net/item/ctx.py +46 -24
- pygpt_net/plugin/audio_input/simple.py +21 -5
- pygpt_net/plugin/audio_output/__init__.py +4 -1
- pygpt_net/plugin/base/config.py +4 -2
- pygpt_net/plugin/base/plugin.py +26 -6
- pygpt_net/plugin/base/worker.py +37 -9
- pygpt_net/plugin/cmd_code_interpreter/__init__.py +39 -37
- pygpt_net/plugin/cmd_code_interpreter/runner.py +25 -12
- pygpt_net/plugin/cmd_web/__init__.py +46 -6
- pygpt_net/plugin/cmd_web/config.py +74 -48
- pygpt_net/plugin/cmd_web/websearch.py +61 -28
- pygpt_net/plugin/cmd_web/worker.py +79 -13
- pygpt_net/provider/core/config/patch.py +43 -1
- pygpt_net/provider/core/ctx/base.py +4 -1
- pygpt_net/provider/core/ctx/db_sqlite/__init__.py +10 -1
- pygpt_net/provider/core/ctx/db_sqlite/storage.py +22 -1
- pygpt_net/provider/gpt/assistants.py +10 -9
- pygpt_net/provider/gpt/audio.py +3 -2
- pygpt_net/provider/gpt/chat.py +8 -7
- pygpt_net/provider/gpt/completion.py +6 -4
- pygpt_net/provider/gpt/image.py +9 -2
- pygpt_net/provider/gpt/store.py +14 -13
- pygpt_net/provider/gpt/vision.py +6 -5
- pygpt_net/tools/__init__.py +9 -1
- pygpt_net/tools/base.py +15 -1
- pygpt_net/tools/code_interpreter/__init__.py +174 -75
- pygpt_net/tools/code_interpreter/ui/dialogs.py +21 -103
- pygpt_net/tools/code_interpreter/ui/widgets.py +284 -9
- pygpt_net/tools/html_canvas/__init__.py +78 -23
- pygpt_net/tools/html_canvas/ui/dialogs.py +46 -62
- pygpt_net/tools/html_canvas/ui/widgets.py +96 -3
- pygpt_net/ui/base/context_menu.py +2 -2
- pygpt_net/ui/layout/chat/input.py +10 -18
- pygpt_net/ui/layout/chat/output.py +26 -44
- pygpt_net/ui/layout/ctx/ctx_list.py +13 -4
- pygpt_net/ui/layout/toolbox/footer.py +18 -2
- pygpt_net/ui/main.py +2 -2
- pygpt_net/ui/menu/config.py +7 -11
- pygpt_net/ui/menu/debug.py +11 -1
- pygpt_net/ui/menu/theme.py +9 -2
- pygpt_net/ui/widget/filesystem/explorer.py +2 -2
- pygpt_net/ui/widget/lists/context.py +27 -5
- pygpt_net/ui/widget/tabs/Input.py +2 -2
- pygpt_net/ui/widget/tabs/body.py +2 -1
- pygpt_net/ui/widget/tabs/layout.py +195 -0
- pygpt_net/ui/widget/tabs/output.py +218 -55
- pygpt_net/ui/widget/textarea/html.py +11 -1
- pygpt_net/ui/widget/textarea/output.py +10 -1
- pygpt_net/ui/widget/textarea/search_input.py +4 -1
- pygpt_net/ui/widget/textarea/web.py +49 -9
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/METADATA +45 -116
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/RECORD +255 -247
- /pygpt_net/data/css/{web.dark.css → web-blocks.dark.css} +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.4.
|
3
|
+
Version: 2.4.41
|
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
|
@@ -92,7 +92,7 @@ Description-Content-Type: text/markdown
|
|
92
92
|
|
93
93
|
[](https://snapcraft.io/pygpt)
|
94
94
|
|
95
|
-
Release: **2.4.
|
95
|
+
Release: **2.4.41** | build: **2024.12.14** | Python: **>=3.10, <3.12**
|
96
96
|
|
97
97
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
98
98
|
>
|
@@ -2074,6 +2074,10 @@ Per-page content chunk size (max characters per chunk). *Default:* `20000`
|
|
2074
2074
|
|
2075
2075
|
Disables SSL verification when crawling web pages. *Default:* `False`
|
2076
2076
|
|
2077
|
+
- `Use raw content (without summarization)` *raw*
|
2078
|
+
|
2079
|
+
Return raw content from web search instead of summarized content. Provides more data but consumes more tokens. *Default:* `True`
|
2080
|
+
|
2077
2081
|
- `Timeout` *timeout*
|
2078
2082
|
|
2079
2083
|
Connection timeout (seconds). *Default:* `5`
|
@@ -2084,7 +2088,7 @@ User agent to use when making requests. *Default:* `Mozilla/5.0`.
|
|
2084
2088
|
|
2085
2089
|
- `Max result length` *max_result_length*
|
2086
2090
|
|
2087
|
-
Max length of summarized result (characters). *Default:* `
|
2091
|
+
Max length of the summarized or raw result (characters). *Default:* `50000`
|
2088
2092
|
|
2089
2093
|
- `Max summary tokens` *summary_max_tokens*
|
2090
2094
|
|
@@ -2770,6 +2774,8 @@ Config -> Settings...
|
|
2770
2774
|
|
2771
2775
|
- `Zoom`: Adjusts the zoom in chat window (web render view). `WebEngine / Chromium` render mode only.
|
2772
2776
|
|
2777
|
+
- `Style (chat)`: Chat style (Blocks, or ChatGPT-like, or ChatGPT-like Wide. `WebEngine / Chromium` render mode only.
|
2778
|
+
|
2773
2779
|
- `Code syntax highlight`: Syntax highlight theme in code blocks. `WebEngine / Chromium` render mode only.
|
2774
2780
|
|
2775
2781
|
- `Font Size (chat window)`: Adjusts the font size in the chat window (plain-text) and notepads.
|
@@ -2792,8 +2798,6 @@ Config -> Settings...
|
|
2792
2798
|
|
2793
2799
|
- `Use theme colors in chat window`: Use color theme in chat window, Default: True.
|
2794
2800
|
|
2795
|
-
- `Disable markdown formatting in output`: Enables plain-text display in output window, Default: False.
|
2796
|
-
|
2797
2801
|
**Files and attachments**
|
2798
2802
|
|
2799
2803
|
- `Store attachments in the workdir upload directory`: Enable to store a local copy of uploaded attachments for future use. Default: True
|
@@ -2904,14 +2908,22 @@ Config -> Settings...
|
|
2904
2908
|
|
2905
2909
|
**Vision**
|
2906
2910
|
|
2911
|
+
- `Vision: Camera Input Device`: Video capture camera index (index of the camera, default: 0).
|
2912
|
+
|
2907
2913
|
- `Vision: Camera capture width (px)`: Video capture resolution (width).
|
2908
2914
|
|
2909
2915
|
- `Vision: Camera capture height (px)`: Video capture resolution (height).
|
2910
2916
|
|
2911
|
-
- `Vision: Camera IDX (number)`: Video capture camera index (number of camera).
|
2912
|
-
|
2913
2917
|
- `Vision: Image capture quality`: Video capture image JPEG quality (%).
|
2914
2918
|
|
2919
|
+
**Audio**
|
2920
|
+
|
2921
|
+
- `Audio Input Device`: Selects the audio device for Microphone input.
|
2922
|
+
|
2923
|
+
- `Channels`: Input channels, default: 1
|
2924
|
+
|
2925
|
+
- `Sampling Rate`: Sampling rate, default: 44100
|
2926
|
+
|
2915
2927
|
**Indexes (LlamaIndex)**
|
2916
2928
|
|
2917
2929
|
- `Indexes`: List of created indexes.
|
@@ -3955,125 +3967,42 @@ may consume additional tokens that are not displayed in the main window.
|
|
3955
3967
|
|
3956
3968
|
## Recent changes:
|
3957
3969
|
|
3958
|
-
**2.4.
|
3959
|
-
|
3960
|
-
- The `Query only` mode in `Uploaded` tab has been renamed to `RAG`.
|
3961
|
-
- New options have been added under `Settings -> Files and Attachments`:
|
3962
|
-
- `Use history in RAG query`: When enabled, the content of the entire conversation will be used when preparing a query if the mode is set to RAG or Summary.
|
3963
|
-
- `RAG limit`: This option is applicable only if 'Use history in RAG query' is enabled. It specifies the limit on how many recent entries in the conversation will be used when generating a query for RAG. A value of 0 indicates no limit.
|
3964
|
-
- Cache: dynamic parts of the system prompt (from plugins) have been moved to the very end of the prompt stack to enable the use of prompt cache mechanisms in OpenAI.
|
3965
|
-
|
3966
|
-
**2.4.36 (2024-11-28)**
|
3967
|
-
|
3968
|
-
- Added a new command-line argument: --workdir="/path/to/workdir" to explicitly set the current working directory.
|
3969
|
-
- Fix: start image generation in Image mode.
|
3970
|
-
|
3971
|
-
**2.4.35 (2024-11-28)**
|
3972
|
-
|
3973
|
-
- Docker removed from dependencies in Snap version #82
|
3974
|
-
- Refactored documentation.
|
3975
|
-
- Fix: toggles real-time update hook.
|
3976
|
-
- Fix: missing edit icons.
|
3977
|
-
- Added tokens from attachments to counters if mode == Full context.
|
3978
|
-
|
3979
|
-
**2.4.34 (2024-11-26)**
|
3980
|
-
|
3981
|
-
- Added a new mode: `Chat with Audio`, with built-in multimodal support for audio input/output. Currently in `beta`, the execution of commands and tools in this mode is temporarily unavailable.
|
3982
|
-
- Added new models: `gpt-4o-audio-preview`, `gpt-4o-2024-11-20`, `chatgpt-4o-latest`.
|
3983
|
-
- Force disabled integration with the native system menu.
|
3984
|
-
|
3985
|
-
**2.4.33 (2024-11-26)**
|
3986
|
-
|
3987
|
-
- Improved CSS and rendering of file and image lists.
|
3988
|
-
- Added displaying of used attachments in the chat window.
|
3989
|
-
|
3990
|
-
**2.4.32 (2024-11-26)**
|
3970
|
+
**2.4.41 (2024-12-14)**
|
3991
3971
|
|
3992
|
-
-
|
3993
|
-
- Added
|
3972
|
+
- Improved switching between columns on a split screen.
|
3973
|
+
- Added visual identification of the active column.
|
3994
3974
|
|
3995
|
-
**2.4.
|
3975
|
+
**2.4.40 (2024-12-13)**
|
3996
3976
|
|
3997
|
-
-
|
3977
|
+
- Enhanced Split Screen mode, now promoted from beta to stable.
|
3978
|
+
- Python Code Interpreter tool added to the Tabs.
|
3979
|
+
- HTML/JS Canvas tool added to the Tabs.
|
3980
|
+
- Added attachment icon to the context list if context has attachments.
|
3981
|
+
- Improved audio playback.
|
3982
|
+
- Improved web search.
|
3983
|
+
- Added a thumbnail image to web search results.
|
3984
|
+
- Added a new commands to web search: "extract_images" and "extract_links".
|
3985
|
+
- Added the option "Use raw content (without summarization)" to the web search plugin, which provides a more detailed result to the main model.
|
3986
|
+
- Extended the default maximum result characters to 50,000 in the web search plugin.
|
3998
3987
|
|
3999
|
-
**
|
3988
|
+
**2.4.39 (2024-12-09)**
|
4000
3989
|
|
4001
|
-
- Added
|
3990
|
+
- Added "Split Screen" mode (accessible via the switch in the bottom-right corner of the screen), which allows you to work in two windows simultaneously. It is currently experimental (beta). Future updates will include Code Interpreter and Canvas running in tabs.
|
4002
3991
|
|
4003
|
-
|
3992
|
+
- Fixed: Language switch.
|
4004
3993
|
|
4005
|
-
-
|
4006
|
-
- Updated locales for plugins.
|
3994
|
+
**2.4.38 (2024-12-08)**
|
4007
3995
|
|
4008
|
-
|
3996
|
+
- Added the ability to select a style for chat display between: Blocks, ChatGPT-like, and ChatGPT-like Wide. New option in the menu: Config -> Theme -> Style...
|
3997
|
+
- Added configuration options for audio input in Settings -> Audio -> Audio Input Device, Channels, and Sampling rate.
|
4009
3998
|
|
4010
|
-
|
4011
|
-
- Added the ability to configure mapped volumes and ports for Docker containers in the plugin settings.
|
4012
|
-
- Optimized and speed-up the LlamaIndex plugin (inline).
|
4013
|
-
- Checkboxes replaced with Toggle buttons.
|
4014
|
-
- Improved settings dialogs.
|
4015
|
-
- Slight modification of the layout.
|
4016
|
-
- Fix: Dockerfile formatting in Code Interpreter config.
|
4017
|
-
- Fix: experts inline plugin execution.
|
4018
|
-
|
4019
|
-
**2.4.28 (2024-11-24)**
|
4020
|
-
|
4021
|
-
- Fix: issue #78
|
4022
|
-
|
4023
|
-
**2.4.27 (2024-11-24)**
|
4024
|
-
|
4025
|
-
- Profile switch fix.
|
4026
|
-
|
4027
|
-
**2.4.26 (2024-11-24)**
|
4028
|
-
|
4029
|
-
- Fix: issue #77
|
4030
|
-
|
4031
|
-
**2.4.25 (2024-11-24)**
|
4032
|
-
|
4033
|
-
- Added new plugin: System (OS), with optional sandbox support.
|
4034
|
-
- Execution of system commands moved to the System plugin.
|
4035
|
-
- Improved sandbox/Docker management.
|
4036
|
-
- Enhanced plugin settings.
|
4037
|
-
- Commands renamed to Tools, simplified layout.
|
4038
|
-
- Fix: handling of the Mouse and Keyboard plugin.
|
4039
|
-
- Fix: switching to a new context from a non-chat tab.
|
4040
|
-
- Fix: camera screenshots when the camera is not started.
|
4041
|
-
|
4042
|
-
**2.4.24 (2024-11-23)**
|
4043
|
-
|
4044
|
-
- Added the ability to use ZIP and TAR archives as attachments (they are now unpacked "on the fly").
|
4045
|
-
- Added the ability to index ZIP and TAR archives (it may be necessary to remove .zip and .tar from the blacklist in the settings).
|
4046
|
-
- Fix: error when uploading to the /data directory using the Upload files button.
|
4047
|
-
|
4048
|
-
**2.4.23 (2024-11-23)**
|
4049
|
-
|
4050
|
-
- Condensed layout widgets margins.
|
4051
|
-
- Added filename info to provided additional context from attachments.
|
4052
|
-
- Fixed auto-clear in attachments in Assistants mode.
|
4053
|
-
|
4054
|
-
**2.4.22 (2024-11-23)**
|
4055
|
-
|
4056
|
-
- Added the ability to use attachments with images, audio, and video as additional context. Tip: to enable the use of images as additional context, you need to enable the option: `Files and attachments -> Allow images as additional context`.
|
4057
|
-
- Edit icons in the chat window are enabled by default.
|
4058
|
-
|
4059
|
-
**2.4.21 (2024-11-23)**
|
4060
|
-
|
4061
|
-
- Added the ability to send additional context from attachments without needing to activate the "Chat with Files" mode. Now, you just need to attach a file, and the additional context from the file will be available in the conversation. More information can be found in the "Files and attachments" section of the documentation.
|
4062
|
-
|
4063
|
-
- Fixed the issue with restarting the agent after it has been forcefully stopped.
|
4064
|
-
|
4065
|
-
**2.4.20 (2024-11-22)**
|
4066
|
-
|
4067
|
-
- Fixed freeze in Windows installer. #75
|
4068
|
-
- Small fixes.
|
4069
|
-
|
4070
|
-
**2.4.19 (2024-11-22)**
|
3999
|
+
**2.4.37 (2024-11-30)**
|
4071
4000
|
|
4072
|
-
-
|
4073
|
-
-
|
4074
|
-
-
|
4075
|
-
-
|
4076
|
-
-
|
4001
|
+
- The `Query only` mode in `Uploaded` tab has been renamed to `RAG`.
|
4002
|
+
- New options have been added under `Settings -> Files and Attachments`:
|
4003
|
+
- `Use history in RAG query`: When enabled, the content of the entire conversation will be used when preparing a query if the mode is set to RAG or Summary.
|
4004
|
+
- `RAG limit`: This option is applicable only if 'Use history in RAG query' is enabled. It specifies the limit on how many recent entries in the conversation will be used when generating a query for RAG. A value of 0 indicates no limit.
|
4005
|
+
- Cache: dynamic parts of the system prompt (from plugins) have been moved to the very end of the prompt stack to enable the use of prompt cache mechanisms in OpenAI.
|
4077
4006
|
|
4078
4007
|
|
4079
4008
|
# Credits and links
|