pygpt-net 2.4.30__py3-none-any.whl → 2.4.34__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 (126) hide show
  1. CHANGELOG.md +24 -0
  2. README.md +46 -5
  3. pygpt_net/CHANGELOG.txt +24 -0
  4. pygpt_net/__init__.py +3 -3
  5. pygpt_net/controller/access/__init__.py +5 -5
  6. pygpt_net/controller/access/control.py +3 -2
  7. pygpt_net/controller/attachment.py +67 -1
  8. pygpt_net/controller/audio/__init__.py +34 -6
  9. pygpt_net/controller/chat/__init__.py +3 -1
  10. pygpt_net/controller/chat/attachment.py +239 -37
  11. pygpt_net/controller/chat/audio.py +99 -0
  12. pygpt_net/controller/chat/input.py +10 -3
  13. pygpt_net/controller/chat/output.py +4 -1
  14. pygpt_net/controller/chat/text.py +7 -3
  15. pygpt_net/controller/dialogs/confirm.py +17 -1
  16. pygpt_net/controller/lang/custom.py +3 -1
  17. pygpt_net/controller/mode.py +2 -1
  18. pygpt_net/controller/presets/editor.py +11 -2
  19. pygpt_net/core/access/voice.py +2 -2
  20. pygpt_net/core/agents/legacy.py +3 -1
  21. pygpt_net/core/attachments/__init__.py +11 -7
  22. pygpt_net/core/attachments/context.py +226 -44
  23. pygpt_net/core/{audio.py → audio/__init__.py} +1 -1
  24. pygpt_net/core/audio/context.py +34 -0
  25. pygpt_net/core/bridge/context.py +29 -1
  26. pygpt_net/core/ctx/__init__.py +4 -1
  27. pygpt_net/core/db/__init__.py +4 -2
  28. pygpt_net/core/debug/attachments.py +3 -1
  29. pygpt_net/core/debug/context.py +5 -1
  30. pygpt_net/core/debug/presets.py +3 -1
  31. pygpt_net/core/events/event.py +2 -1
  32. pygpt_net/core/experts/__init__.py +3 -1
  33. pygpt_net/core/idx/chat.py +28 -6
  34. pygpt_net/core/idx/indexing.py +123 -15
  35. pygpt_net/core/modes.py +3 -1
  36. pygpt_net/core/presets.py +13 -2
  37. pygpt_net/core/render/markdown/pid.py +2 -1
  38. pygpt_net/core/render/plain/pid.py +2 -1
  39. pygpt_net/core/render/web/body.py +34 -12
  40. pygpt_net/core/render/web/pid.py +2 -1
  41. pygpt_net/core/render/web/renderer.py +8 -3
  42. pygpt_net/core/tokens.py +4 -2
  43. pygpt_net/core/types/mode.py +2 -1
  44. pygpt_net/data/config/config.json +5 -3
  45. pygpt_net/data/config/models.json +190 -5
  46. pygpt_net/data/config/modes.json +11 -5
  47. pygpt_net/data/config/presets/current.audio.json +34 -0
  48. pygpt_net/data/config/settings.json +15 -1
  49. pygpt_net/data/css/web.css +70 -0
  50. pygpt_net/data/css/web.dark.css +4 -1
  51. pygpt_net/data/css/web.light.css +1 -1
  52. pygpt_net/data/locale/locale.de.ini +26 -13
  53. pygpt_net/data/locale/locale.en.ini +61 -46
  54. pygpt_net/data/locale/locale.es.ini +26 -13
  55. pygpt_net/data/locale/locale.fr.ini +28 -15
  56. pygpt_net/data/locale/locale.it.ini +26 -13
  57. pygpt_net/data/locale/locale.pl.ini +30 -17
  58. pygpt_net/data/locale/locale.uk.ini +26 -13
  59. pygpt_net/data/locale/locale.zh.ini +33 -20
  60. pygpt_net/data/locale/plugin.cmd_files.de.ini +4 -4
  61. pygpt_net/data/locale/plugin.cmd_files.en.ini +4 -4
  62. pygpt_net/data/locale/plugin.cmd_files.es.ini +4 -4
  63. pygpt_net/data/locale/plugin.cmd_files.fr.ini +4 -4
  64. pygpt_net/data/locale/plugin.cmd_files.it.ini +4 -4
  65. pygpt_net/data/locale/plugin.cmd_files.pl.ini +4 -4
  66. pygpt_net/data/locale/plugin.cmd_files.uk.ini +4 -4
  67. pygpt_net/data/locale/plugin.cmd_files.zh.ini +4 -4
  68. pygpt_net/data/locale/plugin.cmd_web.de.ini +5 -5
  69. pygpt_net/data/locale/plugin.cmd_web.en.ini +5 -5
  70. pygpt_net/data/locale/plugin.cmd_web.es.ini +5 -5
  71. pygpt_net/data/locale/plugin.cmd_web.fr.ini +5 -5
  72. pygpt_net/data/locale/plugin.cmd_web.it.ini +5 -5
  73. pygpt_net/data/locale/plugin.cmd_web.pl.ini +5 -5
  74. pygpt_net/data/locale/plugin.cmd_web.uk.ini +5 -5
  75. pygpt_net/data/locale/plugin.cmd_web.zh.ini +5 -5
  76. pygpt_net/data/locale/plugin.idx_llama_index.de.ini +12 -12
  77. pygpt_net/data/locale/plugin.idx_llama_index.en.ini +12 -12
  78. pygpt_net/data/locale/plugin.idx_llama_index.es.ini +12 -12
  79. pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +12 -12
  80. pygpt_net/data/locale/plugin.idx_llama_index.it.ini +12 -12
  81. pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +12 -12
  82. pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +12 -12
  83. pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +12 -12
  84. pygpt_net/item/attachment.py +9 -1
  85. pygpt_net/item/ctx.py +9 -1
  86. pygpt_net/item/preset.py +5 -1
  87. pygpt_net/launcher.py +3 -1
  88. pygpt_net/migrations/Version20241126170000.py +28 -0
  89. pygpt_net/migrations/__init__.py +3 -1
  90. pygpt_net/plugin/audio_input/__init__.py +11 -1
  91. pygpt_net/plugin/audio_input/worker.py +9 -1
  92. pygpt_net/plugin/audio_output/__init__.py +37 -7
  93. pygpt_net/plugin/audio_output/worker.py +38 -41
  94. pygpt_net/plugin/cmd_code_interpreter/runner.py +2 -2
  95. pygpt_net/plugin/cmd_mouse_control/__init__.py +4 -2
  96. pygpt_net/plugin/openai_dalle/__init__.py +3 -1
  97. pygpt_net/plugin/openai_vision/__init__.py +3 -1
  98. pygpt_net/provider/core/attachment/json_file.py +4 -1
  99. pygpt_net/provider/core/config/patch.py +16 -0
  100. pygpt_net/provider/core/ctx/db_sqlite/storage.py +14 -4
  101. pygpt_net/provider/core/ctx/db_sqlite/utils.py +19 -2
  102. pygpt_net/provider/core/model/patch.py +7 -1
  103. pygpt_net/provider/core/preset/json_file.py +5 -1
  104. pygpt_net/provider/gpt/__init__.py +14 -2
  105. pygpt_net/provider/gpt/audio.py +63 -0
  106. pygpt_net/provider/gpt/chat.py +76 -44
  107. pygpt_net/provider/gpt/utils.py +27 -0
  108. pygpt_net/provider/gpt/vision.py +37 -15
  109. pygpt_net/provider/loaders/base.py +10 -1
  110. pygpt_net/provider/loaders/web_yt.py +19 -1
  111. pygpt_net/tools/image_viewer/ui/dialogs.py +3 -1
  112. pygpt_net/ui/dialog/preset.py +3 -1
  113. pygpt_net/ui/dialog/url.py +29 -0
  114. pygpt_net/ui/dialogs.py +5 -1
  115. pygpt_net/ui/layout/chat/attachments.py +42 -6
  116. pygpt_net/ui/layout/chat/attachments_ctx.py +14 -4
  117. pygpt_net/ui/layout/chat/attachments_uploaded.py +8 -4
  118. pygpt_net/ui/widget/dialog/url.py +59 -0
  119. pygpt_net/ui/widget/lists/attachment.py +22 -17
  120. pygpt_net/ui/widget/lists/attachment_ctx.py +65 -3
  121. pygpt_net/ui/widget/textarea/url.py +43 -0
  122. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.34.dist-info}/METADATA +48 -7
  123. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.34.dist-info}/RECORD +126 -117
  124. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.34.dist-info}/LICENSE +0 -0
  125. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.34.dist-info}/WHEEL +0 -0
  126. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.34.dist-info}/entry_points.txt +0 -0
