pygpt-net 2.4.28__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.
- CHANGELOG.md +40 -0
- README.md +62 -5
- pygpt_net/CHANGELOG.txt +40 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/access/__init__.py +5 -5
- pygpt_net/controller/access/control.py +3 -2
- pygpt_net/controller/attachment.py +67 -1
- pygpt_net/controller/audio/__init__.py +34 -6
- pygpt_net/controller/chat/__init__.py +3 -1
- pygpt_net/controller/chat/attachment.py +239 -37
- pygpt_net/controller/chat/audio.py +99 -0
- pygpt_net/controller/chat/input.py +10 -3
- pygpt_net/controller/chat/output.py +4 -1
- pygpt_net/controller/chat/text.py +10 -5
- pygpt_net/controller/dialogs/confirm.py +17 -1
- pygpt_net/controller/kernel/reply.py +5 -8
- pygpt_net/controller/lang/custom.py +3 -1
- pygpt_net/controller/mode.py +2 -1
- pygpt_net/controller/presets/editor.py +11 -2
- pygpt_net/core/access/voice.py +2 -2
- pygpt_net/core/agents/legacy.py +3 -1
- pygpt_net/core/attachments/__init__.py +11 -7
- pygpt_net/core/attachments/context.py +226 -44
- pygpt_net/core/{audio.py → audio/__init__.py} +1 -1
- pygpt_net/core/audio/context.py +34 -0
- pygpt_net/core/bridge/context.py +29 -1
- pygpt_net/core/bridge/worker.py +16 -1
- pygpt_net/core/ctx/__init__.py +4 -1
- pygpt_net/core/db/__init__.py +4 -2
- pygpt_net/core/debug/attachments.py +3 -1
- pygpt_net/core/debug/context.py +5 -1
- pygpt_net/core/debug/presets.py +3 -1
- pygpt_net/core/docker/__init__.py +170 -16
- pygpt_net/core/docker/builder.py +6 -2
- pygpt_net/core/events/event.py +3 -1
- pygpt_net/core/experts/__init__.py +24 -6
- pygpt_net/core/idx/chat.py +55 -4
- pygpt_net/core/idx/indexing.py +123 -15
- pygpt_net/core/modes.py +3 -1
- pygpt_net/core/presets.py +13 -2
- pygpt_net/core/render/markdown/pid.py +2 -1
- pygpt_net/core/render/plain/pid.py +2 -1
- pygpt_net/core/render/web/body.py +34 -12
- pygpt_net/core/render/web/pid.py +2 -1
- pygpt_net/core/render/web/renderer.py +12 -3
- pygpt_net/core/tokens.py +4 -2
- pygpt_net/core/types/mode.py +2 -1
- pygpt_net/data/config/config.json +7 -4
- pygpt_net/data/config/models.json +191 -6
- pygpt_net/data/config/modes.json +11 -5
- pygpt_net/data/config/presets/current.audio.json +34 -0
- pygpt_net/data/config/settings.json +15 -1
- pygpt_net/data/css/web.css +70 -0
- pygpt_net/data/css/web.dark.css +4 -1
- pygpt_net/data/css/web.light.css +1 -1
- pygpt_net/data/locale/locale.de.ini +33 -20
- pygpt_net/data/locale/locale.en.ini +73 -58
- pygpt_net/data/locale/locale.es.ini +33 -20
- pygpt_net/data/locale/locale.fr.ini +35 -22
- pygpt_net/data/locale/locale.it.ini +33 -20
- pygpt_net/data/locale/locale.pl.ini +36 -23
- pygpt_net/data/locale/locale.uk.ini +33 -20
- pygpt_net/data/locale/locale.zh.ini +40 -27
- pygpt_net/data/locale/plugin.cmd_code_interpreter.de.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.en.ini +15 -7
- pygpt_net/data/locale/plugin.cmd_code_interpreter.es.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.fr.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.it.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.pl.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.uk.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.zh.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_files.de.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.en.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.es.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.fr.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.it.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.pl.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.uk.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.zh.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_system.de.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.en.ini +12 -6
- pygpt_net/data/locale/plugin.cmd_system.es.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.fr.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.it.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.pl.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.uk.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.zh.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_web.de.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.en.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.es.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.it.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +5 -5
- pygpt_net/data/locale/plugin.idx_llama_index.de.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.en.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.es.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.it.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +12 -12
- pygpt_net/item/attachment.py +9 -1
- pygpt_net/item/ctx.py +9 -1
- pygpt_net/item/preset.py +5 -1
- pygpt_net/launcher.py +3 -1
- pygpt_net/migrations/Version20241126170000.py +28 -0
- pygpt_net/migrations/__init__.py +3 -1
- pygpt_net/plugin/audio_input/__init__.py +11 -1
- pygpt_net/plugin/audio_input/worker.py +9 -1
- pygpt_net/plugin/audio_output/__init__.py +37 -7
- pygpt_net/plugin/audio_output/worker.py +38 -41
- pygpt_net/plugin/cmd_code_interpreter/__init__.py +51 -35
- pygpt_net/plugin/cmd_code_interpreter/builder.py +16 -4
- pygpt_net/plugin/cmd_code_interpreter/config.py +98 -39
- pygpt_net/plugin/cmd_code_interpreter/docker.py +4 -0
- pygpt_net/plugin/cmd_code_interpreter/ipython/__init__.py +13 -0
- pygpt_net/plugin/cmd_code_interpreter/{ipython.py → ipython/docker_kernel.py} +10 -3
- pygpt_net/plugin/cmd_code_interpreter/ipython/local_kernel.py +220 -0
- pygpt_net/plugin/cmd_code_interpreter/runner.py +5 -5
- pygpt_net/plugin/cmd_mouse_control/__init__.py +4 -2
- pygpt_net/plugin/cmd_system/config.py +50 -0
- pygpt_net/plugin/cmd_system/docker.py +4 -0
- pygpt_net/plugin/idx_llama_index/__init__.py +23 -1
- pygpt_net/plugin/idx_llama_index/worker.py +10 -0
- pygpt_net/plugin/openai_dalle/__init__.py +3 -1
- pygpt_net/plugin/openai_vision/__init__.py +3 -1
- pygpt_net/provider/core/attachment/json_file.py +4 -1
- pygpt_net/provider/core/config/patch.py +25 -0
- pygpt_net/provider/core/ctx/db_sqlite/storage.py +14 -4
- pygpt_net/provider/core/ctx/db_sqlite/utils.py +19 -2
- pygpt_net/provider/core/model/patch.py +7 -1
- pygpt_net/provider/core/preset/json_file.py +5 -1
- pygpt_net/provider/gpt/__init__.py +14 -2
- pygpt_net/provider/gpt/audio.py +63 -0
- pygpt_net/provider/gpt/chat.py +76 -44
- pygpt_net/provider/gpt/utils.py +27 -0
- pygpt_net/provider/gpt/vision.py +37 -15
- pygpt_net/provider/loaders/base.py +10 -1
- pygpt_net/provider/loaders/web_yt.py +19 -1
- pygpt_net/tools/code_interpreter/__init__.py +1 -0
- pygpt_net/tools/image_viewer/ui/dialogs.py +3 -1
- pygpt_net/ui/dialog/preset.py +3 -1
- pygpt_net/ui/dialog/url.py +29 -0
- pygpt_net/ui/dialogs.py +5 -1
- pygpt_net/ui/layout/chat/attachments.py +42 -6
- pygpt_net/ui/layout/chat/attachments_ctx.py +14 -4
- pygpt_net/ui/layout/chat/attachments_uploaded.py +8 -4
- pygpt_net/ui/layout/toolbox/agent.py +8 -7
- pygpt_net/ui/layout/toolbox/agent_llama.py +5 -4
- pygpt_net/ui/layout/toolbox/prompt.py +8 -6
- pygpt_net/ui/menu/tools.py +17 -11
- pygpt_net/ui/widget/anims/toggles.py +167 -0
- pygpt_net/ui/widget/dialog/url.py +59 -0
- pygpt_net/ui/widget/element/group.py +2 -1
- pygpt_net/ui/widget/lists/attachment.py +22 -17
- pygpt_net/ui/widget/lists/attachment_ctx.py +65 -3
- pygpt_net/ui/widget/option/checkbox.py +69 -5
- pygpt_net/ui/widget/option/cmd.py +4 -5
- pygpt_net/ui/widget/option/toggle.py +62 -0
- pygpt_net/ui/widget/option/toggle_label.py +79 -0
- pygpt_net/ui/widget/textarea/url.py +43 -0
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/METADATA +65 -7
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/RECORD +168 -154
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.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 = Індексувати за допомогою
|
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 = Очистити файли
|
@@ -163,7 +171,7 @@ chat.prefix.img = Зображення
|
|
163
171
|
chat.prefix.url = Посилання
|
164
172
|
clipboard.copied = Скопійовано до буфера обміну.
|
165
173
|
clipboard.copied_to = Скопійовано до буфера обміну:
|
166
|
-
cmd.enabled = Інструменти
|
174
|
+
cmd.enabled = + Інструменти
|
167
175
|
cmd.tip = Порада: Щоб увімкнути виконання інструментів із плагінів, ви повинні увімкнути опцію "+ Інструменти".
|
168
176
|
coming_soon = Незабаром...
|
169
177
|
confirm.assistant.delete = Видалити помічника?
|
@@ -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 = Індексовано (
|
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 = Опис
|
@@ -531,7 +543,7 @@ interpreter.edit = Режим редагування
|
|
531
543
|
interpreter.edit_label.edit = Код (історія)
|
532
544
|
interpreter.edit_label.output = Вивід
|
533
545
|
interpreter.input.placeholder = Python код для виконання...
|
534
|
-
ipython.docker.build.finish = Успіх! Образ Docker для IPython створено.
|
546
|
+
ipython.docker.build.finish = Успіх! Образ Docker для IPython створено.
|
535
547
|
ipython.docker.build.start = Створення образу Docker... будь ласка, зачекайте...
|
536
548
|
ipython.docker.install = Для запуску IPython необхідно встановити Docker. Docker не було виявлено на цій системі. Будь ласка, спочатку встановіть Docker; інструкції можна знайти тут: https://docs.docker.com/engine/install/. Виконання поточної команди було призупинено.
|
537
549
|
ipython.image.build = Docker-образ для IPython ще не був створений. Це відбудеться зараз, і це може зайняти деякий час (але це одноразова процедура). Виконання команди було призупинено. Після створення образу, будь ласка, виконайте команду знову.
|
@@ -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 = Агент (
|
618
|
-
mode.agent_llama.tooltip = Розширені агенти (
|
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 = Чат з додатковим контекстом, наданим
|
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 = Агент (
|
687
|
+
preset.agent_llama = Агент (LlamaIndex)
|
675
688
|
preset.agent_provider = Постачальник агентів
|
676
689
|
preset.agent_provider.desc = Виберіть тип агента для поточного пресету
|
677
690
|
preset.ai_name = Ім'я AI
|
@@ -741,6 +754,11 @@ settings.app.env = Оточення додатка (os.environ)
|
|
741
754
|
settings.app.env.desc = Додаткові змінні середовища для встановлення при запуску додатка
|
742
755
|
settings.check_updates = Перевіряти оновлення при запуску
|
743
756
|
settings.check_updates.bg = Перевіряти оновлення у фоновому режимі
|
757
|
+
settings.cmd.field.desc = Увімкнути інструмент `{cmd}`.
|
758
|
+
settings.cmd.field.enable = Інструмент: {cmd}
|
759
|
+
settings.cmd.field.instruction = Інструкція для моделі
|
760
|
+
settings.cmd.field.params = Параметри JSON (аргументи інструменту)
|
761
|
+
settings.cmd.field.tooltip = Увімкнути інструмент `{cmd}`
|
744
762
|
settings.context_threshold = Поріг контексту
|
745
763
|
settings.ctx.audio = Завжди показувати значок аудіо
|
746
764
|
settings.ctx.auto_summary = Автоматичне стиснення контексту
|
@@ -816,7 +834,7 @@ settings.prompt.agent.goal = Агент: оновлення цілі
|
|
816
834
|
settings.prompt.agent.goal.desc = Підказка, яка інструктує, як оновити поточний статус цілі
|
817
835
|
settings.prompt.agent.instruction = Агент: системна інструкція
|
818
836
|
settings.prompt.agent.instruction.desc = Запит для інструкції, як обробляти автономний режим
|
819
|
-
settings.prompt.agent.llama.eval = Агент: запит оцінювання в циклі [
|
837
|
+
settings.prompt.agent.llama.eval = Агент: запит оцінювання в циклі [LlamaIndex]
|
820
838
|
settings.prompt.agent.llama.eval.desc = Запит, що використовується для відповіді на оцінювання, коли опція Цикл / оцінити увімкнена
|
821
839
|
settings.prompt.cmd = Виконання команди: інструкція
|
822
840
|
settings.prompt.cmd.desc = Заповнювачі: {schema}, {extra}
|
@@ -840,7 +858,7 @@ settings.section.files = Файли та вкладення
|
|
840
858
|
settings.section.general = Загальні
|
841
859
|
settings.section.images = Зображення
|
842
860
|
settings.section.layout = Макет
|
843
|
-
settings.section.llama_index = Індекси (
|
861
|
+
settings.section.llama_index = Індекси (LlamaIndex)
|
844
862
|
settings.section.model = Моделі
|
845
863
|
settings.section.updates = Оновлення
|
846
864
|
settings.section.vision = Візія
|
@@ -897,12 +915,12 @@ text.context_menu.copy_to.notepad = Блокнот
|
|
897
915
|
text.context_menu.find = Знайти...
|
898
916
|
theme.dark = Темна
|
899
917
|
theme.light = Світла
|
900
|
-
tip.input.attachments = Тут ви можете додати вкладення до повідомлення, яке ви
|
918
|
+
tip.input.attachments = Тут ви можете додати вкладення до повідомлення, яке ви надсилаєте. Ви можете надіслати текстові файли, файли з кодом, PDF, документи, електронні таблиці та інші - вони будуть використані як додатковий контекст у розмові. Ви також можете надіслати зображення або знімки, зроблені за допомогою камери, для аналізу.
|
901
919
|
tip.input.attachments.ctx = Нижче наведено завантажені та проіндексовані вкладення, які ви можете використовувати як додатковий контекст. Додатковий контекст доступний для всієї вищезгаданої дискусії. Варіанти: Повний контекст - включає весь додатковий вміст (сирий) у системному запиті, Лише запит - запитує лише проіндексований вміст, Резюме - включає резюме доданого вмісту в запиті, Вимкнено - вимкнути додатковий контекст.
|
902
920
|
tip.input.attachments.uploaded = Тут є список файлів, завантажених на сервер у режимі Асистента. Ці файли розташовані на віддаленому сервері, а не на вашому локальному комп'ютері, тому модель може використовувати їх та аналізувати за допомогою інструментів, доступних ззовні на віддаленому сервері.
|
903
921
|
tip.output.tab.calendar = Використовуючи календар, ви можете повертатись до обраних розмов з певного дня. Натисніть на день у календарі, щоб обмежити відображення історії чату до цього дня. Ви також можете створювати денні нотатки та присвоювати їм кольорові мітки.
|
904
922
|
tip.output.tab.draw = Ви можете використовувати інструмент малювання для швидкого скетчингу або захоплення зображення з камери, а потім надсилати такі зображення ШІ у режимі Vision для аналізу. Ви можете захопити зображення за допомогою камери тут або відкрити зображення з диску. При використанні зображення, воно буде включене в наді слане повідомлення як вкладення.
|
905
|
-
tip.output.tab.files = Ця директорія робочих файлів знаходиться на вашому диску. Файли тут доступні для ШІ для читання. ШІ може читати і записувати файли, а також виконувати код з цієї директорії. Ви можете відкрити цю директорію локально на вашій системі та розмістити будь-які файли тут. Ви також можете індексувати файли за допомогою
|
923
|
+
tip.output.tab.files = Ця директорія робочих файлів знаходиться на вашому диску. Файли тут доступні для ШІ для читання. ШІ може читати і записувати файли, а також виконувати код з цієї директорії. Ви можете відкрити цю директорію локально на вашій системі та розмістити будь-які файли тут. Ви також можете індексувати файли за допомогою LlamaIndex, щоб вони служили додатковим джерелом знань.
|
906
924
|
tip.output.tab.notepad = Блокнот може слугувати інструментом для роблення нотаток та зберігання інформації. Ви можете зберігати тут будь-який текст, копіювати текст з вікна чату, і всі інформація буде автоматично збережена. Ви можете створити більше блокнотів за допомогою опції конфігурації в налаштуваннях.
|
907
925
|
tip.tokens.ctx = Контекст (пам'ять): використано / всього - токени
|
908
926
|
tip.tokens.input = Токени: введений запит + системний запит + контекст + додатково = сума / максимум
|
@@ -946,7 +964,7 @@ tool.indexer.menu.file.remove_idx = Видалити індекс
|
|
946
964
|
tool.indexer.option.clear = Очистити список файлів після індексації
|
947
965
|
tool.indexer.option.recursive = Рекурсивно (включити підкаталоги)
|
948
966
|
tool.indexer.option.replace = Видалити стару версію документа з індексу (якщо вона існує)
|
949
|
-
tool.indexer.status = Вихідний лог (
|
967
|
+
tool.indexer.status = Вихідний лог (LlamaIndex):
|
950
968
|
tool.indexer.tab.browser = Переглянути idx
|
951
969
|
tool.indexer.tab.browse.tip = Переглядати або видалити поточно проіндексовані елементи (тут відображається відображення бази даних на індекс).
|
952
970
|
tool.indexer.tab.ctx = Контекст
|
@@ -963,7 +981,7 @@ tool.indexer.tab.files.path.dir = Вибрати каталог:
|
|
963
981
|
tool.indexer.tab.files.path.files = Вибрати файли:
|
964
982
|
tool.indexer.tab.files.tip = Виберіть файл(и) або каталог для вбудовування файлів у вибраний індекс. Завантажувач даних буде обрано автоматично на основі розширення файлу.
|
965
983
|
tool.indexer.tab.web = Веб
|
966
|
-
tool.indexer.tab.web.cfg = Конфігурація (глобальні налаштування) - Налаштування ->
|
984
|
+
tool.indexer.tab.web.cfg = Конфігурація (глобальні налаштування) - Налаштування -> LlamaIndex -> Завантажувачі даних
|
967
985
|
tool.indexer.tab.web.help = Допомога
|
968
986
|
tool.indexer.tab.web.loader = Завантажувач даних
|
969
987
|
tool.indexer.tab.web.source = Джерело даних
|
@@ -993,8 +1011,3 @@ vision.capture.manual.captured.success = Зображення захоплено
|
|
993
1011
|
vision.capture.name.prefix = Захоплення з камери:
|
994
1012
|
vision.capture.options.title = Захоплення відео
|
995
1013
|
vision.checkbox.tooltip = Якщо відмічено, модель візії активна. Вона буде автоматично активована при завантаженні зображення. Ви можете деактивувати її в реальному часі.
|
996
|
-
settings.cmd.field.desc = Увімкнути інструмент `{cmd}`.
|
997
|
-
settings.cmd.field.enable = Інструмент: {cmd}
|
998
|
-
settings.cmd.field.instruction = Інструкція для моделі
|
999
|
-
settings.cmd.field.params = Параметри JSON (аргументи інструменту)
|
1000
|
-
settings.cmd.field.tooltip = Увімкнути інструмент `{cmd}`
|
@@ -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 = 使用
|
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 = 清除文件
|
@@ -164,7 +172,7 @@ chat.prefix.img = 圖片
|
|
164
172
|
chat.prefix.url = 鏈接
|
165
173
|
clipboard.copied = 已複製到剪貼板。
|
166
174
|
clipboard.copied_to = 已複製到剪貼板:
|
167
|
-
cmd.enabled = 工具
|
175
|
+
cmd.enabled = + 工具
|
168
176
|
cmd.tip = 提示:要启用从插件中执行工具,您必须启用“+ 工具”选项。
|
169
177
|
coming_soon = 即將推出...
|
170
178
|
confirm.assistant.files.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 = 当前
|
@@ -605,7 +617,7 @@ interpreter.edit = 编辑模式
|
|
605
617
|
interpreter.edit_label.edit = 代码(历史)
|
606
618
|
interpreter.edit_label.output = 输出
|
607
619
|
interpreter.input.placeholder = 要执行的 Python 代码...
|
608
|
-
ipython.docker.build.finish = 成功!IPython 的 Docker
|
620
|
+
ipython.docker.build.finish = 成功!IPython 的 Docker 镜像已构建完成。
|
609
621
|
ipython.docker.build.start = 正在构建 Docker 镜像... 请稍候...
|
610
622
|
ipython.docker.install = 运行 IPython 需要安装 Docker。系统上未检测到 Docker。请先安装 Docker;您可以在此处找到说明:https://docs.docker.com/engine/install/。当前命令的执行已暂停。
|
611
623
|
ipython.image.build = IPython 的 Docker 镜像尚未构建。这将立即发生,可能需要一段时间(但这是一次性过程)。命令的执行已暂停。镜像构建完成后,请再次执行命令。
|
@@ -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 = 代理(
|
694
|
-
mode.agent_llama.tooltip = 高级代理(
|
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 = 使用
|
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 = [
|
723
|
-
model.llama_index.args.desc = 傳遞給
|
724
|
-
model.llama_index.env = [
|
725
|
-
model.llama_index.env.desc = 為
|
726
|
-
model.llama_index.mode = [
|
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 = [
|
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 = 代理(
|
788
|
+
preset.agent_llama = 代理(LlamaIndex)
|
776
789
|
preset.agent_provider = 代理提供者
|
777
790
|
preset.agent_provider.desc = 为当前预设选择代理类型
|
778
791
|
preset.ai_name = AI名稱
|
@@ -843,6 +856,11 @@ settings.app.env = 应用程序环境 (os.environ)
|
|
843
856
|
settings.app.env.desc = 在应用程序启动时要设置的额外环境变量
|
844
857
|
settings.check_updates = 啟動時檢查更新
|
845
858
|
settings.check_updates.bg = 在後台檢查更新
|
859
|
+
settings.cmd.field.desc = 启用 `{cmd}` 工具。
|
860
|
+
settings.cmd.field.enable = 工具:{cmd}
|
861
|
+
settings.cmd.field.instruction = 模型指令
|
862
|
+
settings.cmd.field.params = JSON 参数(工具参数)
|
863
|
+
settings.cmd.field.tooltip = 启用 `{cmd}` 工具
|
846
864
|
settings.context_threshold = 上下文閾值
|
847
865
|
settings.ctx.audio = 总是显示音频图标
|
848
866
|
settings.ctx.auto_summary = 上下文自動摘要
|
@@ -911,7 +929,7 @@ settings.llama.idx.replace_old = 在重新索引期間替換索引中的舊文
|
|
911
929
|
settings.llama.idx.replace_old.desc = 如果啟用,當最新版本的文檔被索引時,先前版本的文檔將從索引中刪除
|
912
930
|
settings.llama.idx.storage = 向量存儲
|
913
931
|
settings.llama.idx.storage.args = 向量存儲(kwargs)
|
914
|
-
settings.llama.idx.storage.args.desc = 向量存儲提供者的額外關鍵字參數(kwargs),例如API密鑰。這些參數將傳遞給提供者;請參閱
|
932
|
+
settings.llama.idx.storage.args.desc = 向量存儲提供者的額外關鍵字參數(kwargs),例如API密鑰。這些參數將傳遞給提供者;請參閱LlamaIndex API參考以獲取指定向量存儲所需的參數列表。
|
915
933
|
settings.lock_modes = 鎖定不兼容模式
|
916
934
|
settings.max_output_tokens = 最大輸出令牌
|
917
935
|
settings.max_requests_limit = RPM 限制
|
@@ -926,7 +944,7 @@ settings.prompt.agent.goal = 代理:目标更新
|
|
926
944
|
settings.prompt.agent.goal.desc = 指令提示如何更新当前目标状态
|
927
945
|
settings.prompt.agent.instruction = 代理:系统指令
|
928
946
|
settings.prompt.agent.instruction.desc = 提示如何处理自主模式的指令
|
929
|
-
settings.prompt.agent.llama.eval = 代理:循环中的评估提示 [
|
947
|
+
settings.prompt.agent.llama.eval = 代理:循环中的评估提示 [LlamaIndex]
|
930
948
|
settings.prompt.agent.llama.eval.desc = 当启用循环/评估选项时,用于响应评估的提示
|
931
949
|
settings.prompt.cmd = 命令执行:指令
|
932
950
|
settings.prompt.cmd.desc = 占位符:{schema}, {extra}
|
@@ -951,7 +969,7 @@ settings.section.files = 文件和附件
|
|
951
969
|
settings.section.general = 一般
|
952
970
|
settings.section.images = 圖像
|
953
971
|
settings.section.layout = 布局
|
954
|
-
settings.section.llama_index = 索引(
|
972
|
+
settings.section.llama_index = 索引(LlamaIndex)
|
955
973
|
settings.section.llama-index.data_loaders = 數據加載器
|
956
974
|
settings.section.llama-index.indexing = 索引
|
957
975
|
settings.section.llama-index.store = 向量存儲
|
@@ -1013,12 +1031,12 @@ text.context_menu.copy_to.notepad = 記事本
|
|
1013
1031
|
text.context_menu.find = 查找...
|
1014
1032
|
theme.dark = 暗色
|
1015
1033
|
theme.light = 亮色
|
1016
|
-
tip.input.attachments =
|
1034
|
+
tip.input.attachments = 在这里,您可以向正在发送的消息添加附件。 您可以发送文本文件、代码文件、PDF、文档、电子表格和其他文件 - 它们将用作对话中的附加上下文。 您还可以发送图像或从相机捕获的照片进行分析。
|
1017
1035
|
tip.input.attachments.ctx = 以下是已上传和索引的附件,您可以将其用作附加上下文。附加上下文适用于整个讨论。选项:完整上下文 - 在系统提示中包含所有附加内容(原始),仅查询 - 仅查询索引内容,摘要 - 在提示中包含添加内容的摘要,关闭 - 禁用附加上下文。
|
1018
1036
|
tip.input.attachments.uploaded = 這是已上傳到服務器的文件列表,在助手模式下。這些文件位於遠程服務器上,而不是您的本地計算機上,因此模型可以使用並分析外部遠程服務器上可用的工具。
|
1019
1037
|
tip.output.tab.calendar = 使用日曆,您可以導航回特定日期的選定對話。點擊日曆中的一天以限制聊天歷史顯示到該天。您還可以創建日記並為它們分配彩色標籤。
|
1020
1038
|
tip.output.tab.draw = 您可以使用繪圖工具進行快速素描或從相機捕獲圖像,然後將這些圖像發送到AI在視覺模式下進行分析。您可以在這裡使用相機捕獲圖像或從磁盤打開圖像。使用圖像時,它將作為附件包含在發送的消息中。
|
1021
|
-
tip.output.tab.files = 此工作文件目錄位於您的磁盤上。這裡的文件可供AI訪問。AI可以寫入和讀取文件,也可以從此目錄運行代碼。您可以在本地系統上打開此目錄並放置任何文件。您還可以使用
|
1039
|
+
tip.output.tab.files = 此工作文件目錄位於您的磁盤上。這裡的文件可供AI訪問。AI可以寫入和讀取文件,也可以從此目錄運行代碼。您可以在本地系統上打開此目錄並放置任何文件。您還可以使用LlamaIndex對這裡的文件進行索引,以便它們作為額外的知識來源。
|
1022
1040
|
tip.output.tab.notepad = 記事本可以作為記錄筆記和存儲信息的工具。您可以在這裡保留任何文本,從聊天窗口複製文本,所有信息都會自動保存。您可以使用設置中的配置選項創建更多記事本。
|
1023
1041
|
tip.tokens.ctx = 上下文(記憶):使用中 / 全部 - 令牌
|
1024
1042
|
tip.tokens.input = 令牌:輸入提示 + 系統提示 + 上下文 + 額外 = 總和 / 最大
|
@@ -1038,7 +1056,7 @@ toolbox.assistants.label = 助手
|
|
1038
1056
|
toolbox.experts.label = 专家
|
1039
1057
|
toolbox.img_variants.label = 生成圖像變體的數量
|
1040
1058
|
toolbox.indexes.label = 索引
|
1041
|
-
toolbox.llama_index.label =
|
1059
|
+
toolbox.llama_index.label = LlamaIndex
|
1042
1060
|
toolbox.mode.label = 模式
|
1043
1061
|
toolbox.model.label = 模型
|
1044
1062
|
toolbox.name.ai = AI名稱
|
@@ -1063,7 +1081,7 @@ tool.indexer.menu.file.remove_idx = 移除索引
|
|
1063
1081
|
tool.indexer.option.clear = 索引后清除文件列表
|
1064
1082
|
tool.indexer.option.recursive = 递归(包括子目录)
|
1065
1083
|
tool.indexer.option.replace = 从索引中移除旧版文档(如果存在)
|
1066
|
-
tool.indexer.status = 输出日志(
|
1084
|
+
tool.indexer.status = 输出日志(LlamaIndex):
|
1067
1085
|
tool.indexer.tab.browser = 浏览 idx
|
1068
1086
|
tool.indexer.tab.browse.tip = 浏览或移除当前索引的元素(这里显示了数据库映射到索引)。
|
1069
1087
|
tool.indexer.tab.ctx = 上下文
|
@@ -1080,7 +1098,7 @@ tool.indexer.tab.files.path.dir = 选择目录:
|
|
1080
1098
|
tool.indexer.tab.files.path.files = 选择文件:
|
1081
1099
|
tool.indexer.tab.files.tip = 选择文件或目录以将文件嵌入所选索引。数据加载器将根据文件扩展名自动选择。
|
1082
1100
|
tool.indexer.tab.web = 网络
|
1083
|
-
tool.indexer.tab.web.cfg = 配置(全局设置)- 设置 ->
|
1101
|
+
tool.indexer.tab.web.cfg = 配置(全局设置)- 设置 -> LlamaIndex -> 数据加载器
|
1084
1102
|
tool.indexer.tab.web.help = 帮助
|
1085
1103
|
tool.indexer.tab.web.loader = 数据加载器
|
1086
1104
|
tool.indexer.tab.web.source = 数据来源
|
@@ -1109,8 +1127,3 @@ vision.capture.manual.captured.error = 從相機捕獲時出錯!
|
|
1109
1127
|
vision.capture.manual.captured.success = 從相機捕獲的圖像:
|
1110
1128
|
vision.capture.name.prefix = 相機捕獲:
|
1111
1129
|
vision.capture.options.title = 視頻捕獲選項
|
1112
|
-
settings.cmd.field.desc = 启用 `{cmd}` 工具。
|
1113
|
-
settings.cmd.field.enable = 工具:{cmd}
|
1114
|
-
settings.cmd.field.instruction = 模型指令
|
1115
|
-
settings.cmd.field.params = JSON 参数(工具参数)
|
1116
|
-
settings.cmd.field.tooltip = 启用 `{cmd}` 工具
|
@@ -17,6 +17,12 @@ cmd.get_python_output.description = Ermöglicht die Ausführung des Befehls get_
|
|
17
17
|
cmd.get_python_output.label = Aktivieren: get_python_output
|
18
18
|
cmd.sys_exec.description = Ermöglicht die Ausführung des Befehls sys_exec. Wenn aktiviert, ermöglicht es die Ausführung von Systembefehlen.
|
19
19
|
cmd.sys_exec.label = Aktivieren: Systembefehle ausführen
|
20
|
+
docker_entrypoint.description = Befehl zum Ausführen beim Starten des Containers
|
21
|
+
docker_entrypoint.label = Docker Entrypoint
|
22
|
+
docker_ports.description = Docker-Ports-Zuordnung: docker <> host. Sie können das Protokoll (im DOCKER-Schlüssel) mit 8888/tcp definieren oder den Protokollteil leer lassen, um das Standardprotokoll (TCP) zu verwenden
|
23
|
+
docker_ports.label = Docker Ports
|
24
|
+
docker_volumes.description = Docker-Volumes-Zuordnung: docker <> host, {workdir} - Platzhalter für das aktuelle Arbeitsverzeichnis auf dem Host. Der Modus r/w wird verwendet.
|
25
|
+
docker_volumes.label = Docker Volumes
|
20
26
|
plugin.description = Ermöglicht die Ausführung von Python-Code
|
21
27
|
plugin.name = Code-Interpreter (v2)
|
22
28
|
python_cmd_tpl.description = Python-Befehlsvorlage zur Ausführung, benutze {filename} als Platzhalter für den Dateinamen.
|
@@ -17,8 +17,20 @@ cmd.get_python_output.description = Enable get_python_output command execution.
|
|
17
17
|
cmd.get_python_output.label = Enable: get_python_output
|
18
18
|
cmd.sys_exec.description = Enable sys_exec command execution. If enabled, provides system commands execution.
|
19
19
|
cmd.sys_exec.label = Enable: system command execute
|
20
|
+
container_name.description = Custom container name
|
21
|
+
container_name.label = Docker container name
|
22
|
+
docker_entrypoint.description = Command to run when starting the container
|
23
|
+
docker_entrypoint.label = Docker Entrypoint
|
24
|
+
dockerfile.description = You can customize the Dockerfile for the image by editing the configuration above and rebuilding the image via Tools -> Rebuild IPython Docker Image.
|
25
|
+
dockerfile.label = Dockerfile
|
26
|
+
docker_ports.description = Docker ports mapping: docker <> host. You can define protocol (in DOCKER key) with 8888/tcp or leave empty protocol part to use default (TCP)
|
27
|
+
docker_ports.label = Docker Ports
|
28
|
+
docker_volumes.description = Docker volumes mapping: docker <> host, {workdir} - placeholder for the current working directory on the host machine. Mode r/w will be used.
|
29
|
+
docker_volumes.label = Docker Volumes
|
20
30
|
get_html_output.description = Allows to get HTML/JS output from HTML Canvas
|
21
31
|
get_html_output.label = Enable: get HTML output from HTML Canvas
|
32
|
+
image_name.description = Custom image name
|
33
|
+
image_name.label = Docker image name
|
22
34
|
ipython_conn_addr.description = Default: 127.0.0.1
|
23
35
|
ipython_conn_addr.label = Connection address
|
24
36
|
ipython_container_name.description = Custom container name
|
@@ -45,13 +57,9 @@ python_cmd_tpl.description = Python command template to execute, use {filename}
|
|
45
57
|
python_cmd_tpl.label = Python command template
|
46
58
|
render_html_output.description = Allows to render HTML/JS code in HTML Canvas
|
47
59
|
render_html_output.label = Enable: render HTML output in canvas
|
48
|
-
sandbox_docker.description = Executes
|
60
|
+
sandbox_docker.description = Executes Python (legacy) code in a sandbox (Docker container). Docker must be installed and running.
|
49
61
|
sandbox_docker_image.description = Docker image to use for sandbox.
|
50
62
|
sandbox_docker_image.label = Docker image
|
51
63
|
sandbox_docker.label = Sandbox (Docker container)
|
52
|
-
|
53
|
-
|
54
|
-
dockerfile.description = You can customize the Dockerfile for the image by editing the configuration above and rebuilding the image via Tools -> Rebuild IPython Docker Image.
|
55
|
-
dockerfile.label = Dockerfile
|
56
|
-
image_name.description = Custom image name
|
57
|
-
image_name.label = Docker image name
|
64
|
+
sandbox_ipython.description = Executes IPython and Python code in a sandbox (Docker container). Docker must be installed and running.
|
65
|
+
sandbox_ipython.label = Sandbox (Docker container)
|
@@ -17,6 +17,12 @@ cmd.get_python_output.description = Habilitar la ejecución del comando get_pyth
|
|
17
17
|
cmd.get_python_output.label = Habilitar: get_python_output
|
18
18
|
cmd.sys_exec.description = Habilitar la ejecución del comando sys_exec. Si está habilitado, proporciona la ejecución de comandos del sistema.
|
19
19
|
cmd.sys_exec.label = Habilitar: Ejecutar comando del sistema
|
20
|
+
docker_entrypoint.description = Comando para ejecutar al iniciar el contenedor
|
21
|
+
docker_entrypoint.label = Docker Entrypoint
|
22
|
+
docker_ports.description = Mapeo de puertos de Docker: docker <> host. Puede definir el protocolo (en la clave DOCKER) con 8888/tcp o dejar la parte del protocolo vacía para usar el predeterminado (TCP)
|
23
|
+
docker_ports.label = Docker Ports
|
24
|
+
docker_volumes.description = Mapeo de volúmenes de Docker: docker <> host, {workdir} - marcador de posición para el directorio de trabajo actual en la máquina host. Se utilizará el modo r/w.
|
25
|
+
docker_volumes.label = Docker Volumes
|
20
26
|
plugin.description = Proporciona la ejecución de código Python
|
21
27
|
plugin.name = Intérprete de código (v2)
|
22
28
|
python_cmd_tpl.description = Plantilla de comando de Python para ejecutar, usa {filename} como marcador de posición para el nombre del archivo.
|
@@ -17,6 +17,12 @@ cmd.get_python_output.description = Activer l'exécution de la commande get_pyth
|
|
17
17
|
cmd.get_python_output.label = Activer : get_python_output
|
18
18
|
cmd.sys_exec.description = Activer l'exécution de la commande sys_exec. Si activé, cela fournit l'exécution des commandes système.
|
19
19
|
cmd.sys_exec.label = Activer : exécution de commande système
|
20
|
+
docker_entrypoint.description = Commande à exécuter lors du démarrage du conteneur
|
21
|
+
docker_entrypoint.label = Docker Entrypoint
|
22
|
+
docker_ports.description = Mappage des ports Docker : docker <> hôte. Vous pouvez définir le protocole (dans la clé DOCKER) avec 8888/tcp ou laisser la partie protocole vide pour utiliser le protocole par défaut (TCP)
|
23
|
+
docker_ports.label = Docker Ports
|
24
|
+
docker_volumes.description = Mappage des volumes Docker : docker <> hôte, {workdir} - espace réservé pour le répertoire de travail actuel sur la machine hôte. Le mode r/w sera utilisé.
|
25
|
+
docker_volumes.label = Docker Volumes
|
20
26
|
plugin.description = Fournit l'exécution du code Python
|
21
27
|
plugin.name = Interpréteur de code (v2)
|
22
28
|
python_cmd_tpl.description = Modèle de commande Python à exécuter, utilisez {filename} comme espace réservé pour le nom de fichier.
|
@@ -17,6 +17,12 @@ cmd.get_python_output.description = Abilita l'esecuzione del comando get_python_
|
|
17
17
|
cmd.get_python_output.label = Abilita: get_python_output
|
18
18
|
cmd.sys_exec.description = Abilita l'esecuzione del comando sys_exec. Se abilitato, fornisce l'esecuzione di comandi di sistema.
|
19
19
|
cmd.sys_exec.label = Abilita: esecuzione comando di sistema
|
20
|
+
docker_entrypoint.description = Comando da eseguire all'avvio del contenitore
|
21
|
+
docker_entrypoint.label = Docker Entrypoint
|
22
|
+
docker_ports.description = Mappatura delle porte Docker: docker <> host. È possibile definire il protocollo (nella chiave DOCKER) con 8888/tcp o lasciare vuota la parte del protocollo per utilizzare il predefinito (TCP)
|
23
|
+
docker_ports.label = Docker Ports
|
24
|
+
docker_volumes.description = Mappatura dei volumi Docker: docker <> host, {workdir} - segnaposto per la directory di lavoro corrente sulla macchina host. Verrà utilizzata la modalità r/w.
|
25
|
+
docker_volumes.label = Docker Volumes
|
20
26
|
plugin.description = Fornisce l'esecuzione del codice Python
|
21
27
|
plugin.name = Interprete del codice (v2)
|
22
28
|
python_cmd_tpl.description = Modello di comando Python da eseguire, usa {filename} come segnaposto per il nome del file.
|
@@ -17,6 +17,12 @@ cmd.get_python_output.description = Umożliwia wykonanie polecenia get_python_ou
|
|
17
17
|
cmd.get_python_output.label = Aktywuj: get_python_output
|
18
18
|
cmd.sys_exec.description = Umożliwia wykonanie polecenia sys_exec. Jeżeli jest włączone, umożliwia wykonanie poleceń systemowych.
|
19
19
|
cmd.sys_exec.label = Aktywuj: wykonanie polecenia systemowego
|
20
|
+
docker_entrypoint.description = Komenda do uruchomienia przy starcie kontenera
|
21
|
+
docker_entrypoint.label = Docker Entrypoint
|
22
|
+
docker_ports.description = Mapowanie portów Docker: docker <> host. Możesz zdefiniować protokół (w kluczu DOCKER) z 8888/tcp lub pozostawić pustą część protokołu, aby użyć domyślnego (TCP)
|
23
|
+
docker_ports.label = Docker Ports
|
24
|
+
docker_volumes.description = Mapowanie woluminów Docker: docker <> host, {workdir} - placeholder dla bieżącego katalogu roboczego na maszynie hosta. Zostanie użyty tryb r/w.
|
25
|
+
docker_volumes.label = Docker Volumes
|
20
26
|
plugin.description = Umożliwia wykonanie kodu Pythona
|
21
27
|
plugin.name = Interpreter kodu (v2)
|
22
28
|
python_cmd_tpl.description = Szablon polecenia Pythona do wykonania, użyj {filename} jako miejsce na nazwę pliku.
|
@@ -17,6 +17,12 @@ cmd.get_python_output.description = Дозволити виконання ком
|
|
17
17
|
cmd.get_python_output.label = Дозволити: get_python_output
|
18
18
|
cmd.sys_exec.description = Дозволити виконання команди sys_exec. Якщо включено, забезпечує виконання системних команд.
|
19
19
|
cmd.sys_exec.label = Дозволити: Виконати системну команду
|
20
|
+
docker_entrypoint.description = Команда для запуску при старті контейнера
|
21
|
+
docker_entrypoint.label = Docker Entrypoint
|
22
|
+
docker_ports.description = Відображення портів Docker: docker <> host. Ви можете визначити протокол (у ключі DOCKER) з 8888/tcp або залишити частину протоколу порожньою, щоб використовувати стандартний (TCP)
|
23
|
+
docker_ports.label = Docker Ports
|
24
|
+
docker_volumes.description = Відображення томів Docker: docker <> host, {workdir} - заповнювач для поточного робочого каталогу на хості. Буде використано режим r/w.
|
25
|
+
docker_volumes.label = Docker Volumes
|
20
26
|
plugin.description = Забезпечує виконання коду Python
|
21
27
|
plugin.name = Інтерпретатор коду (v2)
|
22
28
|
python_cmd_tpl.description = Шаблон команди Python для виконання, використовуйте {filename} як замінник імені файлу.
|
@@ -17,6 +17,12 @@ cmd.get_python_output.description = 启用 get_python_output 命令的执行。
|
|
17
17
|
cmd.get_python_output.label = 启用:get_python_output
|
18
18
|
cmd.sys_exec.description = 启用 sys_exec 命令的执行。如果启用,提供系统命令执行的功能。
|
19
19
|
cmd.sys_exec.label = 启用:执行系统命令
|
20
|
+
docker_entrypoint.description = 启动容器时运行的命令
|
21
|
+
docker_entrypoint.label = Docker Entrypoint
|
22
|
+
docker_ports.description = Docker 端口映射:docker <> 主机。您可以使用 8888/tcp 在 DOCKER 键中定义协议,或将协议部分留空以使用默认协议(TCP)
|
23
|
+
docker_ports.label = Docker Ports
|
24
|
+
docker_volumes.description = Docker 卷映射:docker <> 主机,{workdir} - 主机上当前工作目录的占位符。将使用 r/w 模式。
|
25
|
+
docker_volumes.label = Docker Volumes
|
20
26
|
plugin.description = 提供 Python 代码执行功能
|
21
27
|
plugin.name = 代码解释器 (v2)
|
22
28
|
python_cmd_tpl.description = 要执行的 Python 命令模板,使用 {filename} 作为文件名的占位符。
|
@@ -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
|
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
|
37
|
-
cmd.query_file.label = Aktivieren: Schnelles Abfragen der Datei mit
|
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
|
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
|
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
|
37
|
-
cmd.query_file.label = Enable: quick query the file with
|
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
|
55
|
+
use_loaders.description = Use data loaders from LlamaIndex for file reading (read_file command).
|
56
56
|
use_loaders.label = Use data loaders
|