pygpt-net 2.4.37__py3-none-any.whl → 2.4.42__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 +37 -0
- README.md +176 -182
- pygpt_net/CHANGELOG.txt +37 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +3 -1
- 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 +26 -5
- pygpt_net/controller/calendar/__init__.py +23 -4
- pygpt_net/controller/calendar/note.py +57 -11
- pygpt_net/controller/camera.py +4 -12
- pygpt_net/controller/chat/__init__.py +5 -3
- pygpt_net/controller/chat/attachment.py +34 -7
- pygpt_net/controller/chat/audio.py +2 -2
- 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 +66 -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/mode.py +16 -21
- 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 +74 -3
- pygpt_net/core/audio/context.py +7 -2
- pygpt_net/core/audio/whisper.py +37 -0
- pygpt_net/core/bridge/__init__.py +22 -6
- pygpt_net/core/bridge/context.py +5 -3
- pygpt_net/core/bridge/worker.py +2 -2
- 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/events.py +22 -10
- pygpt_net/core/debug/tabs.py +9 -3
- 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/history.py +3 -2
- pygpt_net/core/idx/__init__.py +48 -27
- pygpt_net/core/idx/chat.py +51 -17
- pygpt_net/core/idx/context.py +6 -2
- pygpt_net/core/idx/indexing.py +107 -42
- 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/installer.py +2 -4
- pygpt_net/core/llm/__init__.py +13 -3
- pygpt_net/core/locale.py +34 -8
- pygpt_net/core/models.py +63 -17
- pygpt_net/core/modes.py +11 -13
- pygpt_net/core/notepad.py +10 -5
- pygpt_net/core/plugins.py +31 -19
- pygpt_net/core/presets.py +37 -17
- pygpt_net/core/profile.py +21 -7
- 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/parser.py +3 -1
- pygpt_net/core/render/web/renderer.py +313 -63
- pygpt_net/core/settings.py +10 -5
- pygpt_net/core/tabs/__init__.py +290 -103
- pygpt_net/core/tabs/tab.py +26 -5
- pygpt_net/core/tokens.py +47 -12
- pygpt_net/core/updater/__init__.py +20 -7
- pygpt_net/core/vision/analyzer.py +29 -6
- pygpt_net/core/{web.py → web/__init__.py} +29 -7
- pygpt_net/core/web/helpers.py +237 -0
- 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 +18 -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 +22 -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/data/locale/plugin.mailer.en.ini +21 -0
- pygpt_net/icons.qrc +1 -0
- pygpt_net/icons_rc.py +165 -136
- pygpt_net/item/ctx.py +58 -25
- pygpt_net/plugin/agent/__init__.py +7 -2
- pygpt_net/plugin/audio_input/simple.py +21 -5
- pygpt_net/plugin/audio_output/__init__.py +9 -1
- pygpt_net/plugin/base/config.py +4 -2
- pygpt_net/plugin/base/plugin.py +75 -23
- pygpt_net/plugin/base/worker.py +42 -11
- pygpt_net/plugin/cmd_code_interpreter/__init__.py +39 -37
- pygpt_net/plugin/cmd_code_interpreter/runner.py +25 -12
- pygpt_net/plugin/cmd_history/config.py +2 -2
- pygpt_net/plugin/cmd_web/__init__.py +48 -9
- pygpt_net/plugin/cmd_web/config.py +135 -41
- pygpt_net/plugin/cmd_web/websearch.py +74 -33
- pygpt_net/plugin/cmd_web/worker.py +142 -13
- pygpt_net/plugin/idx_llama_index/config.py +3 -3
- pygpt_net/plugin/mailer/__init__.py +123 -0
- pygpt_net/plugin/mailer/config.py +149 -0
- pygpt_net/plugin/mailer/runner.py +285 -0
- pygpt_net/plugin/mailer/worker.py +123 -0
- pygpt_net/provider/agents/base.py +5 -2
- pygpt_net/provider/agents/openai.py +4 -2
- pygpt_net/provider/agents/openai_assistant.py +4 -2
- pygpt_net/provider/agents/planner.py +4 -2
- pygpt_net/provider/agents/react.py +4 -2
- pygpt_net/provider/audio_output/openai_tts.py +5 -11
- pygpt_net/provider/core/assistant/base.py +5 -3
- pygpt_net/provider/core/assistant/json_file.py +8 -5
- pygpt_net/provider/core/assistant_file/base.py +4 -3
- pygpt_net/provider/core/assistant_file/db_sqlite/__init__.py +4 -3
- pygpt_net/provider/core/assistant_file/db_sqlite/storage.py +3 -2
- pygpt_net/provider/core/assistant_store/base.py +6 -4
- pygpt_net/provider/core/assistant_store/db_sqlite/__init__.py +5 -4
- pygpt_net/provider/core/assistant_store/db_sqlite/storage.py +5 -3
- pygpt_net/provider/core/attachment/base.py +5 -3
- pygpt_net/provider/core/attachment/json_file.py +4 -3
- pygpt_net/provider/core/calendar/base.py +5 -3
- pygpt_net/provider/core/calendar/db_sqlite/__init__.py +6 -5
- pygpt_net/provider/core/calendar/db_sqlite/storage.py +5 -4
- pygpt_net/provider/core/config/base.py +8 -6
- pygpt_net/provider/core/config/json_file.py +9 -7
- pygpt_net/provider/core/config/patch.py +43 -1
- pygpt_net/provider/core/ctx/base.py +30 -25
- pygpt_net/provider/core/ctx/db_sqlite/__init__.py +59 -34
- pygpt_net/provider/core/ctx/db_sqlite/storage.py +62 -30
- pygpt_net/provider/core/ctx/db_sqlite/utils.py +11 -9
- pygpt_net/provider/core/index/base.py +129 -23
- pygpt_net/provider/core/index/db_sqlite/__init__.py +130 -23
- pygpt_net/provider/core/index/db_sqlite/storage.py +130 -23
- pygpt_net/provider/core/index/db_sqlite/utils.py +4 -2
- pygpt_net/provider/core/mode/base.py +5 -3
- pygpt_net/provider/core/mode/json_file.py +7 -6
- pygpt_net/provider/core/model/base.py +6 -4
- pygpt_net/provider/core/model/json_file.py +9 -7
- pygpt_net/provider/core/notepad/base.py +5 -3
- pygpt_net/provider/core/notepad/db_sqlite/__init__.py +5 -4
- pygpt_net/provider/core/notepad/db_sqlite/storage.py +4 -3
- pygpt_net/provider/core/plugin_preset/base.py +4 -2
- pygpt_net/provider/core/plugin_preset/json_file.py +5 -3
- pygpt_net/provider/core/preset/base.py +6 -4
- pygpt_net/provider/core/preset/json_file.py +9 -9
- pygpt_net/provider/core/prompt/base.py +6 -3
- pygpt_net/provider/core/prompt/json_file.py +11 -6
- pygpt_net/provider/gpt/assistants.py +21 -11
- pygpt_net/provider/gpt/audio.py +6 -5
- pygpt_net/provider/gpt/chat.py +10 -7
- pygpt_net/provider/gpt/completion.py +11 -5
- pygpt_net/provider/gpt/image.py +9 -2
- pygpt_net/provider/gpt/store.py +53 -18
- pygpt_net/provider/gpt/vision.py +17 -11
- pygpt_net/provider/llms/anthropic.py +7 -2
- pygpt_net/provider/llms/azure_openai.py +26 -5
- pygpt_net/provider/llms/base.py +47 -9
- pygpt_net/provider/llms/google.py +7 -2
- pygpt_net/provider/llms/hugging_face.py +13 -3
- pygpt_net/provider/llms/hugging_face_api.py +18 -4
- pygpt_net/provider/llms/local.py +7 -2
- pygpt_net/provider/llms/ollama.py +30 -6
- pygpt_net/provider/llms/openai.py +32 -6
- pygpt_net/provider/vector_stores/__init__.py +45 -14
- pygpt_net/provider/vector_stores/base.py +35 -8
- pygpt_net/provider/vector_stores/chroma.py +13 -3
- pygpt_net/provider/vector_stores/ctx_attachment.py +31 -12
- pygpt_net/provider/vector_stores/elasticsearch.py +12 -3
- pygpt_net/provider/vector_stores/pinecode.py +12 -3
- pygpt_net/provider/vector_stores/redis.py +12 -3
- pygpt_net/provider/vector_stores/simple.py +12 -3
- pygpt_net/provider/vector_stores/temp.py +16 -4
- pygpt_net/provider/web/base.py +10 -3
- pygpt_net/provider/web/google_custom_search.py +9 -3
- pygpt_net/provider/web/microsoft_bing.py +9 -3
- pygpt_net/tools/__init__.py +20 -4
- pygpt_net/tools/audio_transcriber/__init__.py +4 -3
- pygpt_net/tools/base.py +28 -7
- pygpt_net/tools/code_interpreter/__init__.py +177 -77
- 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 +81 -25
- pygpt_net/tools/html_canvas/ui/dialogs.py +46 -62
- pygpt_net/tools/html_canvas/ui/widgets.py +96 -3
- pygpt_net/tools/image_viewer/__init__.py +10 -4
- pygpt_net/tools/indexer/__init__.py +8 -7
- pygpt_net/tools/media_player/__init__.py +4 -3
- pygpt_net/tools/text_editor/__init__.py +36 -10
- 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 +27 -45
- 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/audio.py +12 -1
- 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.42.dist-info}/METADATA +177 -183
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/RECORD +340 -325
- /pygpt_net/data/css/{web.dark.css → web-blocks.dark.css} +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/entry_points.txt +0 -0
README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[](https://snapcraft.io/pygpt)
|
4
4
|
|
5
|
-
Release: **2.4.
|
5
|
+
Release: **2.4.42** | build: **2024.12.15** | Python: **>=3.10, <3.12**
|
6
6
|
|
7
7
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
8
8
|
>
|
@@ -1067,6 +1067,8 @@ as well as list and create directories.
|
|
1067
1067
|
|
1068
1068
|
- `Voice Control (inline)` - provides voice control command execution within a conversation.
|
1069
1069
|
|
1070
|
+
- `Mailer` - Provides the ability to send, receive and read emails.
|
1071
|
+
|
1070
1072
|
## Audio Input
|
1071
1073
|
|
1072
1074
|
The plugin facilitates speech recognition (by default using the `Whisper` model from OpenAI, `Google` and `Bing` are also available). It allows for voice commands to be relayed to the AI using your own voice. Whisper doesn't require any extra API keys or additional configurations; it uses the main OpenAI key. In the plugin's configuration options, you should adjust the volume level (min energy) at which the plugin will respond to your microphone. Once the plugin is activated, a new `Speak` option will appear at the bottom near the `Send` button - when this is enabled, the application will respond to the voice received from the microphone.
|
@@ -1493,15 +1495,15 @@ sudo snap connect pygpt:docker docker:docker-daemon
|
|
1493
1495
|
|
1494
1496
|
Automatically attach code input/output to the Python Code Interpreter window. *Default:* `True`
|
1495
1497
|
|
1496
|
-
- `
|
1498
|
+
- `Tool: get_python_output` *cmd.get_python_output*
|
1497
1499
|
|
1498
1500
|
Allows `get_python_output` command execution. If enabled, it allows retrieval of the output from the Python Code Interpreter window. *Default:* `True`
|
1499
1501
|
|
1500
|
-
- `
|
1502
|
+
- `Tool: get_python_input` *cmd.get_python_input*
|
1501
1503
|
|
1502
1504
|
Allows `get_python_input` command execution. If enabled, it allows retrieval all input code (from edit section) from the Python Code Interpreter window. *Default:* `True`
|
1503
1505
|
|
1504
|
-
- `
|
1506
|
+
- `Tool: clear_python_output` *cmd.clear_python_output*
|
1505
1507
|
|
1506
1508
|
Allows `clear_python_output` command execution. If enabled, it allows clear the output of the Python Code Interpreter window. *Default:* `True`
|
1507
1509
|
|
@@ -1553,11 +1555,11 @@ Default: 5558
|
|
1553
1555
|
Default: 5559
|
1554
1556
|
|
1555
1557
|
|
1556
|
-
- `
|
1558
|
+
- `Tool: ipython_execute` *cmd.ipython_execute*
|
1557
1559
|
|
1558
1560
|
Allows Python code execution in IPython interpreter (in current kernel). *Default:* `True`
|
1559
1561
|
|
1560
|
-
- `
|
1562
|
+
- `Tool: python_kernel_restart` *cmd.ipython_kernel_restart*
|
1561
1563
|
|
1562
1564
|
Allows to restart IPython kernel. *Default:* `True`
|
1563
1565
|
|
@@ -1584,26 +1586,26 @@ Custom Docker image name
|
|
1584
1586
|
|
1585
1587
|
Custom Docker container name
|
1586
1588
|
|
1587
|
-
- `
|
1589
|
+
- `Tool: code_execute` *cmd.code_execute*
|
1588
1590
|
|
1589
1591
|
Allows `code_execute` command execution. If enabled, provides Python code execution (generate and execute from file). *Default:* `True`
|
1590
1592
|
|
1591
|
-
- `
|
1593
|
+
- `Tool: code_execute_all` *cmd.code_execute_all*
|
1592
1594
|
|
1593
1595
|
Allows `code_execute_all` command execution. If enabled, provides execution of all the Python code in interpreter window. *Default:* `True`
|
1594
1596
|
|
1595
|
-
- `
|
1597
|
+
- `Tool: code_execute_file` *cmd.code_execute_file*
|
1596
1598
|
|
1597
1599
|
Allows `code_execute_file` command execution. If enabled, provides Python code execution from existing .py file. *Default:* `True`
|
1598
1600
|
|
1599
1601
|
|
1600
1602
|
**HTML Canvas**
|
1601
1603
|
|
1602
|
-
- `
|
1604
|
+
- `Tool: render_html_output` *cmd.render_html_output*
|
1603
1605
|
|
1604
1606
|
Allows `render_html_output` command execution. If enabled, it allows to render HTML/JS code in built-it HTML/JS browser (HTML Canvas). *Default:* `True`
|
1605
1607
|
|
1606
|
-
- `
|
1608
|
+
- `Tool: get_html_output` *cmd.get_html_output*
|
1607
1609
|
|
1608
1610
|
Allows `get_html_output` command execution. If enabled, it allows retrieval current output from HTML Canvas. *Default:* `True`
|
1609
1611
|
|
@@ -1706,79 +1708,79 @@ If a file being created (with the same name) already exists, a prefix including
|
|
1706
1708
|
|
1707
1709
|
**General**
|
1708
1710
|
|
1709
|
-
- `
|
1711
|
+
- `Tool: send (upload) file as attachment` *cmd.send_file*
|
1710
1712
|
|
1711
1713
|
Allows `cmd.send_file` command execution. *Default:* `True`
|
1712
1714
|
|
1713
|
-
- `
|
1715
|
+
- `Tool: read file` *cmd.read_file*
|
1714
1716
|
|
1715
1717
|
Allows `read_file` command execution. *Default:* `True`
|
1716
1718
|
|
1717
|
-
- `
|
1719
|
+
- `Tool: append to file` *cmd.append_file*
|
1718
1720
|
|
1719
1721
|
Allows `append_file` command execution. Text-based files only (plain text, JSON, CSV, etc.) *Default:* `True`
|
1720
1722
|
|
1721
|
-
- `
|
1723
|
+
- `Tool: save file` *cmd.save_file*
|
1722
1724
|
|
1723
1725
|
Allows `save_file` command execution. Text-based files only (plain text, JSON, CSV, etc.) *Default:* `True`
|
1724
1726
|
|
1725
|
-
- `
|
1727
|
+
- `Tool: delete file` *cmd.delete_file*
|
1726
1728
|
|
1727
1729
|
Allows `delete_file` command execution. *Default:* `True`
|
1728
1730
|
|
1729
|
-
- `
|
1731
|
+
- `Tool: list files (ls)` *cmd.list_files*
|
1730
1732
|
|
1731
1733
|
Allows `list_dir` command execution. *Default:* `True`
|
1732
1734
|
|
1733
|
-
- `
|
1735
|
+
- `Tool: list files in dirs in directory (ls)` *cmd.list_dir*
|
1734
1736
|
|
1735
1737
|
Allows `mkdir` command execution. *Default:* `True`
|
1736
1738
|
|
1737
|
-
- `
|
1739
|
+
- `Tool: downloading files` *cmd.download_file*
|
1738
1740
|
|
1739
1741
|
Allows `download_file` command execution. *Default:* `True`
|
1740
1742
|
|
1741
|
-
- `
|
1743
|
+
- `Tool: removing directories` *cmd.rmdir*
|
1742
1744
|
|
1743
1745
|
Allows `rmdir` command execution. *Default:* `True`
|
1744
1746
|
|
1745
|
-
- `
|
1747
|
+
- `Tool: copying files` *cmd.copy_file*
|
1746
1748
|
|
1747
1749
|
Allows `copy_file` command execution. *Default:* `True`
|
1748
1750
|
|
1749
|
-
- `
|
1751
|
+
- `Tool: copying directories (recursive)` *cmd.copy_dir*
|
1750
1752
|
|
1751
1753
|
Allows `copy_dir` command execution. *Default:* `True`
|
1752
1754
|
|
1753
|
-
- `
|
1755
|
+
- `Tool: move files and directories (rename)` *cmd.move*
|
1754
1756
|
|
1755
1757
|
Allows `move` command execution. *Default:* `True`
|
1756
1758
|
|
1757
|
-
- `
|
1759
|
+
- `Tool: check if path is directory` *cmd.is_dir*
|
1758
1760
|
|
1759
1761
|
Allows `is_dir` command execution. *Default:* `True`
|
1760
1762
|
|
1761
|
-
- `
|
1763
|
+
- `Tool: check if path is file` *cmd.is_file*
|
1762
1764
|
|
1763
1765
|
Allows `is_file` command execution. *Default:* `True`
|
1764
1766
|
|
1765
|
-
- `
|
1767
|
+
- `Tool: check if file or directory exists` *cmd.file_exists*
|
1766
1768
|
|
1767
1769
|
Allows `file_exists` command execution. *Default:* `True`
|
1768
1770
|
|
1769
|
-
- `
|
1771
|
+
- `Tool: get file size` *cmd.file_size*
|
1770
1772
|
|
1771
1773
|
Allows `file_size` command execution. *Default:* `True`
|
1772
1774
|
|
1773
|
-
- `
|
1775
|
+
- `Tool: get file info` *cmd.file_info*
|
1774
1776
|
|
1775
1777
|
Allows `file_info` command execution. *Default:* `True`
|
1776
1778
|
|
1777
|
-
- `
|
1779
|
+
- `Tool: find file or directory` *cmd.find*
|
1778
1780
|
|
1779
1781
|
Allows `find` command execution. *Default:* `True`
|
1780
1782
|
|
1781
|
-
- `
|
1783
|
+
- `Tool: get current working directory` *cmd.cwd*
|
1782
1784
|
|
1783
1785
|
Allows `cwd` command execution. *Default:* `True`
|
1784
1786
|
|
@@ -1788,7 +1790,7 @@ Use data loaders from LlamaIndex for file reading (`read_file` command). *Defaul
|
|
1788
1790
|
|
1789
1791
|
**Indexing**
|
1790
1792
|
|
1791
|
-
- `
|
1793
|
+
- `Tool: quick query the file with LlamaIndex` *cmd.query_file*
|
1792
1794
|
|
1793
1795
|
Allows `query_file` command execution (in-memory index). If enabled, model will be able to quick index file into memory and query it for data (in-memory index) *Default:* `True`
|
1794
1796
|
|
@@ -1796,7 +1798,7 @@ Allows `query_file` command execution (in-memory index). If enabled, model will
|
|
1796
1798
|
|
1797
1799
|
Model used for query temporary index for `query_file` command (in-memory index). *Default:* `gpt-3.5-turbo`
|
1798
1800
|
|
1799
|
-
- `
|
1801
|
+
- `Tool: indexing files to persistent index` *cmd.file_index*
|
1800
1802
|
|
1801
1803
|
Allows `file_index` command execution. If enabled, model will be able to index file or directory using LlamaIndex (persistent index). *Default:* `True`
|
1802
1804
|
|
@@ -1824,7 +1826,7 @@ The plugin provides access to the operating system and executes system commands.
|
|
1824
1826
|
|
1825
1827
|
Automatically append current working directory to `sys_exec` command. *Default:* `True`
|
1826
1828
|
|
1827
|
-
- `
|
1829
|
+
- `Tool: sys_exec` *cmd.sys_exec*
|
1828
1830
|
|
1829
1831
|
Allows `sys_exec` command execution. If enabled, provides system commands execution. *Default:* `True`
|
1830
1832
|
|
@@ -1876,35 +1878,35 @@ Allows keyboard typing. *Default:* `True`
|
|
1876
1878
|
|
1877
1879
|
Allows making screenshots. *Default:* `True`
|
1878
1880
|
|
1879
|
-
- `
|
1881
|
+
- `Tool: mouse_get_pos` *cmd.mouse_get_pos*
|
1880
1882
|
|
1881
1883
|
Allows `mouse_get_pos` command execution. *Default:* `True`
|
1882
1884
|
|
1883
|
-
- `
|
1885
|
+
- `Tool: mouse_set_pos` *cmd.mouse_set_pos*
|
1884
1886
|
|
1885
1887
|
Allows `mouse_set_pos` command execution. *Default:* `True`
|
1886
1888
|
|
1887
|
-
- `
|
1889
|
+
- `Tool: make_screenshot` *cmd.make_screenshot*
|
1888
1890
|
|
1889
1891
|
Allows `make_screenshot` command execution. *Default:* `True`
|
1890
1892
|
|
1891
|
-
- `
|
1893
|
+
- `Tool: mouse_click` *cmd.mouse_click*
|
1892
1894
|
|
1893
1895
|
Allows `mouse_click` command execution. *Default:* `True`
|
1894
1896
|
|
1895
|
-
- `
|
1897
|
+
- `Tool: mouse_move` *cmd.mouse_move*
|
1896
1898
|
|
1897
1899
|
Allows `mouse_move` command execution. *Default:* `True`
|
1898
1900
|
|
1899
|
-
- `
|
1901
|
+
- `Tool: mouse_scroll` *cmd.mouse_scroll*
|
1900
1902
|
|
1901
1903
|
Allows `mouse_scroll` command execution. *Default:* `True`
|
1902
1904
|
|
1903
|
-
- `
|
1905
|
+
- `Tool: keyboard_key` *cmd.keyboard_key*
|
1904
1906
|
|
1905
1907
|
Allows `keyboard_key` command execution. *Default:* `True`
|
1906
1908
|
|
1907
|
-
- `
|
1909
|
+
- `Tool: keyboard_type` *cmd.keyboard_type*
|
1908
1910
|
|
1909
1911
|
Allows `keyboard_type` command execution. *Default:* `True`
|
1910
1912
|
|
@@ -1984,6 +1986,10 @@ Per-page content chunk size (max characters per chunk). *Default:* `20000`
|
|
1984
1986
|
|
1985
1987
|
Disables SSL verification when crawling web pages. *Default:* `False`
|
1986
1988
|
|
1989
|
+
- `Use raw content (without summarization)` *raw*
|
1990
|
+
|
1991
|
+
Return raw content from web search instead of summarized content. Provides more data but consumes more tokens. *Default:* `True`
|
1992
|
+
|
1987
1993
|
- `Timeout` *timeout*
|
1988
1994
|
|
1989
1995
|
Connection timeout (seconds). *Default:* `5`
|
@@ -1994,47 +2000,41 @@ User agent to use when making requests. *Default:* `Mozilla/5.0`.
|
|
1994
2000
|
|
1995
2001
|
- `Max result length` *max_result_length*
|
1996
2002
|
|
1997
|
-
Max length of summarized result (characters). *Default:* `
|
2003
|
+
Max length of the summarized or raw result (characters). *Default:* `50000`
|
1998
2004
|
|
1999
2005
|
- `Max summary tokens` *summary_max_tokens*
|
2000
2006
|
|
2001
2007
|
Max tokens in output when generating summary. *Default:* `1500`
|
2002
2008
|
|
2003
|
-
- `
|
2009
|
+
- `Tool: web_search` *cmd.web_search*
|
2004
2010
|
|
2005
2011
|
Allows `web_search` command execution. If enabled, model will be able to search the Web. *Default:* `True`
|
2006
2012
|
|
2007
|
-
- `
|
2013
|
+
- `Tool: web_url_open` *cmd.web_url_open*
|
2008
2014
|
|
2009
2015
|
Allows `web_url_open` command execution. If enabled, model will be able to open specified URL and summarize content. *Default:* `True`
|
2010
2016
|
|
2011
|
-
- `
|
2017
|
+
- `Tool: web_url_raw` *cmd.web_url_raw*
|
2012
2018
|
|
2013
2019
|
Allows `web_url_raw` command execution. If enabled, model will be able to open specified URL and get the raw content. *Default:* `True`
|
2014
2020
|
|
2015
|
-
- `
|
2021
|
+
- `Tool: web_request` *cmd.web_request*
|
2016
2022
|
|
2017
|
-
Allows `
|
2023
|
+
Allows `web_request` command execution. If enabled, model will be able to send any HTTP request to specified URL or API endpoint. *Default:* `True`
|
2018
2024
|
|
2019
|
-
- `
|
2025
|
+
- `Tool: web_extract_links` *cmd.web_extract_links*
|
2020
2026
|
|
2021
|
-
Allows `
|
2027
|
+
Allows `web_extract_links` command execution. If enabled, model will be able to open URL and get list of all links from it. *Default:* `True`
|
2022
2028
|
|
2023
|
-
- `
|
2029
|
+
- `Tool: web_extract_images` *cmd.web_extract_images*
|
2024
2030
|
|
2025
|
-
Allows `
|
2031
|
+
Allows `web_extract_images` command execution. If enabled, model will be able to open URL and get list of all images from it.. *Default:* `True`
|
2026
2032
|
|
2027
|
-
|
2028
|
-
|
2029
|
-
If enabled, every URL used by the model will be automatically indexed using LlamaIndex (persistent index). *Default:* `False`
|
2030
|
-
|
2031
|
-
- `Index to use` *idx*
|
2032
|
-
|
2033
|
-
ID of index to use for web page indexing (persistent index). *Default:* `base`
|
2033
|
+
**Advanced**
|
2034
2034
|
|
2035
2035
|
- `Model used for web page summarize` *summary_model*
|
2036
2036
|
|
2037
|
-
Model used for web page summarize. *Default:* `gpt-
|
2037
|
+
Model used for web page summarize. *Default:* `gpt-4o-mini`
|
2038
2038
|
|
2039
2039
|
- `Summarize prompt` *prompt_summarize*
|
2040
2040
|
|
@@ -2044,6 +2044,24 @@ Prompt used for web search results summarize, use {query} as a placeholder for s
|
|
2044
2044
|
|
2045
2045
|
Prompt used for specified URL page summarize.
|
2046
2046
|
|
2047
|
+
**Indexing**
|
2048
|
+
|
2049
|
+
- `Tool: web_index` *cmd.web_index*
|
2050
|
+
|
2051
|
+
Allows `web_index` command execution. If enabled, model will be able to index pages and external content using LlamaIndex (persistent index). *Default:* `True`
|
2052
|
+
|
2053
|
+
- `Tool: web_index_query` *cmd.web_index_query*
|
2054
|
+
|
2055
|
+
Allows `web_index_query` command execution. If enabled, model will be able to quick index and query web content using LlamaIndex (in-memory index). *Default:* `True`
|
2056
|
+
|
2057
|
+
- `Auto-index all used URLs using LlamaIndex` *auto_index*
|
2058
|
+
|
2059
|
+
If enabled, every URL used by the model will be automatically indexed using LlamaIndex (persistent index). *Default:* `False`
|
2060
|
+
|
2061
|
+
- `Index to use` *idx*
|
2062
|
+
|
2063
|
+
ID of index to use for web page indexing (persistent index). *Default:* `base`
|
2064
|
+
|
2047
2065
|
## Serial port / USB
|
2048
2066
|
|
2049
2067
|
Provides commands for reading and sending data to USB ports.
|
@@ -2091,15 +2109,15 @@ Timeout in seconds. *Default:* `1`
|
|
2091
2109
|
|
2092
2110
|
Sleep in seconds after connection *Default:* `2`
|
2093
2111
|
|
2094
|
-
- `
|
2112
|
+
- `Tool: Send text commands to USB port` *cmd.serial_send*
|
2095
2113
|
|
2096
2114
|
Allows `serial_send` command execution. *Default:* `True`
|
2097
2115
|
|
2098
|
-
- `
|
2116
|
+
- `Tool: Send raw bytes to USB port` *cmd.serial_send_bytes*
|
2099
2117
|
|
2100
2118
|
Allows `serial_send_bytes` command execution. *Default:* `True`
|
2101
2119
|
|
2102
|
-
- `
|
2120
|
+
- `Tool: Read data from USB port` *cmd.serial_read*
|
2103
2121
|
|
2104
2122
|
Allows `serial_read` command execution. *Default:* `True`
|
2105
2123
|
|
@@ -2138,31 +2156,31 @@ Where `123` is the ID of previous context (conversation) in database, example of
|
|
2138
2156
|
|
2139
2157
|
When enabled, it allows to automatically retrieve context history using @ tags, e.g. use @123 in question to use summary of context with ID 123 as additional context. *Default:* `False`
|
2140
2158
|
|
2141
|
-
- `
|
2159
|
+
- `Tool: get date range context list` *cmd.get_ctx_list_in_date_range*
|
2142
2160
|
|
2143
2161
|
Allows `get_ctx_list_in_date_range` command execution. If enabled, it allows getting the list of context history (previous conversations). *Default:* `True
|
2144
2162
|
|
2145
|
-
- `
|
2163
|
+
- `Tool: get context content by ID` *cmd.get_ctx_content_by_id*
|
2146
2164
|
|
2147
2165
|
Allows `get_ctx_content_by_id` command execution. If enabled, it allows getting summarized content of context with defined ID. *Default:* `True`
|
2148
2166
|
|
2149
|
-
- `
|
2167
|
+
- `Tool: count contexts in date range` *cmd.count_ctx_in_date*
|
2150
2168
|
|
2151
2169
|
Allows `count_ctx_in_date` command execution. If enabled, it allows counting contexts in date range. *Default:* `True`
|
2152
2170
|
|
2153
|
-
- `
|
2171
|
+
- `Tool: get day note` *cmd.get_day_note*
|
2154
2172
|
|
2155
2173
|
Allows `get_day_note` command execution. If enabled, it allows retrieving day note for specific date. *Default:* `True`
|
2156
2174
|
|
2157
|
-
- `
|
2175
|
+
- `Tool: add day note` *cmd.add_day_note*
|
2158
2176
|
|
2159
2177
|
Allows `add_day_note` command execution. If enabled, it allows adding day note for specific date. *Default:* `True`
|
2160
2178
|
|
2161
|
-
- `
|
2179
|
+
- `Tool: update day note` *cmd.update_day_note*
|
2162
2180
|
|
2163
2181
|
Allows `update_day_note` command execution. If enabled, it allows updating day note for specific date. *Default:* `True`
|
2164
2182
|
|
2165
|
-
- `
|
2183
|
+
- `Tool: remove day note` *cmd.remove_day_note*
|
2166
2184
|
|
2167
2185
|
Allows `remove_day_note` command execution. If enabled, it allows removing day note for specific date. *Default:* `True`
|
2168
2186
|
|
@@ -2254,14 +2272,57 @@ The prompt used for vision mode. It will append or replace current system prompt
|
|
2254
2272
|
|
2255
2273
|
Replace whole system prompt with vision prompt against appending it to the current prompt. *Default:* `False`
|
2256
2274
|
|
2257
|
-
- `
|
2275
|
+
- `Tool: capturing images from camera` *cmd.camera_capture*
|
2258
2276
|
|
2259
2277
|
Allows `capture` command execution. If enabled, model will be able to capture images from camera itself. The `+ Tools` option must be enabled. *Default:* `False`
|
2260
2278
|
|
2261
|
-
- `
|
2279
|
+
- `Tool: making screenshots` *cmd.make_screenshot*
|
2262
2280
|
|
2263
2281
|
Allows `screenshot` command execution. If enabled, model will be able to making screenshots itself. The `+ Tools` option must be enabled. *Default:* `False`
|
2264
2282
|
|
2283
|
+
## Mailer
|
2284
|
+
|
2285
|
+
Enables the sending, receiving, and reading of emails from the inbox. Currently, only SMTP is supported. More options coming soon.
|
2286
|
+
|
2287
|
+
**Options**
|
2288
|
+
|
2289
|
+
- `From (email)` *from_email*
|
2290
|
+
|
2291
|
+
From (email), e.g. me@domain.com
|
2292
|
+
|
2293
|
+
- `Tool: send_mail` *cmd.send_mail*
|
2294
|
+
|
2295
|
+
Allows `send_mail` command execution. If enabled, model will be able to sending emails.
|
2296
|
+
|
2297
|
+
- `Tool: receive_emails` *cmd.receive_emails*
|
2298
|
+
|
2299
|
+
Allows `receive_emails` command execution. If enabled, model will be able to receive emails from the server.
|
2300
|
+
|
2301
|
+
- `Tool: get_email_body` *cmd.get_email_body*
|
2302
|
+
|
2303
|
+
Allows `get_email_body` command execution. If enabled, model will be able to receive message body from the server.
|
2304
|
+
|
2305
|
+
- `SMTP Host` *smtp_host*
|
2306
|
+
|
2307
|
+
SMTP Host, e.g. smtp.domain.com
|
2308
|
+
|
2309
|
+
- `SMTP Port (Inbox)` *smtp_port_inbox*
|
2310
|
+
|
2311
|
+
SMTP Port, default: 995
|
2312
|
+
|
2313
|
+
- `SMTP Port (Outbox)` *smtp_port_outbox*
|
2314
|
+
|
2315
|
+
SMTP Port, default: 465
|
2316
|
+
|
2317
|
+
- `SMTP User` *smtp_user*
|
2318
|
+
|
2319
|
+
SMTP User, e.g. user@domain.com
|
2320
|
+
|
2321
|
+
- `SMTP Password` *smtp_password*
|
2322
|
+
|
2323
|
+
SMTP Password.
|
2324
|
+
|
2325
|
+
|
2265
2326
|
## Real Time
|
2266
2327
|
|
2267
2328
|
This plugin automatically adds the current date and time to each system prompt you send.
|
@@ -2680,6 +2741,8 @@ Config -> Settings...
|
|
2680
2741
|
|
2681
2742
|
- `Zoom`: Adjusts the zoom in chat window (web render view). `WebEngine / Chromium` render mode only.
|
2682
2743
|
|
2744
|
+
- `Style (chat)`: Chat style (Blocks, or ChatGPT-like, or ChatGPT-like Wide. `WebEngine / Chromium` render mode only.
|
2745
|
+
|
2683
2746
|
- `Code syntax highlight`: Syntax highlight theme in code blocks. `WebEngine / Chromium` render mode only.
|
2684
2747
|
|
2685
2748
|
- `Font Size (chat window)`: Adjusts the font size in the chat window (plain-text) and notepads.
|
@@ -2702,8 +2765,6 @@ Config -> Settings...
|
|
2702
2765
|
|
2703
2766
|
- `Use theme colors in chat window`: Use color theme in chat window, Default: True.
|
2704
2767
|
|
2705
|
-
- `Disable markdown formatting in output`: Enables plain-text display in output window, Default: False.
|
2706
|
-
|
2707
2768
|
**Files and attachments**
|
2708
2769
|
|
2709
2770
|
- `Store attachments in the workdir upload directory`: Enable to store a local copy of uploaded attachments for future use. Default: True
|
@@ -2814,14 +2875,22 @@ Config -> Settings...
|
|
2814
2875
|
|
2815
2876
|
**Vision**
|
2816
2877
|
|
2878
|
+
- `Vision: Camera Input Device`: Video capture camera index (index of the camera, default: 0).
|
2879
|
+
|
2817
2880
|
- `Vision: Camera capture width (px)`: Video capture resolution (width).
|
2818
2881
|
|
2819
2882
|
- `Vision: Camera capture height (px)`: Video capture resolution (height).
|
2820
2883
|
|
2821
|
-
- `Vision: Camera IDX (number)`: Video capture camera index (number of camera).
|
2822
|
-
|
2823
2884
|
- `Vision: Image capture quality`: Video capture image JPEG quality (%).
|
2824
2885
|
|
2886
|
+
**Audio**
|
2887
|
+
|
2888
|
+
- `Audio Input Device`: Selects the audio device for Microphone input.
|
2889
|
+
|
2890
|
+
- `Channels`: Input channels, default: 1
|
2891
|
+
|
2892
|
+
- `Sampling Rate`: Sampling rate, default: 44100
|
2893
|
+
|
2825
2894
|
**Indexes (LlamaIndex)**
|
2826
2895
|
|
2827
2896
|
- `Indexes`: List of created indexes.
|
@@ -3865,125 +3934,50 @@ may consume additional tokens that are not displayed in the main window.
|
|
3865
3934
|
|
3866
3935
|
## Recent changes:
|
3867
3936
|
|
3868
|
-
**2.4.
|
3869
|
-
|
3870
|
-
- The `Query only` mode in `Uploaded` tab has been renamed to `RAG`.
|
3871
|
-
- New options have been added under `Settings -> Files and Attachments`:
|
3872
|
-
- `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.
|
3873
|
-
- `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.
|
3874
|
-
- 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.
|
3875
|
-
|
3876
|
-
**2.4.36 (2024-11-28)**
|
3877
|
-
|
3878
|
-
- Added a new command-line argument: --workdir="/path/to/workdir" to explicitly set the current working directory.
|
3879
|
-
- Fix: start image generation in Image mode.
|
3880
|
-
|
3881
|
-
**2.4.35 (2024-11-28)**
|
3882
|
-
|
3883
|
-
- Docker removed from dependencies in Snap version #82
|
3884
|
-
- Refactored documentation.
|
3885
|
-
- Fix: toggles real-time update hook.
|
3886
|
-
- Fix: missing edit icons.
|
3887
|
-
- Added tokens from attachments to counters if mode == Full context.
|
3888
|
-
|
3889
|
-
**2.4.34 (2024-11-26)**
|
3890
|
-
|
3891
|
-
- 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.
|
3892
|
-
- Added new models: `gpt-4o-audio-preview`, `gpt-4o-2024-11-20`, `chatgpt-4o-latest`.
|
3893
|
-
- Force disabled integration with the native system menu.
|
3894
|
-
|
3895
|
-
**2.4.33 (2024-11-26)**
|
3896
|
-
|
3897
|
-
- Improved CSS and rendering of file and image lists.
|
3898
|
-
- Added displaying of used attachments in the chat window.
|
3899
|
-
|
3900
|
-
**2.4.32 (2024-11-26)**
|
3937
|
+
**2.4.42 (2024-12-15)**
|
3901
3938
|
|
3902
|
-
-
|
3903
|
-
- Added
|
3939
|
+
- Added Mailer plugin, which allows sending and retrieving emails from the server, and reading them. It currently supports only SMTP.
|
3940
|
+
- Added 'web_request' command to the Web Search plugin, enabling GET/POST/PUT and other connections to any address and API endpoint. It also supports sending POST data, files, headers, cookies, and more.
|
3941
|
+
- Improved audio output.
|
3942
|
+
- Enhanced visibility of the Video menu.
|
3943
|
+
- Other fixes.
|
3904
3944
|
|
3905
|
-
**2.4.
|
3945
|
+
**2.4.41 (2024-12-14)**
|
3906
3946
|
|
3907
|
-
-
|
3947
|
+
- Improved switching between columns on a split screen.
|
3948
|
+
- Added visual identification of the active column.
|
3908
3949
|
|
3909
|
-
**
|
3950
|
+
**2.4.40 (2024-12-13)**
|
3910
3951
|
|
3911
|
-
-
|
3952
|
+
- Enhanced Split Screen mode, now promoted from beta to stable.
|
3953
|
+
- Python Code Interpreter tool added to the Tabs.
|
3954
|
+
- HTML/JS Canvas tool added to the Tabs.
|
3955
|
+
- Added attachment icon to the context list if context has attachments.
|
3956
|
+
- Improved audio playback.
|
3957
|
+
- Improved web search.
|
3958
|
+
- Added a thumbnail image to web search results.
|
3959
|
+
- Added a new commands to web search: "extract_images" and "extract_links".
|
3960
|
+
- Added the option "Use raw content (without summarization)" to the web search plugin, which provides a more detailed result to the main model.
|
3961
|
+
- Extended the default maximum result characters to 50,000 in the web search plugin.
|
3912
3962
|
|
3913
|
-
**2.4.
|
3963
|
+
**2.4.39 (2024-12-09)**
|
3914
3964
|
|
3915
|
-
- Added
|
3916
|
-
- Updated locales for plugins.
|
3965
|
+
- 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.
|
3917
3966
|
|
3918
|
-
|
3967
|
+
- Fixed: Language switch.
|
3919
3968
|
|
3920
|
-
|
3921
|
-
- Added the ability to configure mapped volumes and ports for Docker containers in the plugin settings.
|
3922
|
-
- Optimized and speed-up the LlamaIndex plugin (inline).
|
3923
|
-
- Checkboxes replaced with Toggle buttons.
|
3924
|
-
- Improved settings dialogs.
|
3925
|
-
- Slight modification of the layout.
|
3926
|
-
- Fix: Dockerfile formatting in Code Interpreter config.
|
3927
|
-
- Fix: experts inline plugin execution.
|
3969
|
+
**2.4.38 (2024-12-08)**
|
3928
3970
|
|
3929
|
-
|
3971
|
+
- 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...
|
3972
|
+
- Added configuration options for audio input in Settings -> Audio -> Audio Input Device, Channels, and Sampling rate.
|
3930
3973
|
|
3931
|
-
-
|
3932
|
-
|
3933
|
-
**2.4.27 (2024-11-24)**
|
3934
|
-
|
3935
|
-
- Profile switch fix.
|
3936
|
-
|
3937
|
-
**2.4.26 (2024-11-24)**
|
3938
|
-
|
3939
|
-
- Fix: issue #77
|
3940
|
-
|
3941
|
-
**2.4.25 (2024-11-24)**
|
3942
|
-
|
3943
|
-
- Added new plugin: System (OS), with optional sandbox support.
|
3944
|
-
- Execution of system commands moved to the System plugin.
|
3945
|
-
- Improved sandbox/Docker management.
|
3946
|
-
- Enhanced plugin settings.
|
3947
|
-
- Commands renamed to Tools, simplified layout.
|
3948
|
-
- Fix: handling of the Mouse and Keyboard plugin.
|
3949
|
-
- Fix: switching to a new context from a non-chat tab.
|
3950
|
-
- Fix: camera screenshots when the camera is not started.
|
3951
|
-
|
3952
|
-
**2.4.24 (2024-11-23)**
|
3953
|
-
|
3954
|
-
- Added the ability to use ZIP and TAR archives as attachments (they are now unpacked "on the fly").
|
3955
|
-
- Added the ability to index ZIP and TAR archives (it may be necessary to remove .zip and .tar from the blacklist in the settings).
|
3956
|
-
- Fix: error when uploading to the /data directory using the Upload files button.
|
3957
|
-
|
3958
|
-
**2.4.23 (2024-11-23)**
|
3959
|
-
|
3960
|
-
- Condensed layout widgets margins.
|
3961
|
-
- Added filename info to provided additional context from attachments.
|
3962
|
-
- Fixed auto-clear in attachments in Assistants mode.
|
3963
|
-
|
3964
|
-
**2.4.22 (2024-11-23)**
|
3965
|
-
|
3966
|
-
- 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`.
|
3967
|
-
- Edit icons in the chat window are enabled by default.
|
3968
|
-
|
3969
|
-
**2.4.21 (2024-11-23)**
|
3970
|
-
|
3971
|
-
- 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.
|
3972
|
-
|
3973
|
-
- Fixed the issue with restarting the agent after it has been forcefully stopped.
|
3974
|
-
|
3975
|
-
**2.4.20 (2024-11-22)**
|
3976
|
-
|
3977
|
-
- Fixed freeze in Windows installer. #75
|
3978
|
-
- Small fixes.
|
3979
|
-
|
3980
|
-
**2.4.19 (2024-11-22)**
|
3974
|
+
**2.4.37 (2024-11-30)**
|
3981
3975
|
|
3982
|
-
-
|
3983
|
-
-
|
3984
|
-
-
|
3985
|
-
-
|
3986
|
-
-
|
3976
|
+
- The `Query only` mode in `Uploaded` tab has been renamed to `RAG`.
|
3977
|
+
- New options have been added under `Settings -> Files and Attachments`:
|
3978
|
+
- `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.
|
3979
|
+
- `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.
|
3980
|
+
- 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.
|
3987
3981
|
|
3988
3982
|
|
3989
3983
|
# Credits and links
|