@@ -9,7 +9,7 @@ about.thanks.supporters = Supporters
9
9
  action.add = Add
10
10
  action.clear = Clear
11
11
  action.close = Close
12
- action.cmd.expand = show/hide raw output
12
+ action.cmd.expand = JSON output
13
13
  action.copy = Copy
14
14
  action.ctx_copy_id = Copy ID
15
15
  action.ctx.indexed = Last indexed at
@@ -24,13 +24,16 @@ action.group.delete.all = Delete all (with items)
24
24
  action.group.delete.only = Delete (group only)
25
25
  action.group.new = New group
26
26
  action.group.remove = Remove from group
27
- action.idx = Index with Llama-index...
27
+ action.idx = Index with LlamaIndex...
28
28
  action.idx.remove = Remove from
29
29
  action.mkdir = Create directory...
30
30
  action.move_to = Move to
31
31
  action.new = New...
32
32
  action.open = Open
33
33
  action.open_dir = Open in directory...
34
+ action.open_dir_dest = Open Destination Directory
35
+ action.open_dir_src = Open Source Directory
36
+ action.open_dir_storage = Open Storage directory
34
37
  action.open_new_window = Open (new window)
35
38
  action.paste = Paste
36
39
  action.pin = Pin on top
@@ -98,14 +101,17 @@ assistant.store.name = Name
98
101
  assistant.store.status = Status
99
102
  assistant.store.thread_only = (current thread only)
100
103
  assistant.tool.code_interpreter = Code interpreter
101
- assistant.tool.file_search = Chat with files
104
+ assistant.tool.file_search = Chat with Files
102
105
  assistant.tool.function = Function
103
106
  assistant.tool.retrieval = Retrieval
104
107
  assistant.vector_store = Vector Store
108
+ attachments.auto_index = Auto-index on upload
105
109
  attachments.btn.add = Add file
106
- attachments.btn.clear = Clear files
110
+ attachments.btn.add_url = URL
111
+ attachments.btn.clear = Clear
107
112
  attachments.capture_clear = Clear on capture
108
113
  attachments.clear.confirm = Clear list?
114
+ attachments.ctx.indexed = Yes
109
115
  attachments.ctx.label = Extra context
110
116
  attachments.ctx.mode.full = Full context
111
117
  attachments.ctx.mode.off = Off (disable)
@@ -113,21 +119,23 @@ attachments.ctx.mode.query = Query only
113
119
  attachments.ctx.mode.summary = Summary
114
120
  attachments.delete.confirm = Remove file from list?
115
121
  attachments.header.ctx = Ctx
122
+ attachments.header.idx = Idx
116
123
  attachments.header.length = Length (chars / tokens)
117
124
  attachments.header.name = Name
118
125
  attachments.header.path = Path
119
126
  attachments.header.size = Size
120
127
  attachments.header.store = Vector Store(s)
128
+ attachments.options.label = Options
121
129
  attachments.send_clear = Clear list after sending
