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.
Files changed (340) hide show
  1. CHANGELOG.md +37 -0
  2. README.md +176 -182
  3. pygpt_net/CHANGELOG.txt +37 -0
  4. pygpt_net/__init__.py +3 -3
  5. pygpt_net/app.py +3 -1
  6. pygpt_net/controller/__init__.py +7 -3
  7. pygpt_net/controller/access/control.py +1 -1
  8. pygpt_net/controller/access/voice.py +11 -5
  9. pygpt_net/controller/agent/experts.py +11 -6
  10. pygpt_net/controller/agent/legacy.py +8 -6
  11. pygpt_net/controller/agent/llama.py +4 -2
  12. pygpt_net/controller/assistant/__init__.py +9 -4
  13. pygpt_net/controller/assistant/batch.py +38 -21
  14. pygpt_net/controller/assistant/editor.py +7 -6
  15. pygpt_net/controller/assistant/files.py +23 -7
  16. pygpt_net/controller/assistant/store.py +20 -7
  17. pygpt_net/controller/assistant/threads.py +34 -8
  18. pygpt_net/controller/attachment.py +29 -10
  19. pygpt_net/controller/audio/__init__.py +26 -5
  20. pygpt_net/controller/calendar/__init__.py +23 -4
  21. pygpt_net/controller/calendar/note.py +57 -11
  22. pygpt_net/controller/camera.py +4 -12
  23. pygpt_net/controller/chat/__init__.py +5 -3
  24. pygpt_net/controller/chat/attachment.py +34 -7
  25. pygpt_net/controller/chat/audio.py +2 -2
  26. pygpt_net/controller/chat/command.py +4 -2
  27. pygpt_net/controller/chat/common.py +11 -4
  28. pygpt_net/controller/chat/files.py +10 -3
  29. pygpt_net/controller/chat/image.py +17 -5
  30. pygpt_net/controller/chat/input.py +10 -7
  31. pygpt_net/controller/chat/output.py +21 -6
  32. pygpt_net/controller/chat/render.py +100 -21
  33. pygpt_net/controller/chat/response.py +34 -7
  34. pygpt_net/controller/chat/stream.py +4 -2
  35. pygpt_net/controller/chat/text.py +6 -4
  36. pygpt_net/controller/command.py +11 -3
  37. pygpt_net/controller/config/__init__.py +34 -6
  38. pygpt_net/controller/config/field/checkbox.py +7 -4
  39. pygpt_net/controller/config/field/cmd.py +7 -5
  40. pygpt_net/controller/config/field/combo.py +14 -6
  41. pygpt_net/controller/config/field/dictionary.py +14 -11
  42. pygpt_net/controller/config/field/input.py +9 -6
  43. pygpt_net/controller/config/field/slider.py +11 -8
  44. pygpt_net/controller/config/field/textarea.py +8 -5
  45. pygpt_net/controller/config/placeholder.py +66 -21
  46. pygpt_net/controller/ctx/__init__.py +138 -49
  47. pygpt_net/controller/ctx/common.py +15 -4
  48. pygpt_net/controller/ctx/extra.py +11 -3
  49. pygpt_net/controller/ctx/summarizer.py +24 -5
  50. pygpt_net/controller/debug/__init__.py +27 -6
  51. pygpt_net/controller/dialogs/confirm.py +34 -7
  52. pygpt_net/controller/dialogs/debug.py +4 -2
  53. pygpt_net/controller/dialogs/info.py +7 -2
  54. pygpt_net/controller/files.py +48 -10
  55. pygpt_net/controller/finder.py +11 -5
  56. pygpt_net/controller/idx/__init__.py +10 -3
  57. pygpt_net/controller/idx/common.py +4 -2
  58. pygpt_net/controller/idx/indexer.py +25 -17
  59. pygpt_net/controller/idx/settings.py +9 -3
  60. pygpt_net/controller/kernel/__init__.py +34 -8
  61. pygpt_net/controller/kernel/reply.py +12 -3
  62. pygpt_net/controller/kernel/stack.py +5 -3
  63. pygpt_net/controller/lang/custom.py +2 -7
  64. pygpt_net/controller/lang/mapping.py +5 -3
  65. pygpt_net/controller/layout.py +2 -2
  66. pygpt_net/controller/mode.py +16 -4
  67. pygpt_net/controller/model/__init__.py +14 -3
  68. pygpt_net/controller/model/editor.py +8 -3
  69. pygpt_net/controller/notepad.py +26 -12
  70. pygpt_net/controller/painter/capture.py +23 -4
  71. pygpt_net/controller/painter/common.py +9 -7
  72. pygpt_net/controller/plugins/__init__.py +19 -5
  73. pygpt_net/controller/plugins/presets.py +15 -6
  74. pygpt_net/controller/plugins/settings.py +9 -3
  75. pygpt_net/controller/presets/__init__.py +55 -16
  76. pygpt_net/controller/presets/editor.py +26 -10
  77. pygpt_net/controller/settings/__init__.py +3 -2
  78. pygpt_net/controller/settings/editor.py +29 -7
  79. pygpt_net/controller/settings/profile.py +22 -5
  80. pygpt_net/controller/theme/__init__.py +54 -12
  81. pygpt_net/controller/theme/common.py +24 -2
  82. pygpt_net/controller/theme/markdown.py +32 -16
  83. pygpt_net/controller/theme/menu.py +26 -5
  84. pygpt_net/controller/theme/nodes.py +2 -5
  85. pygpt_net/controller/tools/__init__.py +40 -2
  86. pygpt_net/controller/ui/__init__.py +4 -6
  87. pygpt_net/controller/ui/mode.py +16 -21
  88. pygpt_net/controller/ui/tabs.py +363 -65
  89. pygpt_net/core/access/actions.py +6 -4
  90. pygpt_net/core/access/shortcuts.py +4 -3
  91. pygpt_net/core/access/voice.py +6 -5
  92. pygpt_net/core/agents/legacy.py +4 -2
  93. pygpt_net/core/agents/memory.py +7 -2
  94. pygpt_net/core/agents/observer/evaluation.py +15 -7
  95. pygpt_net/core/agents/provider.py +9 -4
  96. pygpt_net/core/agents/runner.py +61 -15
  97. pygpt_net/core/agents/tools.py +23 -5
  98. pygpt_net/core/assistants/__init__.py +6 -4
  99. pygpt_net/core/assistants/files.py +35 -12
  100. pygpt_net/core/assistants/store.py +20 -10
  101. pygpt_net/core/attachments/__init__.py +54 -15
  102. pygpt_net/core/attachments/context.py +92 -29
  103. pygpt_net/core/audio/__init__.py +74 -3
  104. pygpt_net/core/audio/context.py +7 -2
  105. pygpt_net/core/audio/whisper.py +37 -0
  106. pygpt_net/core/bridge/__init__.py +22 -6
  107. pygpt_net/core/bridge/context.py +5 -3
  108. pygpt_net/core/bridge/worker.py +2 -2
  109. pygpt_net/core/calendar/__init__.py +57 -11
  110. pygpt_net/core/chain/__init__.py +8 -2
  111. pygpt_net/core/chain/chat.py +10 -8
  112. pygpt_net/core/chain/completion.py +10 -7
  113. pygpt_net/core/command.py +62 -17
  114. pygpt_net/core/ctx/__init__.py +260 -58
  115. pygpt_net/core/ctx/bag.py +25 -4
  116. pygpt_net/core/ctx/container.py +28 -17
  117. pygpt_net/core/ctx/idx.py +45 -8
  118. pygpt_net/core/ctx/output.py +95 -74
  119. pygpt_net/core/ctx/reply.py +5 -2
  120. pygpt_net/core/db/__init__.py +8 -7
  121. pygpt_net/core/db/viewer.py +17 -11
  122. pygpt_net/core/debug/__init__.py +10 -9
  123. pygpt_net/core/debug/events.py +22 -10
  124. pygpt_net/core/debug/tabs.py +9 -3
  125. pygpt_net/core/docker/__init__.py +11 -5
  126. pygpt_net/core/docker/builder.py +11 -3
  127. pygpt_net/core/events/app.py +5 -3
  128. pygpt_net/core/events/base.py +11 -5
  129. pygpt_net/core/events/control.py +5 -3
  130. pygpt_net/core/events/event.py +17 -7
  131. pygpt_net/core/events/kernel.py +5 -3
  132. pygpt_net/core/events/render.py +5 -3
  133. pygpt_net/core/experts/__init__.py +5 -4
  134. pygpt_net/core/filesystem/__init__.py +52 -34
  135. pygpt_net/core/filesystem/actions.py +8 -5
  136. pygpt_net/core/filesystem/editor.py +13 -3
  137. pygpt_net/core/filesystem/types.py +12 -7
  138. pygpt_net/core/filesystem/url.py +7 -3
  139. pygpt_net/core/history.py +3 -2
  140. pygpt_net/core/idx/__init__.py +48 -27
  141. pygpt_net/core/idx/chat.py +51 -17
  142. pygpt_net/core/idx/context.py +6 -2
  143. pygpt_net/core/idx/indexing.py +107 -42
  144. pygpt_net/core/idx/llm.py +11 -3
  145. pygpt_net/core/idx/metadata.py +13 -3
  146. pygpt_net/core/idx/types/ctx.py +32 -6
  147. pygpt_net/core/idx/types/external.py +41 -7
  148. pygpt_net/core/idx/types/files.py +31 -6
  149. pygpt_net/core/image.py +15 -4
  150. pygpt_net/core/installer.py +2 -4
  151. pygpt_net/core/llm/__init__.py +13 -3
  152. pygpt_net/core/locale.py +34 -8
  153. pygpt_net/core/models.py +63 -17
  154. pygpt_net/core/modes.py +11 -13
  155. pygpt_net/core/notepad.py +10 -5
  156. pygpt_net/core/plugins.py +31 -19
  157. pygpt_net/core/presets.py +37 -17
  158. pygpt_net/core/profile.py +21 -7
  159. pygpt_net/core/prompt/__init__.py +10 -3
  160. pygpt_net/core/prompt/custom.py +7 -6
  161. pygpt_net/core/prompt/template.py +9 -3
  162. pygpt_net/core/render/base.py +117 -22
  163. pygpt_net/core/render/markdown/body.py +27 -7
  164. pygpt_net/core/render/markdown/renderer.py +119 -22
  165. pygpt_net/core/render/plain/body.py +22 -5
  166. pygpt_net/core/render/plain/renderer.py +97 -21
  167. pygpt_net/core/render/web/body.py +75 -25
  168. pygpt_net/core/render/web/parser.py +3 -1
  169. pygpt_net/core/render/web/renderer.py +313 -63
  170. pygpt_net/core/settings.py +10 -5
  171. pygpt_net/core/tabs/__init__.py +290 -103
  172. pygpt_net/core/tabs/tab.py +26 -5
  173. pygpt_net/core/tokens.py +47 -12
  174. pygpt_net/core/updater/__init__.py +20 -7
  175. pygpt_net/core/vision/analyzer.py +29 -6
  176. pygpt_net/core/{web.py → web/__init__.py} +29 -7
  177. pygpt_net/core/web/helpers.py +237 -0
  178. pygpt_net/data/config/config.json +15 -4
  179. pygpt_net/data/config/models.json +3 -3
  180. pygpt_net/data/config/modes.json +3 -3
  181. pygpt_net/data/config/settings.json +55 -10
  182. pygpt_net/data/config/settings_section.json +3 -0
  183. pygpt_net/data/css/style.light.css +1 -0
  184. pygpt_net/data/css/{web.css → web-blocks.css} +162 -133
  185. pygpt_net/data/css/{web.light.css → web-blocks.light.css} +7 -0
  186. pygpt_net/data/css/web-chatgpt.css +350 -0
  187. pygpt_net/data/css/web-chatgpt.dark.css +64 -0
  188. pygpt_net/data/css/web-chatgpt.light.css +75 -0
  189. pygpt_net/data/css/web-chatgpt_wide.css +350 -0
  190. pygpt_net/data/css/web-chatgpt_wide.dark.css +64 -0
  191. pygpt_net/data/css/web-chatgpt_wide.light.css +75 -0
  192. pygpt_net/data/icons/split_screen.svg +1 -0
  193. pygpt_net/data/locale/locale.de.ini +12 -0
  194. pygpt_net/data/locale/locale.en.ini +18 -2
  195. pygpt_net/data/locale/locale.es.ini +12 -0
  196. pygpt_net/data/locale/locale.fr.ini +12 -0
  197. pygpt_net/data/locale/locale.it.ini +12 -0
  198. pygpt_net/data/locale/locale.pl.ini +12 -0
  199. pygpt_net/data/locale/locale.uk.ini +12 -0
  200. pygpt_net/data/locale/locale.zh.ini +12 -0
  201. pygpt_net/data/locale/plugin.cmd_web.de.ini +2 -0
  202. pygpt_net/data/locale/plugin.cmd_web.en.ini +22 -10
  203. pygpt_net/data/locale/plugin.cmd_web.es.ini +2 -0
  204. pygpt_net/data/locale/plugin.cmd_web.fr.ini +2 -0
  205. pygpt_net/data/locale/plugin.cmd_web.it.ini +2 -0
  206. pygpt_net/data/locale/plugin.cmd_web.pl.ini +2 -0
  207. pygpt_net/data/locale/plugin.cmd_web.uk.ini +2 -0
  208. pygpt_net/data/locale/plugin.cmd_web.zh.ini +2 -0
  209. pygpt_net/data/locale/plugin.mailer.en.ini +21 -0
  210. pygpt_net/icons.qrc +1 -0
  211. pygpt_net/icons_rc.py +165 -136
  212. pygpt_net/item/ctx.py +58 -25
  213. pygpt_net/plugin/agent/__init__.py +7 -2
  214. pygpt_net/plugin/audio_input/simple.py +21 -5
  215. pygpt_net/plugin/audio_output/__init__.py +9 -1
  216. pygpt_net/plugin/base/config.py +4 -2
  217. pygpt_net/plugin/base/plugin.py +75 -23
  218. pygpt_net/plugin/base/worker.py +42 -11
  219. pygpt_net/plugin/cmd_code_interpreter/__init__.py +39 -37
  220. pygpt_net/plugin/cmd_code_interpreter/runner.py +25 -12
  221. pygpt_net/plugin/cmd_history/config.py +2 -2
  222. pygpt_net/plugin/cmd_web/__init__.py +48 -9
  223. pygpt_net/plugin/cmd_web/config.py +135 -41
  224. pygpt_net/plugin/cmd_web/websearch.py +74 -33
  225. pygpt_net/plugin/cmd_web/worker.py +142 -13
  226. pygpt_net/plugin/idx_llama_index/config.py +3 -3
  227. pygpt_net/plugin/mailer/__init__.py +123 -0
  228. pygpt_net/plugin/mailer/config.py +149 -0
  229. pygpt_net/plugin/mailer/runner.py +285 -0
  230. pygpt_net/plugin/mailer/worker.py +123 -0
  231. pygpt_net/provider/agents/base.py +5 -2
  232. pygpt_net/provider/agents/openai.py +4 -2
  233. pygpt_net/provider/agents/openai_assistant.py +4 -2
  234. pygpt_net/provider/agents/planner.py +4 -2
  235. pygpt_net/provider/agents/react.py +4 -2
  236. pygpt_net/provider/audio_output/openai_tts.py +5 -11
  237. pygpt_net/provider/core/assistant/base.py +5 -3
  238. pygpt_net/provider/core/assistant/json_file.py +8 -5
  239. pygpt_net/provider/core/assistant_file/base.py +4 -3
  240. pygpt_net/provider/core/assistant_file/db_sqlite/__init__.py +4 -3
  241. pygpt_net/provider/core/assistant_file/db_sqlite/storage.py +3 -2
  242. pygpt_net/provider/core/assistant_store/base.py +6 -4
  243. pygpt_net/provider/core/assistant_store/db_sqlite/__init__.py +5 -4
  244. pygpt_net/provider/core/assistant_store/db_sqlite/storage.py +5 -3
  245. pygpt_net/provider/core/attachment/base.py +5 -3
  246. pygpt_net/provider/core/attachment/json_file.py +4 -3
  247. pygpt_net/provider/core/calendar/base.py +5 -3
  248. pygpt_net/provider/core/calendar/db_sqlite/__init__.py +6 -5
  249. pygpt_net/provider/core/calendar/db_sqlite/storage.py +5 -4
  250. pygpt_net/provider/core/config/base.py +8 -6
  251. pygpt_net/provider/core/config/json_file.py +9 -7
  252. pygpt_net/provider/core/config/patch.py +43 -1
  253. pygpt_net/provider/core/ctx/base.py +30 -25
  254. pygpt_net/provider/core/ctx/db_sqlite/__init__.py +59 -34
  255. pygpt_net/provider/core/ctx/db_sqlite/storage.py +62 -30
  256. pygpt_net/provider/core/ctx/db_sqlite/utils.py +11 -9
  257. pygpt_net/provider/core/index/base.py +129 -23
  258. pygpt_net/provider/core/index/db_sqlite/__init__.py +130 -23
  259. pygpt_net/provider/core/index/db_sqlite/storage.py +130 -23
  260. pygpt_net/provider/core/index/db_sqlite/utils.py +4 -2
  261. pygpt_net/provider/core/mode/base.py +5 -3
  262. pygpt_net/provider/core/mode/json_file.py +7 -6
  263. pygpt_net/provider/core/model/base.py +6 -4
  264. pygpt_net/provider/core/model/json_file.py +9 -7
  265. pygpt_net/provider/core/notepad/base.py +5 -3
  266. pygpt_net/provider/core/notepad/db_sqlite/__init__.py +5 -4
  267. pygpt_net/provider/core/notepad/db_sqlite/storage.py +4 -3
  268. pygpt_net/provider/core/plugin_preset/base.py +4 -2
  269. pygpt_net/provider/core/plugin_preset/json_file.py +5 -3
  270. pygpt_net/provider/core/preset/base.py +6 -4
  271. pygpt_net/provider/core/preset/json_file.py +9 -9
  272. pygpt_net/provider/core/prompt/base.py +6 -3
  273. pygpt_net/provider/core/prompt/json_file.py +11 -6
  274. pygpt_net/provider/gpt/assistants.py +21 -11
  275. pygpt_net/provider/gpt/audio.py +6 -5
  276. pygpt_net/provider/gpt/chat.py +10 -7
  277. pygpt_net/provider/gpt/completion.py +11 -5
  278. pygpt_net/provider/gpt/image.py +9 -2
  279. pygpt_net/provider/gpt/store.py +53 -18
  280. pygpt_net/provider/gpt/vision.py +17 -11
  281. pygpt_net/provider/llms/anthropic.py +7 -2
  282. pygpt_net/provider/llms/azure_openai.py +26 -5
  283. pygpt_net/provider/llms/base.py +47 -9
  284. pygpt_net/provider/llms/google.py +7 -2
  285. pygpt_net/provider/llms/hugging_face.py +13 -3
  286. pygpt_net/provider/llms/hugging_face_api.py +18 -4
  287. pygpt_net/provider/llms/local.py +7 -2
  288. pygpt_net/provider/llms/ollama.py +30 -6
  289. pygpt_net/provider/llms/openai.py +32 -6
  290. pygpt_net/provider/vector_stores/__init__.py +45 -14
  291. pygpt_net/provider/vector_stores/base.py +35 -8
  292. pygpt_net/provider/vector_stores/chroma.py +13 -3
  293. pygpt_net/provider/vector_stores/ctx_attachment.py +31 -12
  294. pygpt_net/provider/vector_stores/elasticsearch.py +12 -3
  295. pygpt_net/provider/vector_stores/pinecode.py +12 -3
  296. pygpt_net/provider/vector_stores/redis.py +12 -3
  297. pygpt_net/provider/vector_stores/simple.py +12 -3
  298. pygpt_net/provider/vector_stores/temp.py +16 -4
  299. pygpt_net/provider/web/base.py +10 -3
  300. pygpt_net/provider/web/google_custom_search.py +9 -3
  301. pygpt_net/provider/web/microsoft_bing.py +9 -3
  302. pygpt_net/tools/__init__.py +20 -4
  303. pygpt_net/tools/audio_transcriber/__init__.py +4 -3
  304. pygpt_net/tools/base.py +28 -7
  305. pygpt_net/tools/code_interpreter/__init__.py +177 -77
  306. pygpt_net/tools/code_interpreter/ui/dialogs.py +21 -103
  307. pygpt_net/tools/code_interpreter/ui/widgets.py +284 -9
  308. pygpt_net/tools/html_canvas/__init__.py +81 -25
  309. pygpt_net/tools/html_canvas/ui/dialogs.py +46 -62
  310. pygpt_net/tools/html_canvas/ui/widgets.py +96 -3
  311. pygpt_net/tools/image_viewer/__init__.py +10 -4
  312. pygpt_net/tools/indexer/__init__.py +8 -7
  313. pygpt_net/tools/media_player/__init__.py +4 -3
  314. pygpt_net/tools/text_editor/__init__.py +36 -10
  315. pygpt_net/ui/base/context_menu.py +2 -2
  316. pygpt_net/ui/layout/chat/input.py +10 -18
  317. pygpt_net/ui/layout/chat/output.py +27 -45
  318. pygpt_net/ui/layout/ctx/ctx_list.py +13 -4
  319. pygpt_net/ui/layout/toolbox/footer.py +18 -2
  320. pygpt_net/ui/main.py +2 -2
  321. pygpt_net/ui/menu/audio.py +12 -1
  322. pygpt_net/ui/menu/config.py +7 -11
  323. pygpt_net/ui/menu/debug.py +11 -1
  324. pygpt_net/ui/menu/theme.py +9 -2
  325. pygpt_net/ui/widget/filesystem/explorer.py +2 -2
  326. pygpt_net/ui/widget/lists/context.py +27 -5
  327. pygpt_net/ui/widget/tabs/Input.py +2 -2
  328. pygpt_net/ui/widget/tabs/body.py +2 -1
  329. pygpt_net/ui/widget/tabs/layout.py +195 -0
  330. pygpt_net/ui/widget/tabs/output.py +218 -55
  331. pygpt_net/ui/widget/textarea/html.py +11 -1
  332. pygpt_net/ui/widget/textarea/output.py +10 -1
  333. pygpt_net/ui/widget/textarea/search_input.py +4 -1
  334. pygpt_net/ui/widget/textarea/web.py +49 -9
  335. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/METADATA +177 -183
  336. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/RECORD +340 -325
  337. /pygpt_net/data/css/{web.dark.css → web-blocks.dark.css} +0 -0
  338. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/LICENSE +0 -0
  339. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.dist-info}/WHEEL +0 -0
  340. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.42.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.37
