pygpt-net 2.7.4__py3-none-any.whl → 2.7.5__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.
- pygpt_net/CHANGELOG.txt +7 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app_core.py +4 -2
- pygpt_net/controller/__init__.py +5 -1
- pygpt_net/controller/assistant/assistant.py +1 -4
- pygpt_net/controller/assistant/batch.py +5 -504
- pygpt_net/controller/assistant/editor.py +5 -5
- pygpt_net/controller/assistant/files.py +16 -16
- pygpt_net/controller/chat/handler/google_stream.py +307 -1
- pygpt_net/controller/chat/handler/worker.py +8 -1
- pygpt_net/controller/chat/image.py +2 -2
- pygpt_net/controller/dialogs/confirm.py +73 -101
- pygpt_net/controller/lang/mapping.py +9 -9
- pygpt_net/controller/painter/capture.py +50 -1
- pygpt_net/controller/presets/presets.py +2 -1
- pygpt_net/controller/remote_store/__init__.py +12 -0
- pygpt_net/{provider/core/assistant_file/db_sqlite → controller/remote_store/google}/__init__.py +2 -2
- pygpt_net/controller/remote_store/google/batch.py +402 -0
- pygpt_net/controller/remote_store/google/store.py +615 -0
- pygpt_net/controller/remote_store/openai/__init__.py +12 -0
- pygpt_net/controller/remote_store/openai/batch.py +524 -0
- pygpt_net/controller/{assistant → remote_store/openai}/store.py +63 -60
- pygpt_net/controller/remote_store/remote_store.py +35 -0
- pygpt_net/controller/ui/ui.py +20 -1
- pygpt_net/core/assistants/assistants.py +3 -15
- pygpt_net/core/db/database.py +5 -3
- pygpt_net/core/locale/placeholder.py +35 -0
- pygpt_net/core/remote_store/__init__.py +12 -0
- pygpt_net/core/remote_store/google/__init__.py +11 -0
- pygpt_net/core/remote_store/google/files.py +224 -0
- pygpt_net/core/remote_store/google/store.py +248 -0
- pygpt_net/core/remote_store/openai/__init__.py +11 -0
- pygpt_net/core/{assistants → remote_store/openai}/files.py +26 -19
- pygpt_net/core/{assistants → remote_store/openai}/store.py +32 -15
- pygpt_net/core/remote_store/remote_store.py +24 -0
- pygpt_net/data/config/config.json +8 -4
- pygpt_net/data/config/models.json +77 -3
- pygpt_net/data/config/settings.json +45 -0
- pygpt_net/data/locale/locale.de.ini +41 -41
- pygpt_net/data/locale/locale.en.ini +53 -43
- pygpt_net/data/locale/locale.es.ini +41 -41
- pygpt_net/data/locale/locale.fr.ini +41 -41
- pygpt_net/data/locale/locale.it.ini +41 -41
- pygpt_net/data/locale/locale.pl.ini +42 -42
- pygpt_net/data/locale/locale.uk.ini +41 -41
- pygpt_net/data/locale/locale.zh.ini +41 -41
- pygpt_net/data/locale/plugin.cmd_history.de.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.en.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.es.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.fr.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.it.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.pl.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.uk.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_history.zh.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_mouse_control.en.ini +14 -0
- pygpt_net/data/locale/plugin.cmd_web.de.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.en.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.es.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.it.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +1 -1
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +1 -1
- pygpt_net/data/locale/plugin.idx_llama_index.de.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.en.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.es.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.it.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +2 -2
- pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +2 -2
- pygpt_net/item/assistant.py +1 -211
- pygpt_net/item/ctx.py +3 -1
- pygpt_net/item/store.py +238 -0
- pygpt_net/migrations/Version20260102190000.py +35 -0
- pygpt_net/migrations/__init__.py +3 -1
- pygpt_net/plugin/cmd_mouse_control/config.py +470 -1
- pygpt_net/plugin/cmd_mouse_control/plugin.py +488 -22
- pygpt_net/plugin/cmd_mouse_control/worker.py +464 -87
- pygpt_net/plugin/cmd_mouse_control/worker_sandbox.py +729 -0
- pygpt_net/plugin/idx_llama_index/config.py +2 -2
- pygpt_net/provider/api/google/__init__.py +16 -54
- pygpt_net/provider/api/google/chat.py +546 -129
- pygpt_net/provider/api/google/computer.py +190 -0
- pygpt_net/provider/api/google/realtime/realtime.py +2 -2
- pygpt_net/provider/api/google/remote_tools.py +93 -0
- pygpt_net/provider/api/google/store.py +546 -0
- pygpt_net/provider/api/google/worker/__init__.py +0 -0
- pygpt_net/provider/api/google/worker/importer.py +392 -0
- pygpt_net/provider/api/openai/computer.py +10 -1
- pygpt_net/provider/api/openai/store.py +6 -6
- pygpt_net/provider/api/openai/worker/importer.py +24 -24
- pygpt_net/provider/core/config/patch.py +16 -1
- pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +3 -3
- pygpt_net/provider/core/model/patch.py +17 -3
- pygpt_net/provider/core/preset/json_file.py +13 -7
- pygpt_net/provider/core/{assistant_file → remote_file}/__init__.py +1 -1
- pygpt_net/provider/core/{assistant_file → remote_file}/base.py +9 -9
- pygpt_net/provider/core/remote_file/db_sqlite/__init__.py +12 -0
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/patch.py +1 -1
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/provider.py +23 -20
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/storage.py +35 -27
- pygpt_net/provider/core/{assistant_file → remote_file}/db_sqlite/utils.py +5 -4
- pygpt_net/provider/core/{assistant_store → remote_store}/__init__.py +1 -1
- pygpt_net/provider/core/{assistant_store → remote_store}/base.py +10 -10
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/__init__.py +1 -1
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/patch.py +1 -1
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/provider.py +16 -15
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/storage.py +30 -23
- pygpt_net/provider/core/{assistant_store → remote_store}/db_sqlite/utils.py +5 -4
- pygpt_net/provider/core/{assistant_store → remote_store}/json_file.py +9 -9
- pygpt_net/provider/llms/google.py +2 -2
- pygpt_net/ui/base/config_dialog.py +3 -2
- pygpt_net/ui/dialog/assistant.py +3 -3
- pygpt_net/ui/dialog/plugins.py +3 -1
- pygpt_net/ui/dialog/remote_store_google.py +539 -0
- pygpt_net/ui/dialog/{assistant_store.py → remote_store_openai.py} +95 -95
- pygpt_net/ui/dialogs.py +5 -3
- pygpt_net/ui/layout/chat/attachments_uploaded.py +3 -3
- pygpt_net/ui/layout/toolbox/computer_env.py +26 -8
- pygpt_net/ui/menu/tools.py +13 -5
- pygpt_net/ui/widget/dialog/remote_store_google.py +56 -0
- pygpt_net/ui/widget/dialog/{assistant_store.py → remote_store_openai.py} +9 -9
- pygpt_net/ui/widget/element/button.py +4 -4
- pygpt_net/ui/widget/lists/remote_store_google.py +248 -0
- pygpt_net/ui/widget/lists/{assistant_store.py → remote_store_openai.py} +21 -21
- pygpt_net/ui/widget/option/checkbox_list.py +47 -9
- pygpt_net/ui/widget/option/combo.py +39 -3
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.5.dist-info}/METADATA +33 -2
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.5.dist-info}/RECORD +133 -108
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.5.dist-info}/LICENSE +0 -0
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.5.dist-info}/WHEEL +0 -0
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.5.dist-info}/entry_points.txt +0 -0
|
@@ -180,14 +180,6 @@ assistant.run.completed = Виконання: Завершено
|
|
|
180
180
|
assistant.run.failed = Виконання: Помилка
|
|
181
181
|
assistant.run.func.call = Запустити: виклик функції...
|
|
182
182
|
assistant.run.listening = Виконання: в процесі...
|
|
183
|
-
assistant.store.expire_days = Дні до закінчення
|
|
184
|
-
assistant.store.expire_days.desc = 0 = Ніколи
|
|
185
|
-
assistant.store.files.suffix = Файли
|
|
186
|
-
assistant.store.hide_threads = Приховати векторні сховища тем
|
|
187
|
-
assistant.store.id = ID
|
|
188
|
-
assistant.store.name = Назва
|
|
189
|
-
assistant.store.status = Статус
|
|
190
|
-
assistant.store.thread_only = (лише поточний потік)
|
|
191
183
|
assistant.tool.code_interpreter = Iнтерпретатор коду
|
|
192
184
|
assistant.tool.file_search = Чат з файлами
|
|
193
185
|
assistant.tool.function = Інструмент: функція
|
|
@@ -284,17 +276,9 @@ common.down = Перемістити вниз
|
|
|
284
276
|
common.up = Перемістити вгору
|
|
285
277
|
confirm.assistant.delete = Видалити помічника?
|
|
286
278
|
confirm.assistant.files.clear = Очистити файли (лише локально)?
|
|
287
|
-
confirm.assistant.files.truncate = Ви впевнені, що хочете видалити усі файли з усіх баз?
|
|
288
|
-
confirm.assistant.files.truncate.store = Ви впевнені, що хочете видалити усі файли з обраної бази?
|
|
289
279
|
confirm.assistant.functions.clear = Ви впевнені, що хочете очистити список функцій?
|
|
290
280
|
confirm.assistant.functions.import = Імпортувати функції з АКТИВНИХ плагінів?\nINFO: Всі функції в списку з однаковими назвами будуть замінені!
|
|
291
281
|
confirm.assistant.import = Імпортувати всіх асистентів з API?
|
|
292
|
-
confirm.assistant.import_files = Імпортувати всі файли з API?
|
|
293
|
-
confirm.assistant.import_files.store = Імпортувати файли поточної бази з API?
|
|
294
|
-
confirm.assistant.store.clear = Очистити векторні бази (лише локально)?
|
|
295
|
-
confirm.assistant.store.import = Імпортувати всі векторні бази з API?
|
|
296
|
-
confirm.assistant.store.refresh = Оновити всі бази?
|
|
297
|
-
confirm.assistant.store.truncate = Видалити всі векторні бази в API?
|
|
298
282
|
confirm.ctx.delete = Видалити групу?
|
|
299
283
|
confirm.ctx.delete.all = Видалити групу і всі елементи?
|
|
300
284
|
confirm.img.delete = Видалити файл з диска?
|
|
@@ -306,6 +290,14 @@ confirm.preset.restore = Відновити стандартний пресет
|
|
|
306
290
|
confirm.profile.delete = Ви впевнені, що хочете видалити профіль? Він буде видалений лише зі списку.
|
|
307
291
|
confirm.profile.delete_all = Ви впевнені, що хочете видалити профіль разом зі всіма конфігураційними файлами та файлами даних користувача у робочій директорії профілю?
|
|
308
292
|
confirm.profile.reset = Ви впевнені, що хочете відновити профіль до налаштувань за замовчуванням? УВАГА: Всі файли конфігурації та база даних контекстів будуть видалені! Директорія даних залишиться - щоб видалити її, вам доведеться зробити це вручну або скористатися опцією видалення.
|
|
293
|
+
confirm.remote_store.clear = Очистити векторні бази (лише локально)?
|
|
294
|
+
confirm.remote_store.import = Імпортувати всі векторні бази з API?
|
|
295
|
+
confirm.remote_store.import_files = Імпортувати всі файли з API?
|
|
296
|
+
confirm.remote_store.import_files.store = Імпортувати файли поточної бази з API?
|
|
297
|
+
confirm.remote_store.openai.files.truncate = Ви впевнені, що хочете видалити усі файли з усіх баз?
|
|
298
|
+
confirm.remote_store.openai.files.truncate.store = Ви впевнені, що хочете видалити усі файли з обраної бази?
|
|
299
|
+
confirm.remote_store.refresh = Оновити всі бази?
|
|
300
|
+
confirm.remote_store.truncate = Видалити всі векторні бази в API?
|
|
309
301
|
context.btn.clear = Очистити пам'ять
|
|
310
302
|
context.items = елементи
|
|
311
303
|
context.label = Контекст
|
|
@@ -364,30 +356,6 @@ dialog.assistant.btn.current = Використовувати поточний
|
|
|
364
356
|
dialog.assistant.btn.import_func = Імпортувати функції
|
|
365
357
|
dialog.assistant.btn.save = Зберегти
|
|
366
358
|
dialog.assistant.btn.store = Векторні сховища
|
|
367
|
-
dialog.assistant.store = Векторні Бази OpenAI
|
|
368
|
-
dialog.assistant.store.alert.assign = Будь ласка, спочатку призначте векторну базу Асистенту.
|
|
369
|
-
dialog.assistant.store.alert.select = Будь ласка, спочатку виберіть векторну базу.
|
|
370
|
-
dialog.assistant.store.btn.close = Скасувати
|
|
371
|
-
dialog.assistant.store.btn.new = Створити
|
|
372
|
-
dialog.assistant.store.btn.refresh_status = Оновити статус
|
|
373
|
-
dialog.assistant.store.btn.save = Зберегти
|
|
374
|
-
dialog.assistant.store.btn.upload.dir = + Каталог
|
|
375
|
-
dialog.assistant.store.btn.upload.files = + Файли
|
|
376
|
-
dialog.assistant.store.delete.confirm = Ви впевнені, що хочете видалити Векторну Базу OpenAI?
|
|
377
|
-
dialog.assistant.store.menu.all = Всі бази...
|
|
378
|
-
dialog.assistant.store.menu.all.clear_files = Очистити файли (всі, лише локально)
|
|
379
|
-
dialog.assistant.store.menu.all.clear_store = Очистити векторні бази (всі, лише локально)
|
|
380
|
-
dialog.assistant.store.menu.all.import_all = Імпортувати все (всі, бази + файли)
|
|
381
|
-
dialog.assistant.store.menu.all.import_files = Імпортувати лише файли (всі)
|
|
382
|
-
dialog.assistant.store.menu.all.refresh_store = Оновити всі статуси
|
|
383
|
-
dialog.assistant.store.menu.all.truncate_files = Очистити файли повністю (всі, локально + віддалено)
|
|
384
|
-
dialog.assistant.store.menu.all.truncate_store = Очистити векторні бази повністю (всі, локально + віддалено)
|
|
385
|
-
dialog.assistant.store.menu.current = Поточна база...
|
|
386
|
-
dialog.assistant.store.menu.current.clear_files = Очистити файли (лише локально)
|
|
387
|
-
dialog.assistant.store.menu.current.delete = Видалити базу (+ файли, локально + віддалено)
|
|
388
|
-
dialog.assistant.store.menu.current.import_files = Імпортувати файли
|
|
389
|
-
dialog.assistant.store.menu.current.refresh_store = Оновити статус
|
|
390
|
-
dialog.assistant.store.menu.current.truncate_files = Очистити файли повністю (локально + віддалено)
|
|
391
359
|
dialog.changelog.title = Список змін
|
|
392
360
|
dialog.confirm.no = Ні
|
|
393
361
|
dialog.confirm.title = Підтвердження
|
|
@@ -468,6 +436,30 @@ dialog.profile.status.removed = Профіль видалено зі списк
|
|
|
468
436
|
dialog.profile.status.updated = Профіль оновлено.
|
|
469
437
|
dialog.profile.tip = Створюючи нові профілі, ви можете використовувати окремі налаштування, різні історії контекстів та дані користувачів, а також швидко перемикатися між ними.
|
|
470
438
|
dialog.profile.workdir.label = Робоча директорія (директорія для конфігураційних файлів та даних користувача)
|
|
439
|
+
dialog.remote_store.alert.assign = Будь ласка, спочатку призначте векторну базу Асистенту.
|
|
440
|
+
dialog.remote_store.alert.select = Будь ласка, спочатку виберіть векторну базу.
|
|
441
|
+
dialog.remote_store.btn.close = Скасувати
|
|
442
|
+
dialog.remote_store.btn.new = Створити
|
|
443
|
+
dialog.remote_store.btn.refresh_status = Оновити статус
|
|
444
|
+
dialog.remote_store.btn.save = Зберегти
|
|
445
|
+
dialog.remote_store.btn.upload.dir = + Каталог
|
|
446
|
+
dialog.remote_store.btn.upload.files = + Файли
|
|
447
|
+
dialog.remote_store.delete.confirm = Ви впевнені, що хочете видалити Векторну Базу OpenAI?
|
|
448
|
+
dialog.remote_store.menu.all = Всі бази...
|
|
449
|
+
dialog.remote_store.menu.all.clear_files = Очистити файли (всі, лише локально)
|
|
450
|
+
dialog.remote_store.menu.all.clear_store = Очистити векторні бази (всі, лише локально)
|
|
451
|
+
dialog.remote_store.menu.all.import_all = Імпортувати все (всі, бази + файли)
|
|
452
|
+
dialog.remote_store.menu.all.import_files = Імпортувати лише файли (всі)
|
|
453
|
+
dialog.remote_store.menu.all.refresh_store = Оновити всі статуси
|
|
454
|
+
dialog.remote_store.menu.all.truncate_files = Очистити файли повністю (всі, локально + віддалено)
|
|
455
|
+
dialog.remote_store.menu.all.truncate_store = Очистити векторні бази повністю (всі, локально + віддалено)
|
|
456
|
+
dialog.remote_store.menu.current = Поточна база...
|
|
457
|
+
dialog.remote_store.menu.current.clear_files = Очистити файли (лише локально)
|
|
458
|
+
dialog.remote_store.menu.current.delete = Видалити базу (+ файли, локально + віддалено)
|
|
459
|
+
dialog.remote_store.menu.current.import_files = Імпортувати файли
|
|
460
|
+
dialog.remote_store.menu.current.refresh_store = Оновити статус
|
|
461
|
+
dialog.remote_store.menu.current.truncate_files = Очистити файли повністю (локально + віддалено)
|
|
462
|
+
dialog.remote_store.openai = Векторні Бази OpenAI
|
|
471
463
|
dialog.rename.dismiss = Скасувати
|
|
472
464
|
dialog.rename.title = Змінити назву
|
|
473
465
|
dialog.rename.update = Оновити назву
|
|
@@ -529,7 +521,7 @@ dictionary.config.llama.idx.embeddings.args.value = Значення парам
|
|
|
529
521
|
dictionary.config.llama.idx.embeddings.env.name = Ім'я ENV (для встановлення з os.environ)
|
|
530
522
|
dictionary.config.llama.idx.embeddings.env.value = Значення ENV, використовуйте {config_key} як покажчик місця, щоб використовувати значення з конфігурації програми.
|
|
531
523
|
dictionary.config.llama.idx.list.id = ID (назва каталогу для індексу)
|
|
532
|
-
dictionary.config.llama.idx.list.model_embed = Модель для використання в вбудовуванні (індексування), за замовчуванням:
|
|
524
|
+
dictionary.config.llama.idx.list.model_embed = Модель для використання в вбудовуванні (індексування), за замовчуванням: %MODEL_DEFAULT_MINI%
|
|
533
525
|
dictionary.config.llama.idx.list.model_query = Модель для запитів
|
|
534
526
|
dictionary.config.llama.idx.list.name = Назва
|
|
535
527
|
dictionary.config.llama.idx.storage.args.name = Назва параметра ключового слова
|
|
@@ -1142,6 +1134,14 @@ preset.use = Використовувати
|
|
|
1142
1134
|
preset.user_name = Ім'я користувача
|
|
1143
1135
|
preset.vision = Оптика
|
|
1144
1136
|
profile.current.suffix = (поточний)
|
|
1137
|
+
remote_store.expire_days = Дні до закінчення
|
|
1138
|
+
remote_store.expire_days.desc = 0 = Ніколи
|
|
1139
|
+
remote_store.files.suffix = Файли
|
|
1140
|
+
remote_store.id = ID
|
|
1141
|
+
remote_store.name = Назва
|
|
1142
|
+
remote_store.openai.hide_threads = Приховати векторні сховища тем
|
|
1143
|
+
remote_store.status = Статус
|
|
1144
|
+
remote_store.thread_only = (лише поточний потік)
|
|
1145
1145
|
reset.description = Опис
|
|
1146
1146
|
screenshot.capture.name.prefix = Скріншот з
|
|
1147
1147
|
settings.access.audio.event.speech = Використовувати синтез мовлення для
|
|
@@ -180,14 +180,6 @@ assistant.run.completed = 運行:已完成
|
|
|
180
180
|
assistant.run.failed = 運行:失敗了
|
|
181
181
|
assistant.run.func.call = 運行:函數調用...
|
|
182
182
|
assistant.run.listening = 運行:進行中...
|
|
183
|
-
assistant.store.expire_days = 过期天数
|
|
184
|
-
assistant.store.expire_days.desc = 0 = 永不
|
|
185
|
-
assistant.store.files.suffix = 文件
|
|
186
|
-
assistant.store.hide_threads = 隐藏线程向量存储
|
|
187
|
-
assistant.store.id = ID
|
|
188
|
-
assistant.store.name = 名称
|
|
189
|
-
assistant.store.status = 状态
|
|
190
|
-
assistant.store.thread_only = (仅当前线程)
|
|
191
183
|
assistant.tool.code_interpreter = 代碼解釋器
|
|
192
184
|
assistant.tool.file_search = 文件聊天
|
|
193
185
|
assistant.tool.function = 工具:函數
|
|
@@ -284,17 +276,9 @@ common.down = 下移
|
|
|
284
276
|
common.up = 上移
|
|
285
277
|
confirm.assistant.delete = 删除助手?
|
|
286
278
|
confirm.assistant.files.clear = 清除文件(仅本地)?
|
|
287
|
-
confirm.assistant.files.truncate = 确定要从所有存储中移除所有文件吗?
|
|
288
|
-
confirm.assistant.files.truncate.store = 确定要从所选存储中移除所有文件吗?
|
|
289
279
|
confirm.assistant.functions.clear = 您确定要清除函数列表吗?
|
|
290
280
|
confirm.assistant.functions.import = 从活动插件导入函数?\nINFO: 列表中的所有具有相同名称的函数将被替换!
|
|
291
281
|
confirm.assistant.import = 从 API 导入所有助手?
|
|
292
|
-
confirm.assistant.import_files = 从 API 导入所有文件?
|
|
293
|
-
confirm.assistant.import_files.store = 从 API 导入当前存储的文件?
|
|
294
|
-
confirm.assistant.store.clear = 清空矢量存储(仅本地)?
|
|
295
|
-
confirm.assistant.store.import = 从 API 导入所有矢量存储?
|
|
296
|
-
confirm.assistant.store.refresh = 刷新所有存储?
|
|
297
|
-
confirm.assistant.store.truncate = 删除 API 中的所有矢量存储?
|
|
298
282
|
confirm.ctx.delete = 删除组?
|
|
299
283
|
confirm.ctx.delete.all = 删除组及所有项目?
|
|
300
284
|
confirm.img.delete = 從磁盤刪除文件?
|
|
@@ -306,6 +290,14 @@ confirm.preset.restore = 恢復此模式的默認預設?
|
|
|
306
290
|
confirm.profile.delete = 您确定要删除个人资料吗? 仅将从列表中移除。
|
|
307
291
|
confirm.profile.delete_all = 您确定要删除个人资料及其工作目录中的所有配置文件和用户数据文件吗?
|
|
308
292
|
confirm.profile.reset = 您确定要将配置文件恢复为默认设置吗?警告:所有配置文件和上下文数据库将被删除!数据目录将被保留 - 要删除它,必须手动操作或使用删除选项。
|
|
293
|
+
confirm.remote_store.clear = 清空矢量存储(仅本地)?
|
|
294
|
+
confirm.remote_store.import = 从 API 导入所有矢量存储?
|
|
295
|
+
confirm.remote_store.import_files = 从 API 导入所有文件?
|
|
296
|
+
confirm.remote_store.import_files.store = 从 API 导入当前存储的文件?
|
|
297
|
+
confirm.remote_store.openai.files.truncate = 确定要从所有存储中移除所有文件吗?
|
|
298
|
+
confirm.remote_store.openai.files.truncate.store = 确定要从所选存储中移除所有文件吗?
|
|
299
|
+
confirm.remote_store.refresh = 刷新所有存储?
|
|
300
|
+
confirm.remote_store.truncate = 删除 API 中的所有矢量存储?
|
|
309
301
|
context.btn.clear = 清除記憶體
|
|
310
302
|
context.items = 項目
|
|
311
303
|
context.label = 上下文
|
|
@@ -364,30 +356,6 @@ dialog.assistant.btn.current = 使用當前的
|
|
|
364
356
|
dialog.assistant.btn.import_func = 导入函数
|
|
365
357
|
dialog.assistant.btn.save = 保存
|
|
366
358
|
dialog.assistant.btn.store = 向量存储库
|
|
367
|
-
dialog.assistant.store = OpenAI 向量数据库
|
|
368
|
-
dialog.assistant.store.alert.assign = 请先为助手分配矢量存储。
|
|
369
|
-
dialog.assistant.store.alert.select = 请先选择矢量存储。
|
|
370
|
-
dialog.assistant.store.btn.close = 取消
|
|
371
|
-
dialog.assistant.store.btn.new = 创建
|
|
372
|
-
dialog.assistant.store.btn.refresh_status = 刷新状态
|
|
373
|
-
dialog.assistant.store.btn.save = 保存
|
|
374
|
-
dialog.assistant.store.btn.upload.dir = + 目录
|
|
375
|
-
dialog.assistant.store.btn.upload.files = + 文件
|
|
376
|
-
dialog.assistant.store.delete.confirm = 您确定要删除 OpenAI 向量数据库吗?
|
|
377
|
-
dialog.assistant.store.menu.all = 所有存储...
|
|
378
|
-
dialog.assistant.store.menu.all.clear_files = 清除文件(所有,仅本地)
|
|
379
|
-
dialog.assistant.store.menu.all.clear_store = 清除矢量存储(所有,仅本地)
|
|
380
|
-
dialog.assistant.store.menu.all.import_all = 导入所有内容(所有存储+文件)
|
|
381
|
-
dialog.assistant.store.menu.all.import_files = 只导入文件(全部)
|
|
382
|
-
dialog.assistant.store.menu.all.refresh_store = 刷新所有状态
|
|
383
|
-
dialog.assistant.store.menu.all.truncate_files = 清空文件(所有,本地+远程)
|
|
384
|
-
dialog.assistant.store.menu.all.truncate_store = 清空矢量存储(所有,本地+远程)
|
|
385
|
-
dialog.assistant.store.menu.current = 当前存储...
|
|
386
|
-
dialog.assistant.store.menu.current.clear_files = 清除文件(仅本地)
|
|
387
|
-
dialog.assistant.store.menu.current.delete = 删除存储(+文件,本地+远程)
|
|
388
|
-
dialog.assistant.store.menu.current.import_files = 导入文件
|
|
389
|
-
dialog.assistant.store.menu.current.refresh_store = 刷新状态
|
|
390
|
-
dialog.assistant.store.menu.current.truncate_files = 清空文件(本地+远程)
|
|
391
359
|
dialog.changelog.title = 更新日誌
|
|
392
360
|
dialog.confirm.no = 否
|
|
393
361
|
dialog.confirm.title = 確認
|
|
@@ -468,6 +436,30 @@ dialog.profile.status.removed = 个人资料已从列表中移除
|
|
|
468
436
|
dialog.profile.status.updated = 个人资料已更新。
|
|
469
437
|
dialog.profile.tip = 通过创建新的个人资料,您可以使用独立的设置、不同的上下文历史记录和用户数据,并且可以快速在它们之间切换。
|
|
470
438
|
dialog.profile.workdir.label = 工作目录(配置文件和用户数据的目录)
|
|
439
|
+
dialog.remote_store.alert.assign = 请先为助手分配矢量存储。
|
|
440
|
+
dialog.remote_store.alert.select = 请先选择矢量存储。
|
|
441
|
+
dialog.remote_store.btn.close = 取消
|
|
442
|
+
dialog.remote_store.btn.new = 创建
|
|
443
|
+
dialog.remote_store.btn.refresh_status = 刷新状态
|
|
444
|
+
dialog.remote_store.btn.save = 保存
|
|
445
|
+
dialog.remote_store.btn.upload.dir = + 目录
|
|
446
|
+
dialog.remote_store.btn.upload.files = + 文件
|
|
447
|
+
dialog.remote_store.delete.confirm = 您确定要删除 OpenAI 向量数据库吗?
|
|
448
|
+
dialog.remote_store.menu.all = 所有存储...
|
|
449
|
+
dialog.remote_store.menu.all.clear_files = 清除文件(所有,仅本地)
|
|
450
|
+
dialog.remote_store.menu.all.clear_store = 清除矢量存储(所有,仅本地)
|
|
451
|
+
dialog.remote_store.menu.all.import_all = 导入所有内容(所有存储+文件)
|
|
452
|
+
dialog.remote_store.menu.all.import_files = 只导入文件(全部)
|
|
453
|
+
dialog.remote_store.menu.all.refresh_store = 刷新所有状态
|
|
454
|
+
dialog.remote_store.menu.all.truncate_files = 清空文件(所有,本地+远程)
|
|
455
|
+
dialog.remote_store.menu.all.truncate_store = 清空矢量存储(所有,本地+远程)
|
|
456
|
+
dialog.remote_store.menu.current = 当前存储...
|
|
457
|
+
dialog.remote_store.menu.current.clear_files = 清除文件(仅本地)
|
|
458
|
+
dialog.remote_store.menu.current.delete = 删除存储(+文件,本地+远程)
|
|
459
|
+
dialog.remote_store.menu.current.import_files = 导入文件
|
|
460
|
+
dialog.remote_store.menu.current.refresh_store = 刷新状态
|
|
461
|
+
dialog.remote_store.menu.current.truncate_files = 清空文件(本地+远程)
|
|
462
|
+
dialog.remote_store.openai = OpenAI 向量数据库
|
|
471
463
|
dialog.rename.dismiss = 取消
|
|
472
464
|
dialog.rename.title = 更改名稱
|
|
473
465
|
dialog.rename.update = 更新名稱
|
|
@@ -529,7 +521,7 @@ dictionary.config.llama.idx.embeddings.args.value = 关键字参数的值
|
|
|
529
521
|
dictionary.config.llama.idx.embeddings.env.name = ENV 名 (通过 os.environ 设置)
|
|
530
522
|
dictionary.config.llama.idx.embeddings.env.value = ENV 值,使用 {config_key} 作为占位符,以使用应用程序配置中的值。
|
|
531
523
|
dictionary.config.llama.idx.list.id = ID(索引目錄名稱)
|
|
532
|
-
dictionary.config.llama.idx.list.model_embed =
|
|
524
|
+
dictionary.config.llama.idx.list.model_embed = 用於嵌入(索引)的模型,默認:%MODEL_DEFAULT_MINI%
|
|
533
525
|
dictionary.config.llama.idx.list.model_query = 查詢模型
|
|
534
526
|
dictionary.config.llama.idx.list.name = 名稱
|
|
535
527
|
dictionary.config.llama.idx.storage.args.name = 額外參數名稱
|
|
@@ -1142,6 +1134,14 @@ preset.use = 使用
|
|
|
1142
1134
|
preset.user_name = 用戶名稱
|
|
1143
1135
|
preset.vision = 視覺
|
|
1144
1136
|
profile.current.suffix = (当前)
|
|
1137
|
+
remote_store.expire_days = 过期天数
|
|
1138
|
+
remote_store.expire_days.desc = 0 = 永不
|
|
1139
|
+
remote_store.files.suffix = 文件
|
|
1140
|
+
remote_store.id = ID
|
|
1141
|
+
remote_store.name = 名称
|
|
1142
|
+
remote_store.openai.hide_threads = 隐藏线程向量存储
|
|
1143
|
+
remote_store.status = 状态
|
|
1144
|
+
remote_store.thread_only = (仅当前线程)
|
|
1145
1145
|
reset.description = 描述
|
|
1146
1146
|
screenshot.capture.name.prefix = 截圖來自
|
|
1147
1147
|
settings.access.audio.event.speech = 使用语音合成描述屏幕上的事件。
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = Wenn aktiviert, erlaubt es das Aktualisieren e
|
|
|
17
17
|
cmd.update_day_note.label = Aktivieren: Tagesnotiz aktualisieren
|
|
18
18
|
ctx_items_limit.description = Maximale Anzahl von Einträgen in der Kontexthistorie, die in einer Anfrage abgerufen werden kann. 0 = kein Limit.
|
|
19
19
|
ctx_items_limit.label = Max. abzurufende Kontexte
|
|
20
|
-
model_summarize.description = Modell für die Zusammenfassung, Standard:
|
|
20
|
+
model_summarize.description = Modell für die Zusammenfassung, Standard: %MODEL_DEFAULT_MINI%.
|
|
21
21
|
model_summarize.label = Modell für die Zusammenfassung des Kontexts
|
|
22
22
|
plugin.description = Bietet Echtzeitzugriff auf die Kontexthistoriendatenbank.
|
|
23
23
|
plugin.name = Kontexthistorie (Kalender, Inline)
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = If enabled, it allows updating a day note for
|
|
|
17
17
|
cmd.update_day_note.label = Enable: update day note
|
|
18
18
|
ctx_items_limit.description = Maximum items in context history list to retrieve in one query. 0 = no limit.
|
|
19
19
|
ctx_items_limit.label = Max contexts to retrieve
|
|
20
|
-
model_summarize.description = Model used for summarizing, default:
|
|
20
|
+
model_summarize.description = Model used for summarizing, default: %MODEL_DEFAULT_MINI%.
|
|
21
21
|
model_summarize.label = Model used for summarizing context
|
|
22
22
|
plugin.description = Provides real-time access to the context history database.
|
|
23
23
|
plugin.name = Context history (calendar, inline)
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = Si está habilitado, permite actualizar una no
|
|
|
17
17
|
cmd.update_day_note.label = Habilitar: actualizar nota diaria
|
|
18
18
|
ctx_items_limit.description = Número máximo de elementos en el historial de contextos para recuperar en una consulta. 0 = sin límite.
|
|
19
19
|
ctx_items_limit.label = Máx. contextos para recuperar
|
|
20
|
-
model_summarize.description = Modelo utilizado para resumir, por defecto:
|
|
20
|
+
model_summarize.description = Modelo utilizado para resumir, por defecto: %MODEL_DEFAULT_MINI%.
|
|
21
21
|
model_summarize.label = Modelo utilizado para resumir contexto
|
|
22
22
|
plugin.description = Proporciona acceso en tiempo real a la base de datos del historial de contexto.
|
|
23
23
|
plugin.name = Historial de contexto (calendario, integrado)
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = Si activé, cela permet de mettre à jour une
|
|
|
17
17
|
cmd.update_day_note.label = Activer : mettre à jour une note journalière
|
|
18
18
|
ctx_items_limit.description = Nombre maximum d'éléments dans l'historique des contextes à récupérer en une seule requête. 0 = pas de limite.
|
|
19
19
|
ctx_items_limit.label = Max de contextes à récupérer
|
|
20
|
-
model_summarize.description = Modèle utilisé pour le résumé, par défaut :
|
|
20
|
+
model_summarize.description = Modèle utilisé pour le résumé, par défaut : %MODEL_DEFAULT_MINI%.
|
|
21
21
|
model_summarize.label = Modèle utilisé pour résumer le contexte
|
|
22
22
|
plugin.description = Fournit un accès en temps réel à la base de données de l'historique des contextes.
|
|
23
23
|
plugin.name = Historique de contexte (calendrier, intégré)
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = Se abilitato, consente di aggiornare una nota
|
|
|
17
17
|
cmd.update_day_note.label = Abilita: aggiornamento nota giornaliera
|
|
18
18
|
ctx_items_limit.description = Numero massimo di elementi nello storico dei contesti da recuperare in una singola richiesta. 0 = nessun limite.
|
|
19
19
|
ctx_items_limit.label = Max contesti da recuperare
|
|
20
|
-
model_summarize.description = Modello utilizzato per la sintesi, predefinito:
|
|
20
|
+
model_summarize.description = Modello utilizzato per la sintesi, predefinito: %MODEL_DEFAULT_MINI%.
|
|
21
21
|
model_summarize.label = Modello utilizzato per la sintesi del contesto
|
|
22
22
|
plugin.description = Fornisce accesso in tempo reale al database della cronologia dei contesti.
|
|
23
23
|
plugin.name = Cronologia contesti (calendario, integrato)
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = Jeśli włączone, pozwala na aktualizację no
|
|
|
17
17
|
cmd.update_day_note.label = Włącz: aktualizacja notatki dnia
|
|
18
18
|
ctx_items_limit.description = Maksymalna liczba pozycji w historii kontekstu do pobrania w jednym zapytaniu. 0 = bez limitu.
|
|
19
19
|
ctx_items_limit.label = Maksymalna liczba kontekstów do pobrania
|
|
20
|
-
model_summarize.description = Model używany do streszczania, domyślny:
|
|
20
|
+
model_summarize.description = Model używany do streszczania, domyślny: %MODEL_DEFAULT_MINI%.
|
|
21
21
|
model_summarize.label = Model używany do streszczania kontekstu
|
|
22
22
|
plugin.description = Zapewnia dostęp do bazy danych historii kontekstu w czasie rzeczywistym.
|
|
23
23
|
plugin.name = Historia kontekstu (kalendarz, inline)
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = Якщо ввімкнено, дозволяє
|
|
|
17
17
|
cmd.update_day_note.label = Увімкнути: оновлення денної нотатки
|
|
18
18
|
ctx_items_limit.description = Максимальна кількість елементів історії контекстів для отримання в одному запиті. 0 = без обмеження.
|
|
19
19
|
ctx_items_limit.label = Максимум контекстів для отримання
|
|
20
|
-
model_summarize.description = Модель, яка використовується для узагальнення, за замовчуванням:
|
|
20
|
+
model_summarize.description = Модель, яка використовується для узагальнення, за замовчуванням: %MODEL_DEFAULT_MINI%.
|
|
21
21
|
model_summarize.label = Модель для узагальнення контексту
|
|
22
22
|
plugin.description = Забезпечує доступ у реальному часі до бази даних історії контекстів.
|
|
23
23
|
plugin.name = Історія контекстів (календар, інлайн)
|
|
@@ -17,7 +17,7 @@ cmd.update_day_note.description = 如果启用,它允许更新特定日期的
|
|
|
17
17
|
cmd.update_day_note.label = 启用:更新日记
|
|
18
18
|
ctx_items_limit.description = 一次查询中要检索的上下文历史列表中的最大项目数。0 = 无限制。
|
|
19
19
|
ctx_items_limit.label = 最大检索上下文数
|
|
20
|
-
model_summarize.description =
|
|
20
|
+
model_summarize.description = 用于摘要的模型,默认值:%MODEL_DEFAULT_MINI%。
|
|
21
21
|
model_summarize.label = 用于摘要上下文的模型
|
|
22
22
|
plugin.description = 提供实时访问上下文历史数据库。
|
|
23
23
|
plugin.name = 上下文历史(日历,内联)
|
|
@@ -37,3 +37,17 @@ plugin.description = Provides the ability to control the mouse and keyboard by t
|
|
|
37
37
|
plugin.name = Mouse And Keyboard
|
|
38
38
|
prompt.description = Prompt used to instruct how to control the mouse and keyboard.
|
|
39
39
|
prompt.label = Prompt
|
|
40
|
+
sandbox_args.description = Additional Playwright browser arguments (comma-separated)
|
|
41
|
+
sandbox_args.label = Browser args
|
|
42
|
+
sandbox_engine.description = Playwright browser engine to use (chromium, firefox, webkit) - must be installed
|
|
43
|
+
sandbox_engine.label = Engine
|
|
44
|
+
sandbox_headless.description = Run Playwright browser in headless mode (default: False)
|
|
45
|
+
sandbox_headless.label = Headles mode
|
|
46
|
+
sandbox_home.description = Playwright browser home URL
|
|
47
|
+
sandbox_home.label = Home URL
|
|
48
|
+
sandbox_path.description = Path to Playwright browsers installation - leave empty to use default
|
|
49
|
+
sandbox_path.label = Browsers directory
|
|
50
|
+
sandbox_viewport_h.description = Playwright viewport height in pixels
|
|
51
|
+
sandbox_viewport_h.label = Viewport height
|
|
52
|
+
sandbox_viewport_w.description = Playwright viewport width in pixels
|
|
53
|
+
sandbox_viewport_w.label = Viewport width
|
|
@@ -54,7 +54,7 @@ raw.description = Ungefilterte Inhalte aus der Websuche zurückgeben, anstatt zu
|
|
|
54
54
|
raw.label = Verwenden Sie Rohinhalte (ohne Zusammenfassung)
|
|
55
55
|
summary_max_tokens.description = Maximale Tokenanzahl in der Ausgabe beim Generieren einer Zusammenfassung.
|
|
56
56
|
summary_max_tokens.label = Max. Zusammenfassungs-Tokens
|
|
57
|
-
summary_model.description = Modell, das für die Zusammenfassung von Webseiten verwendet wird, standardmäßig:
|
|
57
|
+
summary_model.description = Modell, das für die Zusammenfassung von Webseiten verwendet wird, standardmäßig: %MODEL_DEFAULT_MINI%.
|
|
58
58
|
summary_model.label = Modell für die Webseitenzusammenfassung
|
|
59
59
|
timeout.description = Verbindungszeitlimit (Sekunden)
|
|
60
60
|
timeout.label = Timeout
|
|
@@ -72,7 +72,7 @@ raw.description = Return raw content from web search instead of summarized conte
|
|
|
72
72
|
raw.label = Use raw content (without summarization)
|
|
73
73
|
summary_max_tokens.description = Maximum tokens in output when generating a summary.
|
|
74
74
|
summary_max_tokens.label = Max summary tokens
|
|
75
|
-
summary_model.description = Model used for summarizing web pages, default:
|
|
75
|
+
summary_model.description = Model used for summarizing web pages, default: %MODEL_DEFAULT_MINI%.
|
|
76
76
|
summary_model.label = Model used for web page summarization
|
|
77
77
|
timeout.description = Connection timeout (seconds)
|
|
78
78
|
timeout.label = Timeout
|
|
@@ -54,7 +54,7 @@ raw.description = Devolver contenido bruto de la búsqueda en la web en lugar de
|
|
|
54
54
|
raw.label = Usar contenido bruto (sin resumir)
|
|
55
55
|
summary_max_tokens.description = Número máximo de tokens en la salida al generar un resumen.
|
|
56
56
|
summary_max_tokens.label = Máx tokens de resumen
|
|
57
|
-
summary_model.description = Modelo utilizado para resumir páginas web, por defecto:
|
|
57
|
+
summary_model.description = Modelo utilizado para resumir páginas web, por defecto: %MODEL_DEFAULT_MINI%.
|
|
58
58
|
summary_model.label = Modelo utilizado para la resumen de páginas web
|
|
59
59
|
timeout.description = Tiempo de conexión (segundos)
|
|
60
60
|
timeout.label = Tiempo de espera
|
|
@@ -54,7 +54,7 @@ raw.description = Retourner le contenu brut de la recherche sur le web au lieu d
|
|
|
54
54
|
raw.label = Utiliser le contenu brut (sans résumé)
|
|
55
55
|
summary_max_tokens.description = Nombre maximal de tokens dans la sortie lors de la génération d'un résumé.
|
|
56
56
|
summary_max_tokens.label = Max tokens de résumé
|
|
57
|
-
summary_model.description = Modèle utilisé pour résumer les pages web, par défaut :
|
|
57
|
+
summary_model.description = Modèle utilisé pour résumer les pages web, par défaut : %MODEL_DEFAULT_MINI%.
|
|
58
58
|
summary_model.label = Modèle utilisé pour la résumé des pages web
|
|
59
59
|
timeout.description = Délai de connexion (secondes)
|
|
60
60
|
timeout.label = Délai de connexion
|
|
@@ -54,7 +54,7 @@ raw.description = Restituisci contenuto grezzo dalla ricerca sul web invece di c
|
|
|
54
54
|
raw.label = Usa contenuto grezzo (senza riassunto)
|
|
55
55
|
summary_max_tokens.description = Numero massimo di token nell'output durante la generazione di un riassunto.
|
|
56
56
|
summary_max_tokens.label = Max token di riassunto
|
|
57
|
-
summary_model.description = Modello utilizzato per riassumere le pagine web, predefinito:
|
|
57
|
+
summary_model.description = Modello utilizzato per riassumere le pagine web, predefinito: %MODEL_DEFAULT_MINI%.
|
|
58
58
|
summary_model.label = Modello utilizzato per il riassunto delle pagine web
|
|
59
59
|
timeout.description = Timeout di connessione (secondi)
|
|
60
60
|
timeout.label = Timeout
|
|
@@ -54,7 +54,7 @@ raw.description = Zwróć surową zawartość z wyszukiwania w sieci zamiast pod
|
|
|
54
54
|
raw.label = Użyj surowej zawartości (bez podsumowania)
|
|
55
55
|
summary_max_tokens.description = Maksymalna liczba tokenów w wyniku przy generowaniu podsumowania.
|
|
56
56
|
summary_max_tokens.label = Maksymalna liczba tokenów podsumowania
|
|
57
|
-
summary_model.description = Model używany do podsumowywania stron internetowych, domyślnie:
|
|
57
|
+
summary_model.description = Model używany do podsumowywania stron internetowych, domyślnie: %MODEL_DEFAULT_MINI%.
|
|
58
58
|
summary_model.label = Model do podsumowywania stron internetowych
|
|
59
59
|
timeout.description = Limit czasu połączenia (sekundy)
|
|
60
60
|
timeout.label = Timeout
|
|
@@ -54,7 +54,7 @@ raw.description = Повернути сирий контент з пошуку
|
|
|
54
54
|
raw.label = Використовувати сирий контент (без узагальнення)
|
|
55
55
|
summary_max_tokens.description = Максимальна кількість токенів у виводі при створенні підсумку.
|
|
56
56
|
summary_max_tokens.label = Макс. токенів підсумування
|
|
57
|
-
summary_model.description = Модель, яка використовується для підсумування вебсторінок, за замовчуванням:
|
|
57
|
+
summary_model.description = Модель, яка використовується для підсумування вебсторінок, за замовчуванням: %MODEL_DEFAULT_MINI%.
|
|
58
58
|
summary_model.label = Модель для підсумування вебсторінок
|
|
59
59
|
timeout.description = Таймаут з'єднання (в секундах).
|
|
60
60
|
timeout.label = Таймаут
|
|
@@ -54,7 +54,7 @@ raw.description = 返回来自网络搜索的原始内容,而不是总结的
|
|
|
54
54
|
raw.label = 使用原始内容(不进行总结)
|
|
55
55
|
summary_max_tokens.description = 在生成总结时输出的最大代币数。
|
|
56
56
|
summary_max_tokens.label = 总结的最大代币数
|
|
57
|
-
summary_model.description =
|
|
57
|
+
summary_model.description = 用于总结网页的模型,默认为:%MODEL_DEFAULT_MINI%。
|
|
58
58
|
summary_model.label = 用于网页总结的模型
|
|
59
59
|
timeout.description = 连接超时时间(秒)。
|
|
60
60
|
timeout.label = 超时
|
|
@@ -7,9 +7,9 @@ idx.description = Indizes, die bei der Abfrage nach zusätzlichem Kontext verwen
|
|
|
7
7
|
idx.label = Zu verwendende Indexe
|
|
8
8
|
max_question_chars.description = Maximale Zeichenanzahl in einer Frage beim Abfragen von LlamaIndex, 0 = keine Begrenzung.
|
|
9
9
|
max_question_chars.label = Maximale Zeichenanzahl in Frage
|
|
10
|
-
model_prepare_question.description = Modell zur Vorbereitung einer Frage, bevor LlamaIndex gefragt wird, Standard:
|
|
10
|
+
model_prepare_question.description = Modell zur Vorbereitung einer Frage, bevor LlamaIndex gefragt wird, Standard: %MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = Modell zur Fragenvorbereitung
|
|
12
|
-
model_query.description = Modell für das Abfragen von LlamaIndex, Standard:
|
|
12
|
+
model_query.description = Modell für das Abfragen von LlamaIndex, Standard: %MODEL_DEFAULT_MINI%.
|
|
13
13
|
model_query.label = Modell
|
|
14
14
|
plugin.description = Integriert LlamaIndex (Chat mit Dateien) Speicherung in jedem Chat und stellt zusätzliches Wissen in den Kontext (aus Dateien und aus der Kontexthistorie in der Datenbank)
|
|
15
15
|
plugin.name = Chat mit Dateien (LlamaIndex, inline)
|
|
@@ -7,9 +7,9 @@ idx.description = Indexes to use when querying for additional context. You can u
|
|
|
7
7
|
idx.label = Indexes to use
|
|
8
8
|
max_question_chars.description = Maximum characters in a question when querying LlamaIndex, 0 = no limit.
|
|
9
9
|
max_question_chars.label = Maximum characters in question
|
|
10
|
-
model_prepare_question.description = Model used to prepare a question before asking LlamaIndex, default:
|
|
10
|
+
model_prepare_question.description = Model used to prepare a question before asking LlamaIndex, default: %MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = Model for question preparation
|
|
12
|
-
model_query.description = Model used for querying LlamaIndex, default:
|
|
12
|
+
model_query.description = Model used for querying LlamaIndex, default: %MODEL_DEFAULT_MINI%.
|
|
13
13
|
model_query.label = Model
|
|
14
14
|
plugin.description = Integrates LlamaIndex (Chat with files) storage in any chat and provides additional knowledge into context (from files and from context history in the database)
|
|
15
15
|
plugin.name = Chat with files (LlamaIndex, inline)
|
|
@@ -7,9 +7,9 @@ idx.description = Índices a utilizar al consultar contexto adicional. Puedes us
|
|
|
7
7
|
idx.label = Índices a utilizar
|
|
8
8
|
max_question_chars.description = Máximo de caracteres en una pregunta al consultar LlamaIndex, 0 = sin límite.
|
|
9
9
|
max_question_chars.label = Máximo de caracteres en pregunta
|
|
10
|
-
model_prepare_question.description = Modelo utilizado para preparar una pregunta antes de consultar LlamaIndex, por defecto:
|
|
10
|
+
model_prepare_question.description = Modelo utilizado para preparar una pregunta antes de consultar LlamaIndex, por defecto: %MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = Modelo para la preparación de la pregunta
|
|
12
|
-
model_query.description = Modelo utilizado para consultar LlamaIndex, por defecto:
|
|
12
|
+
model_query.description = Modelo utilizado para consultar LlamaIndex, por defecto: %MODEL_DEFAULT_MINI%.
|
|
13
13
|
model_query.label = Modelo
|
|
14
14
|
plugin.description = Integra el almacenamiento de LlamaIndex (Chat con archivos) en cualquier chat y proporciona conocimiento adicional al contexto (de archivos y del historial de contexto en la base de datos)
|
|
15
15
|
plugin.name = Chat con archivos (LlamaIndex, en línea)
|
|
@@ -7,9 +7,9 @@ idx.description = Index à utiliser lors de la recherche de contexte supplément
|
|
|
7
7
|
idx.label = Index à utiliser
|
|
8
8
|
max_question_chars.description = Nombre maximum de caractères dans une question lors de l'interrogation de LlamaIndex, 0 = pas de limite.
|
|
9
9
|
max_question_chars.label = Nombre max de caractères dans une question
|
|
10
|
-
model_prepare_question.description = Modèle utilisé pour préparer une question avant de demander à LlamaIndex, par défaut :
|
|
10
|
+
model_prepare_question.description = Modèle utilisé pour préparer une question avant de demander à LlamaIndex, par défaut : %MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = Modèle pour la préparation des questions
|
|
12
|
-
model_query.description = Modèle utilisé pour interroger LlamaIndex, par défaut :
|
|
12
|
+
model_query.description = Modèle utilisé pour interroger LlamaIndex, par défaut : %MODEL_DEFAULT_MINI%.
|
|
13
13
|
model_query.label = Modèle
|
|
14
14
|
plugin.description = Intègre le stockage LlamaIndex (Chat avec fichiers) dans n'importe quel chat et fournit des connaissances supplémentaires dans le contexte (à partir de fichiers et de l'historique du contexte dans la base de données)
|
|
15
15
|
plugin.name = Chat avec fichiers (LlamaIndex, inline)
|
|
@@ -7,9 +7,9 @@ idx.description = Indici da utilizzare quando si interroga per ulteriore contest
|
|
|
7
7
|
idx.label = Indici da utilizzare
|
|
8
8
|
max_question_chars.description = Massimo numero di caratteri in una domanda quando si interroga LlamaIndex, 0 = nessun limite.
|
|
9
9
|
max_question_chars.label = Massimo di caratteri nella domanda
|
|
10
|
-
model_prepare_question.description = Modello usato per preparare una domanda prima di interrogare LlamaIndex, predefinito:
|
|
10
|
+
model_prepare_question.description = Modello usato per preparare una domanda prima di interrogare LlamaIndex, predefinito: %MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = Modello per la preparazione della domanda
|
|
12
|
-
model_query.description = Modello usato per interrogare LlamaIndex, predefinito:
|
|
12
|
+
model_query.description = Modello usato per interrogare LlamaIndex, predefinito: %MODEL_DEFAULT_MINI%.
|
|
13
13
|
model_query.label = Modello
|
|
14
14
|
plugin.description = Integra lo storage LlamaIndex (Chat con file) in qualsiasi chat e fornisce conoscenze aggiuntive nel contesto (da file e dalla cronologia del contesto nel database)
|
|
15
15
|
plugin.name = Chat con file (LlamaIndex, inline)
|
|
@@ -7,9 +7,9 @@ idx.description = Indeksy do użycia podczas wyszukiwania dodatkowego kontekstu.
|
|
|
7
7
|
idx.label = Używane indeksy
|
|
8
8
|
max_question_chars.description = Maksymalna liczba znaków w pytaniu podczas zapytania do LlamaIndex, 0 = bez limitu.
|
|
9
9
|
max_question_chars.label = Maksymalna liczba znaków w pytaniu
|
|
10
|
-
model_prepare_question.description = Model używany do przygotowania pytania przed zapytaniem LlamaIndex, domyślnie:
|
|
10
|
+
model_prepare_question.description = Model używany do przygotowania pytania przed zapytaniem LlamaIndex, domyślnie: %MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = Model do przygotowywania pytania
|
|
12
|
-
model_query.description = Model używany do zapytania LlamaIndex, domyślnie:
|
|
12
|
+
model_query.description = Model używany do zapytania LlamaIndex, domyślnie: %MODEL_DEFAULT_MINI%.
|
|
13
13
|
model_query.label = Model
|
|
14
14
|
plugin.description = Integruje przechowywanie LlamaIndex (Chat z plikami) w dowolnym czacie i dostarcza dodatkową wiedzę do kontekstu (z plików i z historii kontekstu w bazie danych)
|
|
15
15
|
plugin.name = Chat z plikami (LlamaIndex, inline)
|
|
@@ -7,9 +7,9 @@ idx.description = Індекси, які слід використовувати
|
|
|
7
7
|
idx.label = Індекси для використання
|
|
8
8
|
max_question_chars.description = Максимальна кількість символів у запитанні при зверненні до LlamaIndex, 0 = без обмеження.
|
|
9
9
|
max_question_chars.label = Максимум символів у запитанні
|
|
10
|
-
model_prepare_question.description = Модель, що використовується для підготовки запитань перед зверненням до LlamaIndex, за замовчуванням:
|
|
10
|
+
model_prepare_question.description = Модель, що використовується для підготовки запитань перед зверненням до LlamaIndex, за замовчуванням: %MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = Модель для підготовки запитань
|
|
12
|
-
model_query.description = Модель, що використовується для запиту у LlamaIndex, за замовчуванням:
|
|
12
|
+
model_query.description = Модель, що використовується для запиту у LlamaIndex, за замовчуванням: %MODEL_DEFAULT_MINI%.
|
|
13
13
|
model_query.label = Модель
|
|
14
14
|
plugin.description = Інтегрує зберігання даних LlamaIndex (Чат з файлами) в будь-який чат і надає додаткові знання для контексту (з файлів та з історії контексту в базі даних)
|
|
15
15
|
plugin.name = Чат з файлами (LlamaIndex, вбудований)
|
|
@@ -7,9 +7,9 @@ idx.description = 查询附加上下文时要使用的索引。您可以同时
|
|
|
7
7
|
idx.label = 要使用的索引
|
|
8
8
|
max_question_chars.description = 查询LlamaIndex时问题中的最大字符数,0 = 无限制。
|
|
9
9
|
max_question_chars.label = 问题中的最大字符数
|
|
10
|
-
model_prepare_question.description = 用于在询问LlamaIndex
|
|
10
|
+
model_prepare_question.description = 用于在询问LlamaIndex之前准备问题的模型,默认为:%MODEL_DEFAULT_MINI%
|
|
11
11
|
model_prepare_question.label = 准备问题的模型
|
|
12
|
-
model_query.description = 用于查询LlamaIndex
|
|
12
|
+
model_query.description = 用于查询LlamaIndex的模型,默认为:%MODEL_DEFAULT_MINI%。
|
|
13
13
|
model_query.label = 模型
|
|
14
14
|
plugin.description = 将LlamaIndex(文件聊天)存储集成到任何聊天中,并提供来自文件和数据库中上下文历史的额外上下文知识
|
|
15
15
|
plugin.name = 文件聊天(LlamaIndex,内联)
|