122
130
  attachments.tab = Attachments
123
- attachments_uploaded.btn.clear = Clear files
131
+ attachments_uploaded.btn.clear = Clear
124
132
  attachments_uploaded.btn.sync = Sync
125
133
  attachments_uploaded.btn.sync.all = All stores
126
134
  attachments_uploaded.btn.sync.current = Current only
127
135
  attachments_uploaded.clear.confirm = WARNING: are you sure you want to delete all these files from the remote server?
128
136
  attachments_uploaded.delete.confirm = WARNING: are you sure you want to delete this file from the remote server?
129
137
  attachments_uploaded.sync.tip = Tip: click on 'Sync' to retrieve the file list from OpenAI
130
- attachments_uploaded.tab = Uploaded files
138
+ attachments_uploaded.tab = Uploaded
131
139
  audio.cache.clear.confirm = Are you sure you want to delete all cached audio files?
132
140
  audio.cache.clear.success = OK. All audio cache files cleared.
133
141
  audio.control.btn = Voice control
@@ -168,7 +176,7 @@ chatbox.plugins = plugin(s)
168
176
  chat.name.bot = AI
169
177
  chat.name.user = You
170
178
  chat.prefix.attachment = Attachment
171
- chat.prefix.doc = Sources (Llama-index)
179
+ chat.prefix.doc = Sources (LlamaIndex)
172
180
  chat.prefix.file = File
173
181
  chat.prefix.img = Image
174
182
  chat.prefix.url = Link
@@ -364,6 +372,10 @@ dialog.start.link = https://platform.openai.com/account/api-keys
364
372
  dialog.start.settings.text = If you already have an API key, you can configure it in the settings window.\nClick the "Go to Settings" button, and then paste your API key into the API key field.
365
373
  dialog.start.title = Api Key is not configured yet
366
374
  dialog.start.title.text = Your API key is not configured yet...\nYou will obtain an API key by registering an account on the OpenAI website:
375
+ dialog.url.dismiss = Cancel
376
+ dialog.url.tip = Provide the URL of the web page you want to attach as additional context, e.g., https://pl.wikipedia.org/wiki/Elon_Musk, or a YouTube video to transcribe, e.g., https://www.youtube.com/watch?v=CRRlbK5w8AE.
377
+ dialog.url.title = URL
378
+ dialog.url.update = Add
367
379
  dialog.workdir.change.confirm = Are you sure you want to change/move workdir to:\n{path}?
368
380
  dialog.workdir.change.empty.alert = Directory is not empty! Aborting.
369
381
  dialog.workdir.reset.btn = Current
@@ -548,7 +560,7 @@ event.control.ctx.stop = Input: Stop
548
560
  event.control.input.sent = Input sent.
549
561
  event.control.input.stopped = Input stopped.
550
562
  event.control.mode.chat = Mode: Chat
551
- event.control.mode.llama_index = Mode: Chat with files
563
+ event.control.mode.llama_index = Mode: Chat with Files
552
564
  event.control.model.next = Model: Next
553
565
  event.control.model.prev = Model: Prev
554
566
  event.control.mode.next = Mode: Next
@@ -584,7 +596,7 @@ filter.ctx.counters.all = All counters
584
596
  filter.ctx.label = Context list display filter
585
597
  filter.ctx.label.colors = Display by labels
586
598
  filter.ctx.radio.all = All
587
- filter.ctx.radio.indexed = Indexed (llama-index)
599
+ filter.ctx.radio.indexed = Indexed (LlamaIndex)
588
600
  filter.ctx.radio.labeled = Labeled
589
601
  filter.ctx.radio.pinned = Pinned
590
602
  header.assistant.tool.function.desc = Description
@@ -665,8 +677,8 @@ menu.audio = Audio / Voice
665
677
  menu.audio.cache.clear = Clear audio cache...
666
678
  menu.audio.control.global = Voice control (global)
667
679
  menu.audio.control.plugin = Voice control (inline)
668
- menu.audio.input = Input: speech recognition
669
- menu.audio.output = Output: speech synthesis
680
+ menu.audio.input = Input: Speech recognition
681
+ menu.audio.output = Output: Speech synthesis
670
682
  menu.config = Config
671
683
  menu.config.access = Accessibility
672
684
  menu.config.change_dir = Change working directory...
@@ -716,8 +728,8 @@ menu.info.github = GitHub - source code
716
728
  menu.info.license = License
717
729
  menu.info.pypi = PyPi
718
730
  menu.info.snap = Snap Store
719
- menu.info.updates = Check for updates...
720
- menu.info.website = Project website - pygpt.net
731
+ menu.info.updates = Check for Updates...
732
+ menu.info.website = Project Website - pygpt.net
721
733
  menu.lang = Language
722
734
  menu.plugins = Plugins
723
735
  menu.plugins.presets = Presets...
@@ -745,17 +757,18 @@ menu.tray.screenshot = Ask with screenshot...
745
757
  menu.video = Video
746
758
  menu.video.capture = Input: camera
747
759
  menu.video.capture.auto = Auto capture
748
- mode.agent = Agent (legacy)
749
- mode.agent_llama = Agent (Llama-index)
750
- mode.agent_llama.tooltip = Advanced agents (Llama-index)
760
+ mode.agent = Agent (Legacy)
761
+ mode.agent_llama = Agent (LlamaIndex)
762
+ mode.agent_llama.tooltip = Advanced agents (LlamaIndex)
751
763
  mode.agent.tooltip = Simple agents (legacy)
752
764
  mode.assistant = Assistant
753
765
  mode.assistant.tooltip = Chat using Assistants API
766
+ mode.audio = Chat with Audio
754
767
  mode.chat = Chat
755
768
  mode.chat.tooltip = Chat mode (default)
756
769
  mode.completion = Completion
757
770
  mode.completion.tooltip = Completion mode