3
+ Version: 2.4.42
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
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
94
94
 
95
- Release: **2.4.37** | build: **2024.11.30** | Python: **>=3.10, <3.12**
95
+ Release: **2.4.42** | build: **2024.12.15** | Python: **>=3.10, <3.12**
96
96
 
97
97
  > Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
98
98
  >
@@ -1157,6 +1157,8 @@ as well as list and create directories.
1157
1157
 
1158
1158
  - `Voice Control (inline)` - provides voice control command execution within a conversation.
1159
1159
 
1160
+ - `Mailer` - Provides the ability to send, receive and read emails.
1161
+
1160
1162
  ## Audio Input
1161
1163
 
1162
1164
  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.
@@ -1583,15 +1585,15 @@ sudo snap connect pygpt:docker docker:docker-daemon
1583
1585
 
1584
1586
  Automatically attach code input/output to the Python Code Interpreter window. *Default:* `True`
1585
1587
 
1586
- - `Enable: get_python_output` *cmd.get_python_output*
1588
+ - `Tool: get_python_output` *cmd.get_python_output*
1587
1589
 
1588
1590
  Allows `get_python_output` command execution. If enabled, it allows retrieval of the output from the Python Code Interpreter window. *Default:* `True`
1589
1591
 
1590
- - `Enable: get_python_input` *cmd.get_python_input*
1592
+ - `Tool: get_python_input` *cmd.get_python_input*
1591
1593
 
