pygpt-net 2.7.4__py3-none-any.whl → 2.7.6__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 +15 -0
- pygpt_net/__init__.py +4 -4
- 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 +10 -25
- pygpt_net/controller/chat/handler/xai_stream.py +621 -52
- pygpt_net/controller/chat/image.py +2 -2
- pygpt_net/controller/debug/fixtures.py +3 -2
- pygpt_net/controller/dialogs/confirm.py +73 -101
- pygpt_net/controller/files/files.py +65 -4
- 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/filesystem/url.py +4 -1
- 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/core/render/web/body.py +3 -2
- pygpt_net/core/types/chunk.py +27 -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/js/app/template.js +1 -1
- pygpt_net/data/js/app.min.js +2 -2
- pygpt_net/data/locale/locale.de.ini +44 -41
- pygpt_net/data/locale/locale.en.ini +56 -43
- pygpt_net/data/locale/locale.es.ini +44 -41
- pygpt_net/data/locale/locale.fr.ini +44 -41
- pygpt_net/data/locale/locale.it.ini +44 -41
- pygpt_net/data/locale/locale.pl.ini +45 -42
- pygpt_net/data/locale/locale.uk.ini +44 -41
- pygpt_net/data/locale/locale.zh.ini +44 -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 -3
- pygpt_net/item/store.py +238 -0
- pygpt_net/js_rc.py +2449 -2447
- pygpt_net/migrations/Version20260102190000.py +35 -0
- pygpt_net/migrations/__init__.py +3 -1
- pygpt_net/plugin/cmd_mouse_control/config.py +471 -1
- pygpt_net/plugin/cmd_mouse_control/plugin.py +487 -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/anthropic/__init__.py +10 -8
- pygpt_net/provider/api/google/__init__.py +21 -58
- pygpt_net/provider/api/google/chat.py +545 -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/__init__.py +7 -3
- pygpt_net/provider/api/openai/computer.py +10 -1
- pygpt_net/provider/api/openai/responses.py +0 -0
- pygpt_net/provider/api/openai/store.py +6 -6
- pygpt_net/provider/api/openai/worker/importer.py +24 -24
- pygpt_net/provider/api/x_ai/__init__.py +10 -9
- pygpt_net/provider/api/x_ai/chat.py +272 -102
- 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/tools/image_viewer/ui/dialogs.py +298 -12
- pygpt_net/tools/text_editor/ui/widgets.py +5 -1
- pygpt_net/ui/base/config_dialog.py +3 -2
- pygpt_net/ui/base/context_menu.py +44 -1
- 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/layout/toolbox/indexes.py +22 -19
- pygpt_net/ui/layout/toolbox/model.py +28 -5
- 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/image/display.py +25 -8
- 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/ui/widget/tabs/output.py +9 -1
- pygpt_net/ui/widget/textarea/editor.py +14 -1
- pygpt_net/ui/widget/textarea/input.py +20 -7
- pygpt_net/ui/widget/textarea/notepad.py +24 -1
- pygpt_net/ui/widget/textarea/output.py +23 -1
- pygpt_net/ui/widget/textarea/web.py +16 -1
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.6.dist-info}/METADATA +41 -2
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.6.dist-info}/RECORD +158 -132
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.6.dist-info}/LICENSE +0 -0
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.6.dist-info}/WHEEL +0 -0
- {pygpt_net-2.7.4.dist-info → pygpt_net-2.7.6.dist-info}/entry_points.txt +0 -0
|
@@ -180,14 +180,6 @@ assistant.run.completed = Run: Zakończono sukcesem
|
|
|
180
180
|
assistant.run.failed = Run: Wystąpił błąd
|
|
181
181
|
assistant.run.func.call = Uruchom: wywołanie funkcji...
|
|
182
182
|
assistant.run.listening = Run: W trakcie...
|
|
183
|
-
assistant.store.expire_days = Dni ważności
|
|
184
|
-
assistant.store.expire_days.desc = 0 = Nigdy
|
|
185
|
-
assistant.store.files.suffix = Pliki
|
|
186
|
-
assistant.store.hide_threads = Ukryj bazy wątków
|
|
187
|
-
assistant.store.id = ID
|
|
188
|
-
assistant.store.name = Nazwa
|
|
189
|
-
assistant.store.status = Status
|
|
190
|
-
assistant.store.thread_only = (tylko bieżący wątek)
|
|
191
183
|
assistant.tool.code_interpreter = Interpreter kodu
|
|
192
184
|
assistant.tool.file_search = Czat z plikami
|
|
193
185
|
assistant.tool.function = Tool: function
|
|
@@ -284,17 +276,9 @@ common.down = Przesuń w dół
|
|
|
284
276
|
common.up = Przesuń w górę
|
|
285
277
|
confirm.assistant.delete = Na pewno usunąć asystenta?
|
|
286
278
|
confirm.assistant.files.clear = Wyczyścić pliki (tylko lokalnie)?
|
|
287
|
-
confirm.assistant.files.truncate = Czy na pewno usunąć wszystkie pliki ze wszystkich baz?
|
|
288
|
-
confirm.assistant.files.truncate.store = Czy na pewno usunąć wszystkie pliki z wybranej bazy?
|
|
289
279
|
confirm.assistant.functions.clear = Czy na pewno chcesz wyczyścić listę funkcji?
|
|
290
280
|
confirm.assistant.functions.import = Importować funkcje z AKTYWNYCH wtyczek?\nINFO: Wszystkie funkcje na liście o tych samych nazwach zostaną zastąpione!
|
|
291
281
|
confirm.assistant.import = Zaimportować wszystkich asystentów z API?
|
|
292
|
-
confirm.assistant.import_files = Zaimportować wszystkie pliki z API?
|
|
293
|
-
confirm.assistant.import_files.store = Zaimportować bieżące pliki bazy z API?
|
|
294
|
-
confirm.assistant.store.clear = Wyczyścić bazy wektorowe (tylko lokalnie)?
|
|
295
|
-
confirm.assistant.store.import = Zaimportować wszystkie bazy wektorowe z API?
|
|
296
|
-
confirm.assistant.store.refresh = Odświeżyć wszystkie bazy?
|
|
297
|
-
confirm.assistant.store.truncate = Usunąć wszystkie bazy wektorowe w API?
|
|
298
282
|
confirm.ctx.delete = Usunąć grupę?
|
|
299
283
|
confirm.ctx.delete.all = Usunąć grupę i wszystkie elementy?
|
|
300
284
|
confirm.img.delete = Usunąć obraz z dysku?
|
|
@@ -306,9 +290,20 @@ confirm.preset.restore = Przywrócić domyślny preset dla tego trybu?
|
|
|
306
290
|
confirm.profile.delete = Czy na pewno chcesz usunąć profil? Zostanie on usunięty tylko z listy.
|
|
307
291
|
confirm.profile.delete_all = Czy jesteś pewien, że chcesz usunąć profil wraz ze wszystkimi plikami konfiguracyjnymi i plikami danych użytkownika w katalogu roboczym profilu?
|
|
308
292
|
confirm.profile.reset = Czy na pewno chcesz przywrócić profil do ustawień domyślnych? UWAGA: Wszystkie pliki konfiguracyjne oraz baza danych kontekstów zostaną usunięte! Katalog z danymi zostanie zachowany - aby go usunąć, musisz zrobić to ręcznie lub użyć opcji usuwania.
|
|
293
|
+
confirm.remote_store.clear = Wyczyścić bazy wektorowe (tylko lokalnie)?
|
|
294
|
+
confirm.remote_store.import = Zaimportować wszystkie bazy wektorowe z API?
|
|
295
|
+
confirm.remote_store.import_files = Zaimportować wszystkie pliki z API?
|
|
296
|
+
confirm.remote_store.import_files.store = Zaimportować bieżące pliki bazy z API?
|
|
297
|
+
confirm.remote_store.openai.files.truncate = Czy na pewno usunąć wszystkie pliki ze wszystkich baz?
|
|
298
|
+
confirm.remote_store.openai.files.truncate.store = Czy na pewno usunąć wszystkie pliki z wybranej bazy?
|
|
299
|
+
confirm.remote_store.refresh = Odświeżyć wszystkie bazy?
|
|
300
|
+
confirm.remote_store.truncate = Usunąć wszystkie bazy wektorowe w API?
|
|
309
301
|
context.btn.clear = Wyczyść pamięć
|
|
310
302
|
context.items = elementy
|
|
311
303
|
context.label = Kontekst
|
|
304
|
+
context_menu.zoom = Powiększenie
|
|
305
|
+
context_menu.zoom.in = Powiększ
|
|
306
|
+
context_menu.zoom.out = Pomniejsz
|
|
312
307
|
context.tokens = tokeny
|
|
313
308
|
ctx.delete.all.confirm = Czy na pewno usunąć CAŁĄ historię?
|
|
314
309
|
ctx.delete.confirm = Czy na pewno usunąć?
|
|
@@ -364,30 +359,6 @@ dialog.assistant.btn.current = Użyj obecnego
|
|
|
364
359
|
dialog.assistant.btn.import_func = Importuj funkcje
|
|
365
360
|
dialog.assistant.btn.save = Zapisz
|
|
366
361
|
dialog.assistant.btn.store = Bazy wektorowe
|
|
367
|
-
dialog.assistant.store = Bazy wektorowe OpenAI
|
|
368
|
-
dialog.assistant.store.alert.assign = Proszę najpierw przypisać bazę wektorową dla Asystenta.
|
|
369
|
-
dialog.assistant.store.alert.select = Proszę najpierw wybrać bazę wektorową.
|
|
370
|
-
dialog.assistant.store.btn.close = Anuluj
|
|
371
|
-
dialog.assistant.store.btn.new = Utwórz
|
|
372
|
-
dialog.assistant.store.btn.refresh_status = Odśwież status
|
|
373
|
-
dialog.assistant.store.btn.save = Zapisz
|
|
374
|
-
dialog.assistant.store.btn.upload.dir = + Katalog
|
|
375
|
-
dialog.assistant.store.btn.upload.files = + Pliki
|
|
376
|
-
dialog.assistant.store.delete.confirm = Czy na pewno chcesz usunąć bazę wektorową?
|
|
377
|
-
dialog.assistant.store.menu.all = Wszystkie bazy...
|
|
378
|
-
dialog.assistant.store.menu.all.clear_files = Wyczyść pliki (wszystkie, tylko lokalne)
|
|
379
|
-
dialog.assistant.store.menu.all.clear_store = Wyczyść bazy wektorowe (wszystkie, tylko lokalne)
|
|
380
|
-
dialog.assistant.store.menu.all.import_all = Zaimportuj wszystko (wszystkie, bazy + pliki)
|
|
381
|
-
dialog.assistant.store.menu.all.import_files = Tylko import plików (wszystkie)
|
|
382
|
-
dialog.assistant.store.menu.all.refresh_store = Odśwież wszystkie statusy
|
|
383
|
-
dialog.assistant.store.menu.all.truncate_files = Opróżnij pliki (wszystkie, lokalne + zdalne)
|
|
384
|
-
dialog.assistant.store.menu.all.truncate_store = Opróżnij bazy wektorowe (wszystkie, lokalne + zdalne)
|
|
385
|
-
dialog.assistant.store.menu.current = Bieżąca baza...
|
|
386
|
-
dialog.assistant.store.menu.current.clear_files = Wyczyść pliki (tylko lokalnie)
|
|
387
|
-
dialog.assistant.store.menu.current.delete = Usuń bazę (+ pliki, lokalne + zdalne)
|
|
388
|
-
dialog.assistant.store.menu.current.import_files = Import plików
|
|
389
|
-
dialog.assistant.store.menu.current.refresh_store = Odśwież status
|
|
390
|
-
dialog.assistant.store.menu.current.truncate_files = Opróżnij pliki (lokalne + zdalne)
|
|
391
362
|
dialog.changelog.title = Dziennik zmian
|
|
392
363
|
dialog.confirm.no = Nie
|
|
393
364
|
dialog.confirm.title = Potwierdź
|
|
@@ -468,6 +439,30 @@ dialog.profile.status.removed = Profil usunięty z listy
|
|
|
468
439
|
dialog.profile.status.updated = Profil zaktualizowany.
|
|
469
440
|
dialog.profile.tip = Tworząc nowe profile, możesz używać oddzielnych ustawień, różnych historii kontekstów i danych użytkownika, oraz szybko przełączać się między nimi.
|
|
470
441
|
dialog.profile.workdir.label = Katalog roboczy (katalog dla plików konfiguracyjnych i danych użytkownika)
|
|
442
|
+
dialog.remote_store.alert.assign = Proszę najpierw przypisać bazę wektorową dla Asystenta.
|
|
443
|
+
dialog.remote_store.alert.select = Proszę najpierw wybrać bazę wektorową.
|
|
444
|
+
dialog.remote_store.btn.close = Anuluj
|
|
445
|
+
dialog.remote_store.btn.new = Utwórz
|
|
446
|
+
dialog.remote_store.btn.refresh_status = Odśwież status
|
|
447
|
+
dialog.remote_store.btn.save = Zapisz
|
|
448
|
+
dialog.remote_store.btn.upload.dir = + Katalog
|
|
449
|
+
dialog.remote_store.btn.upload.files = + Pliki
|
|
450
|
+
dialog.remote_store.delete.confirm = Czy na pewno chcesz usunąć bazę wektorową?
|
|
451
|
+
dialog.remote_store.menu.all = Wszystkie bazy...
|
|
452
|
+
dialog.remote_store.menu.all.clear_files = Wyczyść pliki (wszystkie, tylko lokalne)
|
|
453
|
+
dialog.remote_store.menu.all.clear_store = Wyczyść bazy wektorowe (wszystkie, tylko lokalne)
|
|
454
|
+
dialog.remote_store.menu.all.import_all = Zaimportuj wszystko (wszystkie, bazy + pliki)
|
|
455
|
+
dialog.remote_store.menu.all.import_files = Tylko import plików (wszystkie)
|
|
456
|
+
dialog.remote_store.menu.all.refresh_store = Odśwież wszystkie statusy
|
|
457
|
+
dialog.remote_store.menu.all.truncate_files = Opróżnij pliki (wszystkie, lokalne + zdalne)
|
|
458
|
+
dialog.remote_store.menu.all.truncate_store = Opróżnij bazy wektorowe (wszystkie, lokalne + zdalne)
|
|
459
|
+
dialog.remote_store.menu.current = Bieżąca baza...
|
|
460
|
+
dialog.remote_store.menu.current.clear_files = Wyczyść pliki (tylko lokalnie)
|
|
461
|
+
dialog.remote_store.menu.current.delete = Usuń bazę (+ pliki, lokalne + zdalne)
|
|
462
|
+
dialog.remote_store.menu.current.import_files = Import plików
|
|
463
|
+
dialog.remote_store.menu.current.refresh_store = Odśwież status
|
|
464
|
+
dialog.remote_store.menu.current.truncate_files = Opróżnij pliki (lokalne + zdalne)
|
|
465
|
+
dialog.remote_store.openai = Bazy wektorowe OpenAI
|
|
471
466
|
dialog.rename.dismiss = Anuluj
|
|
472
467
|
dialog.rename.title = Zmień nazwę
|
|
473
468
|
dialog.rename.update = Zmień nazwę
|
|
@@ -529,7 +524,7 @@ dictionary.config.llama.idx.embeddings.args.value = Wartość parametru
|
|
|
529
524
|
dictionary.config.llama.idx.embeddings.env.name = Nazwa ENV (do ustawienia za pomocą os.environ)
|
|
530
525
|
dictionary.config.llama.idx.embeddings.env.value = Wartość ENV, użyj {config_key} jako symbolu zastępczego, aby użyć wartości z konfiguracji aplikacji.
|
|
531
526
|
dictionary.config.llama.idx.list.id = ID (nazwa katalogu dla indeksu)
|
|
532
|
-
dictionary.config.llama.idx.list.model_embed = Model do wykorzystania w embeddingu (indeksowanie), domyślnie:
|
|
527
|
+
dictionary.config.llama.idx.list.model_embed = Model do wykorzystania w embeddingu (indeksowanie), domyślnie: %MODEL_DEFAULT_MINI%
|
|
533
528
|
dictionary.config.llama.idx.list.model_query = Model do zapytań
|
|
534
529
|
dictionary.config.llama.idx.list.name = Nazwa
|
|
535
530
|
dictionary.config.llama.idx.storage.args.name = Nazwa argumentu kluczowego
|
|
@@ -775,7 +770,7 @@ input.send_clear = Wyczyść po wysłaniu
|
|
|
775
770
|
input.stream = Stream
|
|
776
771
|
input.tab = Input
|
|
777
772
|
input.tab.extra = Dodatkowy prompt
|
|
778
|
-
input.tab.extra.negative_prompt = Negative prompt
|
|
773
|
+
input.tab.extra.negative_prompt = Negative prompt
|
|
779
774
|
input.tab.tooltip = {chars} znaków (~{tokens} tokenów)
|
|
780
775
|
interpreter.all = Wykonaj historię (wszystko)
|
|
781
776
|
interpreter.auto_clear = Wyczyść wyjście przy wysyłaniu
|
|
@@ -1143,6 +1138,14 @@ preset.use = Użyj
|
|
|
1143
1138
|
preset.user_name = Imię użytkownika
|
|
1144
1139
|
preset.vision = Wizja (Vision)
|
|
1145
1140
|
profile.current.suffix = (bieżący)
|
|
1141
|
+
remote_store.expire_days = Dni ważności
|
|
1142
|
+
remote_store.expire_days.desc = 0 = Nigdy
|
|
1143
|
+
remote_store.files.suffix = Pliki
|
|
1144
|
+
remote_store.id = ID
|
|
1145
|
+
remote_store.name = Nazwa
|
|
1146
|
+
remote_store.openai.hide_threads = Ukryj bazy wątków
|
|
1147
|
+
remote_store.status = Status
|
|
1148
|
+
remote_store.thread_only = (tylko bieżący wątek)
|
|
1146
1149
|
reset.description = Opis
|
|
1147
1150
|
screenshot.capture.name.prefix = Zrzut ekranu z
|
|
1148
1151
|
settings.access.audio.event.speech = Użyj syntezy mowy do opisywania zdarzeń na ekranie.
|
|
@@ -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,9 +290,20 @@ 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 = Контекст
|
|
304
|
+
context_menu.zoom = Масштаб
|
|
305
|
+
context_menu.zoom.in = Збільшити
|
|
306
|
+
context_menu.zoom.out = Зменшити
|
|
312
307
|
context.tokens = токени
|
|
313
308
|
ctx.delete.all.confirm = Ви впевнені, що хочете видалити ВСІ контексти історії?
|
|
314
309
|
ctx.delete.confirm = Ви впевнені, що хочете видалити?
|
|
@@ -364,30 +359,6 @@ dialog.assistant.btn.current = Використовувати поточний
|
|
|
364
359
|
dialog.assistant.btn.import_func = Імпортувати функції
|
|
365
360
|
dialog.assistant.btn.save = Зберегти
|
|
366
361
|
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
362
|
dialog.changelog.title = Список змін
|
|
392
363
|
dialog.confirm.no = Ні
|
|
393
364
|
dialog.confirm.title = Підтвердження
|
|
@@ -468,6 +439,30 @@ dialog.profile.status.removed = Профіль видалено зі списк
|
|
|
468
439
|
dialog.profile.status.updated = Профіль оновлено.
|
|
469
440
|
dialog.profile.tip = Створюючи нові профілі, ви можете використовувати окремі налаштування, різні історії контекстів та дані користувачів, а також швидко перемикатися між ними.
|
|
470
441
|
dialog.profile.workdir.label = Робоча директорія (директорія для конфігураційних файлів та даних користувача)
|
|
442
|
+
dialog.remote_store.alert.assign = Будь ласка, спочатку призначте векторну базу Асистенту.
|
|
443
|
+
dialog.remote_store.alert.select = Будь ласка, спочатку виберіть векторну базу.
|
|
444
|
+
dialog.remote_store.btn.close = Скасувати
|
|
445
|
+
dialog.remote_store.btn.new = Створити
|
|
446
|
+
dialog.remote_store.btn.refresh_status = Оновити статус
|
|
447
|
+
dialog.remote_store.btn.save = Зберегти
|
|
448
|
+
dialog.remote_store.btn.upload.dir = + Каталог
|
|
449
|
+
dialog.remote_store.btn.upload.files = + Файли
|
|
450
|
+
dialog.remote_store.delete.confirm = Ви впевнені, що хочете видалити Векторну Базу OpenAI?
|
|
451
|
+
dialog.remote_store.menu.all = Всі бази...
|
|
452
|
+
dialog.remote_store.menu.all.clear_files = Очистити файли (всі, лише локально)
|
|
453
|
+
dialog.remote_store.menu.all.clear_store = Очистити векторні бази (всі, лише локально)
|
|
454
|
+
dialog.remote_store.menu.all.import_all = Імпортувати все (всі, бази + файли)
|
|
455
|
+
dialog.remote_store.menu.all.import_files = Імпортувати лише файли (всі)
|
|
456
|
+
dialog.remote_store.menu.all.refresh_store = Оновити всі статуси
|
|
457
|
+
dialog.remote_store.menu.all.truncate_files = Очистити файли повністю (всі, локально + віддалено)
|
|
458
|
+
dialog.remote_store.menu.all.truncate_store = Очистити векторні бази повністю (всі, локально + віддалено)
|
|
459
|
+
dialog.remote_store.menu.current = Поточна база...
|
|
460
|
+
dialog.remote_store.menu.current.clear_files = Очистити файли (лише локально)
|
|
461
|
+
dialog.remote_store.menu.current.delete = Видалити базу (+ файли, локально + віддалено)
|
|
462
|
+
dialog.remote_store.menu.current.import_files = Імпортувати файли
|
|
463
|
+
dialog.remote_store.menu.current.refresh_store = Оновити статус
|
|
464
|
+
dialog.remote_store.menu.current.truncate_files = Очистити файли повністю (локально + віддалено)
|
|
465
|
+
dialog.remote_store.openai = Векторні Бази OpenAI
|
|
471
466
|
dialog.rename.dismiss = Скасувати
|
|
472
467
|
dialog.rename.title = Змінити назву
|
|
473
468
|
dialog.rename.update = Оновити назву
|
|
@@ -529,7 +524,7 @@ dictionary.config.llama.idx.embeddings.args.value = Значення парам
|
|
|
529
524
|
dictionary.config.llama.idx.embeddings.env.name = Ім'я ENV (для встановлення з os.environ)
|
|
530
525
|
dictionary.config.llama.idx.embeddings.env.value = Значення ENV, використовуйте {config_key} як покажчик місця, щоб використовувати значення з конфігурації програми.
|
|
531
526
|
dictionary.config.llama.idx.list.id = ID (назва каталогу для індексу)
|
|
532
|
-
dictionary.config.llama.idx.list.model_embed = Модель для використання в вбудовуванні (індексування), за замовчуванням:
|
|
527
|
+
dictionary.config.llama.idx.list.model_embed = Модель для використання в вбудовуванні (індексування), за замовчуванням: %MODEL_DEFAULT_MINI%
|
|
533
528
|
dictionary.config.llama.idx.list.model_query = Модель для запитів
|
|
534
529
|
dictionary.config.llama.idx.list.name = Назва
|
|
535
530
|
dictionary.config.llama.idx.storage.args.name = Назва параметра ключового слова
|
|
@@ -1142,6 +1137,14 @@ preset.use = Використовувати
|
|
|
1142
1137
|
preset.user_name = Ім'я користувача
|
|
1143
1138
|
preset.vision = Оптика
|
|
1144
1139
|
profile.current.suffix = (поточний)
|
|
1140
|
+
remote_store.expire_days = Дні до закінчення
|
|
1141
|
+
remote_store.expire_days.desc = 0 = Ніколи
|
|
1142
|
+
remote_store.files.suffix = Файли
|
|
1143
|
+
remote_store.id = ID
|
|
1144
|
+
remote_store.name = Назва
|
|
1145
|
+
remote_store.openai.hide_threads = Приховати векторні сховища тем
|
|
1146
|
+
remote_store.status = Статус
|
|
1147
|
+
remote_store.thread_only = (лише поточний потік)
|
|
1145
1148
|
reset.description = Опис
|
|
1146
1149
|
screenshot.capture.name.prefix = Скріншот з
|
|
1147
1150
|
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,9 +290,20 @@ 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 = 上下文
|
|
304
|
+
context_menu.zoom = 缩放
|
|
305
|
+
context_menu.zoom.in = 放大
|
|
306
|
+
context_menu.zoom.out = 缩小
|
|
312
307
|
context.tokens = 令牌
|
|
313
308
|
ctx.delete.all.confirm = 您確定要刪除所有歷史上下文嗎?
|
|
314
309
|
ctx.delete.confirm = 您確定要刪除嗎?
|
|
@@ -364,30 +359,6 @@ dialog.assistant.btn.current = 使用當前的
|
|
|
364
359
|
dialog.assistant.btn.import_func = 导入函数
|
|
365
360
|
dialog.assistant.btn.save = 保存
|
|
366
361
|
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
362
|
dialog.changelog.title = 更新日誌
|
|
392
363
|
dialog.confirm.no = 否
|
|
393
364
|
dialog.confirm.title = 確認
|
|
@@ -468,6 +439,30 @@ dialog.profile.status.removed = 个人资料已从列表中移除
|
|
|
468
439
|
dialog.profile.status.updated = 个人资料已更新。
|
|
469
440
|
dialog.profile.tip = 通过创建新的个人资料,您可以使用独立的设置、不同的上下文历史记录和用户数据,并且可以快速在它们之间切换。
|
|
470
441
|
dialog.profile.workdir.label = 工作目录(配置文件和用户数据的目录)
|
|
442
|
+
dialog.remote_store.alert.assign = 请先为助手分配矢量存储。
|
|
443
|
+
dialog.remote_store.alert.select = 请先选择矢量存储。
|
|
444
|
+
dialog.remote_store.btn.close = 取消
|
|
445
|
+
dialog.remote_store.btn.new = 创建
|
|
446
|
+
dialog.remote_store.btn.refresh_status = 刷新状态
|
|
447
|
+
dialog.remote_store.btn.save = 保存
|
|
448
|
+
dialog.remote_store.btn.upload.dir = + 目录
|
|
449
|
+
dialog.remote_store.btn.upload.files = + 文件
|
|
450
|
+
dialog.remote_store.delete.confirm = 您确定要删除 OpenAI 向量数据库吗?
|
|
451
|
+
dialog.remote_store.menu.all = 所有存储...
|
|
452
|
+
dialog.remote_store.menu.all.clear_files = 清除文件(所有,仅本地)
|
|
453
|
+
dialog.remote_store.menu.all.clear_store = 清除矢量存储(所有,仅本地)
|
|
454
|
+
dialog.remote_store.menu.all.import_all = 导入所有内容(所有存储+文件)
|
|
455
|
+
dialog.remote_store.menu.all.import_files = 只导入文件(全部)
|
|
456
|
+
dialog.remote_store.menu.all.refresh_store = 刷新所有状态
|
|
457
|
+
dialog.remote_store.menu.all.truncate_files = 清空文件(所有,本地+远程)
|
|
458
|
+
dialog.remote_store.menu.all.truncate_store = 清空矢量存储(所有,本地+远程)
|
|
459
|
+
dialog.remote_store.menu.current = 当前存储...
|
|
460
|
+
dialog.remote_store.menu.current.clear_files = 清除文件(仅本地)
|
|
461
|
+
dialog.remote_store.menu.current.delete = 删除存储(+文件,本地+远程)
|
|
462
|
+
dialog.remote_store.menu.current.import_files = 导入文件
|
|
463
|
+
dialog.remote_store.menu.current.refresh_store = 刷新状态
|
|
464
|
+
dialog.remote_store.menu.current.truncate_files = 清空文件(本地+远程)
|
|
465
|
+
dialog.remote_store.openai = OpenAI 向量数据库
|
|
471
466
|
dialog.rename.dismiss = 取消
|
|
472
467
|
dialog.rename.title = 更改名稱
|
|
473
468
|
dialog.rename.update = 更新名稱
|
|
@@ -529,7 +524,7 @@ dictionary.config.llama.idx.embeddings.args.value = 关键字参数的值
|
|
|
529
524
|
dictionary.config.llama.idx.embeddings.env.name = ENV 名 (通过 os.environ 设置)
|
|
530
525
|
dictionary.config.llama.idx.embeddings.env.value = ENV 值,使用 {config_key} 作为占位符,以使用应用程序配置中的值。
|
|
531
526
|
dictionary.config.llama.idx.list.id = ID(索引目錄名稱)
|
|
532
|
-
dictionary.config.llama.idx.list.model_embed =
|
|
527
|
+
dictionary.config.llama.idx.list.model_embed = 用於嵌入(索引)的模型,默認:%MODEL_DEFAULT_MINI%
|
|
533
528
|
dictionary.config.llama.idx.list.model_query = 查詢模型
|
|
534
529
|
dictionary.config.llama.idx.list.name = 名稱
|
|
535
530
|
dictionary.config.llama.idx.storage.args.name = 額外參數名稱
|
|
@@ -1142,6 +1137,14 @@ preset.use = 使用
|
|
|
1142
1137
|
preset.user_name = 用戶名稱
|
|
1143
1138
|
preset.vision = 視覺
|
|
1144
1139
|
profile.current.suffix = (当前)
|
|
1140
|
+
remote_store.expire_days = 过期天数
|
|
1141
|
+
remote_store.expire_days.desc = 0 = 永不
|
|
1142
|
+
remote_store.files.suffix = 文件
|
|
1143
|
+
remote_store.id = ID
|
|
1144
|
+
remote_store.name = 名称
|
|
1145
|
+
remote_store.openai.hide_threads = 隐藏线程向量存储
|
|
1146
|
+
remote_store.status = 状态
|
|
1147
|
+
remote_store.thread_only = (仅当前线程)
|
|
1145
1148
|
reset.description = 描述
|
|
1146
1149
|
screenshot.capture.name.prefix = 截圖來自
|
|
1147
1150
|
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)
|