758
- mode.expert = Experts (co-op)
771
+ mode.expert = Experts (Co-op)
759
772
  mode.expert.tooltip = Experts to call in the background
760
773
  mode.img = Image (DALL-E)
761
774
  mode.img.tooltip = Image generation using DALL-E
@@ -765,8 +778,8 @@ model.ctx = Context tokens
765
778
  model.ctx.desc = Max model input tokens
766
779
  model.default = Default in mode
767
780
  model.id = Model ID
768
- mode.llama_index = Chat with files
769
- mode.llama_index.tooltip = Chat with additional context provided by Llama-index
781
+ mode.llama_index = Chat with Files
782
+ mode.llama_index.tooltip = Chat with additional context provided by LlamaIndex
770
783
  model.langchain.args = [Langchain] LLM provider extra *args
771
784
  model.langchain.args.desc = Keyword arguments to pass into Langchain provider instance (config, API keys, model, etc.)
772
785
  model.langchain.env = [Langchain] ENV vars (for os.environ())
@@ -775,14 +788,14 @@ model.langchain.mode = [Langchain] Mode(s)
775
788
  model.langchain.mode.desc = Available sub-modes: chat, completion
776
789
  model.langchain.provider = [Langchain] Provider
777
790
  model.langchain.provider.desc = LLM provider to use in "Langchain" mode
778
- model.llama_index.args = [Llama-index] LLM provider extra *args
779
- model.llama_index.args.desc = Keyword arguments to pass into Llama-index provider instance (config, API keys, model, etc.)
780
- model.llama_index.env = [Llama-index] ENV vars (for os.environ())
781
- model.llama_index.env.desc = Environment variables to set for Llama-index provider (API keys, etc.)
782
- model.llama_index.mode = [Llama-index] Mode(s)
791
+ model.llama_index.args = [LlamaIndex] LLM provider extra *args
792
+ model.llama_index.args.desc = Keyword arguments to pass into LlamaIndex provider instance (config, API keys, model, etc.)
793
+ model.llama_index.env = [LlamaIndex] ENV vars (for os.environ())
794
+ model.llama_index.env.desc = Environment variables to set for LlamaIndex provider (API keys, etc.)
795
+ model.llama_index.mode = [LlamaIndex] Mode(s)
783
796
  model.llama_index.mode.desc = Available sub-modes: chat
784
- model.llama_index.provider = [Llama-index] Provider
785
- model.llama_index.provider.desc = LLM provider to use in "Chat with files" mode
797
+ model.llama_index.provider = [LlamaIndex] Provider
798
+ model.llama_index.provider.desc = LLM provider to use in "Chat with Files" mode
786
799
  model.mode = Mode(s)
787
800
  model.mode.desc = Available modes: chat, completion, img, vision, assistant, langchain, llama_index, agent, agent_llama
788
801
  model.name = Name
@@ -827,8 +840,8 @@ preset.action.disable = Disable
827
840
  preset.action.duplicate = Duplicate
828
841
  preset.action.edit = Edit
829
842
  preset.action.enable = Enable
830
- preset.agent = Agent (legacy)
831
- preset.agent_llama = Agent (Llama-index)
843
+ preset.agent = Agent (Legacy)
844
+ preset.agent_llama = Agent (LlamaIndex)
832
845
  preset.agent_provider = Agent Provider
833
846
  preset.agent_provider.desc = Select the agent type for the current preset
834
847
  preset.ai_name = AI name
@@ -846,7 +859,7 @@ preset.idx = Index to use
846
859
  preset.idx.desc = If an index is selected, the retrieval tool will be enabled automatically.
847
860
  preset.img = Image
848
861
  preset.langchain = Langchain
849
- preset.llama_index = Chat with files
862
+ preset.llama_index = Chat with Files
850
863
  preset.name = Preset Name
851
864
  preset.new = Create
852
865
  preset.prompt = System prompt
@@ -886,7 +899,7 @@ settings.access.voice_control.model.desc = Model to use for command recognition
886
899
  settings.advanced.collapse = Show/hide advanced options
887
900
  settings.agent.goal.notify = Display a tray notification when the goal is achieved.
888
901
  settings.agent.idx = Index to use
889
- settings.agent.idx.desc = Only if sub-mode is llama_index (Chat with files), choose the index to use in Agent and Expert modes
902
+ settings.agent.idx.desc = Only if sub-mode is llama_index (Chat with Files), choose the index to use in Agent and Expert modes
890
903
  settings.agent.llama.append_eval = Append and compare previous evaluation prompt in next evaluation
891
904
  settings.agent.llama.append_eval.desc = If enabled, previous improvement prompt will be checked in next eval in loop
892
905
  settings.agent.llama.iterations = Max run iterations
@@ -906,8 +919,8 @@ settings.api_proxy = Proxy address
906
919
  settings.api_proxy.desc = Optional, proxy for OpenAI API, e.g. http://proxy.example.com or socks5://user:pass@host:port
907
920
  settings.app.env = Application environment (os.environ)
908
921
  settings.app.env.desc = Additional environment vars to set on application start
909
- settings.check_updates = Check for updates on start
910
- settings.check_updates.bg = Check for updates in the background
922
+ settings.check_updates = Check for Updates on start
923
+ settings.check_updates.bg = Check for Updates in the background
911
924
  settings.cmd.config.collapse = JSON params
912
925
  settings.cmd.field.desc = Enable `{cmd}` tool.
913
926
  settings.cmd.field.enable = Tool: {cmd}
@@ -922,6 +935,8 @@ settings.ctx.attachment.img = Allow images as additional context
922
935
  settings.ctx.attachment.img.desc = If enabled, images can be used as additional context
923
936
  settings.ctx.attachment.summary.model = Model for attachment content summary
924
937
  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.
938
+ settings.ctx.attachment.query.model = Model for querying index
939
+ settings.ctx.attachment.query.model.desc = Model to use for querying the index when the Query only option is selected.
925
940
  settings.ctx.attachment.verbose = Verbose mode
