pygpt-net 2.4.36.post1__py3-none-any.whl → 2.4.41__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (258) hide show
  1. CHANGELOG.md +38 -1
  2. README.md +71 -114
  3. pygpt_net/CHANGELOG.txt +38 -1
  4. pygpt_net/__init__.py +3 -3
  5. pygpt_net/controller/__init__.py +7 -3
  6. pygpt_net/controller/access/control.py +1 -1
  7. pygpt_net/controller/access/voice.py +11 -5
  8. pygpt_net/controller/agent/experts.py +11 -6
  9. pygpt_net/controller/agent/legacy.py +8 -6
  10. pygpt_net/controller/agent/llama.py +4 -2
  11. pygpt_net/controller/assistant/__init__.py +9 -4
  12. pygpt_net/controller/assistant/batch.py +38 -21
  13. pygpt_net/controller/assistant/editor.py +7 -6
  14. pygpt_net/controller/assistant/files.py +23 -7
  15. pygpt_net/controller/assistant/store.py +20 -7
  16. pygpt_net/controller/assistant/threads.py +34 -8
  17. pygpt_net/controller/attachment.py +29 -10
  18. pygpt_net/controller/audio/__init__.py +25 -4
  19. pygpt_net/controller/calendar/__init__.py +23 -4
  20. pygpt_net/controller/calendar/note.py +57 -11
  21. pygpt_net/controller/camera.py +3 -2
  22. pygpt_net/controller/chat/__init__.py +5 -3
  23. pygpt_net/controller/chat/attachment.py +39 -44
  24. pygpt_net/controller/chat/command.py +4 -2
  25. pygpt_net/controller/chat/common.py +11 -4
  26. pygpt_net/controller/chat/files.py +10 -3
  27. pygpt_net/controller/chat/image.py +17 -5
  28. pygpt_net/controller/chat/input.py +10 -7
  29. pygpt_net/controller/chat/output.py +21 -6
  30. pygpt_net/controller/chat/render.py +100 -21
  31. pygpt_net/controller/chat/response.py +34 -7
  32. pygpt_net/controller/chat/stream.py +4 -2
  33. pygpt_net/controller/chat/text.py +6 -4
  34. pygpt_net/controller/command.py +11 -3
  35. pygpt_net/controller/config/__init__.py +34 -6
  36. pygpt_net/controller/config/field/checkbox.py +7 -4
  37. pygpt_net/controller/config/field/cmd.py +7 -5
  38. pygpt_net/controller/config/field/combo.py +14 -6
  39. pygpt_net/controller/config/field/dictionary.py +14 -11
  40. pygpt_net/controller/config/field/input.py +9 -6
  41. pygpt_net/controller/config/field/slider.py +11 -8
  42. pygpt_net/controller/config/field/textarea.py +8 -5
  43. pygpt_net/controller/config/placeholder.py +52 -21
  44. pygpt_net/controller/ctx/__init__.py +138 -49
  45. pygpt_net/controller/ctx/common.py +15 -4
  46. pygpt_net/controller/ctx/extra.py +11 -3
  47. pygpt_net/controller/ctx/summarizer.py +24 -5
  48. pygpt_net/controller/debug/__init__.py +27 -6
  49. pygpt_net/controller/dialogs/confirm.py +34 -7
  50. pygpt_net/controller/dialogs/debug.py +4 -2
  51. pygpt_net/controller/dialogs/info.py +7 -2
  52. pygpt_net/controller/files.py +48 -10
  53. pygpt_net/controller/finder.py +11 -5
  54. pygpt_net/controller/idx/__init__.py +10 -3
  55. pygpt_net/controller/idx/common.py +4 -2
  56. pygpt_net/controller/idx/indexer.py +25 -17
  57. pygpt_net/controller/idx/settings.py +9 -3
  58. pygpt_net/controller/kernel/__init__.py +34 -8
  59. pygpt_net/controller/kernel/reply.py +12 -3
  60. pygpt_net/controller/kernel/stack.py +5 -3
  61. pygpt_net/controller/lang/custom.py +2 -7
  62. pygpt_net/controller/lang/mapping.py +5 -3
  63. pygpt_net/controller/layout.py +2 -2
  64. pygpt_net/controller/mode.py +16 -4
  65. pygpt_net/controller/model/__init__.py +14 -3
  66. pygpt_net/controller/model/editor.py +8 -3
  67. pygpt_net/controller/notepad.py +26 -12
  68. pygpt_net/controller/painter/capture.py +23 -4
  69. pygpt_net/controller/painter/common.py +9 -7
  70. pygpt_net/controller/plugins/__init__.py +19 -5
  71. pygpt_net/controller/plugins/presets.py +15 -6
  72. pygpt_net/controller/plugins/settings.py +9 -3
  73. pygpt_net/controller/presets/__init__.py +55 -16
  74. pygpt_net/controller/presets/editor.py +26 -10
  75. pygpt_net/controller/settings/__init__.py +3 -2
  76. pygpt_net/controller/settings/editor.py +29 -7
  77. pygpt_net/controller/settings/profile.py +22 -5
  78. pygpt_net/controller/theme/__init__.py +54 -12
  79. pygpt_net/controller/theme/common.py +24 -2
  80. pygpt_net/controller/theme/markdown.py +32 -16
  81. pygpt_net/controller/theme/menu.py +26 -5
  82. pygpt_net/controller/theme/nodes.py +2 -5
  83. pygpt_net/controller/tools/__init__.py +40 -2
  84. pygpt_net/controller/ui/__init__.py +4 -6
  85. pygpt_net/controller/ui/tabs.py +363 -65
  86. pygpt_net/core/access/actions.py +6 -4
  87. pygpt_net/core/access/shortcuts.py +4 -3
  88. pygpt_net/core/access/voice.py +6 -5
  89. pygpt_net/core/agents/legacy.py +4 -2
  90. pygpt_net/core/agents/memory.py +7 -2
  91. pygpt_net/core/agents/observer/evaluation.py +15 -7
  92. pygpt_net/core/agents/provider.py +9 -4
  93. pygpt_net/core/agents/runner.py +61 -15
  94. pygpt_net/core/agents/tools.py +23 -5
  95. pygpt_net/core/assistants/__init__.py +6 -4
  96. pygpt_net/core/assistants/files.py +35 -12
  97. pygpt_net/core/assistants/store.py +20 -10
  98. pygpt_net/core/attachments/__init__.py +54 -15
  99. pygpt_net/core/attachments/context.py +217 -64
  100. pygpt_net/core/audio/__init__.py +71 -3
  101. pygpt_net/core/audio/context.py +7 -2
  102. pygpt_net/core/bridge/__init__.py +22 -6
  103. pygpt_net/core/bridge/context.py +5 -3
  104. pygpt_net/core/bridge/worker.py +16 -2
  105. pygpt_net/core/calendar/__init__.py +57 -11
  106. pygpt_net/core/chain/__init__.py +8 -2
  107. pygpt_net/core/chain/chat.py +10 -8
  108. pygpt_net/core/chain/completion.py +10 -7
  109. pygpt_net/core/command.py +62 -17
  110. pygpt_net/core/ctx/__init__.py +260 -58
  111. pygpt_net/core/ctx/bag.py +25 -4
  112. pygpt_net/core/ctx/container.py +28 -17
  113. pygpt_net/core/ctx/idx.py +45 -8
  114. pygpt_net/core/ctx/output.py +95 -74
  115. pygpt_net/core/ctx/reply.py +5 -2
  116. pygpt_net/core/db/__init__.py +8 -7
  117. pygpt_net/core/db/viewer.py +17 -11
  118. pygpt_net/core/debug/__init__.py +10 -9
  119. pygpt_net/core/debug/tabs.py +5 -2
  120. pygpt_net/core/docker/__init__.py +11 -5
  121. pygpt_net/core/docker/builder.py +11 -3
  122. pygpt_net/core/events/app.py +5 -3
  123. pygpt_net/core/events/base.py +11 -5
  124. pygpt_net/core/events/control.py +5 -3
  125. pygpt_net/core/events/event.py +18 -7
  126. pygpt_net/core/events/kernel.py +5 -3
  127. pygpt_net/core/events/render.py +5 -3
  128. pygpt_net/core/experts/__init__.py +5 -4
  129. pygpt_net/core/filesystem/__init__.py +52 -34
  130. pygpt_net/core/filesystem/actions.py +8 -5
  131. pygpt_net/core/filesystem/editor.py +13 -3
  132. pygpt_net/core/filesystem/types.py +12 -7
  133. pygpt_net/core/filesystem/url.py +7 -3
  134. pygpt_net/core/idx/__init__.py +34 -25
  135. pygpt_net/core/idx/chat.py +60 -38
  136. pygpt_net/core/idx/context.py +6 -2
  137. pygpt_net/core/idx/indexing.py +84 -35
  138. pygpt_net/core/idx/llm.py +11 -3
  139. pygpt_net/core/idx/metadata.py +13 -3
  140. pygpt_net/core/idx/types/ctx.py +32 -6
  141. pygpt_net/core/idx/types/external.py +41 -7
  142. pygpt_net/core/idx/types/files.py +31 -6
  143. pygpt_net/core/image.py +15 -4
  144. pygpt_net/core/llm/__init__.py +13 -3
  145. pygpt_net/core/locale.py +34 -8
  146. pygpt_net/core/models.py +4 -3
  147. pygpt_net/core/notepad.py +9 -4
  148. pygpt_net/core/plugins.py +7 -6
  149. pygpt_net/core/presets.py +19 -10
  150. pygpt_net/core/profile.py +12 -6
  151. pygpt_net/core/prompt/__init__.py +10 -3
  152. pygpt_net/core/prompt/custom.py +7 -6
  153. pygpt_net/core/prompt/template.py +9 -3
  154. pygpt_net/core/render/base.py +117 -22
  155. pygpt_net/core/render/markdown/body.py +27 -7
  156. pygpt_net/core/render/markdown/renderer.py +119 -22
  157. pygpt_net/core/render/plain/body.py +22 -5
  158. pygpt_net/core/render/plain/renderer.py +97 -21
  159. pygpt_net/core/render/web/body.py +75 -25
  160. pygpt_net/core/render/web/renderer.py +313 -63
  161. pygpt_net/core/settings.py +9 -4
  162. pygpt_net/core/tabs/__init__.py +290 -103
  163. pygpt_net/core/tabs/tab.py +17 -4
  164. pygpt_net/core/tokens.py +44 -11
  165. pygpt_net/core/updater/__init__.py +20 -7
  166. pygpt_net/core/vision/analyzer.py +29 -6
  167. pygpt_net/core/web.py +130 -2
  168. pygpt_net/data/config/config.json +19 -6
  169. pygpt_net/data/config/models.json +3 -3
  170. pygpt_net/data/config/modes.json +3 -3
  171. pygpt_net/data/config/settings.json +81 -10
  172. pygpt_net/data/config/settings_section.json +3 -0
  173. pygpt_net/data/css/style.light.css +1 -0
  174. pygpt_net/data/css/{web.css → web-blocks.css} +162 -133
  175. pygpt_net/data/css/{web.light.css → web-blocks.light.css} +7 -0
  176. pygpt_net/data/css/web-chatgpt.css +350 -0
  177. pygpt_net/data/css/web-chatgpt.dark.css +64 -0
  178. pygpt_net/data/css/web-chatgpt.light.css +75 -0
  179. pygpt_net/data/css/web-chatgpt_wide.css +350 -0
  180. pygpt_net/data/css/web-chatgpt_wide.dark.css +64 -0
  181. pygpt_net/data/css/web-chatgpt_wide.light.css +75 -0
  182. pygpt_net/data/icons/split_screen.svg +1 -0
  183. pygpt_net/data/locale/locale.de.ini +19 -3
  184. pygpt_net/data/locale/locale.en.ini +30 -11
  185. pygpt_net/data/locale/locale.es.ini +19 -3
  186. pygpt_net/data/locale/locale.fr.ini +19 -3
  187. pygpt_net/data/locale/locale.it.ini +19 -3
  188. pygpt_net/data/locale/locale.pl.ini +20 -4
  189. pygpt_net/data/locale/locale.uk.ini +19 -3
  190. pygpt_net/data/locale/locale.zh.ini +20 -4
  191. pygpt_net/data/locale/plugin.cmd_web.de.ini +2 -0
  192. pygpt_net/data/locale/plugin.cmd_web.en.ini +20 -10
  193. pygpt_net/data/locale/plugin.cmd_web.es.ini +2 -0
  194. pygpt_net/data/locale/plugin.cmd_web.fr.ini +2 -0
  195. pygpt_net/data/locale/plugin.cmd_web.it.ini +2 -0
  196. pygpt_net/data/locale/plugin.cmd_web.pl.ini +2 -0
  197. pygpt_net/data/locale/plugin.cmd_web.uk.ini +2 -0
  198. pygpt_net/data/locale/plugin.cmd_web.zh.ini +2 -0
  199. pygpt_net/icons.qrc +1 -0
  200. pygpt_net/icons_rc.py +165 -136
  201. pygpt_net/item/ctx.py +46 -24
  202. pygpt_net/plugin/audio_input/simple.py +21 -5
  203. pygpt_net/plugin/audio_output/__init__.py +4 -1
  204. pygpt_net/plugin/base/config.py +4 -2
  205. pygpt_net/plugin/base/plugin.py +26 -6
  206. pygpt_net/plugin/base/worker.py +37 -9
  207. pygpt_net/plugin/cmd_code_interpreter/__init__.py +39 -37
  208. pygpt_net/plugin/cmd_code_interpreter/runner.py +25 -12
  209. pygpt_net/plugin/cmd_web/__init__.py +46 -6
  210. pygpt_net/plugin/cmd_web/config.py +74 -48
  211. pygpt_net/plugin/cmd_web/websearch.py +61 -28
  212. pygpt_net/plugin/cmd_web/worker.py +79 -13
  213. pygpt_net/plugin/idx_llama_index/__init__.py +2 -2
  214. pygpt_net/plugin/real_time/__init__.py +2 -2
  215. pygpt_net/provider/core/config/patch.py +54 -1
  216. pygpt_net/provider/core/ctx/base.py +4 -1
  217. pygpt_net/provider/core/ctx/db_sqlite/__init__.py +10 -1
  218. pygpt_net/provider/core/ctx/db_sqlite/storage.py +22 -1
  219. pygpt_net/provider/gpt/assistants.py +10 -9
  220. pygpt_net/provider/gpt/audio.py +3 -2
  221. pygpt_net/provider/gpt/chat.py +8 -7
  222. pygpt_net/provider/gpt/completion.py +6 -4
  223. pygpt_net/provider/gpt/image.py +9 -2
  224. pygpt_net/provider/gpt/store.py +14 -13
  225. pygpt_net/provider/gpt/vision.py +6 -5
  226. pygpt_net/tools/__init__.py +9 -1
  227. pygpt_net/tools/base.py +15 -1
  228. pygpt_net/tools/code_interpreter/__init__.py +174 -75
  229. pygpt_net/tools/code_interpreter/ui/dialogs.py +21 -103
  230. pygpt_net/tools/code_interpreter/ui/widgets.py +284 -9
  231. pygpt_net/tools/html_canvas/__init__.py +78 -23
  232. pygpt_net/tools/html_canvas/ui/dialogs.py +46 -62
  233. pygpt_net/tools/html_canvas/ui/widgets.py +96 -3
  234. pygpt_net/ui/base/context_menu.py +2 -2
  235. pygpt_net/ui/layout/chat/input.py +10 -18
  236. pygpt_net/ui/layout/chat/output.py +26 -44
  237. pygpt_net/ui/layout/ctx/ctx_list.py +13 -4
  238. pygpt_net/ui/layout/toolbox/footer.py +18 -2
  239. pygpt_net/ui/main.py +2 -2
  240. pygpt_net/ui/menu/config.py +7 -11
  241. pygpt_net/ui/menu/debug.py +11 -1
  242. pygpt_net/ui/menu/theme.py +9 -2
  243. pygpt_net/ui/widget/filesystem/explorer.py +2 -2
  244. pygpt_net/ui/widget/lists/context.py +27 -5
  245. pygpt_net/ui/widget/tabs/Input.py +2 -2
  246. pygpt_net/ui/widget/tabs/body.py +2 -1
  247. pygpt_net/ui/widget/tabs/layout.py +195 -0
  248. pygpt_net/ui/widget/tabs/output.py +218 -55
  249. pygpt_net/ui/widget/textarea/html.py +11 -1
  250. pygpt_net/ui/widget/textarea/output.py +10 -1
  251. pygpt_net/ui/widget/textarea/search_input.py +4 -1
  252. pygpt_net/ui/widget/textarea/web.py +49 -9
  253. {pygpt_net-2.4.36.post1.dist-info → pygpt_net-2.4.41.dist-info}/METADATA +72 -115
  254. {pygpt_net-2.4.36.post1.dist-info → pygpt_net-2.4.41.dist-info}/RECORD +258 -250
  255. /pygpt_net/data/css/{web.dark.css → web-blocks.dark.css} +0 -0
  256. {pygpt_net-2.4.36.post1.dist-info → pygpt_net-2.4.41.dist-info}/LICENSE +0 -0
  257. {pygpt_net-2.4.36.post1.dist-info → pygpt_net-2.4.41.dist-info}/WHEEL +0 -0
  258. {pygpt_net-2.4.36.post1.dist-info → pygpt_net-2.4.41.dist-info}/entry_points.txt +0 -0