1592
1594
  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`
1593
1595
 
1594
- - `Enable: clear_python_output` *cmd.clear_python_output*
1596
+ - `Tool: clear_python_output` *cmd.clear_python_output*
1595
1597
 
1596
1598
  Allows `clear_python_output` command execution. If enabled, it allows clear the output of the Python Code Interpreter window. *Default:* `True`
1597
1599
 
@@ -1643,11 +1645,11 @@ Default: 5558
1643
1645
  Default: 5559
1644
1646
 
1645
1647
 
1646
- - `Enable: ipython_execute` *cmd.ipython_execute*
1648
+ - `Tool: ipython_execute` *cmd.ipython_execute*
1647
1649
 
1648
1650
  Allows Python code execution in IPython interpreter (in current kernel). *Default:* `True`
1649
1651
 
1650
- - `Enable: python_kernel_restart` *cmd.ipython_kernel_restart*
1652
+ - `Tool: python_kernel_restart` *cmd.ipython_kernel_restart*
1651
1653
 
1652
1654
  Allows to restart IPython kernel. *Default:* `True`
1653
1655
 
@@ -1674,26 +1676,26 @@ Custom Docker image name
1674
1676
 
1675
1677
  Custom Docker container name
1676
1678
 
1677
- - `Enable: code_execute` *cmd.code_execute*
1679
+ - `Tool: code_execute` *cmd.code_execute*
1678
1680
 
1679
1681
  Allows `code_execute` command execution. If enabled, provides Python code execution (generate and execute from file). *Default:* `True`
1680
1682
 
1681
- - `Enable: code_execute_all` *cmd.code_execute_all*
1683
+ - `Tool: code_execute_all` *cmd.code_execute_all*
1682
1684
 
1683
1685
  Allows `code_execute_all` command execution. If enabled, provides execution of all the Python code in interpreter window. *Default:* `True`
1684
1686
 
1685
- - `Enable: code_execute_file` *cmd.code_execute_file*
1687
+ - `Tool: code_execute_file` *cmd.code_execute_file*
1686
1688
 
1687
1689
  Allows `code_execute_file` command execution. If enabled, provides Python code execution from existing .py file. *Default:* `True`
1688
1690
 
1689
1691
 
1690
1692
  **HTML Canvas**
1691
1693
 
1692
- - `Enable: render_html_output` *cmd.render_html_output*
1694
+ - `Tool: render_html_output` *cmd.render_html_output*
1693
1695
 
1694
1696
  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`