926
941
  settings.ctx.attachment.verbose.desc = Log attachments usage to the console
927
942
  settings.ctx.audio = Always show audio icon
@@ -939,7 +954,7 @@ settings.ctx.records.pinned.separators = Show date separators in pinned items on
939
954
  settings.ctx.records.separators = Show date separators on the context list
940
955
  settings.ctx.search_content = Search also in conversation content, not only in titles
941
956
  settings.ctx.search.desc = Enable search also in context items' content
942
- settings.ctx.sources = Show Llama-index sources
957
+ settings.ctx.sources = Show LlamaIndex sources
943
958
  settings.ctx.sources.desc = If enabled, sources used will be displayed in the response (if available, it will not work in streamed chat)
944
959
  settings.ctx.use_extra = Use extra context output
945
960
  settings.ctx.use_extra.desc = If enabled, plain text output (if available) from command results will be displayed alongside the JSON output.
@@ -992,13 +1007,13 @@ settings.llama.hub.loaders.args.desc = Additional keyword arguments (**kwargs),
992
1007
  settings.llama.hub.loaders.use_local = Use local models in Video/Audio and Image (vision) loaders
993
1008
  settings.llama.hub.loaders.use_local.desc = Enable usage of local models in Video/Audio and Image (vision) loaders. If disabled, then API models will be used (GPT-4 Vision and Whisper). Note: local models will work only in the Python version (not compiled/Snap).
994
1009
  settings.llama.idx.chat.mode = Chat mode
995
- settings.llama.idx.chat.mode.desc = Check Llama-index documentation for help
1010
+ settings.llama.idx.chat.mode.desc = Check LlamaIndex documentation for help
996
1011
  settings.llama.idx.custom_meta = Custom metadata to append/replace to indexed documents (files)
997
1012
  settings.llama.idx.custom_meta.desc = Define custom metadata key => value fields for specified file extensions, separate extensions by comma.\nAllowed placeholders: {path}, {relative_path} {filename}, {dirname}, {relative_dir} {ext}, {size}, {mtime}, {date}, {date_time}, {time}, {timestamp}
998
1013
  settings.llama.idx.custom_meta.web = Custom metadata to append/replace to indexed documents (web/external content)
999
1014
  settings.llama.idx.custom_meta.web.desc = Define custom metadata key => value fields for specified external data loaders.\nAllowed placeholders: {date}, {date_time}, {time}, {timestamp} + {data loader args}
1000
1015
  settings.llama.idx.embeddings.args = Embeddings provider **kwargs
1001
- settings.llama.idx.embeddings.args.desc = Additional keyword arguments (**kwargs), such as model name, for the embeddings provider instance. These arguments will be passed to the provider instance; please refer to the Llama-index API reference for a list of required arguments for the specified embeddings provider.
1016
+ settings.llama.idx.embeddings.args.desc = Additional keyword arguments (**kwargs), such as model name, for the embeddings provider instance. These arguments will be passed to the provider instance; please refer to the LlamaIndex API reference for a list of required arguments for the specified embeddings provider.
1002
1017
  settings.llama.idx.embeddings.env = Embeddings provider ENV vars
1003
1018
  settings.llama.idx.embeddings.env.desc = Environment to set up before embedding provider initialization, such as API keys, etc. Use {config_key} as a placeholder to use the value from the application configuration.
1004
1019
  settings.llama.idx.embeddings.limit.rpm = RPM limit
@@ -1016,7 +1031,7 @@ settings.llama.idx.stop.error = Stop indexing when an error occurs
1016
1031
  settings.llama.idx.stop.error.desc = If enabled, indexing will be stopped when any error occurs.
1017
1032
  settings.llama.idx.storage = Vector Store
1018
1033
  settings.llama.idx.storage.args = Vector Store (**kwargs)
1019
- settings.llama.idx.storage.args.desc = Additional keyword arguments (**kwargs), such as API keys, for the Vector Store provider. These arguments will be passed to the provider; please refer to the Llama-index API reference for a list of required arguments for the specified Vector Store.
1034
+ settings.llama.idx.storage.args.desc = Additional keyword arguments (**kwargs), such as API keys, for the Vector Store provider. These arguments will be passed to the provider; please refer to the LlamaIndex API reference for a list of required arguments for the specified Vector Store.
1020
1035
  settings.lock_modes = Lock incompatible modes
1021
1036
  settings.max_output_tokens = Max output tokens
1022
1037
  settings.max_requests_limit = RPM limit
@@ -1029,13 +1044,13 @@ settings.prompt.agent.continue = Agent: continue [Legacy]
1029
1044
  settings.prompt.agent.continue.always = Agent: continue (always, more steps) [Legacy]
1030
1045
  settings.prompt.agent.continue.always.desc = Prompt sent to always automatically continue the conversation (more reasoning)
1031
1046
  settings.prompt.agent.continue.desc = Prompt sent to automatically continue the conversation
1032
- settings.prompt.agent.continue.llama = Agent: continue (always, more steps) [Llama-index agents]
1047
+ settings.prompt.agent.continue.llama = Agent: continue (always, more steps) [LlamaIndex agents]
1033
1048
  settings.prompt.agent.continue.llama.desc = Prompt sent to always automatically continue the conversation (more reasoning)
1034
1049
  settings.prompt.agent.goal = Agent: goal update [Legacy]
1035
1050
  settings.prompt.agent.goal.desc = Prompt to instruct how to update the current goal status
1036
1051
  settings.prompt.agent.instruction = Agent: system instruction [Legacy]
1037
1052
  settings.prompt.agent.instruction.desc = Prompt to instruct how to handle autonomous mode
1038
- settings.prompt.agent.llama.eval = Agent: evaluation prompt in loop [Llama-index]
1053
+ settings.prompt.agent.llama.eval = Agent: evaluation prompt in loop [LlamaIndex]
1039
1054
  settings.prompt.agent.llama.eval.desc = Prompt used to response evaluation when Loop / evaluate option is enabled