@@ -51,9 +51,12 @@ action.save_selection_as = Save selection as...
51
51
  action.select_all = Select all
52
52
  action.tab.add.chat = Add a new chat
53
53
  action.tab.add.notepad = Add a new notepad
54
+ action.tab.add.tool = Add a new tool
54
55
  action.tab.close = Close
55
56
  action.tab.close_all.chat = Close all chats
56
57
  action.tab.close_all.notepad = Close all notepads
58
+ action.tab.move.left = Move to left column
59
+ action.tab.move.right = Move to right column
57
60
  action.touch = Create file...
58
61
  action.truncate = Truncate
59
62
  action.undo = Undo
@@ -115,7 +118,7 @@ attachments.ctx.indexed = Yes
115
118
  attachments.ctx.label = Extra context
116
119
  attachments.ctx.mode.full = Full context
117
120
  attachments.ctx.mode.off = Off (disable)
118
- attachments.ctx.mode.query = Query only
121
+ attachments.ctx.mode.query = RAG
119
122
  attachments.ctx.mode.summary = Summary
120
123
  attachments.delete.confirm = Remove file from list?
121
124
  attachments.header.ctx = Ctx
@@ -661,7 +664,7 @@ interpreter.clear.confirm = Clear the current window?
661
664
  interpreter.edit = Edit mode
662
665
  interpreter.edit_label.edit = Code (history)
663
666
  interpreter.edit_label.output = Output