1695
1697
 
1696
- - `Enable: get_html_output` *cmd.get_html_output*
1698
+ - `Tool: get_html_output` *cmd.get_html_output*
1697
1699
 
1698
1700
  Allows `get_html_output` command execution. If enabled, it allows retrieval current output from HTML Canvas. *Default:* `True`
1699
1701
 
@@ -1796,79 +1798,79 @@ If a file being created (with the same name) already exists, a prefix including
1796
1798
 
1797
1799
  **General**
1798
1800
 
1799
- - `Enable: send (upload) file as attachment` *cmd.send_file*
1801
+ - `Tool: send (upload) file as attachment` *cmd.send_file*
1800
1802
 
1801
1803
  Allows `cmd.send_file` command execution. *Default:* `True`
1802
1804
 
1803
- - `Enable: read file` *cmd.read_file*
1805
+ - `Tool: read file` *cmd.read_file*
1804
1806
 
1805
1807
  Allows `read_file` command execution. *Default:* `True`
1806
1808
 
1807
- - `Enable: append to file` *cmd.append_file*
1809
+ - `Tool: append to file` *cmd.append_file*
1808
1810
 
1809
1811
  Allows `append_file` command execution. Text-based files only (plain text, JSON, CSV, etc.) *Default:* `True`
1810
1812
 