1040
1055
  settings.prompt.cmd = Command execute: instruction
1041
1056
  settings.prompt.cmd.desc = Placeholders: {schema}, {extra}
@@ -1058,14 +1073,14 @@ settings.restart.required = Restart of the application is required for this opti
1058
1073
  settings.section.access = Accessibility
1059
1074
  settings.section.agent = Agents and experts
1060
1075
  settings.section.agent.legacy = Legacy
1061
- settings.section.agent.llama = Llama-index Agents
1076
+ settings.section.agent.llama = LlamaIndex Agents
1062
1077
  settings.section.ctx = Context
1063
1078
  settings.section.developer = Developer
1064
1079
  settings.section.files = Files and attachments
1065
1080
  settings.section.general = General
1066
1081
  settings.section.images = Images
1067
1082
  settings.section.layout = Layout
1068
- settings.section.llama_index = Indexes (llama-index)
1083
+ settings.section.llama_index = Indexes (LlamaIndex)
1069
1084
  settings.section.llama-index.chat = Chat
1070
1085
  settings.section.llama-index.data_loaders = Data loaders
1071
1086
  settings.section.llama-index.embeddings = Embeddings
@@ -1133,12 +1148,12 @@ text.context_menu.copy_to.python.input = Python interpreter (Input)
1133
1148
  text.context_menu.find = Find...
1134
1149
  theme.dark = Dark
1135
1150
  theme.light = Light
1136
- tip.input.attachments = Here you can add attachments to the message you are sending if the mode supports it. You can send files here for analysis in Assistant mode or images and captured images from the camera for analysis in Vision mode.
1151
+ 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.
1137
1152
  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.
1138
1153
  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.
1139
1154
  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.
1140
1155
  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.
1141
- tip.output.tab.files = This working files directory is on your disk. The files here are accessible for AI. AI can write and read files, as well as run code from this directory. You can open this directory locally on your system and place any files here. You can also index the files from here with Llama-index, so they serve as an additional knowledge source.
1156
+ tip.output.tab.files = This working files directory is on your disk. The files here are accessible for AI. AI can write and read files, as well as run code from this directory. You can open this directory locally on your system and place any files here. You can also index the files from here with LlamaIndex, so they serve as an additional knowledge source.
1142
1157
  tip.output.tab.notepad = The notepad can serve as a tool for taking notes and storing information. You can keep any text here, copy text from the chat window, and all information will be automatically saved. You can create more notepads using the configuration option in the settings.
1143
1158
  tip.tokens.ctx = Context (memory): in use / all - tokens
1144
1159
  tip.tokens.input = Tokens: input prompt + system prompt + context + extra = sum / max
@@ -1159,7 +1174,7 @@ toolbox.assistants.label = Assistants
1159
1174
  toolbox.experts.label = Experts
1160
1175
  toolbox.img_variants.label = Number of image variants to generate
1161
1176
  toolbox.indexes.label = Index
1162
- toolbox.llama_index.label = Llama-index
1177
+ toolbox.llama_index.label = LlamaIndex
1163
1178
  toolbox.llama_index.mode.chat = Chat
1164
1179
  toolbox.llama_index.mode.label = Mode
1165
1180
  toolbox.llama_index.mode.query = Query the index only
@@ -1191,7 +1206,7 @@ tool.indexer.menu.file.remove_idx = Remove index
1191
1206
  tool.indexer.option.clear = Clear the files list after indexing
1192
1207
  tool.indexer.option.recursive = Recursive (include subdirectories)
1193
1208
  tool.indexer.option.replace = Remove the old document version from the index (if it exists)
1194
- tool.indexer.status = Output Log (Llama-index):
1209
+ tool.indexer.status = Output Log (LlamaIndex):
1195
1210
  tool.indexer.tab.browser = Browse index
1196
1211
  tool.indexer.tab.browse.tip = Browse or remove currently indexed elements (database mapping to the index is displayed here).
1197
1212
  tool.indexer.tab.ctx = Context
@@ -1208,7 +1223,7 @@ tool.indexer.tab.files.path.dir = Select directory:
1208
1223
  tool.indexer.tab.files.path.files = Select file(s):
1209
1224
  tool.indexer.tab.files.tip = Select file(s) or directory to embed files into the selected index. The data loader will be chosen automatically based on the file extension.
1210
1225
  tool.indexer.tab.web = Web
1211
- tool.indexer.tab.web.cfg = Configuration (global settings) - Settings -> Llama-index -> Data loaders
1226
+ tool.indexer.tab.web.cfg = Configuration (global settings) - Settings -> LlamaIndex -> Data loaders
1212
1227
  tool.indexer.tab.web.help = Help
1213
1228
  tool.indexer.tab.web.loader = Loader
1214
1229
  tool.indexer.tab.web.source = Data source
@@ -1224,7 +1239,7 @@ update.new_version = Newest version
1224
1239
  updater.check.launch = Check on launch
1225
1240
  update.released = build
1226
1241
  update.snap = Go to Snap Store
1227
- update.title = Check for updates
1242
+ update.title = Check for Updates
1228
1243
  vision.capture.auto = Auto capture
1229
1244
  vision.capture.auto.click = Auto-capture is enabled!
1230
1245
  vision.capture.auto.label = Auto capture enabled
@@ -8,7 +8,7 @@ about.thanks.sponsors = Patrocinadores
8
8
  about.thanks.supporters = Colaboradores
9
9
  action.add = Añadir
10
10
  action.clear = Limpiar
11
- action.cmd.expand = mostrar/ocultar salida
11
+ action.cmd.expand = salida JSON
12
12
  action.copy = Copiar
13
13
  action.ctx_copy_id = Copiar ID
14
14
  action.ctx.indexed = Última indexación el
