pygpt-net 2.4.30__py3-none-any.whl → 2.4.35__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 (135) hide show
  1. CHANGELOG.md +32 -0
  2. README.md +2105 -1892
  3. pygpt_net/CHANGELOG.txt +32 -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 +68 -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 +263 -38
  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/painter/capture.py +2 -2
  19. pygpt_net/controller/presets/editor.py +15 -2
  20. pygpt_net/controller/ui/__init__.py +4 -1
  21. pygpt_net/core/access/voice.py +2 -2
  22. pygpt_net/core/agents/legacy.py +3 -1
  23. pygpt_net/core/attachments/__init__.py +14 -9
  24. pygpt_net/core/attachments/context.py +226 -44
  25. pygpt_net/core/{audio.py → audio/__init__.py} +1 -1
  26. pygpt_net/core/audio/context.py +34 -0
  27. pygpt_net/core/bridge/context.py +29 -1
  28. pygpt_net/core/ctx/__init__.py +4 -1
  29. pygpt_net/core/db/__init__.py +4 -2
  30. pygpt_net/core/debug/attachments.py +3 -1
  31. pygpt_net/core/debug/context.py +5 -1
  32. pygpt_net/core/debug/presets.py +3 -1
  33. pygpt_net/core/events/event.py +2 -1
  34. pygpt_net/core/experts/__init__.py +3 -1
  35. pygpt_net/core/idx/chat.py +28 -6
  36. pygpt_net/core/idx/indexing.py +123 -15
  37. pygpt_net/core/modes.py +3 -1
  38. pygpt_net/core/presets.py +13 -2
  39. pygpt_net/core/render/markdown/pid.py +2 -1
  40. pygpt_net/core/render/plain/pid.py +2 -1
  41. pygpt_net/core/render/web/body.py +34 -12
  42. pygpt_net/core/render/web/pid.py +2 -1
  43. pygpt_net/core/render/web/renderer.py +8 -3
  44. pygpt_net/core/tokens.py +4 -2
  45. pygpt_net/core/types/mode.py +2 -1
  46. pygpt_net/data/config/config.json +7 -5
  47. pygpt_net/data/config/models.json +190 -5
  48. pygpt_net/data/config/modes.json +11 -5
  49. pygpt_net/data/config/presets/current.audio.json +34 -0
  50. pygpt_net/data/config/settings.json +15 -1
  51. pygpt_net/data/css/web.css +70 -0
  52. pygpt_net/data/css/web.dark.css +4 -1
  53. pygpt_net/data/css/web.light.css +1 -1
  54. pygpt_net/data/locale/locale.de.ini +27 -14
  55. pygpt_net/data/locale/locale.en.ini +63 -47
  56. pygpt_net/data/locale/locale.es.ini +27 -14
  57. pygpt_net/data/locale/locale.fr.ini +29 -16
  58. pygpt_net/data/locale/locale.it.ini +27 -14
  59. pygpt_net/data/locale/locale.pl.ini +31 -18
  60. pygpt_net/data/locale/locale.uk.ini +27 -14
  61. pygpt_net/data/locale/locale.zh.ini +34 -21
  62. pygpt_net/data/locale/plugin.cmd_files.de.ini +4 -4
  63. pygpt_net/data/locale/plugin.cmd_files.en.ini +4 -4
  64. pygpt_net/data/locale/plugin.cmd_files.es.ini +4 -4
  65. pygpt_net/data/locale/plugin.cmd_files.fr.ini +4 -4
  66. pygpt_net/data/locale/plugin.cmd_files.it.ini +4 -4
  67. pygpt_net/data/locale/plugin.cmd_files.pl.ini +4 -4
  68. pygpt_net/data/locale/plugin.cmd_files.uk.ini +4 -4
  69. pygpt_net/data/locale/plugin.cmd_files.zh.ini +4 -4
  70. pygpt_net/data/locale/plugin.cmd_web.de.ini +5 -5
  71. pygpt_net/data/locale/plugin.cmd_web.en.ini +5 -5
  72. pygpt_net/data/locale/plugin.cmd_web.es.ini +5 -5
  73. pygpt_net/data/locale/plugin.cmd_web.fr.ini +5 -5
  74. pygpt_net/data/locale/plugin.cmd_web.it.ini +5 -5
  75. pygpt_net/data/locale/plugin.cmd_web.pl.ini +5 -5
  76. pygpt_net/data/locale/plugin.cmd_web.uk.ini +5 -5
  77. pygpt_net/data/locale/plugin.cmd_web.zh.ini +5 -5
  78. pygpt_net/data/locale/plugin.idx_llama_index.de.ini +12 -12
  79. pygpt_net/data/locale/plugin.idx_llama_index.en.ini +12 -12
  80. pygpt_net/data/locale/plugin.idx_llama_index.es.ini +12 -12
  81. pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +12 -12
  82. pygpt_net/data/locale/plugin.idx_llama_index.it.ini +12 -12
  83. pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +12 -12
  84. pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +12 -12
  85. pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +12 -12
  86. pygpt_net/data/win32/USER-LICENSE.rtf +0 -0
  87. pygpt_net/data/win32/banner.bmp +0 -0
  88. pygpt_net/data/win32/banner_welcome.bmp +0 -0
  89. pygpt_net/item/attachment.py +9 -1
  90. pygpt_net/item/ctx.py +9 -1
  91. pygpt_net/item/preset.py +5 -1
  92. pygpt_net/launcher.py +3 -1
  93. pygpt_net/migrations/Version20241126170000.py +28 -0
  94. pygpt_net/migrations/__init__.py +3 -1
  95. pygpt_net/plugin/audio_input/__init__.py +11 -1
  96. pygpt_net/plugin/audio_input/worker.py +9 -1
  97. pygpt_net/plugin/audio_output/__init__.py +37 -7
  98. pygpt_net/plugin/audio_output/worker.py +38 -41
  99. pygpt_net/plugin/cmd_code_interpreter/runner.py +2 -2
  100. pygpt_net/plugin/cmd_mouse_control/__init__.py +4 -2
  101. pygpt_net/plugin/openai_dalle/__init__.py +3 -1
  102. pygpt_net/plugin/openai_vision/__init__.py +3 -1
  103. pygpt_net/provider/core/attachment/json_file.py +4 -1
  104. pygpt_net/provider/core/config/patch.py +22 -0
  105. pygpt_net/provider/core/ctx/db_sqlite/storage.py +14 -4
  106. pygpt_net/provider/core/ctx/db_sqlite/utils.py +19 -2
  107. pygpt_net/provider/core/model/patch.py +7 -1
  108. pygpt_net/provider/core/preset/json_file.py +5 -1
  109. pygpt_net/provider/gpt/__init__.py +14 -2
  110. pygpt_net/provider/gpt/audio.py +63 -0
  111. pygpt_net/provider/gpt/chat.py +76 -44
  112. pygpt_net/provider/gpt/utils.py +27 -0
  113. pygpt_net/provider/gpt/vision.py +37 -15
  114. pygpt_net/provider/loaders/base.py +10 -1
  115. pygpt_net/provider/loaders/web_yt.py +19 -1
  116. pygpt_net/tools/image_viewer/ui/dialogs.py +3 -1
  117. pygpt_net/ui/dialog/about.py +1 -1
  118. pygpt_net/ui/dialog/preset.py +3 -1
  119. pygpt_net/ui/dialog/url.py +29 -0
  120. pygpt_net/ui/dialogs.py +5 -1
  121. pygpt_net/ui/layout/chat/attachments.py +42 -6
  122. pygpt_net/ui/layout/chat/attachments_ctx.py +14 -4
  123. pygpt_net/ui/layout/chat/attachments_uploaded.py +8 -4
  124. pygpt_net/ui/widget/anims/toggles.py +2 -2
  125. pygpt_net/ui/widget/dialog/url.py +59 -0
  126. pygpt_net/ui/widget/lists/attachment.py +22 -17
  127. pygpt_net/ui/widget/lists/attachment_ctx.py +65 -3
  128. pygpt_net/ui/widget/option/checkbox.py +1 -3
  129. pygpt_net/ui/widget/option/toggle.py +1 -0
  130. pygpt_net/ui/widget/textarea/url.py +43 -0
  131. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.35.dist-info}/METADATA +2107 -1894
  132. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.35.dist-info}/RECORD +135 -124
  133. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.35.dist-info}/LICENSE +0 -0
  134. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.35.dist-info}/WHEEL +0 -0
  135. {pygpt_net-2.4.30.dist-info → pygpt_net-2.4.35.dist-info}/entry_points.txt +0 -0
