pygpt-net 2.7.3__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 +15 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +382 -350
- 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/attachment.py +5 -1
- 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 +15 -3
- pygpt_net/controller/dialogs/confirm.py +73 -101
- pygpt_net/controller/files/files.py +3 -1
- pygpt_net/controller/lang/mapping.py +9 -9
- pygpt_net/controller/layout/layout.py +2 -2
- 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/theme/nodes.py +2 -1
- pygpt_net/controller/ui/mode.py +5 -1
- pygpt_net/controller/ui/ui.py +36 -2
- 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/helpers.py +5 -0
- pygpt_net/data/config/config.json +8 -5
- pygpt_net/data/config/models.json +77 -3
- pygpt_net/data/config/settings.json +45 -14
- pygpt_net/data/css/web-blocks.css +3 -0
- pygpt_net/data/css/web-chatgpt.css +3 -0
- pygpt_net/data/locale/locale.de.ini +43 -41
- pygpt_net/data/locale/locale.en.ini +56 -44
- pygpt_net/data/locale/locale.es.ini +43 -41
- pygpt_net/data/locale/locale.fr.ini +43 -41
- pygpt_net/data/locale/locale.it.ini +43 -41
- pygpt_net/data/locale/locale.pl.ini +43 -41
- pygpt_net/data/locale/locale.uk.ini +43 -41
- pygpt_net/data/locale/locale.zh.ini +43 -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/launcher.py +115 -55
- 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/preload.py +243 -0
- 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/image.py +74 -6
- 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/video.py +9 -4
- 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/image.py +42 -19
- pygpt_net/provider/api/openai/store.py +6 -6
- pygpt_net/provider/api/openai/video.py +27 -2
- pygpt_net/provider/api/openai/worker/importer.py +24 -24
- pygpt_net/provider/api/x_ai/image.py +25 -2
- pygpt_net/provider/core/config/patch.py +23 -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/chat/input.py +20 -2
- pygpt_net/ui/layout/chat/painter.py +6 -4
- pygpt_net/ui/layout/toolbox/computer_env.py +26 -8
- pygpt_net/ui/layout/toolbox/image.py +5 -5
- pygpt_net/ui/layout/toolbox/video.py +5 -4
- pygpt_net/ui/main.py +84 -3
- pygpt_net/ui/menu/tools.py +13 -5
- pygpt_net/ui/widget/dialog/base.py +3 -10
- 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 +158 -4
- pygpt_net/ui/widget/textarea/input_extra.py +664 -0
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/METADATA +48 -9
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/RECORD +157 -130
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/LICENSE +0 -0
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/WHEEL +0 -0
- {pygpt_net-2.7.3.dist-info → pygpt_net-2.7.5.dist-info}/entry_points.txt +0 -0
|
@@ -180,14 +180,6 @@ assistant.run.completed = Esecuzione: Completata
|
|
|
180
180
|
assistant.run.failed = Esecuzione: Fallita
|
|
181
181
|
assistant.run.func.call = Esegui: chiamata funzione...
|
|
182
182
|
assistant.run.listening = Esecuzione: in corso...
|
|
183
|
-
assistant.store.expire_days = Giorni di scadenza
|
|
184
|
-
assistant.store.expire_days.desc = 0 = Mai
|
|
185
|
-
assistant.store.files.suffix = File
|
|
186
|
-
assistant.store.hide_threads = Nascondi archivi vettoriali dei thread
|
|
187
|
-
assistant.store.id = ID
|
|
188
|
-
assistant.store.name = Nome
|
|
189
|
-
assistant.store.status = Stato
|
|
190
|
-
assistant.store.thread_only = (solo il thread corrente)
|
|
191
183
|
assistant.tool.code_interpreter = Interprete di codice
|
|
192
184
|
assistant.tool.file_search = Chat con file
|
|
193
185
|
assistant.tool.function = Strumento: funzione
|
|
@@ -284,17 +276,9 @@ common.down = Sposta in basso
|
|
|
284
276
|
common.up = Sposta in alto
|
|
285
277
|
confirm.assistant.delete = Eliminare l'assistente?
|
|
286
278
|
confirm.assistant.files.clear = Vuoi cancellare i file (solo locale)?
|
|
287
|
-
confirm.assistant.files.truncate = Sei sicuro di voler rimuovere tutti i file da tutte le basi?
|
|
288
|
-
confirm.assistant.files.truncate.store = Sei sicuro di voler rimuovere tutti i file dalla base selezionata?
|
|
289
279
|
confirm.assistant.functions.clear = Sei sicuro di voler svuotare la lista delle funzioni?
|
|
290
280
|
confirm.assistant.functions.import = Importare funzioni dai plugin ATTIVI?\nINFO: Tutte le funzioni nella lista con lo stesso nome saranno sostituite!
|
|
291
281
|
confirm.assistant.import = Importare tutti gli assistenti da API?
|
|
292
|
-
confirm.assistant.import_files = Importare tutti i file da API?
|
|
293
|
-
confirm.assistant.import_files.store = Importare i file della base corrente da API?
|
|
294
|
-
confirm.assistant.store.clear = Vuoi cancellare le basi vettoriali (solo locale)?
|
|
295
|
-
confirm.assistant.store.import = Importare tutte le basi vettoriali da API?
|
|
296
|
-
confirm.assistant.store.refresh = Aggiornare tutte le basi?
|
|
297
|
-
confirm.assistant.store.truncate = Cancellare tutte le basi vettoriali in API?
|
|
298
282
|
confirm.ctx.delete = Eliminare il gruppo?
|
|
299
283
|
confirm.ctx.delete.all = Eliminare il gruppo e tutti gli elementi?
|
|
300
284
|
confirm.img.delete = Eliminare il file dal disco?
|
|
@@ -306,6 +290,14 @@ confirm.preset.restore = Ripristinare il preset di default per questa modalità?
|
|
|
306
290
|
confirm.profile.delete = Sei sicuro di voler eliminare il profilo? Sarà rimosso solo dall'elenco.
|
|
307
291
|
confirm.profile.delete_all = Sei sicuro di voler eliminare il profilo insieme a tutti i file di configurazione e i file dati utente nella directory di lavoro del profilo?
|
|
308
292
|
confirm.profile.reset = Sei sicuro di voler ripristinare il profilo alle impostazioni predefinite? ATTENZIONE: Tutti i file di configurazione e il database di contesto saranno rimossi! La directory dei dati verrà mantenuta - per rimuoverla, devi cancellarla manualmente o utilizzare l'opzione di cancellazione.
|
|
293
|
+
confirm.remote_store.clear = Vuoi cancellare le basi vettoriali (solo locale)?
|
|
294
|
+
confirm.remote_store.import = Importare tutte le basi vettoriali da API?
|
|
295
|
+
confirm.remote_store.import_files = Importare tutti i file da API?
|
|
296
|
+
confirm.remote_store.import_files.store = Importare i file della base corrente da API?
|
|
297
|
+
confirm.remote_store.openai.files.truncate = Sei sicuro di voler rimuovere tutti i file da tutte le basi?
|
|
298
|
+
confirm.remote_store.openai.files.truncate.store = Sei sicuro di voler rimuovere tutti i file dalla base selezionata?
|
|
299
|
+
confirm.remote_store.refresh = Aggiornare tutte le basi?
|
|
300
|
+
confirm.remote_store.truncate = Cancellare tutte le basi vettoriali in API?
|
|
309
301
|
context.btn.clear = Pulisci memoria
|
|
310
302
|
context.items = elementi
|
|
311
303
|
context.label = Contesto
|
|
@@ -364,30 +356,6 @@ dialog.assistant.btn.current = Usa attuale
|
|
|
364
356
|
dialog.assistant.btn.import_func = Importa funzioni
|
|
365
357
|
dialog.assistant.btn.save = Salva
|
|
366
358
|
dialog.assistant.btn.store = Archivi vettoriali
|
|
367
|
-
dialog.assistant.store = Basi Vettoriali OpenAI
|
|
368
|
-
dialog.assistant.store.alert.assign = Assegnare prima una base vettoriale all'Assistente.
|
|
369
|
-
dialog.assistant.store.alert.select = Selezionare prima una base vettoriale.
|
|
370
|
-
dialog.assistant.store.btn.close = Annulla
|
|
371
|
-
dialog.assistant.store.btn.new = Crea
|
|
372
|
-
dialog.assistant.store.btn.refresh_status = Aggiorna stato
|
|
373
|
-
dialog.assistant.store.btn.save = Salva
|
|
374
|
-
dialog.assistant.store.btn.upload.dir = + Cartella
|
|
375
|
-
dialog.assistant.store.btn.upload.files = + File
|
|
376
|
-
dialog.assistant.store.delete.confirm = Sei sicuro di voler eliminare la Base Vettoriale OpenAI?
|
|
377
|
-
dialog.assistant.store.menu.all = Tutte le basi...
|
|
378
|
-
dialog.assistant.store.menu.all.clear_files = Cancella i file (tutte, solo locale)
|
|
379
|
-
dialog.assistant.store.menu.all.clear_store = Cancella le basi vettoriali (tutte, solo locale)
|
|
380
|
-
dialog.assistant.store.menu.all.import_all = Importa tutto (tutte, basi + file)
|
|
381
|
-
dialog.assistant.store.menu.all.import_files = Importa solo file (tutte)
|
|
382
|
-
dialog.assistant.store.menu.all.refresh_store = Aggiorna tutti gli stati
|
|
383
|
-
dialog.assistant.store.menu.all.truncate_files = Elimina i file (tutte, locale + remoto)
|
|
384
|
-
dialog.assistant.store.menu.all.truncate_store = Elimina le basi vettoriali (tutte, locale + remoto)
|
|
385
|
-
dialog.assistant.store.menu.current = Base corrente...
|
|
386
|
-
dialog.assistant.store.menu.current.clear_files = Cancella i file (solo locale)
|
|
387
|
-
dialog.assistant.store.menu.current.delete = Elimina base (+ file, locale + remoto)
|
|
388
|
-
dialog.assistant.store.menu.current.import_files = Importa file
|
|
389
|
-
dialog.assistant.store.menu.current.refresh_store = Aggiorna stato
|
|
390
|
-
dialog.assistant.store.menu.current.truncate_files = Elimina i file (locale + remoto)
|
|
391
359
|
dialog.changelog.title = Cronologia modifiche
|
|
392
360
|
dialog.confirm.no = No
|
|
393
361
|
dialog.confirm.title = Conferma
|
|
@@ -468,6 +436,30 @@ dialog.profile.status.removed = Profilo rimosso dall'elenco
|
|
|
468
436
|
dialog.profile.status.updated = Profilo aggiornato.
|
|
469
437
|
dialog.profile.tip = Creando nuovi profili, puoi utilizzare impostazioni separate, diverse cronologie di contesto e dati utente, e passare rapidamente da uno all'altro.
|
|
470
438
|
dialog.profile.workdir.label = Workdir (directory per file di configurazione e dati utente)
|
|
439
|
+
dialog.remote_store.alert.assign = Assegnare prima una base vettoriale all'Assistente.
|
|
440
|
+
dialog.remote_store.alert.select = Selezionare prima una base vettoriale.
|
|
441
|
+
dialog.remote_store.btn.close = Annulla
|
|
442
|
+
dialog.remote_store.btn.new = Crea
|
|
443
|
+
dialog.remote_store.btn.refresh_status = Aggiorna stato
|
|
444
|
+
dialog.remote_store.btn.save = Salva
|
|
445
|
+
dialog.remote_store.btn.upload.dir = + Cartella
|
|
446
|
+
dialog.remote_store.btn.upload.files = + File
|
|
447
|
+
dialog.remote_store.delete.confirm = Sei sicuro di voler eliminare la Base Vettoriale OpenAI?
|
|
448
|
+
dialog.remote_store.menu.all = Tutte le basi...
|
|
449
|
+
dialog.remote_store.menu.all.clear_files = Cancella i file (tutte, solo locale)
|
|
450
|
+
dialog.remote_store.menu.all.clear_store = Cancella le basi vettoriali (tutte, solo locale)
|
|
451
|
+
dialog.remote_store.menu.all.import_all = Importa tutto (tutte, basi + file)
|
|
452
|
+
dialog.remote_store.menu.all.import_files = Importa solo file (tutte)
|
|
453
|
+
dialog.remote_store.menu.all.refresh_store = Aggiorna tutti gli stati
|
|
454
|
+
dialog.remote_store.menu.all.truncate_files = Elimina i file (tutte, locale + remoto)
|
|
455
|
+
dialog.remote_store.menu.all.truncate_store = Elimina le basi vettoriali (tutte, locale + remoto)
|
|
456
|
+
dialog.remote_store.menu.current = Base corrente...
|
|
457
|
+
dialog.remote_store.menu.current.clear_files = Cancella i file (solo locale)
|
|
458
|
+
dialog.remote_store.menu.current.delete = Elimina base (+ file, locale + remoto)
|
|
459
|
+
dialog.remote_store.menu.current.import_files = Importa file
|
|
460
|
+
dialog.remote_store.menu.current.refresh_store = Aggiorna stato
|
|
461
|
+
dialog.remote_store.menu.current.truncate_files = Elimina i file (locale + remoto)
|
|
462
|
+
dialog.remote_store.openai = Basi Vettoriali OpenAI
|
|
471
463
|
dialog.rename.dismiss = Annulla
|
|
472
464
|
dialog.rename.title = Cambia nome
|
|
473
465
|
dialog.rename.update = Aggiorna nome
|
|
@@ -529,7 +521,7 @@ dictionary.config.llama.idx.embeddings.args.value = Valore del parametro
|
|
|
529
521
|
dictionary.config.llama.idx.embeddings.env.name = Nome ENV (da impostare con os.environ)
|
|
530
522
|
dictionary.config.llama.idx.embeddings.env.value = Valore ENV, usa {config_key} come segnaposto per utilizzare il valore dalla configurazione dell'applicazione.
|
|
531
523
|
dictionary.config.llama.idx.list.id = ID (nome directory per l'indice)
|
|
532
|
-
dictionary.config.llama.idx.list.model_embed = Modello da usare per l'embedding (indicizzazione), predefinito:
|
|
524
|
+
dictionary.config.llama.idx.list.model_embed = Modello da usare per l'embedding (indicizzazione), predefinito: %MODEL_DEFAULT_MINI%
|
|
533
525
|
dictionary.config.llama.idx.list.model_query = Modello per query
|
|
534
526
|
dictionary.config.llama.idx.list.name = Nome
|
|
535
527
|
dictionary.config.llama.idx.storage.args.name = Nome del parametro keyword
|
|
@@ -773,6 +765,8 @@ input.search.placeholder = Cerca...
|
|
|
773
765
|
input.send_clear = Pulisci dopo l'invio
|
|
774
766
|
input.stream = Flusso
|
|
775
767
|
input.tab = Input
|
|
768
|
+
input.tab.extra = Prompt extra
|
|
769
|
+
input.tab.extra.negative_prompt = Negative prompt
|
|
776
770
|
input.tab.tooltip = {chars} caratteri (~{tokens} token)
|
|
777
771
|
interpreter.all = Esegui cronologia (tutto)
|
|
778
772
|
interpreter.auto_clear = Cancella all'invio
|
|
@@ -1140,6 +1134,14 @@ preset.use = Usa
|
|
|
1140
1134
|
preset.user_name = Nome dell'utente
|
|
1141
1135
|
preset.vision = Visione
|
|
1142
1136
|
profile.current.suffix = (corrente)
|
|
1137
|
+
remote_store.expire_days = Giorni di scadenza
|
|
1138
|
+
remote_store.expire_days.desc = 0 = Mai
|
|
1139
|
+
remote_store.files.suffix = File
|
|
1140
|
+
remote_store.id = ID
|
|
1141
|
+
remote_store.name = Nome
|
|
1142
|
+
remote_store.openai.hide_threads = Nascondi archivi vettoriali dei thread
|
|
1143
|
+
remote_store.status = Stato
|
|
1144
|
+
remote_store.thread_only = (solo il thread corrente)
|
|
1143
1145
|
reset.description = Descrizione
|
|
1144
1146
|
screenshot.capture.name.prefix = Screenshot da
|
|
1145
1147
|
settings.access.audio.event.speech = Usa la sintesi vocale per descrivere gli eventi sullo schermo.
|
|
@@ -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,6 +290,14 @@ 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
|
|
@@ -364,30 +356,6 @@ dialog.assistant.btn.current = Użyj obecnego
|
|
|
364
356
|
dialog.assistant.btn.import_func = Importuj funkcje
|
|
365
357
|
dialog.assistant.btn.save = Zapisz
|
|
366
358
|
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
359
|
dialog.changelog.title = Dziennik zmian
|
|
392
360
|
dialog.confirm.no = Nie
|
|
393
361
|
dialog.confirm.title = Potwierdź
|
|
@@ -468,6 +436,30 @@ dialog.profile.status.removed = Profil usunięty z listy
|
|
|
468
436
|
dialog.profile.status.updated = Profil zaktualizowany.
|
|
469
437
|
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
438
|
dialog.profile.workdir.label = Katalog roboczy (katalog dla plików konfiguracyjnych i danych użytkownika)
|
|
439
|
+
dialog.remote_store.alert.assign = Proszę najpierw przypisać bazę wektorową dla Asystenta.
|
|
440
|
+
dialog.remote_store.alert.select = Proszę najpierw wybrać bazę wektorową.
|
|
441
|
+
dialog.remote_store.btn.close = Anuluj
|
|
442
|
+
dialog.remote_store.btn.new = Utwórz
|
|
443
|
+
dialog.remote_store.btn.refresh_status = Odśwież status
|
|
444
|
+
dialog.remote_store.btn.save = Zapisz
|
|
445
|
+
dialog.remote_store.btn.upload.dir = + Katalog
|
|
446
|
+
dialog.remote_store.btn.upload.files = + Pliki
|
|
447
|
+
dialog.remote_store.delete.confirm = Czy na pewno chcesz usunąć bazę wektorową?
|
|
448
|
+
dialog.remote_store.menu.all = Wszystkie bazy...
|
|
449
|
+
dialog.remote_store.menu.all.clear_files = Wyczyść pliki (wszystkie, tylko lokalne)
|
|
450
|
+
dialog.remote_store.menu.all.clear_store = Wyczyść bazy wektorowe (wszystkie, tylko lokalne)
|
|
451
|
+
dialog.remote_store.menu.all.import_all = Zaimportuj wszystko (wszystkie, bazy + pliki)
|
|
452
|
+
dialog.remote_store.menu.all.import_files = Tylko import plików (wszystkie)
|
|
453
|
+
dialog.remote_store.menu.all.refresh_store = Odśwież wszystkie statusy
|
|
454
|
+
dialog.remote_store.menu.all.truncate_files = Opróżnij pliki (wszystkie, lokalne + zdalne)
|
|
455
|
+
dialog.remote_store.menu.all.truncate_store = Opróżnij bazy wektorowe (wszystkie, lokalne + zdalne)
|
|
456
|
+
dialog.remote_store.menu.current = Bieżąca baza...
|
|
457
|
+
dialog.remote_store.menu.current.clear_files = Wyczyść pliki (tylko lokalnie)
|
|
458
|
+
dialog.remote_store.menu.current.delete = Usuń bazę (+ pliki, lokalne + zdalne)
|
|
459
|
+
dialog.remote_store.menu.current.import_files = Import plików
|
|
460
|
+
dialog.remote_store.menu.current.refresh_store = Odśwież status
|
|
461
|
+
dialog.remote_store.menu.current.truncate_files = Opróżnij pliki (lokalne + zdalne)
|
|
462
|
+
dialog.remote_store.openai = Bazy wektorowe OpenAI
|
|
471
463
|
dialog.rename.dismiss = Anuluj
|
|
472
464
|
dialog.rename.title = Zmień nazwę
|
|
473
465
|
dialog.rename.update = Zmień nazwę
|
|
@@ -529,7 +521,7 @@ dictionary.config.llama.idx.embeddings.args.value = Wartość parametru
|
|
|
529
521
|
dictionary.config.llama.idx.embeddings.env.name = Nazwa ENV (do ustawienia za pomocą os.environ)
|
|
530
522
|
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
523
|
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:
|
|
524
|
+
dictionary.config.llama.idx.list.model_embed = Model do wykorzystania w embeddingu (indeksowanie), domyślnie: %MODEL_DEFAULT_MINI%
|
|
533
525
|
dictionary.config.llama.idx.list.model_query = Model do zapytań
|
|
534
526
|
dictionary.config.llama.idx.list.name = Nazwa
|
|
535
527
|
dictionary.config.llama.idx.storage.args.name = Nazwa argumentu kluczowego
|
|
@@ -774,6 +766,8 @@ input.search.placeholder = Szukaj...
|
|
|
774
766
|
input.send_clear = Wyczyść po wysłaniu
|
|
775
767
|
input.stream = Stream
|
|
776
768
|
input.tab = Input
|
|
769
|
+
input.tab.extra = Dodatkowy prompt
|
|
770
|
+
input.tab.extra.negative_prompt = Negative prompt
|
|
777
771
|
input.tab.tooltip = {chars} znaków (~{tokens} tokenów)
|
|
778
772
|
interpreter.all = Wykonaj historię (wszystko)
|
|
779
773
|
interpreter.auto_clear = Wyczyść wyjście przy wysyłaniu
|
|
@@ -1141,6 +1135,14 @@ preset.use = Użyj
|
|
|
1141
1135
|
preset.user_name = Imię użytkownika
|
|
1142
1136
|
preset.vision = Wizja (Vision)
|
|
1143
1137
|
profile.current.suffix = (bieżący)
|
|
1138
|
+
remote_store.expire_days = Dni ważności
|
|
1139
|
+
remote_store.expire_days.desc = 0 = Nigdy
|
|
1140
|
+
remote_store.files.suffix = Pliki
|
|
1141
|
+
remote_store.id = ID
|
|
1142
|
+
remote_store.name = Nazwa
|
|
1143
|
+
remote_store.openai.hide_threads = Ukryj bazy wątków
|
|
1144
|
+
remote_store.status = Status
|
|
1145
|
+
remote_store.thread_only = (tylko bieżący wątek)
|
|
1144
1146
|
reset.description = Opis
|
|
1145
1147
|
screenshot.capture.name.prefix = Zrzut ekranu z
|
|
1146
1148
|
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,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 = Назва параметра ключового слова
|
|
@@ -773,6 +765,8 @@ input.search.placeholder = Пошук...
|
|
|
773
765
|
input.send_clear = Очистити після відправлення
|
|
774
766
|
input.stream = Потік
|
|
775
767
|
input.tab = Введення
|
|
768
|
+
input.tab.extra = Додатковий prompt
|
|
769
|
+
input.tab.extra.negative_prompt = Negative prompt
|
|
776
770
|
input.tab.tooltip = {chars} символів (~{tokens} токенів)
|
|
777
771
|
interpreter.all = Виконати історію (все)
|
|
778
772
|
interpreter.auto_clear = Очистити при відправці
|
|
@@ -1140,6 +1134,14 @@ preset.use = Використовувати
|
|
|
1140
1134
|
preset.user_name = Ім'я користувача
|
|
1141
1135
|
preset.vision = Оптика
|
|
1142
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 = (лише поточний потік)
|
|
1143
1145
|
reset.description = Опис
|
|
1144
1146
|
screenshot.capture.name.prefix = Скріншот з
|
|
1145
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 = 額外參數名稱
|
|
@@ -773,6 +765,8 @@ input.search.placeholder = 搜索...
|
|
|
773
765
|
input.send_clear = 發送後清除
|
|
774
766
|
input.stream = 流
|
|
775
767
|
input.tab = 輸入
|
|
768
|
+
input.tab.extra = 额外提示
|
|
769
|
+
input.tab.extra.negative_prompt = Negative prompt
|
|
776
770
|
input.tab.tooltip = {chars} 字符 (~{tokens} 令牌)
|
|
777
771
|
interpreter.all = 执行历史记录(全部)
|
|
778
772
|
interpreter.auto_clear = 发送时清除
|
|
@@ -1140,6 +1134,14 @@ preset.use = 使用
|
|
|
1140
1134
|
preset.user_name = 用戶名稱
|
|
1141
1135
|
preset.vision = 視覺
|
|
1142
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 = (仅当前线程)
|
|
1143
1145
|
reset.description = 描述
|
|
1144
1146
|
screenshot.capture.name.prefix = 截圖來自
|
|
1145
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 = Історія контекстів (календар, інлайн)
|