@@ -23,12 +23,15 @@ action.group.delete.all = Eliminar todo (con ítems)
23
23
  action.group.delete.only = Eliminar (solo grupo)
24
24
  action.group.new = Nuevo grupo
25
25
  action.group.remove = Quitar del grupo
26
- action.idx = Indexar con Llama-index...
26
+ action.idx = Indexar con LlamaIndex...
27
27
  action.idx.remove = Eliminar de
28
28
  action.mkdir = Crear directorio...
29
29
  action.move_to = Mover a
30
30
  action.open = Abri
31
31
  action.open_dir = Abrir en el directorio...
32
+ action.open_dir_dest = Abrir directorio de destino
33
+ action.open_dir_src = Abrir directorio fuente
34
+ action.open_dir_storage = Abrir directorio de almacenamiento
32
35
  action.paste = Pegar
33
36
  action.pin = Fijar en la parte superior
34
37
  action.profile.delete = Eliminar perfil (solo de la lista)
@@ -93,21 +96,26 @@ assistant.tool.file_search = Chat con archivos
93
96
  assistant.tool.function = Herramienta: función
94
97
  assistant.tool.retrieval = Herramienta: recuperación
95
98
  assistant.vector_store = Almacén de vectores
99
+ attachments.auto_index = Indexación automática al subir
96
100
  attachments.btn.add = Añadir archivo
101
+ attachments.btn.add_url = URL
97
102
  attachments.btn.clear = Limpiar archivos
98
103
  attachments.capture_clear = Limpiar al capturar
99
104
  attachments.clear.confirm = ¿Limpiar la lista?
105
+ attachments.ctx.indexed = Sí
100
106
  attachments.ctx.label = Contexto adicional
101
107
  attachments.ctx.mode.full = Contexto completo
102
108
  attachments.ctx.mode.off = Apagado (desactivar)
103
109
  attachments.ctx.mode.query = Solo consulta
104
110
  attachments.ctx.mode.summary = Resumen
105
111
  attachments.delete.confirm = ¿Quitar archivo de la lista?
112
+ attachments.header.idx = Índice
106
113
  attachments.header.length = Longitud (caracteres / tokens)
107
114
  attachments.header.name = Nombre
108
115
  attachments.header.path = Ruta
109
116
  attachments.header.size = Tamaño
110
117
  attachments.header.store = Almacén(es) de vectores
118
+ attachments.options.label = Opciones
111
119
  attachments.send_clear = Limpiar lista después de enviar
112
120
  attachments.tab = Adjuntos
113
121
  attachments_uploaded.btn.clear = Limpiar archivos
@@ -334,6 +342,10 @@ dialog.start.link = https://platform.openai.com/account/api-keys
334
342
  dialog.start.settings.text = Si ya tiene una API KEY, puede configurarla en la ventana de configuración.\nHaga clic en el botón IR A CONFIGURACIÓN y luego pegue su API KEY en el campo API KEY.
335
343
  dialog.start.title = La API KEY aún no está configurada
336
344
  dialog.start.title.text = Su clave de API aún no está configurada...\nObtendrá una clave de API registrando una cuenta en el sitio web de OpenAI:
345
+ dialog.url.dismiss = Cancelar
346
+ dialog.url.tip = Proporcione la URL de la página web que desea adjuntar como contexto adicional, por ejemplo, https://es.wikipedia.org/wiki/Elon_Musk, o un video de YouTube para transcribir, por ejemplo, https://www.youtube.com/watch?v=CRRlbK5w8AE.
347
+ dialog.url.title = URL
348
+ dialog.url.update = Agregar
337
349
  dialog.workdir.change.confirm = ¿Está seguro de querer cambiar/mover el directorio de trabajo a:\n{path}?
338
350
  dialog.workdir.change.empty.alert = ¡El directorio no está vacío! Cancelando la operación.
339
351
  dialog.workdir.reset.btn = Actual
@@ -468,7 +480,7 @@ filter.ctx.counters.all = Todos los contadores
468
480
  filter.ctx.label = Filtro de visualización de la lista de contexto
469
481
  filter.ctx.label.colors = Mostrar por etiquetas
470
482
  filter.ctx.radio.all = Todos
471
- filter.ctx.radio.indexed = Indexado (llama-index)
483
+ filter.ctx.radio.indexed = Indexado (LlamaIndex)
472
484
  filter.ctx.radio.labeled = Etiquetados
473
485
  filter.ctx.radio.pinned = Fijados
474
486
  header.assistant.tool.function.desc = Descripción
@@ -614,11 +626,12 @@ menu.video = Vídeo
614
626
  menu.video.capture = Entrada: cámara
615
627
  menu.video.capture.auto = Captura automática
616
628
  mode.agent = Agente (legacy)
617
- mode.agent_llama = Agente (Llama-index)
618
- mode.agent_llama.tooltip = Agentes avanzados (Llama-index)
629
+ mode.agent_llama = Agente (LlamaIndex)
630
+ mode.agent_llama.tooltip = Agentes avanzados (LlamaIndex)
619
631
  mode.agent.tooltip = Agentes simples (legacy)
620
632
  mode.assistant = Asistente
621
633
  mode.assistant.tooltip = Chatear usando la API de Asistentes
634
+ mode.audio = Chat con audio
622
635
  mode.chat = Chat
623
636
  mode.chat.tooltip = Modo de chat (predeterminado)
624
637
  mode.completion = Finalización
@@ -630,7 +643,7 @@ mode.img.tooltip = Generar imagen usando DALL-E
630
643
  mode.langchain = Langchain
631
644
  mode.langchain.tooltip = Chatear con modelos proporcionados por Langchain
632
645
  mode.llama_index = Chat con archivos
633
- mode.llama_index.tooltip = Chatear con contexto adicional proporcionado por Llama-index
646
+ mode.llama_index.tooltip = Chatear con contexto adicional proporcionado por LlamaIndex
634
647
  mode.vision = Visión