1811
- - `Enable: save file` *cmd.save_file*
1813
+ - `Tool: save file` *cmd.save_file*
1812
1814
 
1813
1815
  Allows `save_file` command execution. Text-based files only (plain text, JSON, CSV, etc.) *Default:* `True`
1814
1816
 
1815
- - `Enable: delete file` *cmd.delete_file*
1817
+ - `Tool: delete file` *cmd.delete_file*
1816
1818
 
1817
1819
  Allows `delete_file` command execution. *Default:* `True`
1818
1820
 
1819
- - `Enable: list files (ls)` *cmd.list_files*
1821
+ - `Tool: list files (ls)` *cmd.list_files*
1820
1822
 
1821
1823
  Allows `list_dir` command execution. *Default:* `True`
1822
1824
 
1823
- - `Enable: list files in dirs in directory (ls)` *cmd.list_dir*
1825
+ - `Tool: list files in dirs in directory (ls)` *cmd.list_dir*
1824
1826
 
1825
1827
  Allows `mkdir` command execution. *Default:* `True`
1826
1828
 
1827
- - `Enable: downloading files` *cmd.download_file*
1829
+ - `Tool: downloading files` *cmd.download_file*
1828
1830
 
1829
1831
  Allows `download_file` command execution. *Default:* `True`
1830
1832
 
1831
- - `Enable: removing directories` *cmd.rmdir*
1833
+ - `Tool: removing directories` *cmd.rmdir*
1832
1834
 
1833
1835
  Allows `rmdir` command execution. *Default:* `True`
1834
1836
 
1835
- - `Enable: copying files` *cmd.copy_file*
1837
+ - `Tool: copying files` *cmd.copy_file*
1836
1838
 
1837
1839
  Allows `copy_file` command execution. *Default:* `True`
1838
1840
 
1839
- - `Enable: copying directories (recursive)` *cmd.copy_dir*
1841
+ - `Tool: copying directories (recursive)` *cmd.copy_dir*
1840
1842
 
1841
1843
  Allows `copy_dir` command execution. *Default:* `True`
1842
1844
 
1843
- - `Enable: move files and directories (rename)` *cmd.move*
1845
+ - `Tool: move files and directories (rename)` *cmd.move*
1844
1846
 
1845
1847
  Allows `move` command execution. *Default:* `True`
1846
1848
 
1847
- - `Enable: check if path is directory` *cmd.is_dir*
1849
+ - `Tool: check if path is directory` *cmd.is_dir*
1848
1850
 
1849
1851
  Allows `is_dir` command execution. *Default:* `True`
1850
1852
 
1851
- - `Enable: check if path is file` *cmd.is_file*
1853
+ - `Tool: check if path is file` *cmd.is_file*
1852
1854
 
1853
1855
  Allows `is_file` command execution. *Default:* `True`
1854
1856
 
1855
- - `Enable: check if file or directory exists` *cmd.file_exists*
1857
+ - `Tool: check if file or directory exists` *cmd.file_exists*
1856
1858
 
1857
1859
  Allows `file_exists` command execution. *Default:* `True`
1858
1860
 
1859
- - `Enable: get file size` *cmd.file_size*
1861
+ - `Tool: get file size` *cmd.file_size*
1860
1862
 
1861
1863
  Allows `file_size` command execution. *Default:* `True`
1862
1864
 
1863
- - `Enable: get file info` *cmd.file_info*
1865
+ - `Tool: get file info` *cmd.file_info*
1864
1866
 
1865
1867
  Allows `file_info` command execution. *Default:* `True`
1866
1868
 
1867
- - `Enable: find file or directory` *cmd.find*
1869
+ - `Tool: find file or directory` *cmd.find*
1868
1870
 
1869
1871
  Allows `find` command execution. *Default:* `True`
1870
1872
 
1871
- - `Enable: get current working directory` *cmd.cwd*
1873
+ - `Tool: get current working directory` *cmd.cwd*
1872
1874
 
1873
1875
  Allows `cwd` command execution. *Default:* `True`
1874
1876
 
@@ -1878,7 +1880,7 @@ Use data loaders from LlamaIndex for file reading (`read_file` command). *Defaul
1878
1880
 
1879
1881
  **Indexing**
1880
1882
 
1881
- - `Enable: quick query the file with LlamaIndex` *cmd.query_file*
1883
+ - `Tool: quick query the file with LlamaIndex` *cmd.query_file*
1882
1884
 