@@ -8,7 +8,7 @@ about.thanks.sponsors = Спонсори
8
8
  about.thanks.supporters = Підтримувачі
9
9
  action.add = Додати
10
10
  action.clear = Очистити
11
- action.cmd.expand = показати/приховати вихід
11
+ action.cmd.expand = результат JSON
12
12
  action.copy = Копіювати
13
13
  action.ctx_copy_id = Копіювати ID
14
14
  action.ctx.indexed = Останнє індексування в
@@ -23,12 +23,15 @@ action.group.delete.all = Видалити все (разом з елемент
23
23
  action.group.delete.only = Видалити (тільки групу)
24
24
  action.group.new = Нова група
25
25
  action.group.remove = Видалити з групи
26
- action.idx = Індексувати за допомогою Llama-index...
26
+ action.idx = Індексувати за допомогою LlamaIndex...
27
27
  action.idx.remove = Видалити з
28
28
  action.mkdir = Створити каталог...
29
29
  action.move_to = Перемістити до
30
30
  action.open = Відкрити
31
31
  action.open_dir = Відкрити в директорії...
32
+ action.open_dir_dest = Відкрити пункт призначення
33
+ action.open_dir_src = Відкрити вихідний каталог
34
+ action.open_dir_storage = Відкрити каталог зберігання
32
35
  action.paste = Вставити
33
36
  action.pin = Прикріпити зверху
34
37
  action.profile.delete = Видалити профіль (лише зі списку)
@@ -93,21 +96,26 @@ assistant.tool.file_search = Чат з файлами
93
96
  assistant.tool.function = Інструмент: функція
94
97
  assistant.tool.retrieval = Інструмент: пошук
95
98
  assistant.vector_store = Векторне сховище
99
+ attachments.auto_index = Автоматичне індексування при завантаженні
96
100
  attachments.btn.add = Додати файл
101
+ attachments.btn.add_url = URL
97
102
  attachments.btn.clear = Очистити файли
98
103
  attachments.capture_clear = Очистити під час захоплення
99
104
  attachments.clear.confirm = Очистити список?
105
+ attachments.ctx.indexed = Так
100
106
  attachments.ctx.label = Додатковий контекст
101
107
  attachments.ctx.mode.full = Повний контекст
102
108
  attachments.ctx.mode.off = Вимкнено
103
109
  attachments.ctx.mode.query = Лише запит
104
110
  attachments.ctx.mode.summary = Резюме
105
111
  attachments.delete.confirm = Видалити файл зі списку?
112
+ attachments.header.idx = Індекс
106
113
  attachments.header.length = Довжина (символи / токени)
107
114
  attachments.header.name = Ім'я
108
115
  attachments.header.path = Шлях
109
116
  attachments.header.size = Розмір
110
117
  attachments.header.store = Векторне(і) сховище(а)
118
+ attachments.options.label = Опції
111
119
  attachments.send_clear = Очистити список після відправлення
112
120
  attachments.tab = Вкладення
113
121
  attachments_uploaded.btn.clear = Очистити файли
@@ -334,6 +342,10 @@ dialog.start.link = https://platform.openai.com/account/api-keys
334
342
  dialog.start.settings.text = Якщо у вас вже є API КЛЮЧ, то ви можете налаштувати його у вікні налаштувань.\nНатисніть на кнопку ПЕРЕЙТИ ДО НАЛАШТУВАНЬ, а потім вставте свій API КЛЮЧ у поле API КЛЮЧ.
335
343
  dialog.start.title = API КЛЮЧ ще не налаштований
336
344
  dialog.start.title.text = Ваш API ключ ще не налаштований...\nВи отримаєте API ключ, зареєструвавшись на сайті OpenAI:
345
+ dialog.url.dismiss = Скасувати
346
+ dialog.url.tip = Вкажіть URL веб-сторінки, яку ви хочете прикріпити як додатковий контекст, наприклад, https://uk.wikipedia.org/wiki/Ілон_Маск, або відео на YouTube для транскрипції, наприклад, https://www.youtube.com/watch?v=CRRlbK5w8AE.
347
+ dialog.url.title = URL
348
+ dialog.url.update = Додати
337
349
  dialog.workdir.change.confirm = Ви впевнені, що хочете змінити/перемістити робочий каталог до:\n{path}?
338
350
  dialog.workdir.change.empty.alert = Каталог не порожній! Операцію скасовано.
339
351
  dialog.workdir.reset.btn = Поточний
@@ -467,7 +479,7 @@ filter.ctx.counters.all = Усі лічильники
467
479
  filter.ctx.label = Фільтр відображення списку контекстів
468
480
  filter.ctx.label.colors = Показувати за мітками
469
481
  filter.ctx.radio.all = Всі
470
- filter.ctx.radio.indexed = Індексовано (llama-index)
482
+ filter.ctx.radio.indexed = Індексовано (LlamaIndex)
471
483
  filter.ctx.radio.labeled = Позначені
472
484
  filter.ctx.radio.pinned = Прикріплені
473
485
  header.assistant.tool.function.desc = Опис
@@ -614,11 +626,12 @@ menu.video = Відео
614
626
  menu.video.capture = Вхід: камера
615
627
  menu.video.capture.auto = Автоматичне захоплення зображення
616
628
  mode.agent = Агент (legacy)
617
- mode.agent_llama = Агент (Llama-index)
618
- mode.agent_llama.tooltip = Розширені агенти (Llama-index)
629
+ mode.agent_llama = Агент (LlamaIndex)
630
+ mode.agent_llama.tooltip = Розширені агенти (LlamaIndex)
619
631
  mode.agent.tooltip = Прості агенти (legacy)
620
632
  mode.assistant = Помічник
621
633
  mode.assistant.tooltip = Чат за допомогою API Асистентів
634
+ mode.audio = Чат з аудіо
622
635
  mode.chat = Чат
623
636
  mode.chat.tooltip = Режим чату (за замовчуванням)
624
637
  mode.completion = Завершення
@@ -630,7 +643,7 @@ mode.img.tooltip = Генерація зображень за допомогою
630
643
  mode.langchain = Langchain
631
644
  mode.langchain.tooltip = Чат з моделями, наданими Langchain
632
645
  mode.llama_index = Чат з файлами
633
- mode.llama_index.tooltip = Чат з додатковим контекстом, наданим Llama-index
646
+ mode.llama_index.tooltip = Чат з додатковим контекстом, наданим LlamaIndex
634
647
  mode.vision = Оптика
635
648
  mode.vision.tooltip = Аналіз зображень за допомогою GPT-4 Vision
636
649
  msg.agent.plan = План
@@ -671,7 +684,7 @@ preset.action.duplicate = Дублювати
671
684
  preset.action.edit = Редагувати
672
685
  preset.action.enable = Увімкнути
673
686
  preset.agent = Агент (legacy)
674
- preset.agent_llama = Агент (Llama-index)
687
+ preset.agent_llama = Агент (LlamaIndex)
675
688
  preset.agent_provider = Постачальник агентів
676
689
  preset.agent_provider.desc = Виберіть тип агента для поточного пресету
677
690
  preset.ai_name = Ім'я AI
@@ -821,7 +834,7 @@ settings.prompt.agent.goal = Агент: оновлення цілі
821
834
  settings.prompt.agent.goal.desc = Підказка, яка інструктує, як оновити поточний статус цілі
822
835
  settings.prompt.agent.instruction = Агент: системна інструкція
823
836
  settings.prompt.agent.instruction.desc = Запит для інструкції, як обробляти автономний режим
824
- settings.prompt.agent.llama.eval = Агент: запит оцінювання в циклі [Llama-index]
837
+ settings.prompt.agent.llama.eval = Агент: запит оцінювання в циклі [LlamaIndex]
825
838
  settings.prompt.agent.llama.eval.desc = Запит, що використовується для відповіді на оцінювання, коли опція Цикл / оцінити увімкнена
826
839
  settings.prompt.cmd = Виконання команди: інструкція
827
840
  settings.prompt.cmd.desc = Заповнювачі: {schema}, {extra}
@@ -845,7 +858,7 @@ settings.section.files = Файли та вкладення
845
858
  settings.section.general = Загальні
846
859
  settings.section.images = Зображення
847
860
  settings.section.layout = Макет
848
- settings.section.llama_index = Індекси (llama-index)
861
+ settings.section.llama_index = Індекси (LlamaIndex)
849
862
  settings.section.model = Моделі
850
863
  settings.section.updates = Оновлення
851
864
  settings.section.vision = Візія
@@ -902,15 +915,15 @@ text.context_menu.copy_to.notepad = Блокнот
902
915
  text.context_menu.find = Знайти...
903
916
  theme.dark = Темна
904
917
  theme.light = Світла
905
- tip.input.attachments = Тут ви можете додати вкладення до повідомлення, яке ви відправляєте, якщо режим це підтримує. Тут ви можете відправляти файли для аналізу у режимі Асистента або зображення та захоплені зображення з камери для аналізу у режимі Vision.
918
+ tip.input.attachments = Тут ви можете додати вкладення до повідомлення, яке ви надсилаєте. Ви можете надіслати текстові файли, файли з кодом, PDF, документи, електронні таблиці та інші - вони будуть використані як додатковий контекст у розмові. Ви також можете надіслати зображення або знімки, зроблені за допомогою камери, для аналізу.
906
919
  tip.input.attachments.ctx = Нижче наведено завантажені та проіндексовані вкладення, які ви можете використовувати як додатковий контекст. Додатковий контекст доступний для всієї вищезгаданої дискусії. Варіанти: Повний контекст - включає весь додатковий вміст (сирий) у системному запиті, Лише запит - запитує лише проіндексований вміст, Резюме - включає резюме доданого вмісту в запиті, Вимкнено - вимкнути додатковий контекст.
907
920
  tip.input.attachments.uploaded = Тут є список файлів, завантажених на сервер у режимі Асистента. Ці файли розташовані на віддаленому сервері, а не на вашому локальному комп'ютері, тому модель може використовувати їх та аналізувати за допомогою інструментів, доступних ззовні на віддаленому сервері.
908
921
  tip.output.tab.calendar = Використовуючи календар, ви можете повертатись до обраних розмов з певного дня. Натисніть на день у календарі, щоб обмежити відображення історії чату до цього дня. Ви також можете створювати денні нотатки та присвоювати їм кольорові мітки.
909
922
  tip.output.tab.draw = Ви можете використовувати інструмент малювання для швидкого скетчингу або захоплення зображення з камери, а потім надсилати такі зображення ШІ у режимі Vision для аналізу. Ви можете захопити зображення за допомогою камери тут або відкрити зображення з диску. При використанні зображення, воно буде включене в наді слане повідомлення як вкладення.
910
- tip.output.tab.files = Ця директорія робочих файлів знаходиться на вашому диску. Файли тут доступні для ШІ для читання. ШІ може читати і записувати файли, а також виконувати код з цієї директорії. Ви можете відкрити цю директорію локально на вашій системі та розмістити будь-які файли тут. Ви також можете індексувати файли за допомогою Llama-index, щоб вони служили додатковим джерелом знань.
923
+ tip.output.tab.files = Ця директорія робочих файлів знаходиться на вашому диску. Файли тут доступні для ШІ для читання. ШІ може читати і записувати файли, а також виконувати код з цієї директорії. Ви можете відкрити цю директорію локально на вашій системі та розмістити будь-які файли тут. Ви також можете індексувати файли за допомогою LlamaIndex, щоб вони служили додатковим джерелом знань.
911
924
  tip.output.tab.notepad = Блокнот може слугувати інструментом для роблення нотаток та зберігання інформації. Ви можете зберігати тут будь-який текст, копіювати текст з вікна чату, і всі інформація буде автоматично збережена. Ви можете створити більше блокнотів за допомогою опції конфігурації в налаштуваннях.
912
925
  tip.tokens.ctx = Контекст (пам'ять): використано / всього - токени
913
- tip.tokens.input = Токени: введений запит + системний запит + контекст + додатково = сума / максимум
926
+ tip.tokens.input = Токени: запит користувача + системний запит + контекст + додаткові + вкладення = сума / макс
914
927
  tip.toolbox.assistants = Список асистентів показує асистентів, створених і що працюють на віддаленому сервері. Будь-які зміни будуть синхронізовані з віддаленим асистентом.
915
928
  tip.toolbox.ctx = Створіть стільки контекстів розмов, як вам потрібно; ви можете повернутися до них у будь-який час.
916
929
  tip.toolbox.indexes = Індексуючи розмови та файли, ви можете розширити доступні знання зі своїми власними даними та історією розмов.
@@ -951,7 +964,7 @@ tool.indexer.menu.file.remove_idx = Видалити індекс
951
964
  tool.indexer.option.clear = Очистити список файлів після індексації
952
965
  tool.indexer.option.recursive = Рекурсивно (включити підкаталоги)
953
966
  tool.indexer.option.replace = Видалити стару версію документа з індексу (якщо вона існує)
954
- tool.indexer.status = Вихідний лог (Llama-index):
967
+ tool.indexer.status = Вихідний лог (LlamaIndex):
955
968
  tool.indexer.tab.browser = Переглянути idx
956
969
  tool.indexer.tab.browse.tip = Переглядати або видалити поточно проіндексовані елементи (тут відображається відображення бази даних на індекс).
957
970
  tool.indexer.tab.ctx = Контекст
@@ -968,7 +981,7 @@ tool.indexer.tab.files.path.dir = Вибрати каталог:
968
981
  tool.indexer.tab.files.path.files = Вибрати файли:
969
982
  tool.indexer.tab.files.tip = Виберіть файл(и) або каталог для вбудовування файлів у вибраний індекс. Завантажувач даних буде обрано автоматично на основі розширення файлу.
970
983
  tool.indexer.tab.web = Веб
971
- tool.indexer.tab.web.cfg = Конфігурація (глобальні налаштування) - Налаштування -> Llama-index -> Завантажувачі даних
984
+ tool.indexer.tab.web.cfg = Конфігурація (глобальні налаштування) - Налаштування -> LlamaIndex -> Завантажувачі даних
972
985
  tool.indexer.tab.web.help = Допомога
973
986
  tool.indexer.tab.web.loader = Завантажувач даних
974
987
  tool.indexer.tab.web.source = Джерело даних
@@ -8,7 +8,7 @@ about.thanks.sponsors = 贊助商
8
8
  about.thanks.supporters = 支持者
9
9
  action.add = 添加
10
10
  action.clear = 清除
11
- action.cmd.expand = 显示/隐藏输出
11
+ action.cmd.expand = JSON输出
12
12
  action.copy = 复制
13
13
  action.ctx_copy_id = 複製ID
14
14
  action.ctx.indexed = 最後索引於
@@ -23,12 +23,15 @@ action.group.delete.all = 删除所有(包括项目)
23
23
  action.group.delete.only = 删除(仅限组)
24
24
  action.group.new = 新建组
25
25
  action.group.remove = 从组中移除
26
- action.idx = 使用Llama-index索引...
26
+ action.idx = 使用LlamaIndex索引...
27
27
  action.idx.remove = 從中移除
28
28
  action.mkdir = 創建目錄...
29
29
  action.move_to = 移动到
30
30
  action.open = 打開
31
31
  action.open_dir = 在目錄中打開...
32
+ action.open_dir_dest = 打开目标目录
33
+ action.open_dir_src = 打开源目录
34
+ action.open_dir_storage = 打开存储目录
32
35
  action.paste = 粘贴
33
36
  action.pin = 置頂
34
37
  action.profile.delete = 删除个人资料(仅从列表中删除)
@@ -95,21 +98,26 @@ assistant.tool.file_search = 文件聊天
95
98
  assistant.tool.function = 工具:函數
96
99
  assistant.tool.retrieval = 工具:檢索
97
100
  assistant.vector_store = 向量存储库
101
+ attachments.auto_index = 上传时自动索引
98
102
  attachments.btn.add = 添加文件
103
+ attachments.btn.add_url = URL
99
104
  attachments.btn.clear = 清除文件
100
105
  attachments.capture_clear = 捕獲後清除
101
106
  attachments.clear.confirm = 清除列表?
107
+ attachments.ctx.indexed = 是
102
108
  attachments.ctx.label = 附加上下文
103
109
  attachments.ctx.mode.full = 完整上下文
104
110
  attachments.ctx.mode.off = 关闭(禁用
105
111
  attachments.ctx.mode.query = 仅查询
106
112
  attachments.ctx.mode.summary = 摘要
107
113
  attachments.delete.confirm = 從列表中移除文件?
114
+ attachments.header.idx = 索引
108
115
  attachments.header.length = 长度(字符/标记
109
116
  attachments.header.name = 名稱
110
117
  attachments.header.path = 路徑
111
118
  attachments.header.size = 尺寸
112
119
  attachments.header.store = 向量存储库
120
+ attachments.options.label = 选项
113
121
  attachments.send_clear = 發送後清除列表
114
122
  attachments.tab = 附件
115
123
  attachments_uploaded.btn.clear = 清除文件
@@ -344,6 +352,10 @@ dialog.start.link = https://platform.openai.com/account/api-keys
344
352
  dialog.start.settings.text = 如果您已經有API KEY,則可以在設置窗口中配置它。\n點擊按鈕轉到設置,然後將您的API KEY粘貼到API KEY字段中。
345
353
  dialog.start.title = API KEY尚未配置
346
354
  dialog.start.title.text = 您的API密鑰尚未配置...\n您將通過在OpenAI網站上註冊賬戶獲得API密鑰:
355
+ dialog.url.dismiss = 取消
356
+ dialog.url.tip = 提供您要附加为附加上下文的网页 URL,例如,https://zh.wikipedia.org/wiki/Elon_Musk,或一个要转录的 YouTube 视频,例如,https://www.youtube.com/watch?v=CRRlbK5w8AE。
357
+ dialog.url.title = URL
358
+ dialog.url.update = 添加
347
359
  dialog.workdir.change.confirm = 您确定要更改/移动工作目录到:\n{path}吗?
348
360
  dialog.workdir.change.empty.alert = 目录不为空!操作取消。
349
361
  dialog.workdir.reset.btn = 当前
@@ -690,11 +702,12 @@ menu.video = 視頻
690
702
  menu.video.capture = 輸入:相機
691
703
  menu.video.capture.auto = 自動捕捉
692
704
  mode.agent = 代理(legacy)
693
- mode.agent_llama = 代理(Llama-index
694
- mode.agent_llama.tooltip = 高级代理(Llama-index
705
+ mode.agent_llama = 代理(LlamaIndex
706
+ mode.agent_llama.tooltip = 高级代理(LlamaIndex
695
707
  mode.agent.tooltip = 简单代理(legacy)
696
708
  mode.assistant = 助手
697
709
  mode.assistant.tooltip = 使用助手API進行聊天
710
+ mode.audio = 语音聊天
698
711
  mode.chat = 聊天模式
699
712
  mode.chat.tooltip = 聊天模式(預設)
700
713
  mode.completion = 完成模式
@@ -710,7 +723,7 @@ model.ctx.desc = 模型輸入令牌的最大值
710
723
  model.default = 預設模式
711
724
  model.id = 模型ID
712
725
  mode.llama_index = 文件聊天模式
713
- mode.llama_index.tooltip = 使用Llama-index提供的額外上下文進行聊天
726
+ mode.llama_index.tooltip = 使用LlamaIndex提供的額外上下文進行聊天
714
727
  model.langchain.args = [Langchain] LLM提供者額外args
715
728
  model.langchain.args.desc = 傳遞給Langchain提供者實例的關鍵字參數(配置、API密鑰、模型等)
716
729
  model.langchain.env = [Langchain] ENV變量(對於os.environ())
@@ -719,13 +732,13 @@ model.langchain.mode = [Langchain] 模式
719
732
  model.langchain.mode.desc = 可用子模式:聊天、完成
720
733
  model.langchain.provider = [Langchain] 提供者
721
734
  model.langchain.provider.desc = 在"Langchain"模式中使用的LLM提供者
722
- model.llama_index.args = [Llama-index] LLM提供者額外args
723
- model.llama_index.args.desc = 傳遞給Llama-index提供者實例的關鍵字參數(配置、API密鑰、模型等)
724
- model.llama_index.env = [Llama-index] ENV變量(對於os.environ())
725
- model.llama_index.env.desc = 為Llama-index提供者設置的環境變量(API密鑰等)
726
- model.llama_index.mode = [Llama-index] 模式
735
+ model.llama_index.args = [LlamaIndex] LLM提供者額外args
736
+ model.llama_index.args.desc = 傳遞給LlamaIndex提供者實例的關鍵字參數(配置、API密鑰、模型等)
737
+ model.llama_index.env = [LlamaIndex] ENV變量(對於os.environ())
738
+ model.llama_index.env.desc = 為LlamaIndex提供者設置的環境變量(API密鑰等)
739
+ model.llama_index.mode = [LlamaIndex] 模式
727
740
  model.llama_index.mode.desc = 可用子模式:聊天
728
- model.llama_index.provider = [Llama-index] 提供者
741
+ model.llama_index.provider = [LlamaIndex] 提供者
729
742
  model.llama_index.provider.desc = 在"文件聊天"模式中使用的LLM提供者
730
743
  model.mode = 模式
731
744
  model.mode.desc = 可用模式:聊天、完成、圖像、視覺、助手、langchain、llama_index、代理
@@ -772,7 +785,7 @@ preset.action.duplicate= 複製
772
785
  preset.action.edit= 編輯
773
786
  preset.action.enable = 启用
774
787
  preset.agent = 代理(legacy)
775
- preset.agent_llama = 代理(Llama-index
788
+ preset.agent_llama = 代理(LlamaIndex
776
789
  preset.agent_provider = 代理提供者
777
790
  preset.agent_provider.desc = 为当前预设选择代理类型
778
791
  preset.ai_name = AI名稱
@@ -916,7 +929,7 @@ settings.llama.idx.replace_old = 在重新索引期間替換索引中的舊文
916
929
  settings.llama.idx.replace_old.desc = 如果啟用,當最新版本的文檔被索引時,先前版本的文檔將從索引中刪除
917
930
  settings.llama.idx.storage = 向量存儲
918
931
  settings.llama.idx.storage.args = 向量存儲(kwargs)
919
- settings.llama.idx.storage.args.desc = 向量存儲提供者的額外關鍵字參數(kwargs),例如API密鑰。這些參數將傳遞給提供者;請參閱Llama-index API參考以獲取指定向量存儲所需的參數列表。
932
+ settings.llama.idx.storage.args.desc = 向量存儲提供者的額外關鍵字參數(kwargs),例如API密鑰。這些參數將傳遞給提供者;請參閱LlamaIndex API參考以獲取指定向量存儲所需的參數列表。
920
933
  settings.lock_modes = 鎖定不兼容模式
921
934
  settings.max_output_tokens = 最大輸出令牌
922
935
  settings.max_requests_limit = RPM 限制
@@ -931,7 +944,7 @@ settings.prompt.agent.goal = 代理:目标更新
931
944
  settings.prompt.agent.goal.desc = 指令提示如何更新当前目标状态
932
945
  settings.prompt.agent.instruction = 代理:系统指令
933
946
  settings.prompt.agent.instruction.desc = 提示如何处理自主模式的指令
934
- settings.prompt.agent.llama.eval = 代理:循环中的评估提示 [Llama-index]
947
+ settings.prompt.agent.llama.eval = 代理:循环中的评估提示 [LlamaIndex]
935
948
  settings.prompt.agent.llama.eval.desc = 当启用循环/评估选项时,用于响应评估的提示
936
949
  settings.prompt.cmd = 命令执行:指令
937
950
  settings.prompt.cmd.desc = 占位符:{schema}, {extra}
@@ -956,7 +969,7 @@ settings.section.files = 文件和附件
956
969
  settings.section.general = 一般
957
970
  settings.section.images = 圖像
958
971
  settings.section.layout = 布局
959
- settings.section.llama_index = 索引(llama-index
972
+ settings.section.llama_index = 索引(LlamaIndex
960
973
  settings.section.llama-index.data_loaders = 數據加載器
961
974
  settings.section.llama-index.indexing = 索引
962
975
  settings.section.llama-index.store = 向量存儲
@@ -1018,15 +1031,15 @@ text.context_menu.copy_to.notepad = 記事本
1018
1031
  text.context_menu.find = 查找...
1019
1032
  theme.dark = 暗色
1020
1033
  theme.light = 亮色
1021
- tip.input.attachments = 如果模式支持,您可以在這裡添加附件到您發送的消息中。您可以在這裡發送文件以在助手模式下進行分析,或者在視覺模式下發送圖像和從相機捕獲的圖像。
1034
+ tip.input.attachments = 在这里,您可以向正在发送的消息添加附件。 您可以发送文本文件、代码文件、PDF、文档、电子表格和其他文件 - 它们将用作对话中的附加上下文。 您还可以发送图像或从相机捕获的照片进行分析。
1022
1035
  tip.input.attachments.ctx = 以下是已上传和索引的附件,您可以将其用作附加上下文。附加上下文适用于整个讨论。选项:完整上下文 - 在系统提示中包含所有附加内容(原始),仅查询 - 仅查询索引内容,摘要 - 在提示中包含添加内容的摘要,关闭 - 禁用附加上下文。
1023
1036
  tip.input.attachments.uploaded = 這是已上傳到服務器的文件列表,在助手模式下。這些文件位於遠程服務器上,而不是您的本地計算機上,因此模型可以使用並分析外部遠程服務器上可用的工具。
1024
1037
  tip.output.tab.calendar = 使用日曆,您可以導航回特定日期的選定對話。點擊日曆中的一天以限制聊天歷史顯示到該天。您還可以創建日記並為它們分配彩色標籤。
1025
1038
  tip.output.tab.draw = 您可以使用繪圖工具進行快速素描或從相機捕獲圖像,然後將這些圖像發送到AI在視覺模式下進行分析。您可以在這裡使用相機捕獲圖像或從磁盤打開圖像。使用圖像時,它將作為附件包含在發送的消息中。
1026
- tip.output.tab.files = 此工作文件目錄位於您的磁盤上。這裡的文件可供AI訪問。AI可以寫入和讀取文件,也可以從此目錄運行代碼。您可以在本地系統上打開此目錄並放置任何文件。您還可以使用Llama-index對這裡的文件進行索引,以便它們作為額外的知識來源。
1039
+ tip.output.tab.files = 此工作文件目錄位於您的磁盤上。這裡的文件可供AI訪問。AI可以寫入和讀取文件,也可以從此目錄運行代碼。您可以在本地系統上打開此目錄並放置任何文件。您還可以使用LlamaIndex對這裡的文件進行索引,以便它們作為額外的知識來源。
1027
1040
  tip.output.tab.notepad = 記事本可以作為記錄筆記和存儲信息的工具。您可以在這裡保留任何文本,從聊天窗口複製文本,所有信息都會自動保存。您可以使用設置中的配置選項創建更多記事本。
1028
1041
  tip.tokens.ctx = 上下文(記憶):使用中 / 全部 - 令牌
1029
- tip.tokens.input = 令牌:輸入提示 + 系統提示 + 上下文 + 額外 = 總和 / 最大
1042
+ tip.tokens.input = 代币:用户输入提示 + 系统提示 + 上下文 + 额外 + 附件 = 总和 / 最大值
1030
1043
  tip.toolbox.assistants = 助手列表顯示在遠程服務器上創建和運行的助手。任何更改都將與遠程助手同步。
1031
1044
  tip.toolbox.ctx = 創建所需數量的對話上下文;您隨時可以返回它們。
1032
1045
  tip.toolbox.indexes = 通過索引對話和文件,您可以用自己的數據和對話歷史擴展可用知識。
@@ -1043,7 +1056,7 @@ toolbox.assistants.label = 助手
1043
1056
  toolbox.experts.label = 专家
1044
1057
  toolbox.img_variants.label = 生成圖像變體的數量
1045
1058
  toolbox.indexes.label = 索引
1046
- toolbox.llama_index.label = Llama-index
1059
+ toolbox.llama_index.label = LlamaIndex
1047
1060
  toolbox.mode.label = 模式
1048
1061
  toolbox.model.label = 模型
1049
1062
  toolbox.name.ai = AI名稱
@@ -1068,7 +1081,7 @@ tool.indexer.menu.file.remove_idx = 移除索引
1068
1081
  tool.indexer.option.clear = 索引后清除文件列表
1069
1082
  tool.indexer.option.recursive = 递归(包括子目录)
1070
1083
  tool.indexer.option.replace = 从索引中移除旧版文档(如果存在)
1071
- tool.indexer.status = 输出日志(Llama-index):
1084
+ tool.indexer.status = 输出日志(LlamaIndex):
1072
1085
  tool.indexer.tab.browser = 浏览 idx
1073
1086
  tool.indexer.tab.browse.tip = 浏览或移除当前索引的元素(这里显示了数据库映射到索引)。
1074
1087
  tool.indexer.tab.ctx = 上下文
@@ -1085,7 +1098,7 @@ tool.indexer.tab.files.path.dir = 选择目录:
1085
1098
  tool.indexer.tab.files.path.files = 选择文件:
1086
1099
  tool.indexer.tab.files.tip = 选择文件或目录以将文件嵌入所选索引。数据加载器将根据文件扩展名自动选择。
1087
1100
  tool.indexer.tab.web = 网络
1088
- tool.indexer.tab.web.cfg = 配置(全局设置)- 设置 -> Llama-index -> 数据加载器
1101
+ tool.indexer.tab.web.cfg = 配置(全局设置)- 设置 -> LlamaIndex -> 数据加载器
1089
1102
  tool.indexer.tab.web.help = 帮助
1090
1103
  tool.indexer.tab.web.loader = 数据加载器
1091
1104
  tool.indexer.tab.web.source = 数据来源
@@ -15,7 +15,7 @@ cmd.download_file.description = Aktiviert die Ausführung des Befehls download_f
15
15
  cmd.download_file.label = Aktivieren: Dateien herunterladen
16
16
  cmd.file_exists.description = Aktiviert die Ausführung des Befehls file_exists - Überprüfen, ob eine Datei oder ein Verzeichnis existiert.
17
17
  cmd.file_exists.label = Aktivieren: Überprüfen, ob Datei oder Verzeichnis existiert
18
- cmd.file_index.description = Aktiviert die Ausführung des Befehls file_index - Indexieren von Dateien zu einem persistenten Index.\nWenn aktiviert, kann das Modell eine Datei oder ein Verzeichnis mit Llama-index indexieren (persistenter Index).
18
+ cmd.file_index.description = Aktiviert die Ausführung des Befehls file_index - Indexieren von Dateien zu einem persistenten Index.\nWenn aktiviert, kann das Modell eine Datei oder ein Verzeichnis mit LlamaIndex indexieren (persistenter Index).
19
19
  cmd.file_index.label = Aktivieren: Dateien zu persistentem Index indexieren
20
20
  cmd.file_info.description = Aktiviert die Ausführung des Befehls file_info - Abrufen von Dateiinformationen.
21
21
  cmd.file_info.label = Aktivieren: Dateiinformationen abrufen
@@ -33,8 +33,8 @@ cmd.mkdir.description = Aktiviert die Ausführung des Befehls mkdir - Erstellen
33
33
  cmd.mkdir.label = Aktivieren: Verzeichniserstellung (mkdir)
34
34
  cmd.move.description = Aktiviert die Ausführung des Befehls move - Verschieben von Dateien und Verzeichnissen (umbenennen).
35
35
  cmd.move.label = Aktivieren: Dateien und Verzeichnisse verschieben (umbenennen)
36
- cmd.query_file.description = Aktiviert die Ausführung des Befehls query_file (Index im Speicher) - schnell die Datei mit Llama-index abfragen.\nWenn aktiviert, kann das Modell schnell eine Datei ins Gedächtnis indexieren und sie auf Daten abfragen (Index im Speicher).
37
- cmd.query_file.label = Aktivieren: Schnelles Abfragen der Datei mit Llama-index
36
+ cmd.query_file.description = Aktiviert die Ausführung des Befehls query_file (Index im Speicher) - schnell die Datei mit LlamaIndex abfragen.\nWenn aktiviert, kann das Modell schnell eine Datei ins Gedächtnis indexieren und sie auf Daten abfragen (Index im Speicher).
37
+ cmd.query_file.label = Aktivieren: Schnelles Abfragen der Datei mit LlamaIndex
38
38
  cmd.read_file.description = Aktiviert die Ausführung des Befehls read_file - Lesen von Dateien.
39
39
  cmd.read_file.label = Aktivieren: Datei lesen
40
40
  cmd.rmdir.description = Aktiviert die Ausführung des Befehls rmdir - Entfernen von Verzeichnissen.
@@ -52,5 +52,5 @@ only_index.description = Wenn aktiviert, wird die Datei indexiert, ohne ihren In
52
52
  only_index.label = Nur Indexieren beim Lesen von Dateien
53
53
  plugin.description = Bietet Befehle zum Lesen und Schreiben von Dateien
54
54
  plugin.name = Datei-Ein/Ausgabe
55
- use_loaders.description = Verwenden von Datenladern aus Llama-index für das Lesen von Dateien (Befehl read_file).
55
+ use_loaders.description = Verwenden von Datenladern aus LlamaIndex für das Lesen von Dateien (Befehl read_file).
56
56
  use_loaders.label = Datenlader verwenden
@@ -15,7 +15,7 @@ cmd.download_file.description = Enable `download_file` command execution - downl
15
15
  cmd.download_file.label = Enable: downloading files
16
16
  cmd.file_exists.description = Enable `file_exists` command execution - checking if a file or directory exists.
17
17
  cmd.file_exists.label = Enable: check if a file or directory exists
18
- cmd.file_index.description = Enable `file_index` command execution - indexing files to a persistent index.\nIf enabled, the model will be able to index a file or directory using Llama-index (persistent index).
18
+ cmd.file_index.description = Enable `file_index` command execution - indexing files to a persistent index.\nIf enabled, the model will be able to index a file or directory using LlamaIndex (persistent index).
19
19
  cmd.file_index.label = Enable: indexing files to persistent index
20
20
  cmd.file_info.description = Enable `file_info` command execution - getting file information.
21
21
  cmd.file_info.label = Enable: get file information
@@ -33,8 +33,8 @@ cmd.mkdir.description = Enable `mkdir` command execution - directory creation (m
33
33
  cmd.mkdir.label = Enable: directory creation (mkdir)
34
34
  cmd.move.description = Enable `move` command execution - moving files and directories (rename).
35
35
  cmd.move.label = Enable: move files and directories (rename)
36
- cmd.query_file.description = Enable `query_file` command execution (in-memory index) - quickly query the file with Llama-index.\nIf enabled, the model will be able to quickly index a file into memory and query it for data (in-memory index).
37
- cmd.query_file.label = Enable: quick query the file with Llama-index
36
+ cmd.query_file.description = Enable `query_file` command execution (in-memory index) - quickly query the file with LlamaIndex.\nIf enabled, the model will be able to quickly index a file into memory and query it for data (in-memory index).
37
+ cmd.query_file.label = Enable: quick query the file with LlamaIndex
38
38
  cmd.read_file.description = Enable `read_file` command execution - reading files.
39
39
  cmd.read_file.label = Enable: read file
40
40
  cmd.rmdir.description = Enable `rmdir` command execution - removing directories.
@@ -52,5 +52,5 @@ only_index.description = If enabled, the file will be indexed without returning
52
52
  only_index.label = Only index reading files
53
53
  plugin.description = Provides commands to read and write files
54
54
  plugin.name = Files I/O
55
- use_loaders.description = Use data loaders from Llama-index for file reading (read_file command).
55
+ use_loaders.description = Use data loaders from LlamaIndex for file reading (read_file command).
56
56
  use_loaders.label = Use data loaders
@@ -15,7 +15,7 @@ cmd.download_file.description = Habilita la ejecución del comando download_file
15
15
  cmd.download_file.label = Habilitar: descarga de archivos
16
16
  cmd.file_exists.description = Habilita la ejecución del comando file_exists - comprobando si un archivo o directorio existe.
17
17
  cmd.file_exists.label = Habilitar: comprobar si un archivo o directorio existe
18
- cmd.file_index.description = Habilita la ejecución del comando file_index - indexando archivos a un índice persistente.\nSi está habilitado, el modelo podrá indexar un archivo o directorio usando Llama-index (índice persistente).
18
+ cmd.file_index.description = Habilita la ejecución del comando file_index - indexando archivos a un índice persistente.\nSi está habilitado, el modelo podrá indexar un archivo o directorio usando LlamaIndex (índice persistente).
19
19
  cmd.file_index.label = Habilitar: indexación de archivos a índice persistente
20
20
  cmd.file_info.description = Habilita la ejecución del comando file_info - obtener información de archivo.
21
21
  cmd.file_info.label = Habilitar: obtener información de archivo
@@ -33,8 +33,8 @@ cmd.mkdir.description = Habilita la ejecución del comando mkdir - creación de
33
33
  cmd.mkdir.label = Habilitar: creación de directorio (mkdir)
34
34
  cmd.move.description = Habilita la ejecución del comando move - moviendo archivos y directorios (renombrar).
35
35
  cmd.move.label = Habilitar: mover archivos y directorios (renombrar)
36
- cmd.query_file.description = Habilita la ejecución del comando query_file (índice en memoria) - consulta rápida del archivo con Llama-index.\nSi está habilitado, el modelo podrá indexar un archivo rápidamente en memoria y consultarlo por datos (índice en memoria).
37
- cmd.query_file.label = Habilitar: consulta rápida del archivo con Llama-index
36
+ cmd.query_file.description = Habilita la ejecución del comando query_file (índice en memoria) - consulta rápida del archivo con LlamaIndex.\nSi está habilitado, el modelo podrá indexar un archivo rápidamente en memoria y consultarlo por datos (índice en memoria).
37
+ cmd.query_file.label = Habilitar: consulta rápida del archivo con LlamaIndex
38
38
  cmd.read_file.description = Habilita la ejecución del comando read_file - lectura de archivos.
39
39
  cmd.read_file.label = Habilitar: leer archivo
40
40
  cmd.rmdir.description = Habilita la ejecución del comando rmdir - eliminación de directorios.
@@ -52,5 +52,5 @@ only_index.description = Si está habilitado, el archivo será indexado sin devo
52
52
  only_index.label = Solo indexar al leer archivos
53
53
  plugin.description = Proporciona comandos para leer y escribir archivos
54
54
  plugin.name = E/S de archivos
55
- use_loaders.description = Usar cargadores de datos de Llama-index para la lectura de archivos (comando read_file).
55
+ use_loaders.description = Usar cargadores de datos de LlamaIndex para la lectura de archivos (comando read_file).
56
56
  use_loaders.label = Usar cargadores de datos
@@ -15,7 +15,7 @@ cmd.download_file.description = Permet l'exécution de la commande download_file
15
15
  cmd.download_file.label = Activer: téléchargement des fichiers
16
16
  cmd.file_exists.description = Permet l'exécution de la commande file_exists - vérifier si un fichier ou dossier existe.
17
17
  cmd.file_exists.label = Activer: vérifier si un fichier ou dossier existe
18
- cmd.file_index.description = Permet l'exécution de la commande file_index - indexation des fichiers vers un index persistant.\nSi activé, le modèle pourra indexer un fichier ou un dossier en utilisant Llama-index (index persistant).
18
+ cmd.file_index.description = Permet l'exécution de la commande file_index - indexation des fichiers vers un index persistant.\nSi activé, le modèle pourra indexer un fichier ou un dossier en utilisant LlamaIndex (index persistant).
19
19
  cmd.file_index.label = Activer: indexation des fichiers vers un index persistant
20
20
  cmd.file_info.description = Permet l'exécution de la commande file_info - obtenir des informations sur un fichier.
21
21
  cmd.file_info.label = Activer: obtenir des informations sur un fichier
@@ -33,8 +33,8 @@ cmd.mkdir.description = Permet l'exécution de la commande mkdir - création de
33
33
  cmd.mkdir.label = Activer: création de dossiers (mkdir)
34
34
  cmd.move.description = Permet l'exécution de la commande move - déplacement de fichiers et dossiers (renommer).
35
35
  cmd.move.label = Activer: déplacer fichiers et dossiers (renommer)
36
- cmd.query_file.description = Permet l'exécution de la commande query_file (index en mémoire) - interroger rapidement le fichier avec Llama-index.\nSi activé, le modèle pourra indexer rapidement un fichier en mémoire et l'interroger pour des données (index en mémoire).
37
- cmd.query_file.label = Activer: interrogation rapide du fichier avec Llama-index
36
+ cmd.query_file.description = Permet l'exécution de la commande query_file (index en mémoire) - interroger rapidement le fichier avec LlamaIndex.\nSi activé, le modèle pourra indexer rapidement un fichier en mémoire et l'interroger pour des données (index en mémoire).
37
+ cmd.query_file.label = Activer: interrogation rapide du fichier avec LlamaIndex
38
38
  cmd.read_file.description = Permet l'exécution de la commande read_file - lecture de fichiers.
39
39
  cmd.read_file.label = Activer: lire le fichier
40
40
  cmd.rmdir.description = Permet l'exécution de la commande rmdir - suppression de dossiers.
@@ -52,5 +52,5 @@ only_index.description = Si activé, le fichier sera indexé sans retourner son
52
52
  only_index.label = Indexer uniquement lors de la lecture des fichiers
53
53
  plugin.description = Fournit des commandes pour lire et écrire des fichiers
54
54
  plugin.name = Entrée/Sortie de fichiers
55
- use_loaders.description = Utiliser les chargeurs de données de Llama-index pour la lecture de fichiers (commande read_file).
55
+ use_loaders.description = Utiliser les chargeurs de données de LlamaIndex pour la lecture de fichiers (commande read_file).
56
56
  use_loaders.label = Utiliser les chargeurs de données
@@ -15,7 +15,7 @@ cmd.download_file.description = Abilita l'esecuzione del comando download_file -
15
15
  cmd.download_file.label = Attiva: scarica file
16
16
  cmd.file_exists.description = Abilita l'esecuzione del comando file_exists - verifica dell'esistenza di un file o directory.
17
17
  cmd.file_exists.label = Attiva: controlla se un file o directory esiste
18
- cmd.file_index.description = Abilita l'esecuzione del comando file_index - indicizzazione dei file a un indice persistente.\nSe abilitato, il modello sarà in grado di indicizzare un file o directory usando Llama-index (indice persistente).
18
+ cmd.file_index.description = Abilita l'esecuzione del comando file_index - indicizzazione dei file a un indice persistente.\nSe abilitato, il modello sarà in grado di indicizzare un file o directory usando LlamaIndex (indice persistente).
19
19
  cmd.file_index.label = Attiva: indicizzazione dei file a indice persistente
20
20
  cmd.file_info.description = Abilita l'esecuzione del comando file_info - ottenere informazioni del file.
21
21
  cmd.file_info.label = Attiva: ottieni informazioni del file
@@ -33,8 +33,8 @@ cmd.mkdir.description = Abilita l'esecuzione del comando mkdir - creazione di di
33
33
  cmd.mkdir.label = Attiva: creazione di directory (mkdir)
34
34
  cmd.move.description = Abilita l'esecuzione del comando move - spostamento di file e directory (rinominare).
35
35
  cmd.move.label = Attiva: sposta file e directory (rinominare)
36
- cmd.query_file.description = Abilita l'esecuzione del comando query_file (indice in memoria) - interrogazione veloce del file con Llama-index.\nSe abilitato, il modello sarà in grado di indicizzare velocemente un file in memoria e interrogarlo per dati (indice in memoria).
37
- cmd.query_file.label = Attiva: interrogazione veloce del file con Llama-index
36
+ cmd.query_file.description = Abilita l'esecuzione del comando query_file (indice in memoria) - interrogazione veloce del file con LlamaIndex.\nSe abilitato, il modello sarà in grado di indicizzare velocemente un file in memoria e interrogarlo per dati (indice in memoria).
37
+ cmd.query_file.label = Attiva: interrogazione veloce del file con LlamaIndex
38
38
  cmd.read_file.description = Abilita l'esecuzione del comando read_file - lettura di file.
39
39
  cmd.read_file.label = Attiva: leggi file
40
40
  cmd.rmdir.description = Abilita l'esecuzione del comando rmdir - rimozione di directory.
@@ -52,5 +52,5 @@ only_index.description = Se abilitato, il file verrà indicizzato senza restitui
52
52
  only_index.label = Solo indicizza file letti
53
53
  plugin.description = Fornisce comandi per leggere e scrivere file
54
54
  plugin.name = I/O di file
55
- use_loaders.description = Utilizzare i loader di dati di Llama-index per la lettura di file (comando read_file).
55
+ use_loaders.description = Utilizzare i loader di dati di LlamaIndex per la lettura di file (comando read_file).
56
56
  use_loaders.label = Utilizza loader di dati
@@ -15,7 +15,7 @@ cmd.download_file.description = Włącza wykonanie polecenia download_file - pob
15
15
  cmd.download_file.label = Włącz: pobieranie plików
16
16
  cmd.file_exists.description = Włącza wykonanie polecenia file_exists - sprawdzanie czy plik lub katalog istnieje.
17
17
  cmd.file_exists.label = Włącz: sprawdź czy plik lub katalog istnieje
18
- cmd.file_index.description = Włącza wykonanie polecenia file_index - indeksowanie plików do trwałego indeksu.\nJeśli włączone, model będzie w stanie zindeksować plik lub katalog używając Llama-index (trwały indeks).
18
+ cmd.file_index.description = Włącza wykonanie polecenia file_index - indeksowanie plików do trwałego indeksu.\nJeśli włączone, model będzie w stanie zindeksować plik lub katalog używając LlamaIndex (trwały indeks).
19
19
  cmd.file_index.label = Włącz: indeksowanie plików do trwałego indeksu
20
20
  cmd.file_info.description = Włącza wykonanie polecenia file_info - pobieranie informacji o plikach.
21
21
  cmd.file_info.label = Włącz: pobierz informacje o pliku
@@ -33,8 +33,8 @@ cmd.mkdir.description = Włącza wykonanie polecenia mkdir - tworzenie katalogu
33
33
  cmd.mkdir.label = Włącz: tworzenie katalogu (mkdir)
34
34
  cmd.move.description = Włącza wykonanie polecenia move - przenoszenie plików i katalogów (zmiana nazwy).
35
35
  cmd.move.label = Włącz: przenieś pliki i katalogi (zmiana nazwy)
36
- cmd.query_file.description = Włącza wykonanie polecenia query_file (indeks w pamięci) - szybkie indeksowanie pliku z Llama-index.\nJeśli włączone, model będzie w stanie szybko zindeksować plik w pamięci i przeszukać go w celu znalezienia danych (indeks w pamięci).
37
- cmd.query_file.label = Włącz: szybkie wyszukiwanie pliku z Llama-index
36
+ cmd.query_file.description = Włącza wykonanie polecenia query_file (indeks w pamięci) - szybkie indeksowanie pliku z LlamaIndex.\nJeśli włączone, model będzie w stanie szybko zindeksować plik w pamięci i przeszukać go w celu znalezienia danych (indeks w pamięci).
37
+ cmd.query_file.label = Włącz: szybkie wyszukiwanie pliku z LlamaIndex
38
38
  cmd.read_file.description = Włącza wykonanie polecenia read_file - czytanie plików.
39
39
  cmd.read_file.label = Włącz: czytaj plik
40
40
  cmd.rmdir.description = Włącza wykonanie polecenia rmdir - usuwanie katalogów.
@@ -52,5 +52,5 @@ only_index.description = Jeśli włączone, plik zostanie zindeksowany bez zwrac
52
52
  only_index.label = Tylko indeksuj czytane pliki
53
53
  plugin.description = Udostępnia polecenia do odczytu i zapisu plików
54
54
  plugin.name = We/Wy plików
55
- use_loaders.description = Użyj ładowarek danych z Llama-index do czytania plików (polecenie read_file).
55
+ use_loaders.description = Użyj ładowarek danych z LlamaIndex do czytania plików (polecenie read_file).
56
56
  use_loaders.label = Użyj ładowarek danych
@@ -15,7 +15,7 @@ cmd.download_file.description = Дозволяє виконання команд
15
15
  cmd.download_file.label = Дозволити: завантаження файлів
16
16
  cmd.file_exists.description = Дозволяє виконання команди file_exists - перевірка існування файлу або директорії.
17
17
  cmd.file_exists.label = Дозволити: перевірити існування файлу чи директорії
18
- cmd.file_index.description = Дозволяє виконання команди file_index - індексацію файлів до постійного індексу.\nЯкщо включено, модель зможе індексувати файл або директорію за допомогою Llama-index (постійний індекс).
18
+ cmd.file_index.description = Дозволяє виконання команди file_index - індексацію файлів до постійного індексу.\nЯкщо включено, модель зможе індексувати файл або директорію за допомогою LlamaIndex (постійний індекс).
19
19
  cmd.file_index.label = Дозволити: індексація файлів до постійного індексу
20
20
  cmd.file_info.description = Дозволяє виконання команди file_info - отримання інформації про файл.
21
21
  cmd.file_info.label = Дозволити: отримати інформацію про файл
@@ -33,8 +33,8 @@ cmd.mkdir.description = Дозволяє виконання команди mkdir
33
33
  cmd.mkdir.label = Дозволити: створення директорій (mkdir)
34
34
  cmd.move.description = Дозволяє виконання команди move - переміщення файлів та директорій (перейменування).
35
35
  cmd.move.label = Дозволити: перемістити файли та директорії (перейменування)
36
- cmd.query_file.description = Дозволяє виконання команди query_file (індекс в пам’яті) - швидкий запит файла за допомогою Llama-index.\nЯкщо включено, модель зможе швидко індексувати файл в пам'яті та запитувати дані (індекс в пам'яті).
37
- cmd.query_file.label = Дозволити: швидкий запит файла за допомогою Llama-index
36
+ cmd.query_file.description = Дозволяє виконання команди query_file (індекс в пам’яті) - швидкий запит файла за допомогою LlamaIndex.\nЯкщо включено, модель зможе швидко індексувати файл в пам'яті та запитувати дані (індекс в пам'яті).
37
+ cmd.query_file.label = Дозволити: швидкий запит файла за допомогою LlamaIndex
38
38
  cmd.read_file.description = Дозволяє виконання команди read_file - читання файлів.
39
39
  cmd.read_file.label = Дозволити: читати файл
40
40
  cmd.rmdir.description = Дозволяє виконання команди rmdir - видалення директорій.
@@ -52,5 +52,5 @@ only_index.description = Якщо увімкнено, файл буде проі
52
52
  only_index.label = Тільки індексування читаних файлів
53
53
  plugin.description = Надає команди для читання та запису файлів
54
54
  plugin.name = Введення/Виведення файлів
55
- use_loaders.description = Використання завантажувачів даних з Llama-index для читання файлів (команда read_file).
55
+ use_loaders.description = Використання завантажувачів даних з LlamaIndex для читання файлів (команда read_file).
56
56
  use_loaders.label = Використати завантажувачі даних
@@ -15,7 +15,7 @@ cmd.download_file.description = 启用download_file命令执行 - 下载文件
15
15
  cmd.download_file.label = 启用:下载文件
16
16
  cmd.file_exists.description = 启用file_exists命令执行 - 检查文件或目录是否存在。
17
17
  cmd.file_exists.label = 启用:检查文件或目录是否存在
18
- cmd.file_index.description = 启用file_index命令执行 - 将文件索引到持久索引。\n如果启用,模型将能够使用Llama-index索引文件或目录(持久索引)。
18
+ cmd.file_index.description = 启用file_index命令执行 - 将文件索引到持久索引。\n如果启用,模型将能够使用LlamaIndex索引文件或目录(持久索引)。
19
19
  cmd.file_index.label = 启用:将文件索引到持久索引
20
20
  cmd.file_info.description = 启用file_info命令执行 - 获取文件信息。
21
21
  cmd.file_info.label = 启用:获取文件信息
@@ -33,8 +33,8 @@ cmd.mkdir.description = 启用mkdir命令执行 - 创建目录(mkdir)。
33
33
  cmd.mkdir.label = 启用:创建目录(mkdir)
34
34
  cmd.move.description = 启用move命令执行 - 移动文件和目录(重命名)。
35
35
  cmd.move.label = 启用:移动文件和目录(重命名)
36
- cmd.query_file.description = 启用query_file命令执行(内存索引) - 使用Llama-index快速查询文件。\n如果启用,模型将能够快速将文件索引到内存并查询数据(内存索引)。
37
- cmd.query_file.label = 启用:使用Llama-index快速查询文件
36
+ cmd.query_file.description = 启用query_file命令执行(内存索引) - 使用LlamaIndex快速查询文件。\n如果启用,模型将能够快速将文件索引到内存并查询数据(内存索引)。
37
+ cmd.query_file.label = 启用:使用LlamaIndex快速查询文件
38
38
  cmd.read_file.description = 启用read_file命令执行 - 读取文件。
39
39
  cmd.read_file.label = 启用:读取文件
40
40
  cmd.rmdir.description = 启用rmdir命令执行 - 删除目录。
@@ -52,5 +52,5 @@ only_index.description = 如果启用,读取文件时将只索引文件,不
52
52
  only_index.label = 仅索引读取的文件
53
53
  plugin.description = 提供读写文件的命令
54
54
  plugin.name = 文件输入/输出
55
- use_loaders.description = 使用Llama-index的数据加载器读取文件(read_file命令)。
55
+ use_loaders.description = 使用LlamaIndex的数据加载器读取文件(read_file命令)。
56
56
  use_loaders.label = 使用数据加载器
@@ -1,15 +1,15 @@
1
1
  [LOCALE]
2
- auto_index.description = Wenn aktiviert, wird jede von dem Modell verwendete URL automatisch mit Llama-index (persistentem Index) indiziert.
3
- auto_index.label = Auto-Index aller verwendeten URLs mit Llama-index
2
+ auto_index.description = Wenn aktiviert, wird jede von dem Modell verwendete URL automatisch mit LlamaIndex (persistentem Index) indiziert.
3
+ auto_index.label = Auto-Index aller verwendeten URLs mit LlamaIndex
4
4
  bing_api_key.description = Sie können Ihren eigenen API-Schlüssel unter https://www.microsoft.com/en-us/bing/apis/bing-web-search-api erhalten
5
5
  bing_api_key.label = Microsoft Bing Search API-Schlüssel
6
6
  bing_endpoint.description = API-Endpunkt für die Bing-Such-API, standardmäßig: https://api.bing.microsoft.com/v7.0/search
7
7
  bing_endpoint.label = Bing Search API-Endpunkt
8
8
  chunk_size.description = Seitenspezifische Inhalts-Chunk-Größe (maximale Zeichen pro Chunk).
9
9
  chunk_size.label = Seitenspezifische Inhalts-Chunk-Größe
10
- cmd.web_index.description = Aktivieren der Ausführung des web_index-Befehls.\nWenn aktiviert, kann das Modell Seiten und externen Inhalt mit Llama-index (persistentem Index) indizieren.
10
+ cmd.web_index.description = Aktivieren der Ausführung des web_index-Befehls.\nWenn aktiviert, kann das Modell Seiten und externen Inhalt mit LlamaIndex (persistentem Index) indizieren.
11
11
  cmd.web_index.label = Aktivieren: Indizieren des Webs und externen Inhalts
12
- cmd.web_index_query.description = Aktivieren der Ausführung des web_index_query-Befehls.\nWenn aktiviert, kann das Modell Webinhalte schnell indizieren und abfragen mit Llama-index (im Speicher Index).
12
+ cmd.web_index_query.description = Aktivieren der Ausführung des web_index_query-Befehls.\nWenn aktiviert, kann das Modell Webinhalte schnell indizieren und abfragen mit LlamaIndex (im Speicher Index).
13
13
  cmd.web_index_query.label = Aktivieren: Schnelles Abfragen des Webs und externen Inhalts
14
14
  cmd.web_index_query.tooltip = Beispiel-Prompt: Abfrage der Website http://example.com über (Frage).
15
15
  cmd.web_index.tooltip = Beispiel-Prompt: Indiziere die Website http://example.com.
@@ -42,7 +42,7 @@ model_tmp_query.label = Modell für die Abfrage des temporären Index
42
42
  model_tmp_query.tooltip = Modell, das verwendet wird, um den temporären Index für den web_index_query-Befehl abzufragen (im Speicher Index)
43
43
  num_pages.description = Maximale Anzahl an Seiten, die pro Abfrage durchsucht werden.
44
44
  num_pages.label = Anzahl der zu durchsuchenden Seiten
45
- plugin.description = Ermöglicht die Verbindung mit dem Internet, das Durchsuchen von Webseiten nach aktuellen Daten und das Indizieren von externen Inhalten mit Llama-index Datenladern.
45
+ plugin.description = Ermöglicht die Verbindung mit dem Internet, das Durchsuchen von Webseiten nach aktuellen Daten und das Indizieren von externen Inhalten mit LlamaIndex Datenladern.
46
46
  plugin.name = Websuche
47
47
  prompt_summarize.description = Prompt, der für die Zusammenfassung von Websuchergebnissen verwendet wird, benutzen Sie {query} als Platzhalter für die Suchanfrage.
48
48
  prompt_summarize.label = Zusammenfassungs-Prompt