664
- interpreter.input.placeholder = Python code to execute...
667
+ interpreter.input.placeholder = Python code to execute...\n\n/restart - restart kernel\n/clear - clear output
665
668
  interpreter.menu.file = File
666
669
  interpreter.menu.file.clear_all = Clear all
667
670
  interpreter.menu.file.clear_history = Clear history
@@ -673,6 +676,7 @@ ipython.docker.build.start = Building Docker image... please wait...
673
676
  ipython.docker.install = Running IPython requires Docker to be installed. Docker was not detected on this system. Please install Docker first; you can find the instructions here: https://docs.docker.com/engine/install/. The execution of the current command has been paused.
674
677
  ipython.docker.install.snap = \n\nSNAP VERSION: \nYou are not connected to built-in Docker daemon. Please connect the slots with:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...and restart the application.
675
678
  ipython.image.build = The Docker image for IPython has not been built yet. This will happen now, and it may take a while (but it's a one-time procedure). The execution of the command has been paused. Once the image is built, please execute the command again.
679
+ layout.split = Split screen
676
680
  menu.audio = Audio / Voice
677
681
  menu.audio.cache.clear = Clear audio cache...
678
682
  menu.audio.control.global = Voice control (global)
@@ -709,6 +713,7 @@ menu.debug.logger = Open Logger
709
713
  menu.debug.models = Models...
710
714
  menu.debug.plugins = Plugins...
711
715
  menu.debug.presets = Presets...
716
+ menu.debug.render = Render...
712
717
  menu.debug.tabs = Tabs...
713
718
  menu.debug.ui = UI...
714
719
  menu.file = File
@@ -742,6 +747,7 @@ menu.theme.dark = Dark color...
742
747
  menu.theme.density = Layout size
743
748
  menu.theme.light = Light color...
744
749
  menu.theme.settings = Settings...
750
+ menu.theme.style = Style...
745
751
  menu.theme.syntax = Code syntax highlight...
746
752
  menu.theme.tooltips = Show tooltips
747
753
  menu.tools = Tools
@@ -757,7 +763,7 @@ menu.tray.screenshot = Ask with screenshot...
757
763
  menu.video = Video
758
764
  menu.video.capture = Input: camera
759
765
  menu.video.capture.auto = Auto capture
760
- mode.agent = Agent (Legacy)
766
+ mode.agent = Agent (Autonomous)
761
767
  mode.agent_llama = Agent (LlamaIndex)
762
768
  mode.agent_llama.tooltip = Advanced agents (LlamaIndex)
763
769
  mode.agent.tooltip = Simple agents (legacy)
@@ -840,15 +846,15 @@ preset.action.disable = Disable
840
846
  preset.action.duplicate = Duplicate
841
847
  preset.action.edit = Edit
842
848
  preset.action.enable = Enable
843
- preset.agent = Agent (Legacy)
849
+ preset.agent = Agent (Autonomous)
844
850
  preset.agent_llama = Agent (LlamaIndex)
845
851
  preset.agent_provider = Agent Provider
846
852
  preset.agent_provider.desc = Select the agent type for the current preset
847
- preset.audio = Chat with Audio
848
853
  preset.ai_name = AI name
849
854
  preset.assistant = Assistant
850
855
  preset.assistant_id = OpenAI Assistant ID
851
856
  preset.assistant_id.desc = * only for the OpenAI Assistant agent type. If not provided, a new Assistant will be created.
857
+ preset.audio = Chat with Audio
852
858
  preset.chat = Chat
853
859
  preset.clear = Clear
854
860
  preset.completion = Completion
@@ -920,6 +926,12 @@ settings.api_proxy = Proxy address
920
926
  settings.api_proxy.desc = Optional, proxy for OpenAI API, e.g. http://proxy.example.com or socks5://user:pass@host:port
921
927
  settings.app.env = Application environment (os.environ)
922
928
  settings.app.env.desc = Additional environment vars to set on application start
929
+ settings.audio.input.channels = Channels
930
+ settings.audio.input.channels.desc = Input channels, default: 1
931
+ settings.audio.input.device = Audio Input Device
932
+ settings.audio.input.device.desc = Select the audio device for Microphone input.
933
+ settings.audio.input.rate = Sampling Rate
934
+ settings.audio.input.rate.desc = Sampling rate, default: 44100
923
935
  settings.check_updates = Check for Updates on start
924
936
  settings.check_updates.bg = Check for Updates in the background
925
937
  settings.cmd.config.collapse = JSON params
@@ -934,10 +946,14 @@ settings.ctx.allow_item_delete = Allow context item deletion
934
946
  settings.ctx.allow_item_delete.desc = Enable display of the delete conversation item link
935
947
  settings.ctx.attachment.img = Allow images as additional context
936
948
  settings.ctx.attachment.img.desc = If enabled, images can be used as additional context
949
+ settings.ctx.attachment.query.model = Model for querying index
950
+ settings.ctx.attachment.query.model.desc = Model to use for preparing query and querying the index when the RAG option is selected.
951
+ settings.ctx.attachment.rag.history = Use history in RAG query
952
+ settings.ctx.attachment.rag.history.desc = When enabled, the content of the entire conversation will be used when preparing a query if mode is RAG or Summary.
953
+ settings.ctx.attachment.rag.history.max_items = RAG limit
954
+ settings.ctx.attachment.rag.history.max_items.desc = Only if the option 'Use history in RAG query' is enabled. Specify the limit of how many recent entries in the conversation will be used when generating a query for RAG. 0 = no limit.
937
955
  settings.ctx.attachment.summary.model = Model for attachment content summary
938
956
  settings.ctx.attachment.summary.model.desc = Model to use when generating a summary for the content of a file when the Summary option is selected.
939
- settings.ctx.attachment.query.model = Model for querying index
940
- settings.ctx.attachment.query.model.desc = Model to use for querying the index when the Query only option is selected.
941
957
  settings.ctx.attachment.verbose = Verbose mode
942
958
  settings.ctx.attachment.verbose.desc = Log attachments usage to the console
943
959
  settings.ctx.audio = Always show audio icon
@@ -1075,6 +1091,7 @@ settings.section.access = Accessibility
1075
1091
  settings.section.agent = Agents and experts
1076
1092
  settings.section.agent.legacy = Legacy
1077
1093
  settings.section.agent.llama = LlamaIndex Agents
1094
+ settings.section.audio = Audio
1078
1095
  settings.section.ctx = Context
1079
1096
  settings.section.developer = Developer
1080
1097
  settings.section.files = Files and attachments
@@ -1097,6 +1114,7 @@ settings.store_history = Store history
1097
1114
  settings.store_history_time = Store time in history
1098
1115
  settings.temperature = Temperature
1099
1116
  settings.theme.markdown = Use theme colors in chat window
1117
+ settings.theme.style = Style (chat)
1100
1118
  settings.top_p = Top-p
1101
1119
  settings.upload.data_dir = Store images, captures, and uploads in the data directory
1102
1120
  settings.upload.data_dir.desc = Enable to store everything in a single data directory
@@ -1106,7 +1124,8 @@ settings.use_context = Use context (memory)
1106
1124
  settings.vision.capture.auto = Auto capture
1107
1125
  settings.vision.capture.enabled = Camera
1108
1126
  settings.vision.capture.height = Camera height (px)
1109
- settings.vision.capture.idx = Camera IDX (number)
1127
+ settings.vision.capture.idx = Camera Input Device
1128
+ settings.vision.capture.idx.desc = Video capture camera index (index of the camera, default: 0)
1110
1129
  settings.vision.capture.quality = Capture quality (%%)
1111
1130
  settings.vision.capture.width = Camera width (px)
1112
1131
  settings.zoom = Chat output window zoom
@@ -1144,13 +1163,13 @@ text.context_menu.copy_to = Copy to...
1144
1163
  text.context_menu.copy_to.calendar = Calendar
1145
1164
  text.context_menu.copy_to.input = Input
1146
1165
  text.context_menu.copy_to.notepad = Notepad
1147
- text.context_menu.copy_to.python.code = Python interpreter (Code/history)
1148
- text.context_menu.copy_to.python.input = Python interpreter (Input)
1166
+ text.context_menu.copy_to.python.code = Python Interpreter (Code/history)
1167
+ text.context_menu.copy_to.python.input = Python Interpreter (Input)
1149
1168
  text.context_menu.find = Find...
1150
1169
  theme.dark = Dark
1151
1170
  theme.light = Light
1152
1171
  tip.input.attachments = Here you can add attachments to the message you are sending. You can send text files, code files, PDFs, documents, spreadsheets, and others - they will be used as additional context in the conversation. You can also send images or captured photos from a camera for analysis.
1153
- tip.input.attachments.ctx = Below are the uploaded and indexed attachments that you can use as additional context. The additional context is available for above entire discussion. Options: Full context - includes the entire additional content (raw) in the system prompt, Query only - only queries the indexed content, Summary - includes a summary of the added content in the prompt, Off - disable additional context.
1172
+ tip.input.attachments.ctx = Below are the uploaded and indexed attachments available to use as additional context for the entire discussion above. Options: Full context - attachs the entire content from the attachment in the input prompt, RAG - queries the indexed attachment for additional context, Summary - attachs a summary of the added content in the prompt, Off - disables additional context. **WARNING:** using Full context mode may consume a lot of tokens (as the raw content from the attachment will be attached to the input prompt)!
1154
1173
  tip.input.attachments.uploaded = Here is a list of files uploaded to the server in Assistant mode. These files are located on a remote server, not on your local computer, so the model can use and analyze them using tools available externally on the remote server.
1155
1174
  tip.output.tab.calendar = Using the calendar, you can navigate back to selected conversations from a specific day. Click on a day in the calendar to limit the display of chat history to that day. You can also create day notes and assign them colorful labels.
1156
1175
  tip.output.tab.draw = You can use the drawing tool for quick sketching or capturing an image from the camera, and then send such images to the AI in Vision mode for analysis. You can capture an image with the camera here or open an image from the disk. When using an image, it will be included in the sent message as an attachment.
@@ -49,6 +49,8 @@ action.tab.add.notepad = Agregar un nuevo bloc de notas
49
49
  action.tab.close = Cerrar
50
50
  action.tab.close_all.chat = Cerrar todos los chats
51
51
  action.tab.close_all.notepad = Cerrar todos los blocs de notas
52
+ action.tab.move.left = Mover a la columna izquierda
53
+ action.tab.move.right = Mover a la columna derecha
52
54
  action.touch = Crear archivo...
53
55
  action.truncate = Borrar todo
54
56
  action.undo = Deshacer
@@ -547,6 +549,7 @@ ipython.docker.build.finish = ¡Éxito! La imagen de Docker para IPython ha sido
547
549
  ipython.docker.build.start = Construyendo imagen de Docker... por favor espera...
548
550
  ipython.docker.install = Ejecutar IPython requiere que Docker esté instalado. Docker no fue detectado en este sistema. Por favor, instale Docker primero; puede encontrar las instrucciones aquí: https://docs.docker.com/engine/install/. La ejecución del comando actual ha sido pausada.
549
551
  ipython.image.build = La imagen de Docker para IPython aún no ha sido construida. Esto sucederá ahora, y puede tardar un tiempo (pero es un procedimiento único). La ejecución del comando ha sido pausada. Una vez que la imagen esté construida, por favor ejecute el comando nuevamente.
552
+ layout.split = Pantalla dividida
550
553
  menu.audio = Audio / Voz
551
554
  menu.audio.cache.clear = Limpiar caché de audio...
552
555
  menu.audio.control.global = Control de voz (global)
@@ -611,6 +614,7 @@ menu.theme.dark = Color oscuro...
611
614
  menu.theme.density = Tamaño de la disposición
612
615
  menu.theme.light = Color claro...
613
616
  menu.theme.settings = Configuración...
617
+ menu.theme.style = Estilo...
614
618
  menu.theme.syntax = Resaltado de sintaxis del código...
615
619
  menu.theme.tooltips = Mostrar tooltips
616
620
  menu.tools = Herramientas
@@ -625,7 +629,7 @@ menu.tray.screenshot = Preguntar con captura de pantalla...
625
629
  menu.video = Vídeo
626
630
  menu.video.capture = Entrada: cámara
627
631
  menu.video.capture.auto = Captura automática
628
- mode.agent = Agente (legacy)
632
+ mode.agent = Agente (Autónomo)
629
633
  mode.agent_llama = Agente (LlamaIndex)
630
634
  mode.agent_llama.tooltip = Agentes avanzados (LlamaIndex)
631
635
  mode.agent.tooltip = Agentes simples (legacy)
@@ -683,7 +687,7 @@ preset.action.disable = Deshabilitar
683
687
  preset.action.duplicate = Duplicar
684
688
  preset.action.edit = Editar
685
689
  preset.action.enable = Habilitar
686
- preset.agent = Agente (legacy)
690
+ preset.agent = Agente (Autónomo)
687
691
  preset.agent_llama = Agente (LlamaIndex)
688
692
  preset.agent_provider = Proveedor de agentes
689
693
  preset.agent_provider.desc = Seleccione el tipo de agente para el preset actual
@@ -752,6 +756,12 @@ settings.api_key = Clave API de OpenAI
752
756
  settings.api_key.desc = Requerido para la API de OpenAI. Si deseas usar puntos finales personalizados o APIs locales, puedes introducir aquí cualquier valor.
753
757
  settings.app.env = Entorno de la aplicación (os.environ)
754
758
  settings.app.env.desc = Variables de entorno adicionales para configurar en el inicio de la aplicación
759
+ settings.audio.input.channels = Canaux
760
+ settings.audio.input.channels.desc = Canaux d'entrée, par défaut : 1
761
+ settings.audio.input.device = Dispositivo de Entrada de Audio
762
+ settings.audio.input.device.desc = Selecciona el dispositivo de audio para la entrada del micrófono.
763
+ settings.audio.input.rate = Taux d'échantillonnage
764
+ settings.audio.input.rate.desc = Taux d'échantillonnage, par défaut : 44100
755
765
  settings.check_updates = Buscar actualizaciones al iniciar
756
766
  settings.check_updates.bg = Buscar actualizaciones en segundo plano
757
767
  settings.cmd.field.desc = Habilitar la herramienta `{cmd}`.
@@ -760,6 +770,10 @@ settings.cmd.field.instruction = Instrucción para el modelo
760
770
  settings.cmd.field.params = Parámetros JSON (argumentos de la herramienta)
761
771
  settings.cmd.field.tooltip = Habilitar la herramienta `{cmd}`
762
772
  settings.context_threshold = Umbral del contexto
773
+ settings.ctx.attachment.rag.history = Usar historial en consulta RAG
774
+ settings.ctx.attachment.rag.history.desc = Cuando está habilitado, el contenido de toda la conversación se utilizará al preparar una consulta si el modo es RAG o Resumen.
775
+ settings.ctx.attachment.rag.history.max_items = Límite RAG
776
+ settings.ctx.attachment.rag.history.max_items.desc = Solo si la opción 'Usar historial en consulta RAG' está habilitada. Especifique el límite de cuántas entradas recientes en la conversación se utilizarán al generar una consulta para RAG. 0 = sin límite.
763
777
  settings.ctx.audio = Siempre mostrar el ícono de audio
764
778
  settings.ctx.auto_summary = Resumen automático del contexto
765
779
  settings.ctx.auto_summary.model = Modelo utilizado para el resumen automático
@@ -853,6 +867,7 @@ settings.render.plain = Desactivar el formato markdown en la salida (modo de tex
853
867
  settings.restart.required = Es necesario reiniciar la aplicación para que los cambios en esta opción se apliquen.
854
868
  settings.section.access = Accesibilidad
855
869
  settings.section.agent = Agentes y expertos
870
+ settings.section.audio = Audio
856
871
  settings.section.ctx = Contexto
857
872
  settings.section.files = Archivos y adjuntos
858
873
  settings.section.general = General
@@ -866,6 +881,7 @@ settings.store_history = Almacenar historial
866
881
  settings.store_history_time = Almacenar hora en el historial
867
882
  settings.temperature = Temperatura
868
883
  settings.theme.markdown = Usar colores del tema en la ventana
884
+ settings.theme.style = Estilo (chat)
869
885
  settings.top_p = Top-p
870
886
  settings.upload.data_dir = Almacene imágenes, capturas y subidas en el directorio de datos
871
887
  settings.upload.data_dir.desc = Habilite para almacenar todo en un único directorio de datos
@@ -916,7 +932,7 @@ text.context_menu.find = Encontrar...
916
932
  theme.dark = Oscuro
917
933
  theme.light = Claro
918
934
  tip.input.attachments = Aquí puedes agregar archivos adjuntos al mensaje que estás enviando. Puedes enviar archivos de texto, archivos de código, PDF, documentos, hojas de cálculo, y otros - se utilizarán como contexto adicional en la conversación. También puedes enviar imágenes o fotos capturadas de una cámara para su análisis.
919
- tip.input.attachments.ctx = A continuación se muestran los archivos adjuntos cargados e indexados que puede usar como contexto adicional. El contexto adicional está disponible para toda la discusión anterior. Opciones: Contexto completo - incluye todo el contenido adicional (en bruto) en el aviso del sistema, Solo consulta - solo consulta el contenido indexado, Resumen - incluye un resumen del contenido agregado en el aviso, Apagado - desactiva el contexto adicional.
935
+ tip.input.attachments.ctx = A continuación se detallan los archivos adjuntos subidos y indexados disponibles para usar como contexto adicional en toda la discusión anterior. Opciones: Contexto completo - adjunta todo el contenido del archivo adjunto en el aviso de entrada, RAG - consulta el archivo adjunto indexado para obtener contexto adicional, Resumen - incluye un resumen del contenido agregado en el aviso, Desactivado - deshabilita el contexto adicional. **ADVERTENCIA:** el uso del modo de Contexto completo puede consumir muchos tokens (ya que el contenido bruto del archivo adjunto se adjuntará al aviso de entrada)!
920
936
  tip.input.attachments.uploaded = Aquí tienes una lista de archivos subidos al servidor en el modo Asistente. Estos archivos están ubicados en un servidor remoto, no en tu computadora local, por lo que el modelo puede usarlos y analizarlos utilizando herramientas disponibles externamente en el servidor remoto.
921
937
  tip.output.tab.calendar = Usando el calendario, puedes navegar de vuelta a conversaciones seleccionadas de un día específico. Haz clic en un día en el calendario para limitar la visualización del historial de chat a ese día. También puedes crear notas diarias y asignarles etiquetas de colores.
922
938
  tip.output.tab.draw = Puedes usar la herramienta de dibujo para hacer bocetos rápidos o capturar una imagen de la cámara, y luego enviar dichas imágenes a la IA en modo Visión para su análisis. Puedes capturar una imagen con la cámara aquí o abrir una imagen desde el disco. Al usar una imagen, se incluirá en el mensaje enviado como un adjunto.
@@ -49,6 +49,8 @@ action.tab.add.notepad = Ajouter un nouveau bloc-notes
49
49
  action.tab.close = Fermer
50
50
  action.tab.close_all.chat = Fermer tous les chats
51
51
  action.tab.close_all.notepad = Fermer tous les blocs-notes
52
+ action.tab.move.left = Déplacer vers la colonne de gauche
53
+ action.tab.move.right = Déplacer vers la colonne de droite
52
54
  action.touch = Créer un fichier...
53
55
  action.truncate = Tout effacer
54
56
  action.undo = Annuler
@@ -548,6 +550,7 @@ ipython.docker.build.finish = Succès! L'image Docker pour IPython a été const
548
550
  ipython.docker.build.start = Construction de l'image Docker... veuillez patienter...
549
551
  ipython.docker.install = L'exécution d'IPython nécessite l'installation de Docker. Docker n'a pas été détecté sur ce système. Veuillez d'abord installer Docker ; vous pouvez trouver les instructions ici : https://docs.docker.com/engine/install/. L'exécution de la commande actuelle a été mise en pause.
550
552
  ipython.image.build = L'image Docker pour IPython n'a pas encore été construite. Cela va se produire maintenant, et cela peut prendre un certain temps (mais c'est une procédure unique). L'exécution de la commande a été mise en pause. Une fois l'image construite, veuillez exécuter à nouveau la commande.
553
+ layout.split = Écran scindé
551
554
  menu.audio = Audio / Voix
552
555
  menu.audio.cache.clear = Effacer le cache audio...
553
556
  menu.audio.control.global = Contrôle vocal (global)
@@ -612,6 +615,7 @@ menu.theme.dark = Couleur sombre...
612
615
  menu.theme.density = Taille de la mise en page
613
616
  menu.theme.light = Couleur claire...
614
617
  menu.theme.settings = Paramètres...
618
+ menu.theme.style = Style...
615
619
  menu.theme.syntax = Coloration syntaxique du code...
616
620
  menu.theme.tooltips = Afficher les infobulles
617
621
  menu.tools = Outils
@@ -626,7 +630,7 @@ menu.tray.screenshot = Demander avec une capture d'écran...
626
630
  menu.video = Vidéo
627
631
  menu.video.capture = Entrée : caméra
628
632
  menu.video.capture.auto = Capture automatique
629
- mode.agent = Agent (Legacy)
633
+ mode.agent = Agent (Autonome)
630
634
  mode.agent_llama = Agent (LlamaIndex)
631
635
  mode.agent_llama.tooltip = Agents avancés (LlamaIndex)
632
636
  mode.agent.tooltip = Agents simples (legacy)
@@ -683,7 +687,7 @@ preset.action.disable = Désactiver
683
687
  preset.action.duplicate = Dupliquer
684
688
  preset.action.edit = Modifier
685
689
  preset.action.enable = Activer
686
- preset.agent = Agent (Legacy)
690
+ preset.agent = Agent (Autonome)
687
691
  preset.agent_llama = Agent (LlamaIndex)
688
692
  preset.agent_provider = Fournisseur d'agent
689
693
  preset.agent_provider.desc = Sélectionnez le type d'agent pour le préréglage actuel
@@ -752,6 +756,12 @@ settings.api_key = Clé API OpenAI
752
756
  settings.api_key.desc = Requis pour l'API OpenAI. Si vous souhaitez utiliser des points de terminaison personnalisés ou des API locales, vous pouvez entrer n'importe quelle valeur ici.
753
757
  settings.app.env = Environnement de l'application (os.environ)
754
758
  settings.app.env.desc = Variables d'environnement supplémentaires à définir au démarrage de l'application
759
+ settings.audio.input.channels = Canaux
760
+ settings.audio.input.channels.desc = Canaux d'entrée, par défaut : 1
761
+ settings.audio.input.device = Périphérique d'Entrée Audio
762
+ settings.audio.input.device.desc = Sélectionnez le périphérique audio pour l'entrée du microphone.
763
+ settings.audio.input.rate = Taux d'échantillonnage
764
+ settings.audio.input.rate.desc = Taux d'échantillonnage, par défaut : 44100
755
765
  settings.check_updates = Vérifier les mises à jour au démarrage
756
766
  settings.check_updates.bg = Vérifier les mises à jour en arrière-plan
757
767
  settings.cmd.field.desc = Activer l'outil `{cmd}`.
@@ -760,6 +770,10 @@ settings.cmd.field.instruction = Instruction pour le modèle
760
770
  settings.cmd.field.params = Paramètres JSON (arguments de l'outil)
761
771
  settings.cmd.field.tooltip = Activer l'outil `{cmd}`
762
772
  settings.context_threshold = Seuil de contexte
773
+ settings.ctx.attachment.rag.history = Utiliser l'historique dans la requête RAG
774
+ settings.ctx.attachment.rag.history.desc = Lorsqu'il est activé, le contenu de toute la conversation sera utilisé lors de la préparation d'une requête si le mode est RAG ou Résumé.
775
+ settings.ctx.attachment.rag.history.max_items = Limite RAG
776
+ settings.ctx.attachment.rag.history.max_items.desc = Seulement si l'option 'Utiliser l'historique dans la requête RAG' est activée. Spécifiez la limite du nombre d'entrées récentes de la conversation qui seront utilisées lors de la génération d'une requête pour RAG. 0 = aucune limite.
763
777
  settings.ctx.audio = Toujours afficher l'icône audio
764
778
  settings.ctx.auto_summary = Résumé automatique du contexte
765
779
  settings.ctx.auto_summary.model = Modèle utilisé pour le résumé automatique
@@ -853,6 +867,7 @@ settings.render.plain = Désactiver le formatage markdown dans la sortie (mode t
853
867
  settings.restart.required = Un redémarrage de l'application est requis pour que les modifications de cette option soient appliquées.
854
868
  settings.section.access = Accessibilité
855
869
  settings.section.agent = Agents et experts
870
+ settings.section.audio = Audio
856
871
  settings.section.ctx = Contexte
857
872
  settings.section.files = Fichiers et pièces jointes
858
873
  settings.section.general = Général
@@ -866,6 +881,7 @@ settings.store_history = Stocker l'historique
866
881
  settings.store_history_time = Stocker l'heure dans l'historique
867
882
  settings.temperature = Température
868
883
  settings.theme.markdown = Utilisez les couleurs du thème dans la fenêtre de chat
884
+ settings.theme.style = Style (chat)
869
885
  settings.top_p = Top-p
870
886
  settings.upload.data_dir = Stockez les images, captures et téléchargements dans le répertoire de données
871
887
  settings.upload.data_dir.desc = Activez pour stocker tout dans un seul répertoire de données
@@ -916,7 +932,7 @@ text.context_menu.find = Trouver...
916
932
  theme.dark = Sombre
917
933
  theme.light = Lumière
918
934
  tip.input.attachments = Ici, vous pouvez ajouter des pièces jointes au message que vous envoyez. Vous pouvez envoyer des fichiers texte, des fichiers de code, des PDF, des documents, des feuilles de calcul, et d'autres - ils seront utilisés comme contexte supplémentaire dans la conversation. Vous pouvez également envoyer des images ou des photos capturées par une caméra pour analyse.
919
- tip.input.attachments.ctx = Ci-dessous se trouvent les pièces jointes téléchargées et indexées que vous pouvez utiliser comme contexte supplémentaire. Le contexte supplémentaire est disponible pour toute la discussion ci-dessus. Options : Contexte complet - inclut tout le contenu supplémentaire (brut) dans l'invite du système, Requête uniquement - interroge uniquement le contenu indexé, Résumé - inclut un résumé du contenu ajouté dans l'invite, Désactivé - désactive le contexte supplémentaire.
935
+ tip.input.attachments.ctx = Vous trouverez ci-dessous les pièces jointes téléchargées et indexées disponibles à utiliser comme contexte supplémentaire pour toute la discussion ci-dessus. Options : Contexte complet - attache le contenu entier de la pièce jointe dans le prompt d'entrée, RAG - interroge la pièce jointe indexée pour un contexte supplémentaire, Résumé - inclut un résumé du contenu ajouté dans le prompt, Désactivé - désactive le contexte supplémentaire. **AVERTISSEMENT :** L'utilisation du mode Contexte complet peut consommer beaucoup de jetons (car le contenu brut de la pièce jointe sera attaché au prompt d'entrée)!
920
936
  tip.input.attachments.uploaded = Voici une liste de fichiers téléchargés sur le serveur en mode Assistant. Ces fichiers sont situés sur un serveur distant, pas sur votre ordinateur local, donc le modèle peut les utiliser et les analyser à l'aide des outils disponibles à l'extérieur sur le serveur distant.
921
937
  tip.output.tab.calendar = En utilisant le calendrier, vous pouvez revenir à des conversations sélectionnées d'un jour spécifique. Cliquez sur un jour dans le calendrier pour limiter l'affichage de l'historique de chat à ce jour. Vous pouvez également créer des notes de jour et leur attribuer des étiquettes colorées.
922
938
  tip.output.tab.draw = Vous pouvez utiliser l'outil de dessin pour esquisser rapidement ou capturer une image de la caméra, puis envoyer de telles images à l'IA en mode Vision pour analyse. Vous pouvez capturer une image avec la caméra ici ou ouvrir une image du disque. Lors de l'utilisation d'une image, elle sera incluse dans le message envoyé en tant que pièce jointe.
@@ -49,6 +49,8 @@ action.tab.add.notepad = Aggiungi un nuovo blocco note
49
49
  action.tab.close = Chiudi
50
50
  action.tab.close_all.chat = Chiudi tutte le chat
51
51
  action.tab.close_all.notepad = Chiudi tutti i blocchi note
52
+ action.tab.move.left = Sposta nella colonna di sinistra
53
+ action.tab.move.right = Sposta nella colonna di destra
52
54
  action.touch = Crea file...
53
55
  action.truncate = Cancellare tutto
54
56
  action.undo = Annulla
@@ -548,6 +550,7 @@ ipython.docker.build.finish = Successo! L'immagine Docker per IPython è stata c
548
550
  ipython.docker.build.start = Creazione dell'immagine Docker... per favore aspetta...
549
551
  ipython.docker.install = L'esecuzione di IPython richiede l'installazione di Docker. Docker non è stato rilevato su questo sistema. Si prega di installare prima Docker; puoi trovare le istruzioni qui: https://docs.docker.com/engine/install/. L'esecuzione del comando corrente è stata messa in pausa.
550
552
  ipython.image.build = L'immagine Docker per IPython non è stata ancora costruita. Questo avverrà ora e potrebbe richiedere del tempo (ma è una procedura una tantum). L'esecuzione del comando è stata messa in pausa. Una volta costruita l'immagine, esegui nuovamente il comando.
553
+ layout.split = Schermo diviso
551
554
  menu.audio = Audio / Voce
552
555
  menu.audio.cache.clear = Cancella cache audio...
553
556
  menu.audio.control.global = Controllo vocale (globale)
@@ -612,6 +615,7 @@ menu.theme.dark = Colore scuro...
612
615
  menu.theme.density = Dimensione del layout
613
616
  menu.theme.light = Colore chiaro...
614
617
  menu.theme.settings = Impostazioni...
618
+ menu.theme.style = Stile...
615
619
  menu.theme.syntax = Evidenziazione della sintassi del codice...
616
620
  menu.theme.tooltips = Mostra suggerimenti
617
621
  menu.tools = Strumenti
@@ -626,7 +630,7 @@ menu.tray.screenshot = Chiedi con uno screenshot...
626
630
  menu.video = Video
627
631
  menu.video.capture = Ingresso: fotocamera
628
632
  menu.video.capture.auto = Cattura automatica
629
- mode.agent = Agente (legacy)
633
+ mode.agent = Agente (Autonomo)
630
634
  mode.agent_llama = Agente (LlamaIndex)
631
635
  mode.agent_llama.tooltip = Agenti avanzati (LlamaIndex)
632
636
  mode.agent.tooltip = Agenti semplici (legacy)
@@ -684,7 +688,7 @@ preset.action.disable = Disabilitare
684
688
  preset.action.duplicate = Duplica
685
689
  preset.action.edit = Modifica
686
690
  preset.action.enable = Abilitare
687
- preset.agent = Agente (legacy)
691
+ preset.agent = Agente (Autonomo)
688
692
  preset.agent_llama = Agente (LlamaIndex)
689
693
  preset.agent_provider = Fornitore di agenti
690
694
  preset.agent_provider.desc = Seleziona il tipo di agente per il preset corrente
@@ -753,6 +757,12 @@ settings.api_key = OpenAI API KEY
753
757
  settings.api_key.desc = Richiesto per l'API OpenAI. Se desideri utilizzare endpoint personalizzati o API locali, puoi inserire qui qualsiasi valore.
754
758
  settings.app.env = Ambiente dell'applicazione (os.environ)
755
759
  settings.app.env.desc = Variabili d'ambiente aggiuntive da impostare all'avvio dell'applicazione
760
+ settings.audio.input.channels = Canali
761
+ settings.audio.input.channels.desc = Canali di ingresso, predefinito: 1
762
+ settings.audio.input.device = Dispositivo di Ingresso Audio
763
+ settings.audio.input.device.desc = Seleziona il dispositivo audio per l'ingresso del microfono.
764
+ settings.audio.input.rate = Frequenza di campionamento
765
+ settings.audio.input.rate.desc = Frequenza di campionamento, predefinito: 44100
756
766
  settings.check_updates = Controlla aggiornamenti all'avvio
757
767
  settings.check_updates.bg = Controlla gli aggiornamenti in background
758
768
  settings.cmd.field.desc = Abilita lo strumento `{cmd}`.
@@ -761,6 +771,10 @@ settings.cmd.field.instruction = Istruzione per il modello
761
771
  settings.cmd.field.params = Parametri JSON (argomenti dello strumento)
762
772
  settings.cmd.field.tooltip = Abilita lo strumento `{cmd}`
763
773
  settings.context_threshold = Soglia del contesto
774
+ settings.ctx.attachment.rag.history = Usa la cronologia nella query RAG
775
+ settings.ctx.attachment.rag.history.desc = Quando abilitato, il contenuto dell'intera conversazione verrà utilizzato durante la preparazione di una query se la modalità è RAG o Sommario.
776
+ settings.ctx.attachment.rag.history.max_items = Limite RAG
777
+ settings.ctx.attachment.rag.history.max_items.desc = Solo se l'opzione 'Usa la cronologia nella query RAG' è abilitata. Specifica il limite di quante voci recenti nella conversazione verranno utilizzate quando si genera una query per RAG. 0 = nessun limite.
764
778
  settings.ctx.audio = Mostra sempre l'icona audio
765
779
  settings.ctx.auto_summary = Riassunto automatico del contesto
766
780
  settings.ctx.auto_summary.model = Modello utilizzato per riassunto automatico
@@ -853,6 +867,7 @@ settings.render.code_syntax = Stile di evidenziazione della sintassi del codice
853
867
  settings.restart.required = È necessario riavviare l'applicazione affinché le modifiche a questa opzione siano applicate.
854
868
  settings.section.access = Accessibilità
855
869
  settings.section.agent = Agenti ed esperti
870
+ settings.section.audio = Audio
856
871
  settings.section.ctx = Contesto
857
872
  settings.section.files = File e allegati
858
873
  settings.section.general = Generale
@@ -866,6 +881,7 @@ settings.store_history = Conserva la cronologia
866
881
  settings.store_history_time = Conserva l'orario nella cronologia
867
882
  settings.temperature = Temperatura
868
883
  settings.theme.markdown = Usa i colori del tema nella finestra della chat
884
+ settings.theme.style = Stile (chat)
869
885
  settings.top_p = Top-p
870
886
  settings.upload.data_dir = Memorizza immagini, catture e caricamenti nella directory dei dati
871
887
  settings.upload.data_dir.desc = Abilita per memorizzare tutto in una singola directory dei dati
@@ -916,7 +932,7 @@ text.context_menu.find = Trova...
916
932
  theme.dark = Scuro
917
933
  theme.light = Luminoso
918
934
  tip.input.attachments = Qui puoi aggiungere allegati al messaggio che stai inviando. Puoi inviare file di testo, file di codice, PDF, documenti, fogli di calcolo e altri - verranno utilizzati come contesto aggiuntivo nella conversazione. Puoi anche inviare immagini o foto catturate da una fotocamera per l'analisi.
919
- tip.input.attachments.ctx = Di seguito sono riportati gli allegati caricati e indicizzati che puoi utilizzare come contesto aggiuntivo. Il contesto aggiuntivo è disponibile per l'intera discussione sopra. Opzioni: Contesto completo - include tutto il contenuto aggiuntivo (grezzo) nel prompt del sistema, Solo query - interroga solo il contenuto indicizzato, Sommario - include un sommario del contenuto aggiunto nel prompt, Spento - disabilita il contesto aggiuntivo.
935
+ tip.input.attachments.ctx = Di seguito sono disponibili gli allegati caricati e indicizzati da utilizzare come contesto aggiuntivo per l'intera discussione sopra. Opzioni: Contesto completo - allega l'intero contenuto dell'allegato nel prompt di input, RAG - interroga l'allegato indicizzato per un contesto aggiuntivo, Sintesi - include un riassunto del contenuto aggiunto nel prompt, Disattivato - disabilita il contesto aggiuntivo. **ATTENZIONE:** l'uso della modalità Contesto completo può consumare molti token (poiché il contenuto grezzo dell'allegato verrà allegato al prompt di input)!
920
936
  tip.input.attachments.uploaded = Qui è presente un elenco di файлы caricati sul server in modalità Assistant. Questi файлы si trovano su un сервер remoto, non sul tuo computer locale, quindi il modello può utilizzarli e analizzarli utilizzando strumenti disponibili all'esterno sul сервер remoto.
921
937
  tip.output.tab.calendar = Utilizzando il calendario, puoi tornare a conversazioni selezionate di un giorno specifico. Clicca su un giorno nel calendario per limitare la visualizzazione della cronologia della chat a quel giorno. Puoi anche creare note giornaliere e assegnarle etichette colorate.
922
938
  tip.output.tab.draw = Puoi utilizzare lo strumento di disegno per fare rapidi schizzi o catturare un'immagine dalla fotocamera, e poi inviare tali immagini all'IA in modalità Vision per l'analisi. Puoi catturare un'immagine con la fotocamera qui o aprire un'immagine dal disco. Quando utilizzi un'immagine, questa sarà inclusa nel messaggio inviato come allegato.
@@ -49,6 +49,8 @@ action.tab.add.notepad = Dodaj nowy notatnik
49
49
  action.tab.close = Zamknij
50
50
  action.tab.close_all.chat = Zamknij wszystkie czaty
51
51
  action.tab.close_all.notepad = Zamknij wszystkie notatniki
52
+ action.tab.move.left = Przenieś do lewej kolumny
53
+ action.tab.move.right = Przenieś do prawej kolumny
52
54
  action.touch = Utwórz plik...
53
55
  action.truncate = Wyczyść wszystko
54
56
  action.undo = Cofnij
@@ -115,7 +117,7 @@ attachments.header.name = Nazwa
115
117
  attachments.header.path = Ścieżka
116
118
  attachments.header.size = Rozmiar
117
119
  attachments.header.store = Baza(y) wektorowa
118
- attachments.options.label
120
+ attachments.options.label = Opcje
119
121
  attachments.send_clear = Wyczyść listę po wysłaniu
120
122
  attachments.tab = Załączniki
121
123
  attachments_uploaded.btn.clear = Wyczyść
@@ -548,6 +550,7 @@ ipython.docker.build.finish = Sukces! Obraz Docker dla IPython został zbudowany
548
550
  ipython.docker.build.start = Budowanie obrazu Dockera... proszę czekać...
549
551
  ipython.docker.install = Uruchomienie IPython wymaga zainstalowania Dockera. Docker nie został wykryty na tym systemie. Proszę najpierw zainstalować Dockera; instrukcje można znaleźć tutaj: https://docs.docker.com/engine/install/. Wykonywanie bieżącego polecenia zostało wstrzymane.
550
552
  ipython.image.build = Obraz Dockera dla IPython nie został jeszcze zbudowany. Nastąpi to teraz i może to potrwać chwilę (ale to jednorazowa procedura). Wykonywanie polecenia zostało wstrzymane. Po zbudowaniu obrazu możesz ponownie poprosić o wykonanie polecenia.
553
+ layout.split = Podziel ekran
551
554
  menu.audio = Audio / Mowa
552
555
  menu.audio.cache.clear = Wyczyść pamięć podręczną audio...
553
556
  menu.audio.control.global = Kontrola głosowa (globalna)
@@ -612,6 +615,7 @@ menu.theme.dark = Ciemny kolor...
612
615
  menu.theme.density = Rozmiar układu
613
616
  menu.theme.light = Jasny kolor...
614
617
  menu.theme.settings = Ustawienia...
618
+ menu.theme.style = Styl...
615
619
  menu.theme.syntax = Podświetlanie składni kodu...
616
620
  menu.theme.tooltips = Pokaż podpowiedzi
617
621
  menu.tools = Narzędzia
@@ -626,7 +630,7 @@ menu.tray.screenshot = Zapytaj ze zrzutem ekranu...
626
630
  menu.video = Wideo
627
631
  menu.video.capture = Wejście: kamera
628
632
  menu.video.capture.auto = Automatyczne przechwytywanie
629
- mode.agent = Agent (Legacy)
633
+ mode.agent = Agent (autonomiczny)
630
634
  mode.agent_llama = Agent (LlamaIndex)
631
635
  mode.agent_llama.tooltip = Zaawansowani agenci (LlamaIndex)
632
636
  mode.agent.tooltip = Prości agenci (legacy)
@@ -684,7 +688,7 @@ preset.action.disable = Wyłączyć
684
688
  preset.action.duplicate = Duplikuj
685
689
  preset.action.edit = Edycja
686
690
  preset.action.enable = Włączyć
687
- preset.agent = Agent (Legacy)
691
+ preset.agent = Agent (autonomiczny)
688
692
  preset.agent_llama = Agent (LlamaIndex)
689
693
  preset.agent_provider = Dostawca agenta
690
694
  preset.agent_provider.desc = Wybierz typ agenta dla bieżącego presetu
@@ -753,6 +757,12 @@ settings.api_key = Klucz API OpenAI
753
757
  settings.api_key.desc = Wymagany dla API OpenAI. Jeśli chcesz używać niestandardowych punktów końcowych lub lokalnych API, możesz tutaj wprowadzić dowolną wartość.
754
758
  settings.app.env = Środowisko aplikacji (os.environ)
755
759
  settings.app.env.desc = Dodatkowe zmienne środowiskowe do ustawienia przy starcie aplikacji
760
+ settings.audio.input.channels = Kanały
761
+ settings.audio.input.channels.desc = Kanały wejściowe, domyślnie: 1
762
+ settings.audio.input.device = Urządzenie Wejściowe Audio
763
+ settings.audio.input.device.desc = Wybierz urządzenie audio dla wejścia mikrofonu.
764
+ settings.audio.input.rate = Częstotliwość próbkowania
765
+ settings.audio.input.rate.desc = Częstotliwość próbkowania, domyślnie: 44100
756
766
  settings.check_updates = Sprawdź aktualizacje przy starcie
757
767
  settings.check_updates.bg = Sprawdź aktualizacje w tle
758
768
  settings.cmd.field.desc = Włącz narzędzie `{cmd}`.
@@ -761,6 +771,10 @@ settings.cmd.field.instruction = Instrukcja dla modelu
761
771
  settings.cmd.field.params = Parametry JSON (argumenty narzędzia)
762
772
  settings.cmd.field.tooltip = Włącz narzędzie `{cmd}`
763
773
  settings.context_threshold = Zarezerwowany kontekst
774
+ settings.ctx.attachment.rag.history = Użyj historii w zapytaniu RAG
775
+ settings.ctx.attachment.rag.history.desc = Gdy jest włączone, zawartość całej rozmowy będzie używana podczas przygotowywania zapytania, jeśli tryb to RAG lub Podsumowanie.
776
+ settings.ctx.attachment.rag.history.max_items = Limit RAG
777
+ settings.ctx.attachment.rag.history.max_items.desc = Tylko jeśli opcja 'Użyj historii w zapytaniu RAG' jest włączona. Określ limit, ile ostatnich wpisów z rozmowy zostanie użytych podczas generowania zapytania dla RAG. 0 = brak limitu.
764
778
  settings.ctx.audio = Zawsze pokazuj ikonę audio
765
779
  settings.ctx.auto_summary = Kontekst: auto-podsumowanie
766
780
  settings.ctx.auto_summary.model = Model używany do auto-podsumowania
@@ -854,6 +868,7 @@ settings.render.plain = Wyłącz formatowanie markdown w wyjściu (tryb plain-te
854
868
  settings.restart.required = Restart aplikacji jest wymagany, aby zmiany dla tej opcji zostały wprowadzone.
855
869
  settings.section.access = Dostępność
856
870
  settings.section.agent = Agenci i eksperci
871
+ settings.section.audio = Audio
857
872
  settings.section.ctx = Kontekst
858
873
  settings.section.files = Pliki i załączniki
859
874
  settings.section.general = Ogólne
@@ -867,6 +882,7 @@ settings.store_history = Zapisuj historię
867
882
  settings.store_history_time = Zapisuj czas w historii
868
883
  settings.temperature = Temperatura
869
884
  settings.theme.markdown = Użyj motywu kolorystycznego w oknie czatu
885
+ settings.theme.style = Styl (czat)
870
886
  settings.top_p = Top-p
871
887
  settings.upload.data_dir = Przechowuj obrazy, zrzuty ekranu i przesyłane pliki w katalogu danych
872
888
  settings.upload.data_dir.desc = Włącz, aby przechowywać wszystko w jednym katalogu danych
@@ -917,7 +933,7 @@ text.context_menu.find = Znajdź...
917
933
  theme.dark = Ciemny
918
934
  theme.light = Jasny
919
935
  tip.input.attachments = Tutaj możesz dodać załączniki do wysyłanej wiadomości. Możesz wysyłać pliki tekstowe, z kodem, PDF, dokumenty, arkusze i inne - zostaną one użyte jako dodatkowy kontekst w konwersacji. Możesz także wysyłać obrazy lub przechwycone zdjęcia z kamery do analizy.
920
- tip.input.attachments.ctx = Poniżej znajdują się przesłane i zindeksowane załączniki, które możesz wykorzystać jako dodatkowy kontekst. Dodatkowy kontekst jest dostępny dla całej powyższej dyskusji. Opcje: Pełny kontekst - zawiera cały dodatkowy materiał (surowy) w zapytaniu systemowym, Tylko zapytanie - zapytuje tylko zindeksowaną treść, Podsumowanie - zawiera podsumowanie dodanej treści w zapytaniu, Wyłączone - wyłącza dodatkowy kontekst.
936
+ tip.input.attachments.ctx = Poniżej znajdują się załączone i zindeksowane załączniki dostępne do użycia jako dodatkowy kontekst dla całej powyższej dyskusji. Opcje: Pełny kontekst - dołącza całą zawartość z załącznika w zapytaniu, RAG - przeszukuje zindeksowany załącznik w poszukiwaniu dodatkowego kontekstu, Podsumowanie - dołącza podsumowanie dodanej treści w zapytaniu, Wyłączone - wyłącza dodatkowy kontekst. **OSTRZEŻENIE:** użycie trybu Pełny kontekst może zużywać wiele tokenów (surowa zawartość z załącznika zostanie dołączona do zapytania)!
921
937
  tip.input.attachments.uploaded = Tutaj znajduje się lista plików przesłanych na serwer w trybie Asystenta. Te pliki znajdują się na zdalnym serwerze, a nie na lokalnym komputerze, więc model może używać i analizować je za pomocą narzędzi dostępnych zewnętrznie na zdalnym serwerze.
922
938
  tip.output.tab.calendar = Korzystając z kalendarza, możesz wrócić do wybranych rozmów z określonego dnia. Kliknij na dzień w kalendarzu, aby ograniczyć wyświetlanie historii czatu do tego dnia. Możesz również tworzyć notatki dnia i przypisywać im kolorowe etykiety.
923
939
  tip.output.tab.draw = Możesz użyć narzędzia do rysowania do szybkiego szkicowania lub przechwytywania obrazu z kamery, a następnie wysyłać takie obrazy do AI w trybie Vision do analizy. Możesz tu przechwycić obraz za pomocą kamery lub otworzyć obraz z dysku. Przy użyciu obrazu zostanie on dołączony do wysłanej wiadomości jako załącznik.
@@ -49,6 +49,8 @@ action.tab.add.notepad = Додати новий блокнот
49
49
  action.tab.close = Закрити
50
50
  action.tab.close_all.chat = Закрити всі чати
51
51
  action.tab.close_all.notepad = Закрити всі блокноти
52
+ action.tab.move.left = Перемістити в ліву колонку
53
+ action.tab.move.right = Перемістити в праву колонку
52
54
  action.touch = Створити файл...
53
55
  action.truncate = Очистити все
54
56
  action.undo = Скасувати
@@ -547,6 +549,7 @@ ipython.docker.build.finish = Успіх! Образ Docker для IPython ст
547
549
  ipython.docker.build.start = Створення образу Docker... будь ласка, зачекайте...
548
550
  ipython.docker.install = Для запуску IPython необхідно встановити Docker. Docker не було виявлено на цій системі. Будь ласка, спочатку встановіть Docker; інструкції можна знайти тут: https://docs.docker.com/engine/install/. Виконання поточної команди було призупинено.
549
551
  ipython.image.build = Docker-образ для IPython ще не був створений. Це відбудеться зараз, і це може зайняти деякий час (але це одноразова процедура). Виконання команди було призупинено. Після створення образу, будь ласка, виконайте команду знову.
552
+ layout.split = Розділити екран
550
553
  menu.audio = Аудіо / Голос
551
554
  menu.audio.cache.clear = Очистити кеш аудіо...
552
555
  menu.audio.control.global = Контроль голосу (глобальний)
@@ -611,6 +614,7 @@ menu.theme.dark = Темний колір...
611
614
  menu.theme.density = Розмір компонування
612
615
  menu.theme.light = Світлий колір...
613
616
  menu.theme.settings = Налаштування...
617
+ menu.theme.style = Стиль...
614
618
  menu.theme.syntax = Підсвітка синтаксису коду...
615
619
  menu.theme.tooltips = Показувати підказки
616
620
  menu.tools = Інструменти
@@ -625,7 +629,7 @@ menu.tray.screenshot = Запитати зі скріншотом...
625
629
  menu.video = Відео
626
630
  menu.video.capture = Вхід: камера
627
631
  menu.video.capture.auto = Автоматичне захоплення зображення
628
- mode.agent = Агент (legacy)
632
+ mode.agent = Агент (Автономний)
629
633
  mode.agent_llama = Агент (LlamaIndex)
630
634
  mode.agent_llama.tooltip = Розширені агенти (LlamaIndex)
631
635
  mode.agent.tooltip = Прості агенти (legacy)
@@ -683,7 +687,7 @@ preset.action.disable = Вимкнути
683
687
  preset.action.duplicate = Дублювати
684
688
  preset.action.edit = Редагувати
685
689
  preset.action.enable = Увімкнути
686
- preset.agent = Агент (legacy)
690
+ preset.agent = Агент (Автономний)
687
691
  preset.agent_llama = Агент (LlamaIndex)
688
692
  preset.agent_provider = Постачальник агентів
689
693
  preset.agent_provider.desc = Виберіть тип агента для поточного пресету
@@ -752,6 +756,12 @@ settings.api_key = OpenAI API КЛЮЧ
752
756
  settings.api_key.desc = Необхідний для API OpenAI. Якщо ви бажаєте використовувати налаштовані кінцеві точки або локальні API, тоді ви можете ввести будь-яке значення тут.
753
757
  settings.app.env = Оточення додатка (os.environ)
754
758
  settings.app.env.desc = Додаткові змінні середовища для встановлення при запуску додатка
759
+ settings.audio.input.channels = Канали
760
+ settings.audio.input.channels.desc = Вхідні канали, за замовчуванням: 1
761
+ settings.audio.input.device = Аудіо Вхідний Пристрій
762
+ settings.audio.input.device.desc = Виберіть аудіо пристрій для введення мікрофона.
763
+ settings.audio.input.rate = Частота дискретизації
764
+ settings.audio.input.rate.desc = Частота дискретизації, за замовчуванням: 44100
755
765
  settings.check_updates = Перевіряти оновлення при запуску
756
766
  settings.check_updates.bg = Перевіряти оновлення у фоновому режимі
757
767
  settings.cmd.field.desc = Увімкнути інструмент `{cmd}`.
@@ -760,6 +770,10 @@ settings.cmd.field.instruction = Інструкція для моделі
760
770
  settings.cmd.field.params = Параметри JSON (аргументи інструменту)
761
771
  settings.cmd.field.tooltip = Увімкнути інструмент `{cmd}`
762
772
  settings.context_threshold = Поріг контексту
773
+ settings.ctx.attachment.rag.history = Використовувати історію в запиті RAG
774
+ settings.ctx.attachment.rag.history.desc = Коли увімкнено, вміст усієї розмови буде використовуватися під час підготовки запиту, якщо режим - RAG або Резюме.
775
+ settings.ctx.attachment.rag.history.max_items = Ліміт RAG
776
+ settings.ctx.attachment.rag.history.max_items.desc = Тільки якщо опція 'Використовувати історію в запиті RAG' увімкнена. Укажіть ліміт того, скільки недавніх записів розмови буде використано під час створення запиту для RAG. 0 = без обмежень.
763
777
  settings.ctx.audio = Завжди показувати значок аудіо
764
778
  settings.ctx.auto_summary = Автоматичне стиснення контексту
765
779
  settings.ctx.auto_summary.model = Модель, що використовується для автоматичного стиснення
@@ -853,6 +867,7 @@ settings.render.plain = Вимкнути форматування markdown у в
853
867
  settings.restart.required = Для внесення змін у цю опцію необхідно перезапустити програму.
854
868
  settings.section.access = Доступність
855
869
  settings.section.agent = Агенти та експерти
870
+ settings.section.audio = Аудіо
856
871
  settings.section.ctx = Контекст
857
872
  settings.section.files = Файли та вкладення
858
873
  settings.section.general = Загальні
@@ -866,6 +881,7 @@ settings.store_history = Зберігати історію
866
881
  settings.store_history_time = Зберігати час в історії
867
882
  settings.temperature = Температура
868
883
  settings.theme.markdown = Використовуйте кольори теми у вікні чату
884
+ settings.theme.style = Стиль (чат)
869
885
  settings.top_p = Top-p
870
886
  settings.upload.data_dir = Зберігайте зображення, знімки екрану та завантаження у директорії даних
871
887
  settings.upload.data_dir.desc = Увімкніть, щоб зберігати все в одній директорії даних
@@ -916,7 +932,7 @@ text.context_menu.find = Знайти...
916
932
  theme.dark = Темна
917
933
  theme.light = Світла
918
934
  tip.input.attachments = Тут ви можете додати вкладення до повідомлення, яке ви надсилаєте. Ви можете надіслати текстові файли, файли з кодом, PDF, документи, електронні таблиці та інші - вони будуть використані як додатковий контекст у розмові. Ви також можете надіслати зображення або знімки, зроблені за допомогою камери, для аналізу.
919
- tip.input.attachments.ctx = Нижче наведено завантажені та проіндексовані вкладення, які ви можете використовувати як додатковий контекст. Додатковий контекст доступний для всієї вищезгаданої дискусії. Варіанти: Повний контекст - включає весь додатковий вміст (сирий) у системному запиті, Лише запит - запитує лише проіндексований вміст, Резюме - включає резюме доданого вмісту в запиті, Вимкнено - вимкнути додатковий контекст.
935
+ tip.input.attachments.ctx = Нижче наведено завантажені та індексовані вкладення, доступні для використання як додатковий контекст для всієї обговорюваної теми вище. Варіанти: Повний контекст - додає весь вміст з вкладення в запит, RAG - здійснює запит до індексованого вкладення для додаткового контексту, Резюме - включає резюме доданого вмісту в запит, Вимкнено - відключає додатковий контекст. **ПОПЕРЕДЖЕННЯ:** використання режиму повного контексту може використовувати багато токенів (оскільки сирий вміст із вкладення буде додано в запит)!
920
936
  tip.input.attachments.uploaded = Тут є список файлів, завантажених на сервер у режимі Асистента. Ці файли розташовані на віддаленому сервері, а не на вашому локальному комп'ютері, тому модель може використовувати їх та аналізувати за допомогою інструментів, доступних ззовні на віддаленому сервері.
921
937
  tip.output.tab.calendar = Використовуючи календар, ви можете повертатись до обраних розмов з певного дня. Натисніть на день у календарі, щоб обмежити відображення історії чату до цього дня. Ви також можете створювати денні нотатки та присвоювати їм кольорові мітки.
922
938
  tip.output.tab.draw = Ви можете використовувати інструмент малювання для швидкого скетчингу або захоплення зображення з камери, а потім надсилати такі зображення ШІ у режимі Vision для аналізу. Ви можете захопити зображення за допомогою камери тут або відкрити зображення з диску. При використанні зображення, воно буде включене в наді слане повідомлення як вкладення.