1883
1885
  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`
1884
1886
 
@@ -1886,7 +1888,7 @@ Allows `query_file` command execution (in-memory index). If enabled, model will
1886
1888
 
1887
1889
  Model used for query temporary index for `query_file` command (in-memory index). *Default:* `gpt-3.5-turbo`
1888
1890
 
1889
- - `Enable: indexing files to persistent index` *cmd.file_index*
1891
+ - `Tool: indexing files to persistent index` *cmd.file_index*
1890
1892
 
1891
1893
  Allows `file_index` command execution. If enabled, model will be able to index file or directory using LlamaIndex (persistent index). *Default:* `True`
1892
1894
 
@@ -1914,7 +1916,7 @@ The plugin provides access to the operating system and executes system commands.
1914
1916
 
1915
1917
  Automatically append current working directory to `sys_exec` command. *Default:* `True`
1916
1918
 
1917
- - `Enable: sys_exec` *cmd.sys_exec*
1919
+ - `Tool: sys_exec` *cmd.sys_exec*
1918
1920
 
1919
1921
  Allows `sys_exec` command execution. If enabled, provides system commands execution. *Default:* `True`
1920
1922
 
@@ -1966,35 +1968,35 @@ Allows keyboard typing. *Default:* `True`
1966
1968
 
1967
1969
  Allows making screenshots. *Default:* `True`
1968
1970
 
1969
- - `Enable: mouse_get_pos` *cmd.mouse_get_pos*
1971
+ - `Tool: mouse_get_pos` *cmd.mouse_get_pos*
1970
1972
 
1971
1973
  Allows `mouse_get_pos` command execution. *Default:* `True`
1972
1974
 
1973
- - `Enable: mouse_set_pos` *cmd.mouse_set_pos*
1975
+ - `Tool: mouse_set_pos` *cmd.mouse_set_pos*
1974
1976
 
1975
1977
  Allows `mouse_set_pos` command execution. *Default:* `True`
1976
1978
 
1977
- - `Enable: make_screenshot` *cmd.make_screenshot*
1979
+ - `Tool: make_screenshot` *cmd.make_screenshot*
1978
1980
 
1979
1981
  Allows `make_screenshot` command execution. *Default:* `True`
1980
1982
 
1981
- - `Enable: mouse_click` *cmd.mouse_click*
1983
+ - `Tool: mouse_click` *cmd.mouse_click*
1982
1984
 
1983
1985
  Allows `mouse_click` command execution. *Default:* `True`
1984
1986
 
1985
- - `Enable: mouse_move` *cmd.mouse_move*
1987
+ - `Tool: mouse_move` *cmd.mouse_move*
1986
1988
 
1987
1989
  Allows `mouse_move` command execution. *Default:* `True`
1988
1990
 
1989
- - `Enable: mouse_scroll` *cmd.mouse_scroll*
1991
+ - `Tool: mouse_scroll` *cmd.mouse_scroll*
1990
1992
 
1991
1993
  Allows `mouse_scroll` command execution. *Default:* `True`
1992
1994
 
1993
- - `Enable: keyboard_key` *cmd.keyboard_key*
1995
+ - `Tool: keyboard_key` *cmd.keyboard_key*
1994
1996
 
1995
1997
  Allows `keyboard_key` command execution. *Default:* `True`
1996
1998
 
1997
- - `Enable: keyboard_type` *cmd.keyboard_type*
1999
+ - `Tool: keyboard_type` *cmd.keyboard_type*
1998
2000
 
1999
2001
  Allows `keyboard_type` command execution. *Default:* `True`
2000
2002
 
@@ -2074,6 +2076,10 @@ Per-page content chunk size (max characters per chunk). *Default:* `20000`
2074
2076
 
2075
2077
  Disables SSL verification when crawling web pages. *Default:* `False`
2076
2078
 
2079
+ - `Use raw content (without summarization)` *raw*
2080
+
2081
+ Return raw content from web search instead of summarized content. Provides more data but consumes more tokens. *Default:* `True`
2082
+
2077
2083
  - `Timeout` *timeout*
2078
2084
 
2079
2085
  Connection timeout (seconds). *Default:* `5`
@@ -2084,47 +2090,41 @@ User agent to use when making requests. *Default:* `Mozilla/5.0`.
2084
2090
 
2085
2091
  - `Max result length` *max_result_length*
2086
2092
 
2087
- Max length of summarized result (characters). *Default:* `1500`
2093
+ Max length of the summarized or raw result (characters). *Default:* `50000`
2088
2094
 
2089
2095
  - `Max summary tokens` *summary_max_tokens*
2090
2096
 
2091
2097
  Max tokens in output when generating summary. *Default:* `1500`
2092
2098
 
2093
- - `Enable: search the Web` *cmd.web_search*
2099
+ - `Tool: web_search` *cmd.web_search*
2094
2100
 
2095
2101
  Allows `web_search` command execution. If enabled, model will be able to search the Web. *Default:* `True`
2096
2102
 
2097
- - `Enable: opening URLs` *cmd.web_url_open*
2103
+ - `Tool: web_url_open` *cmd.web_url_open*
2098
2104
 
2099
2105
  Allows `web_url_open` command execution. If enabled, model will be able to open specified URL and summarize content. *Default:* `True`
2100
2106
 
2101
- - `Enable: reading the raw content from URLs` *cmd.web_url_raw*
2107
+ - `Tool: web_url_raw` *cmd.web_url_raw*
2102
2108
 
2103
2109
  Allows `web_url_raw` command execution. If enabled, model will be able to open specified URL and get the raw content. *Default:* `True`
2104
2110
 
2105
- - `Enable: getting a list of URLs from search results` *cmd.web_urls*
2111
+ - `Tool: web_request` *cmd.web_request*
2106
2112
 
2107
- Allows `web_urls` command execution. If enabled, model will be able to search the Web and get founded URLs list. *Default:* `True`
2113
+ Allows `web_request` command execution. If enabled, model will be able to send any HTTP request to specified URL or API endpoint. *Default:* `True`
2108
2114
 
2109
- - `Enable: indexing web and external content` *cmd.web_index*
2115
+ - `Tool: web_extract_links` *cmd.web_extract_links*
2110
2116
 
2111
- Allows `web_index` command execution. If enabled, model will be able to index pages and external content using LlamaIndex (persistent index). *Default:* `True`
2117
+ 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`
2112
2118
 
2113
- - `Enable: quick query the web and external content` *cmd.web_index_query*
2119
+ - `Tool: web_extract_images` *cmd.web_extract_images*
2114
2120
 
2115
- 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`
2121
+ 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`
2116
2122
 
2117
- - `Auto-index all used URLs using LlamaIndex` *auto_index*
2118
-
2119
- If enabled, every URL used by the model will be automatically indexed using LlamaIndex (persistent index). *Default:* `False`
2120
-
2121
- - `Index to use` *idx*
2122
-
2123
- ID of index to use for web page indexing (persistent index). *Default:* `base`
2123
+ **Advanced**
2124
2124
 
2125
2125
  - `Model used for web page summarize` *summary_model*
2126
2126
 
2127
- Model used for web page summarize. *Default:* `gpt-3.5-turbo-1106`
2127
+ Model used for web page summarize. *Default:* `gpt-4o-mini`
2128
2128
 
2129
2129
  - `Summarize prompt` *prompt_summarize*
2130
2130
 
@@ -2134,6 +2134,24 @@ Prompt used for web search results summarize, use {query} as a placeholder for s
2134
2134
 
2135
2135
  Prompt used for specified URL page summarize.