635
648
  mode.vision.tooltip = Análisis de imagen con GPT-4 Vision
636
649
  msg.agent.plan = Plan
@@ -671,7 +684,7 @@ preset.action.duplicate = Duplicar
671
684
  preset.action.edit = Editar
672
685
  preset.action.enable = Habilitar
673
686
  preset.agent = Agente (legacy)
674
- preset.agent_llama = Agente (Llama-index)
687
+ preset.agent_llama = Agente (LlamaIndex)
675
688
  preset.agent_provider = Proveedor de agentes
676
689
  preset.agent_provider.desc = Seleccione el tipo de agente para el preset actual
677
690
  preset.ai_name = Nombre de la IA
@@ -821,7 +834,7 @@ settings.prompt.agent.goal = Agente: actualización de objetivo
821
834
  settings.prompt.agent.goal.desc = Mensaje para instruir cómo actualizar el estado actual del objetivo
822
835
  settings.prompt.agent.instruction = Agente: instrucción del sistema
823
836
  settings.prompt.agent.instruction.desc = Prompt para instruir cómo manejar el modo autónomo
824
- settings.prompt.agent.llama.eval = Agente: solicitud de evaluación en bucle [Llama-index]
837
+ settings.prompt.agent.llama.eval = Agente: solicitud de evaluación en bucle [LlamaIndex]
825
838
  settings.prompt.agent.llama.eval.desc = Solicitud utilizada para responder a la evaluación cuando la opción Bucle / evaluar está habilitada
826
839
  settings.prompt.cmd = Ejecutar comando: instrucción
827
840
  settings.prompt.cmd.desc = Marcadores de posición: {schema}, {extra}
@@ -845,7 +858,7 @@ settings.section.files = Archivos y adjuntos
845
858
  settings.section.general = General
846
859
  settings.section.images = Imágenes
847
860
  settings.section.layout = Diseño
848
- settings.section.llama_index = Índices (llama-index)
861
+ settings.section.llama_index = Índices (LlamaIndex)
849
862
  settings.section.model = Modelos
850
863
  settings.section.updates = Actualizaciones
851
864
  settings.section.vision = Visión
@@ -902,12 +915,12 @@ text.context_menu.copy_to.notepad = Bloc de notas
902
915
  text.context_menu.find = Encontrar...
903
916
  theme.dark = Oscuro
904
917
  theme.light = Claro
905
- tip.input.attachments = Aquí puedes añadir adjuntos al mensaje que estás enviando si el modo lo permite. Aquí puedes enviar archivos para análisis en el modo Asistente o imágenes y capturas de la cámara para análisis en el modo Visión.
918
+ 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.
906
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.
907
920
  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.
908
921
  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.
909
922
  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.
910
- tip.output.tab.files = Este directorio de archivos de trabajo se encuentra en tu disco. Los archivos aquí son accesibles para que la IA los lea. La IA puede escribir y leer archivos, así como ejecutar código desde este directorio. Puedes abrir este directorio localmente en tu sistema y colocar cualquier archivo aquí. También puedes indexar los archivos con Llama-index, para que sirvan como una fuente de conocimiento adicional.
923
+ tip.output.tab.files = Este directorio de archivos de trabajo se encuentra en tu disco. Los archivos aquí son accesibles para que la IA los lea. La IA puede escribir y leer archivos, así como ejecutar código desde este directorio. Puedes abrir este directorio localmente en tu sistema y colocar cualquier archivo aquí. También puedes indexar los archivos con LlamaIndex, para que sirvan como una fuente de conocimiento adicional.
911
924
  tip.output.tab.notepad = El bloc de notas puede servir como una herramienta para tomar notas y almacenar información. Puedes mantener cualquier texto aquí, copiar texto de la ventana de chat, y toda la información se guardará automáticamente. Puedes crear más blocs de notas utilizando la opción de configuración en los ajustes.
912
925
  tip.tokens.ctx = Contexto (memoria): en uso / todos - tokens
913
926
  tip.tokens.input = Tokens: indicación de entrada + indicación de sistema + contexto + extra = suma / máximo
@@ -951,7 +964,7 @@ tool.indexer.menu.file.remove_idx = Eliminar índice
951
964
  tool.indexer.option.clear = Limpiar la lista de archivos después de indexar
952
965
  tool.indexer.option.recursive = Recursivo (incluir subdirectorios)
953
966
  tool.indexer.option.replace = Eliminar la versión antigua del documento del índice (si existe)
954
- tool.indexer.status = Registro de salida (Llama-index):
967
+ tool.indexer.status = Registro de salida (LlamaIndex):
955
968
  tool.indexer.tab.browser = Explorar idx
956
969
  tool.indexer.tab.browse.tip = Explorar o eliminar elementos indexados actualmente (el mapeo de la base de datos al índice se muestra aquí).
957
970
  tool.indexer.tab.ctx = Contexto
@@ -968,7 +981,7 @@ tool.indexer.tab.files.path.dir = Seleccionar directorio:
968
981
  tool.indexer.tab.files.path.files = Seleccionar archivo(s):
969
982
  tool.indexer.tab.files.tip = Selecciona archivo(s) o directorio para incrustar archivos en el índice seleccionado. El cargador de datos se elegirá automáticamente en función de la extensión del archivo.
970
983
  tool.indexer.tab.web = Web
971
- tool.indexer.tab.web.cfg = Configuración (ajustes globales) - Ajustes -> Llama-index -> Cargadores de datos
984
+ tool.indexer.tab.web.cfg = Configuración (ajustes globales) - Ajustes -> LlamaIndex -> Cargadores de datos
972
985
  tool.indexer.tab.web.help = Ayuda
973
986
  tool.indexer.tab.web.loader = Cargador
974
987
  tool.indexer.tab.web.source = Fuente de datos