2136
2136
 
2137
+ **Indexing**
2138
+
2139
+ - `Tool: web_index` *cmd.web_index*
2140
+
2141
+ Allows `web_index` command execution. If enabled, model will be able to index pages and external content using LlamaIndex (persistent index). *Default:* `True`
2142
+
2143
+ - `Tool: web_index_query` *cmd.web_index_query*
2144
+
2145
+ 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`
2146
+
2147
+ - `Auto-index all used URLs using LlamaIndex` *auto_index*
2148
+
2149
+ If enabled, every URL used by the model will be automatically indexed using LlamaIndex (persistent index). *Default:* `False`
2150
+
2151
+ - `Index to use` *idx*
2152
+
2153
+ ID of index to use for web page indexing (persistent index). *Default:* `base`
2154
+
2137
2155
  ## Serial port / USB
2138
2156
 
2139
2157
  Provides commands for reading and sending data to USB ports.
@@ -2181,15 +2199,15 @@ Timeout in seconds. *Default:* `1`
2181
2199
 
2182
2200
  Sleep in seconds after connection *Default:* `2`
2183
2201
 
2184
- - `Enable: Send text commands to USB port` *cmd.serial_send*
2202
+ - `Tool: Send text commands to USB port` *cmd.serial_send*
2185
2203
 
2186
2204
  Allows `serial_send` command execution. *Default:* `True`
2187
2205
 
2188
- - `Enable: Send raw bytes to USB port` *cmd.serial_send_bytes*
2206
+ - `Tool: Send raw bytes to USB port` *cmd.serial_send_bytes*
2189
2207
 
2190
2208
  Allows `serial_send_bytes` command execution. *Default:* `True`
2191
2209
 
2192
- - `Enable: Read data from USB port` *cmd.serial_read*
2210
+ - `Tool: Read data from USB port` *cmd.serial_read*
2193
2211
 
2194
2212
  Allows `serial_read` command execution. *Default:* `True`
2195
2213
 
@@ -2228,31 +2246,31 @@ Where `123` is the ID of previous context (conversation) in database, example of
2228
2246
 
2229
2247
  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`
2230
2248
 
2231
- - `Enable: get date range context list` *cmd.get_ctx_list_in_date_range*
2249
+ - `Tool: get date range context list` *cmd.get_ctx_list_in_date_range*
2232
2250
 
2233
2251
  Allows `get_ctx_list_in_date_range` command execution. If enabled, it allows getting the list of context history (previous conversations). *Default:* `True
2234
2252
 
2235
- - `Enable: get context content by ID` *cmd.get_ctx_content_by_id*
2253
+ - `Tool: get context content by ID` *cmd.get_ctx_content_by_id*
2236
2254
 
2237
2255
  Allows `get_ctx_content_by_id` command execution. If enabled, it allows getting summarized content of context with defined ID. *Default:* `True`
2238
2256
 
2239
- - `Enable: count contexts in date range` *cmd.count_ctx_in_date*
2257
+ - `Tool: count contexts in date range` *cmd.count_ctx_in_date*
2240
2258
 
2241
2259
  Allows `count_ctx_in_date` command execution. If enabled, it allows counting contexts in date range. *Default:* `True`
2242
2260
 
2243
- - `Enable: get day note` *cmd.get_day_note*
2261
+ - `Tool: get day note` *cmd.get_day_note*
2244
2262
 
2245
2263
  Allows `get_day_note` command execution. If enabled, it allows retrieving day note for specific date. *Default:* `True`
2246
2264
 
2247
- - `Enable: add day note` *cmd.add_day_note*
2265
+ - `Tool: add day note` *cmd.add_day_note*
2248
2266
 
2249
2267
  Allows `add_day_note` command execution. If enabled, it allows adding day note for specific date. *Default:* `True`
2250
2268
 
2251
- - `Enable: update day note` *cmd.update_day_note*
2269
+ - `Tool: update day note` *cmd.update_day_note*
2252
2270
 
2253
2271
  Allows `update_day_note` command execution. If enabled, it allows updating day note for specific date. *Default:* `True`
2254
2272
 
2255
- - `Enable: remove day note` *cmd.remove_day_note*
2273
+ - `Tool: remove day note` *cmd.remove_day_note*
2256
2274
 
2257
2275
  Allows `remove_day_note` command execution. If enabled, it allows removing day note for specific date. *Default:* `True`
2258
2276
 
@@ -2344,14 +2362,57 @@ The prompt used for vision mode. It will append or replace current system prompt
2344
2362
 
2345
2363
  Replace whole system prompt with vision prompt against appending it to the current prompt. *Default:* `False`
2346
2364
 
2347
- - `Enable: capturing images from camera` *cmd.camera_capture*
2365
+ - `Tool: capturing images from camera` *cmd.camera_capture*
2348
2366
 
2349
2367
  Allows `capture` command execution. If enabled, model will be able to capture images from camera itself. The `+ Tools` option must be enabled. *Default:* `False`
2350
2368
 
2351
- - `Enable: making screenshots` *cmd.make_screenshot*
2369
+ - `Tool: making screenshots` *cmd.make_screenshot*
2352
2370
 
2353
2371
  Allows `screenshot` command execution. If enabled, model will be able to making screenshots itself. The `+ Tools` option must be enabled. *Default:* `False`
2354
2372
 
2373
+ ## Mailer
2374
+
2375
+ Enables the sending, receiving, and reading of emails from the inbox. Currently, only SMTP is supported. More options coming soon.
2376
+
2377
+ **Options**
2378
+
2379
+ - `From (email)` *from_email*
2380
+
2381
+ From (email), e.g. me@domain.com
2382
+
2383
+ - `Tool: send_mail` *cmd.send_mail*
2384
+
2385
+ Allows `send_mail` command execution. If enabled, model will be able to sending emails.
2386
+
2387
+ - `Tool: receive_emails` *cmd.receive_emails*
2388
+
2389
+ Allows `receive_emails` command execution. If enabled, model will be able to receive emails from the server.
2390
+
2391
+ - `Tool: get_email_body` *cmd.get_email_body*
2392
+
2393
+ Allows `get_email_body` command execution. If enabled, model will be able to receive message body from the server.
2394
+
2395
+ - `SMTP Host` *smtp_host*
2396
+
2397
+ SMTP Host, e.g. smtp.domain.com
2398
+
2399
+ - `SMTP Port (Inbox)` *smtp_port_inbox*
2400
+
2401
+ SMTP Port, default: 995
2402
+
2403
+ - `SMTP Port (Outbox)` *smtp_port_outbox*
2404
+
2405
+ SMTP Port, default: 465
2406
+
2407
+ - `SMTP User` *smtp_user*
2408
+
2409
+ SMTP User, e.g. user@domain.com
2410
+
2411
+ - `SMTP Password` *smtp_password*
2412
+
2413
+ SMTP Password.
2414
+
2415
+
2355
2416
  ## Real Time
2356
2417
 
2357
2418
  This plugin automatically adds the current date and time to each system prompt you send.
@@ -2770,6 +2831,8 @@ Config -> Settings...
2770
2831
 
2771
2832
  - `Zoom`: Adjusts the zoom in chat window (web render view). `WebEngine / Chromium` render mode only.
2772
2833
 
2834
+ - `Style (chat)`: Chat style (Blocks, or ChatGPT-like, or ChatGPT-like Wide. `WebEngine / Chromium` render mode only.
2835
+
2773
2836
  - `Code syntax highlight`: Syntax highlight theme in code blocks. `WebEngine / Chromium` render mode only.
2774
2837
 
2775
2838
  - `Font Size (chat window)`: Adjusts the font size in the chat window (plain-text) and notepads.
@@ -2792,8 +2855,6 @@ Config -> Settings...
2792
2855
 
2793
2856
  - `Use theme colors in chat window`: Use color theme in chat window, Default: True.
2794
2857
 
2795
- - `Disable markdown formatting in output`: Enables plain-text display in output window, Default: False.
2796
-
2797
2858
  **Files and attachments**
2798
2859
 
2799
2860
  - `Store attachments in the workdir upload directory`: Enable to store a local copy of uploaded attachments for future use. Default: True
@@ -2904,14 +2965,22 @@ Config -> Settings...
2904
2965
 
2905
2966
  **Vision**
2906
2967
 
2968
+ - `Vision: Camera Input Device`: Video capture camera index (index of the camera, default: 0).
2969
+
2907
2970
  - `Vision: Camera capture width (px)`: Video capture resolution (width).
2908
2971
 
2909
2972
  - `Vision: Camera capture height (px)`: Video capture resolution (height).
2910
2973
 
2911
- - `Vision: Camera IDX (number)`: Video capture camera index (number of camera).
2912
-
2913
2974
  - `Vision: Image capture quality`: Video capture image JPEG quality (%).
2914
2975
 
2976
+ **Audio**
2977
+
2978
+ - `Audio Input Device`: Selects the audio device for Microphone input.
2979
+
2980
+ - `Channels`: Input channels, default: 1
2981
+
2982
+ - `Sampling Rate`: Sampling rate, default: 44100
2983
+
2915
2984
  **Indexes (LlamaIndex)**
2916
2985
 
2917
2986
  - `Indexes`: List of created indexes.
@@ -3955,125 +4024,50 @@ may consume additional tokens that are not displayed in the main window.
3955
4024
 
3956
4025
  ## Recent changes:
3957
4026
 
3958
- **2.4.37 (2024-11-30)**
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)**
4027
+ **2.4.42 (2024-12-15)**
3991
4028
 
3992
- - The "Add URL" option added to the "Attachments" tab allows users to include content from a given website as additional context. Currently, it only supports standard web pages and video transcription for YouTube links. More "web" options will be added in the future.
3993
- - Added UTF-8 as default in attachments content text read/write.
4029
+ - Added Mailer plugin, which allows sending and retrieving emails from the server, and reading them. It currently supports only SMTP.
4030
+ - 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.
4031
+ - Improved audio output.
4032
+ - Enhanced visibility of the Video menu.
4033
+ - Other fixes.
3994
4034
 
3995
- **2.4.31 (2024-11-25)**
4035
+ **2.4.41 (2024-12-14)**
3996
4036
 
3997
- - Added an option checkbox `Auto-index on upload` in the `Attachments` tab:
4037
+ - Improved switching between columns on a split screen.
4038
+ - Added visual identification of the active column.
3998
4039
 
3999
- **Tip:** To use the `RAG` mode, the file must be indexed in the vector database. This occurs automatically at the time of upload if the `Auto-index on upload` option in the `Attachments` tab is enabled. When uploading large files, such indexing might take a while - therefore, if you are using the `Full context` option, which does not use the index, you can disable the `Auto-index` option to speed up the upload of the attachment. In this case, it will only be indexed when the `RAG` option is called for the first time, and until then, attachment will be available in the form of `Full context` and `Summary`.
4040
+ **2.4.40 (2024-12-13)**
4000
4041
 
4001
- - Added context menu options in `Uploaded attachments` tab: `Open`, `Open Source directory` and `Open Storage directory`.
4042
+ - Enhanced Split Screen mode, now promoted from beta to stable.
4043
+ - Python Code Interpreter tool added to the Tabs.
4044
+ - HTML/JS Canvas tool added to the Tabs.
4045
+ - Added attachment icon to the context list if context has attachments.
4046
+ - Improved audio playback.
4047
+ - Improved web search.
4048
+ - Added a thumbnail image to web search results.
4049
+ - Added a new commands to web search: "extract_images" and "extract_links".
4050
+ - Added the option "Use raw content (without summarization)" to the web search plugin, which provides a more detailed result to the main model.
4051
+ - Extended the default maximum result characters to 50,000 in the web search plugin.
4002
4052
 
4003
- **2.4.30 (2024-11-25)**
4053
+ **2.4.39 (2024-12-09)**
4004
4054
 
4005
- - Added instruction to model about mapped data directory in both legacy and IPython code interepreter.
4006
- - Updated locales for plugins.
4055
+ - 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.
4007
4056
 
4008
- **2.4.29 (2024-11-25)**
4057
+ - Fixed: Language switch.
4009
4058
 
4010
- - Added a local IPython interpreter - you can now choose between local and sandbox (Docker) in the plugin settings.
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.
4059
+ **2.4.38 (2024-12-08)**
4018
4060
 
4019
- **2.4.28 (2024-11-24)**
4061
+ - 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...
4062
+ - Added configuration options for audio input in Settings -> Audio -> Audio Input Device, Channels, and Sampling rate.
4020
4063
 
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)**
4064
+ **2.4.37 (2024-11-30)**
4071
4065
 
4072
- - Added new LLM providers for LlamaIndex: HuggingFaceAPI and LocalAI.
4073
- - The IPython interpreter now returns local paths to generated files and images (mapped to: %workdir%/ipython/).
4074
- - Refactored legacy Agent and Expert modes.
4075
- - Fixed Expert mode initialization.
4076
- - Added an option in Settings -> Layout to disable animations.
4066
+ - The `Query only` mode in `Uploaded` tab has been renamed to `RAG`.
4067
+ - New options have been added under `Settings -> Files and Attachments`:
4068
+ - `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.
4069
+ - `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.
4070
+ - 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
4071
 
4078
4072
 
4079
4073
  # Credits and links