pygpt-net 2.4.28__py3-none-any.whl → 2.4.34__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CHANGELOG.md +40 -0
- README.md +62 -5
- pygpt_net/CHANGELOG.txt +40 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/access/__init__.py +5 -5
- pygpt_net/controller/access/control.py +3 -2
- pygpt_net/controller/attachment.py +67 -1
- pygpt_net/controller/audio/__init__.py +34 -6
- pygpt_net/controller/chat/__init__.py +3 -1
- pygpt_net/controller/chat/attachment.py +239 -37
- pygpt_net/controller/chat/audio.py +99 -0
- pygpt_net/controller/chat/input.py +10 -3
- pygpt_net/controller/chat/output.py +4 -1
- pygpt_net/controller/chat/text.py +10 -5
- pygpt_net/controller/dialogs/confirm.py +17 -1
- pygpt_net/controller/kernel/reply.py +5 -8
- pygpt_net/controller/lang/custom.py +3 -1
- pygpt_net/controller/mode.py +2 -1
- pygpt_net/controller/presets/editor.py +11 -2
- pygpt_net/core/access/voice.py +2 -2
- pygpt_net/core/agents/legacy.py +3 -1
- pygpt_net/core/attachments/__init__.py +11 -7
- pygpt_net/core/attachments/context.py +226 -44
- pygpt_net/core/{audio.py → audio/__init__.py} +1 -1
- pygpt_net/core/audio/context.py +34 -0
- pygpt_net/core/bridge/context.py +29 -1
- pygpt_net/core/bridge/worker.py +16 -1
- pygpt_net/core/ctx/__init__.py +4 -1
- pygpt_net/core/db/__init__.py +4 -2
- pygpt_net/core/debug/attachments.py +3 -1
- pygpt_net/core/debug/context.py +5 -1
- pygpt_net/core/debug/presets.py +3 -1
- pygpt_net/core/docker/__init__.py +170 -16
- pygpt_net/core/docker/builder.py +6 -2
- pygpt_net/core/events/event.py +3 -1
- pygpt_net/core/experts/__init__.py +24 -6
- pygpt_net/core/idx/chat.py +55 -4
- pygpt_net/core/idx/indexing.py +123 -15
- pygpt_net/core/modes.py +3 -1
- pygpt_net/core/presets.py +13 -2
- pygpt_net/core/render/markdown/pid.py +2 -1
- pygpt_net/core/render/plain/pid.py +2 -1
- pygpt_net/core/render/web/body.py +34 -12
- pygpt_net/core/render/web/pid.py +2 -1
- pygpt_net/core/render/web/renderer.py +12 -3
- pygpt_net/core/tokens.py +4 -2
- pygpt_net/core/types/mode.py +2 -1
- pygpt_net/data/config/config.json +7 -4
- pygpt_net/data/config/models.json +191 -6
- pygpt_net/data/config/modes.json +11 -5
- pygpt_net/data/config/presets/current.audio.json +34 -0
- pygpt_net/data/config/settings.json +15 -1
- pygpt_net/data/css/web.css +70 -0
- pygpt_net/data/css/web.dark.css +4 -1
- pygpt_net/data/css/web.light.css +1 -1
- pygpt_net/data/locale/locale.de.ini +33 -20
- pygpt_net/data/locale/locale.en.ini +73 -58
- pygpt_net/data/locale/locale.es.ini +33 -20
- pygpt_net/data/locale/locale.fr.ini +35 -22
- pygpt_net/data/locale/locale.it.ini +33 -20
- pygpt_net/data/locale/locale.pl.ini +36 -23
- pygpt_net/data/locale/locale.uk.ini +33 -20
- pygpt_net/data/locale/locale.zh.ini +40 -27
- pygpt_net/data/locale/plugin.cmd_code_interpreter.de.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.en.ini +15 -7
- pygpt_net/data/locale/plugin.cmd_code_interpreter.es.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.fr.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.it.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.pl.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.uk.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.zh.ini +6 -0
- pygpt_net/data/locale/plugin.cmd_files.de.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.en.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.es.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.fr.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.it.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.pl.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.uk.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_files.zh.ini +4 -4
- pygpt_net/data/locale/plugin.cmd_system.de.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.en.ini +12 -6
- pygpt_net/data/locale/plugin.cmd_system.es.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.fr.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.it.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.pl.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.uk.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_system.zh.ini +6 -6
- pygpt_net/data/locale/plugin.cmd_web.de.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.en.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.es.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.it.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +5 -5
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +5 -5
- pygpt_net/data/locale/plugin.idx_llama_index.de.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.en.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.es.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.it.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +12 -12
- pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +12 -12
- pygpt_net/item/attachment.py +9 -1
- pygpt_net/item/ctx.py +9 -1
- pygpt_net/item/preset.py +5 -1
- pygpt_net/launcher.py +3 -1
- pygpt_net/migrations/Version20241126170000.py +28 -0
- pygpt_net/migrations/__init__.py +3 -1
- pygpt_net/plugin/audio_input/__init__.py +11 -1
- pygpt_net/plugin/audio_input/worker.py +9 -1
- pygpt_net/plugin/audio_output/__init__.py +37 -7
- pygpt_net/plugin/audio_output/worker.py +38 -41
- pygpt_net/plugin/cmd_code_interpreter/__init__.py +51 -35
- pygpt_net/plugin/cmd_code_interpreter/builder.py +16 -4
- pygpt_net/plugin/cmd_code_interpreter/config.py +98 -39
- pygpt_net/plugin/cmd_code_interpreter/docker.py +4 -0
- pygpt_net/plugin/cmd_code_interpreter/ipython/__init__.py +13 -0
- pygpt_net/plugin/cmd_code_interpreter/{ipython.py → ipython/docker_kernel.py} +10 -3
- pygpt_net/plugin/cmd_code_interpreter/ipython/local_kernel.py +220 -0
- pygpt_net/plugin/cmd_code_interpreter/runner.py +5 -5
- pygpt_net/plugin/cmd_mouse_control/__init__.py +4 -2
- pygpt_net/plugin/cmd_system/config.py +50 -0
- pygpt_net/plugin/cmd_system/docker.py +4 -0
- pygpt_net/plugin/idx_llama_index/__init__.py +23 -1
- pygpt_net/plugin/idx_llama_index/worker.py +10 -0
- pygpt_net/plugin/openai_dalle/__init__.py +3 -1
- pygpt_net/plugin/openai_vision/__init__.py +3 -1
- pygpt_net/provider/core/attachment/json_file.py +4 -1
- pygpt_net/provider/core/config/patch.py +25 -0
- pygpt_net/provider/core/ctx/db_sqlite/storage.py +14 -4
- pygpt_net/provider/core/ctx/db_sqlite/utils.py +19 -2
- pygpt_net/provider/core/model/patch.py +7 -1
- pygpt_net/provider/core/preset/json_file.py +5 -1
- pygpt_net/provider/gpt/__init__.py +14 -2
- pygpt_net/provider/gpt/audio.py +63 -0
- pygpt_net/provider/gpt/chat.py +76 -44
- pygpt_net/provider/gpt/utils.py +27 -0
- pygpt_net/provider/gpt/vision.py +37 -15
- pygpt_net/provider/loaders/base.py +10 -1
- pygpt_net/provider/loaders/web_yt.py +19 -1
- pygpt_net/tools/code_interpreter/__init__.py +1 -0
- pygpt_net/tools/image_viewer/ui/dialogs.py +3 -1
- pygpt_net/ui/dialog/preset.py +3 -1
- pygpt_net/ui/dialog/url.py +29 -0
- pygpt_net/ui/dialogs.py +5 -1
- pygpt_net/ui/layout/chat/attachments.py +42 -6
- pygpt_net/ui/layout/chat/attachments_ctx.py +14 -4
- pygpt_net/ui/layout/chat/attachments_uploaded.py +8 -4
- pygpt_net/ui/layout/toolbox/agent.py +8 -7
- pygpt_net/ui/layout/toolbox/agent_llama.py +5 -4
- pygpt_net/ui/layout/toolbox/prompt.py +8 -6
- pygpt_net/ui/menu/tools.py +17 -11
- pygpt_net/ui/widget/anims/toggles.py +167 -0
- pygpt_net/ui/widget/dialog/url.py +59 -0
- pygpt_net/ui/widget/element/group.py +2 -1
- pygpt_net/ui/widget/lists/attachment.py +22 -17
- pygpt_net/ui/widget/lists/attachment_ctx.py +65 -3
- pygpt_net/ui/widget/option/checkbox.py +69 -5
- pygpt_net/ui/widget/option/cmd.py +4 -5
- pygpt_net/ui/widget/option/toggle.py +62 -0
- pygpt_net/ui/widget/option/toggle_label.py +79 -0
- pygpt_net/ui/widget/textarea/url.py +43 -0
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/METADATA +65 -7
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/RECORD +168 -154
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.28.dist-info → pygpt_net-2.4.34.dist-info}/entry_points.txt +0 -0
@@ -15,7 +15,7 @@ cmd.download_file.description = Habilita la ejecución del comando download_file
|
|
15
15
|
cmd.download_file.label = Habilitar: descarga de archivos
|
16
16
|
cmd.file_exists.description = Habilita la ejecución del comando file_exists - comprobando si un archivo o directorio existe.
|
17
17
|
cmd.file_exists.label = Habilitar: comprobar si un archivo o directorio existe
|
18
|
-
cmd.file_index.description = Habilita la ejecución del comando file_index - indexando archivos a un índice persistente.\nSi está habilitado, el modelo podrá indexar un archivo o directorio usando
|
18
|
+
cmd.file_index.description = Habilita la ejecución del comando file_index - indexando archivos a un índice persistente.\nSi está habilitado, el modelo podrá indexar un archivo o directorio usando LlamaIndex (índice persistente).
|
19
19
|
cmd.file_index.label = Habilitar: indexación de archivos a índice persistente
|
20
20
|
cmd.file_info.description = Habilita la ejecución del comando file_info - obtener información de archivo.
|
21
21
|
cmd.file_info.label = Habilitar: obtener información de archivo
|
@@ -33,8 +33,8 @@ cmd.mkdir.description = Habilita la ejecución del comando mkdir - creación de
|
|
33
33
|
cmd.mkdir.label = Habilitar: creación de directorio (mkdir)
|
34
34
|
cmd.move.description = Habilita la ejecución del comando move - moviendo archivos y directorios (renombrar).
|
35
35
|
cmd.move.label = Habilitar: mover archivos y directorios (renombrar)
|
36
|
-
cmd.query_file.description = Habilita la ejecución del comando query_file (índice en memoria) - consulta rápida del archivo con
|
37
|
-
cmd.query_file.label = Habilitar: consulta rápida del archivo con
|
36
|
+
cmd.query_file.description = Habilita la ejecución del comando query_file (índice en memoria) - consulta rápida del archivo con LlamaIndex.\nSi está habilitado, el modelo podrá indexar un archivo rápidamente en memoria y consultarlo por datos (índice en memoria).
|
37
|
+
cmd.query_file.label = Habilitar: consulta rápida del archivo con LlamaIndex
|
38
38
|
cmd.read_file.description = Habilita la ejecución del comando read_file - lectura de archivos.
|
39
39
|
cmd.read_file.label = Habilitar: leer archivo
|
40
40
|
cmd.rmdir.description = Habilita la ejecución del comando rmdir - eliminación de directorios.
|
@@ -52,5 +52,5 @@ only_index.description = Si está habilitado, el archivo será indexado sin devo
|
|
52
52
|
only_index.label = Solo indexar al leer archivos
|
53
53
|
plugin.description = Proporciona comandos para leer y escribir archivos
|
54
54
|
plugin.name = E/S de archivos
|
55
|
-
use_loaders.description = Usar cargadores de datos de
|
55
|
+
use_loaders.description = Usar cargadores de datos de LlamaIndex para la lectura de archivos (comando read_file).
|
56
56
|
use_loaders.label = Usar cargadores de datos
|
@@ -15,7 +15,7 @@ cmd.download_file.description = Permet l'exécution de la commande download_file
|
|
15
15
|
cmd.download_file.label = Activer: téléchargement des fichiers
|
16
16
|
cmd.file_exists.description = Permet l'exécution de la commande file_exists - vérifier si un fichier ou dossier existe.
|
17
17
|
cmd.file_exists.label = Activer: vérifier si un fichier ou dossier existe
|
18
|
-
cmd.file_index.description = Permet l'exécution de la commande file_index - indexation des fichiers vers un index persistant.\nSi activé, le modèle pourra indexer un fichier ou un dossier en utilisant
|
18
|
+
cmd.file_index.description = Permet l'exécution de la commande file_index - indexation des fichiers vers un index persistant.\nSi activé, le modèle pourra indexer un fichier ou un dossier en utilisant LlamaIndex (index persistant).
|
19
19
|
cmd.file_index.label = Activer: indexation des fichiers vers un index persistant
|
20
20
|
cmd.file_info.description = Permet l'exécution de la commande file_info - obtenir des informations sur un fichier.
|
21
21
|
cmd.file_info.label = Activer: obtenir des informations sur un fichier
|
@@ -33,8 +33,8 @@ cmd.mkdir.description = Permet l'exécution de la commande mkdir - création de
|
|
33
33
|
cmd.mkdir.label = Activer: création de dossiers (mkdir)
|
34
34
|
cmd.move.description = Permet l'exécution de la commande move - déplacement de fichiers et dossiers (renommer).
|
35
35
|
cmd.move.label = Activer: déplacer fichiers et dossiers (renommer)
|
36
|
-
cmd.query_file.description = Permet l'exécution de la commande query_file (index en mémoire) - interroger rapidement le fichier avec
|
37
|
-
cmd.query_file.label = Activer: interrogation rapide du fichier avec
|
36
|
+
cmd.query_file.description = Permet l'exécution de la commande query_file (index en mémoire) - interroger rapidement le fichier avec LlamaIndex.\nSi activé, le modèle pourra indexer rapidement un fichier en mémoire et l'interroger pour des données (index en mémoire).
|
37
|
+
cmd.query_file.label = Activer: interrogation rapide du fichier avec LlamaIndex
|
38
38
|
cmd.read_file.description = Permet l'exécution de la commande read_file - lecture de fichiers.
|
39
39
|
cmd.read_file.label = Activer: lire le fichier
|
40
40
|
cmd.rmdir.description = Permet l'exécution de la commande rmdir - suppression de dossiers.
|
@@ -52,5 +52,5 @@ only_index.description = Si activé, le fichier sera indexé sans retourner son
|
|
52
52
|
only_index.label = Indexer uniquement lors de la lecture des fichiers
|
53
53
|
plugin.description = Fournit des commandes pour lire et écrire des fichiers
|
54
54
|
plugin.name = Entrée/Sortie de fichiers
|
55
|
-
use_loaders.description = Utiliser les chargeurs de données de
|
55
|
+
use_loaders.description = Utiliser les chargeurs de données de LlamaIndex pour la lecture de fichiers (commande read_file).
|
56
56
|
use_loaders.label = Utiliser les chargeurs de données
|
@@ -15,7 +15,7 @@ cmd.download_file.description = Abilita l'esecuzione del comando download_file -
|
|
15
15
|
cmd.download_file.label = Attiva: scarica file
|
16
16
|
cmd.file_exists.description = Abilita l'esecuzione del comando file_exists - verifica dell'esistenza di un file o directory.
|
17
17
|
cmd.file_exists.label = Attiva: controlla se un file o directory esiste
|
18
|
-
cmd.file_index.description = Abilita l'esecuzione del comando file_index - indicizzazione dei file a un indice persistente.\nSe abilitato, il modello sarà in grado di indicizzare un file o directory usando
|
18
|
+
cmd.file_index.description = Abilita l'esecuzione del comando file_index - indicizzazione dei file a un indice persistente.\nSe abilitato, il modello sarà in grado di indicizzare un file o directory usando LlamaIndex (indice persistente).
|
19
19
|
cmd.file_index.label = Attiva: indicizzazione dei file a indice persistente
|
20
20
|
cmd.file_info.description = Abilita l'esecuzione del comando file_info - ottenere informazioni del file.
|
21
21
|
cmd.file_info.label = Attiva: ottieni informazioni del file
|
@@ -33,8 +33,8 @@ cmd.mkdir.description = Abilita l'esecuzione del comando mkdir - creazione di di
|
|
33
33
|
cmd.mkdir.label = Attiva: creazione di directory (mkdir)
|
34
34
|
cmd.move.description = Abilita l'esecuzione del comando move - spostamento di file e directory (rinominare).
|
35
35
|
cmd.move.label = Attiva: sposta file e directory (rinominare)
|
36
|
-
cmd.query_file.description = Abilita l'esecuzione del comando query_file (indice in memoria) - interrogazione veloce del file con
|
37
|
-
cmd.query_file.label = Attiva: interrogazione veloce del file con
|
36
|
+
cmd.query_file.description = Abilita l'esecuzione del comando query_file (indice in memoria) - interrogazione veloce del file con LlamaIndex.\nSe abilitato, il modello sarà in grado di indicizzare velocemente un file in memoria e interrogarlo per dati (indice in memoria).
|
37
|
+
cmd.query_file.label = Attiva: interrogazione veloce del file con LlamaIndex
|
38
38
|
cmd.read_file.description = Abilita l'esecuzione del comando read_file - lettura di file.
|
39
39
|
cmd.read_file.label = Attiva: leggi file
|
40
40
|
cmd.rmdir.description = Abilita l'esecuzione del comando rmdir - rimozione di directory.
|
@@ -52,5 +52,5 @@ only_index.description = Se abilitato, il file verrà indicizzato senza restitui
|
|
52
52
|
only_index.label = Solo indicizza file letti
|
53
53
|
plugin.description = Fornisce comandi per leggere e scrivere file
|
54
54
|
plugin.name = I/O di file
|
55
|
-
use_loaders.description = Utilizzare i loader di dati di
|
55
|
+
use_loaders.description = Utilizzare i loader di dati di LlamaIndex per la lettura di file (comando read_file).
|
56
56
|
use_loaders.label = Utilizza loader di dati
|
@@ -15,7 +15,7 @@ cmd.download_file.description = Włącza wykonanie polecenia download_file - pob
|
|
15
15
|
cmd.download_file.label = Włącz: pobieranie plików
|
16
16
|
cmd.file_exists.description = Włącza wykonanie polecenia file_exists - sprawdzanie czy plik lub katalog istnieje.
|
17
17
|
cmd.file_exists.label = Włącz: sprawdź czy plik lub katalog istnieje
|
18
|
-
cmd.file_index.description = Włącza wykonanie polecenia file_index - indeksowanie plików do trwałego indeksu.\nJeśli włączone, model będzie w stanie zindeksować plik lub katalog używając
|
18
|
+
cmd.file_index.description = Włącza wykonanie polecenia file_index - indeksowanie plików do trwałego indeksu.\nJeśli włączone, model będzie w stanie zindeksować plik lub katalog używając LlamaIndex (trwały indeks).
|
19
19
|
cmd.file_index.label = Włącz: indeksowanie plików do trwałego indeksu
|
20
20
|
cmd.file_info.description = Włącza wykonanie polecenia file_info - pobieranie informacji o plikach.
|
21
21
|
cmd.file_info.label = Włącz: pobierz informacje o pliku
|
@@ -33,8 +33,8 @@ cmd.mkdir.description = Włącza wykonanie polecenia mkdir - tworzenie katalogu
|
|
33
33
|
cmd.mkdir.label = Włącz: tworzenie katalogu (mkdir)
|
34
34
|
cmd.move.description = Włącza wykonanie polecenia move - przenoszenie plików i katalogów (zmiana nazwy).
|
35
35
|
cmd.move.label = Włącz: przenieś pliki i katalogi (zmiana nazwy)
|
36
|
-
cmd.query_file.description = Włącza wykonanie polecenia query_file (indeks w pamięci) - szybkie indeksowanie pliku z
|
37
|
-
cmd.query_file.label = Włącz: szybkie wyszukiwanie pliku z
|
36
|
+
cmd.query_file.description = Włącza wykonanie polecenia query_file (indeks w pamięci) - szybkie indeksowanie pliku z LlamaIndex.\nJeśli włączone, model będzie w stanie szybko zindeksować plik w pamięci i przeszukać go w celu znalezienia danych (indeks w pamięci).
|
37
|
+
cmd.query_file.label = Włącz: szybkie wyszukiwanie pliku z LlamaIndex
|
38
38
|
cmd.read_file.description = Włącza wykonanie polecenia read_file - czytanie plików.
|
39
39
|
cmd.read_file.label = Włącz: czytaj plik
|
40
40
|
cmd.rmdir.description = Włącza wykonanie polecenia rmdir - usuwanie katalogów.
|
@@ -52,5 +52,5 @@ only_index.description = Jeśli włączone, plik zostanie zindeksowany bez zwrac
|
|
52
52
|
only_index.label = Tylko indeksuj czytane pliki
|
53
53
|
plugin.description = Udostępnia polecenia do odczytu i zapisu plików
|
54
54
|
plugin.name = We/Wy plików
|
55
|
-
use_loaders.description = Użyj ładowarek danych z
|
55
|
+
use_loaders.description = Użyj ładowarek danych z LlamaIndex do czytania plików (polecenie read_file).
|
56
56
|
use_loaders.label = Użyj ładowarek danych
|
@@ -15,7 +15,7 @@ cmd.download_file.description = Дозволяє виконання команд
|
|
15
15
|
cmd.download_file.label = Дозволити: завантаження файлів
|
16
16
|
cmd.file_exists.description = Дозволяє виконання команди file_exists - перевірка існування файлу або директорії.
|
17
17
|
cmd.file_exists.label = Дозволити: перевірити існування файлу чи директорії
|
18
|
-
cmd.file_index.description = Дозволяє виконання команди file_index - індексацію файлів до постійного індексу.\nЯкщо включено, модель зможе індексувати файл або директорію за допомогою
|
18
|
+
cmd.file_index.description = Дозволяє виконання команди file_index - індексацію файлів до постійного індексу.\nЯкщо включено, модель зможе індексувати файл або директорію за допомогою LlamaIndex (постійний індекс).
|
19
19
|
cmd.file_index.label = Дозволити: індексація файлів до постійного індексу
|
20
20
|
cmd.file_info.description = Дозволяє виконання команди file_info - отримання інформації про файл.
|
21
21
|
cmd.file_info.label = Дозволити: отримати інформацію про файл
|
@@ -33,8 +33,8 @@ cmd.mkdir.description = Дозволяє виконання команди mkdir
|
|
33
33
|
cmd.mkdir.label = Дозволити: створення директорій (mkdir)
|
34
34
|
cmd.move.description = Дозволяє виконання команди move - переміщення файлів та директорій (перейменування).
|
35
35
|
cmd.move.label = Дозволити: перемістити файли та директорії (перейменування)
|
36
|
-
cmd.query_file.description = Дозволяє виконання команди query_file (індекс в пам’яті) - швидкий запит файла за допомогою
|
37
|
-
cmd.query_file.label = Дозволити: швидкий запит файла за допомогою
|
36
|
+
cmd.query_file.description = Дозволяє виконання команди query_file (індекс в пам’яті) - швидкий запит файла за допомогою LlamaIndex.\nЯкщо включено, модель зможе швидко індексувати файл в пам'яті та запитувати дані (індекс в пам'яті).
|
37
|
+
cmd.query_file.label = Дозволити: швидкий запит файла за допомогою LlamaIndex
|
38
38
|
cmd.read_file.description = Дозволяє виконання команди read_file - читання файлів.
|
39
39
|
cmd.read_file.label = Дозволити: читати файл
|
40
40
|
cmd.rmdir.description = Дозволяє виконання команди rmdir - видалення директорій.
|
@@ -52,5 +52,5 @@ only_index.description = Якщо увімкнено, файл буде проі
|
|
52
52
|
only_index.label = Тільки індексування читаних файлів
|
53
53
|
plugin.description = Надає команди для читання та запису файлів
|
54
54
|
plugin.name = Введення/Виведення файлів
|
55
|
-
use_loaders.description = Використання завантажувачів даних з
|
55
|
+
use_loaders.description = Використання завантажувачів даних з LlamaIndex для читання файлів (команда read_file).
|
56
56
|
use_loaders.label = Використати завантажувачі даних
|
@@ -15,7 +15,7 @@ cmd.download_file.description = 启用download_file命令执行 - 下载文件
|
|
15
15
|
cmd.download_file.label = 启用:下载文件
|
16
16
|
cmd.file_exists.description = 启用file_exists命令执行 - 检查文件或目录是否存在。
|
17
17
|
cmd.file_exists.label = 启用:检查文件或目录是否存在
|
18
|
-
cmd.file_index.description = 启用file_index命令执行 - 将文件索引到持久索引。\n如果启用,模型将能够使用
|
18
|
+
cmd.file_index.description = 启用file_index命令执行 - 将文件索引到持久索引。\n如果启用,模型将能够使用LlamaIndex索引文件或目录(持久索引)。
|
19
19
|
cmd.file_index.label = 启用:将文件索引到持久索引
|
20
20
|
cmd.file_info.description = 启用file_info命令执行 - 获取文件信息。
|
21
21
|
cmd.file_info.label = 启用:获取文件信息
|
@@ -33,8 +33,8 @@ cmd.mkdir.description = 启用mkdir命令执行 - 创建目录(mkdir)。
|
|
33
33
|
cmd.mkdir.label = 启用:创建目录(mkdir)
|
34
34
|
cmd.move.description = 启用move命令执行 - 移动文件和目录(重命名)。
|
35
35
|
cmd.move.label = 启用:移动文件和目录(重命名)
|
36
|
-
cmd.query_file.description = 启用query_file命令执行(内存索引) - 使用
|
37
|
-
cmd.query_file.label = 启用:使用
|
36
|
+
cmd.query_file.description = 启用query_file命令执行(内存索引) - 使用LlamaIndex快速查询文件。\n如果启用,模型将能够快速将文件索引到内存并查询数据(内存索引)。
|
37
|
+
cmd.query_file.label = 启用:使用LlamaIndex快速查询文件
|
38
38
|
cmd.read_file.description = 启用read_file命令执行 - 读取文件。
|
39
39
|
cmd.read_file.label = 启用:读取文件
|
40
40
|
cmd.rmdir.description = 启用rmdir命令执行 - 删除目录。
|
@@ -52,5 +52,5 @@ only_index.description = 如果启用,读取文件时将只索引文件,不
|
|
52
52
|
only_index.label = 仅索引读取的文件
|
53
53
|
plugin.description = 提供读写文件的命令
|
54
54
|
plugin.name = 文件输入/输出
|
55
|
-
use_loaders.description = 使用
|
55
|
+
use_loaders.description = 使用LlamaIndex的数据加载器读取文件(read_file命令)。
|
56
56
|
use_loaders.label = 使用数据加载器
|
@@ -3,15 +3,15 @@ auto_cwd.description = Fügt das aktuelle Arbeitsverzeichnis automatisch dem sys
|
|
3
3
|
auto_cwd.label = Automatisch CWD zu sys_exec hinzufügen
|
4
4
|
cmd.sys_exec.description = Aktiviere die Ausführung von Systembefehlen über sys_exec. Wenn aktiviert, erlaubt es die Ausführung von Systembefehlen.
|
5
5
|
cmd.sys_exec.label = Aktivieren: Systembefehlsausführung
|
6
|
+
container_name.description = Benutzerdefinierter Container-Name
|
7
|
+
container_name.label = Docker-Containername
|
8
|
+
dockerfile.description = Sie können die Dockerfile für das Image anpassen, indem Sie die obige Konfiguration bearbeiten und das Image über Werkzeuge -> Docker-Sandbox-Images neu erstellen.
|
9
|
+
dockerfile.label = Dockerfile
|
10
|
+
image_name.description = Benutzerdefinierter Image-Name
|
11
|
+
image_name.label = Docker-Image-Name
|
6
12
|
plugin.description = Bietet Integration mit dem Betriebssystem (OS) und ermöglicht die Ausführung von Systembefehlen.
|
7
13
|
plugin.name = System (OS)
|
8
14
|
sandbox_docker.description = Führt alle Systembefehle innerhalb einer Sandbox-Umgebung (Docker-Container) aus. Docker muss installiert und ausgeführt werden.
|
9
15
|
sandbox_docker_image.description = Gibt das Docker-Image an, das für die Sandbox verwendet werden soll.
|
10
16
|
sandbox_docker_image.label = Docker-Image
|
11
17
|
sandbox_docker.label = Sandbox (Docker-Container)
|
12
|
-
container_name.description = Benutzerdefinierter Container-Name
|
13
|
-
container_name.label = Docker-Containername
|
14
|
-
dockerfile.description = Sie können die Dockerfile für das Image anpassen, indem Sie die obige Konfiguration bearbeiten und das Image über Werkzeuge -> Docker-Sandbox-Images neu erstellen.
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = Benutzerdefinierter Image-Name
|
17
|
-
image_name.label = Docker-Image-Name
|
@@ -3,15 +3,21 @@ auto_cwd.description = Automatically append the current working directory to the
|
|
3
3
|
auto_cwd.label = Auto-append CWD to sys_exec
|
4
4
|
cmd.sys_exec.description = Enable the execution of system commands via sys_exec. When enabled, allows the execution of system commands.
|
5
5
|
cmd.sys_exec.label = Enable: System Command Execution
|
6
|
+
container_name.description = Custom container name
|
7
|
+
container_name.label = Docker container name
|
8
|
+
docker_entrypoint.description = Command to run when starting the container
|
9
|
+
docker_entrypoint.label = Docker Entrypoint
|
10
|
+
dockerfile.description = You can customize the Dockerfile for the image by editing the configuration above and rebuilding the image via Tools -> Rebuild Docker sandbox Images.
|
11
|
+
dockerfile.label = Dockerfile
|
12
|
+
docker_ports.description = Docker ports mapping: docker <> host. You can define protocol (in DOCKER key) with 8888/tcp or leave empty protocol part to use default (TCP)
|
13
|
+
docker_ports.label = Docker Ports
|
14
|
+
docker_volumes.description = Docker volumes mapping: docker <> host, {workdir} - placeholder for the current working directory on the host machine. Mode r/w will be used.
|
15
|
+
docker_volumes.label = Docker Volumes
|
16
|
+
image_name.description = Custom image name
|
17
|
+
image_name.label = Docker image name
|
6
18
|
plugin.description = Provides integration with the operating system (OS) and allows the execution of system commands.
|
7
19
|
plugin.name = System (OS)
|
8
20
|
sandbox_docker.description = Executes all system commands within a sandbox environment (Docker container). Docker must be installed and running.
|
9
21
|
sandbox_docker_image.description = Specifies the Docker image to use for the sandbox.
|
10
22
|
sandbox_docker_image.label = Docker Image
|
11
23
|
sandbox_docker.label = Sandbox (Docker Container)
|
12
|
-
container_name.description = Custom container name
|
13
|
-
container_name.label = Docker container name
|
14
|
-
dockerfile.description = You can customize the Dockerfile for the image by editing the configuration above and rebuilding the image via Tools -> Rebuild Docker sandbox Images.
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = Custom image name
|
17
|
-
image_name.label = Docker image name
|
@@ -3,15 +3,15 @@ auto_cwd.description = Añade automáticamente el directorio de trabajo actual a
|
|
3
3
|
auto_cwd.label = Añadir automáticamente CWD a sys_exec
|
4
4
|
cmd.sys_exec.description = Habilita la ejecución de comandos del sistema a través de sys_exec. Cuando está habilitado, permite la ejecución de comandos del sistema.
|
5
5
|
cmd.sys_exec.label = Habilitar: Ejecución de Comandos del Sistema
|
6
|
+
container_name.description = Nombre del contenedor personalizado
|
7
|
+
container_name.label = Nombre del contenedor Docker
|
8
|
+
dockerfile.description = Puede personalizar el archivo Dockerfile para la imagen editando la configuración anterior y reconstruyendo la imagen a través de Herramientas -> Reconstruir Imágenes de Sandbox Docker.
|
9
|
+
dockerfile.label = Dockerfile
|
10
|
+
image_name.description = Nombre de imagen personalizado
|
11
|
+
image_name.label = Nombre de imagen Docker
|
6
12
|
plugin.description = Proporciona integración con el sistema operativo (OS) y permite la ejecución de comandos del sistema.
|
7
13
|
plugin.name = Sistema (OS)
|
8
14
|
sandbox_docker.description = Ejecuta todos los comandos del sistema dentro de un entorno seguro (contenedor Docker). Docker debe estar instalado y en ejecución.
|
9
15
|
sandbox_docker_image.description = Especifica la imagen de Docker a utilizar para el entorno seguro.
|
10
16
|
sandbox_docker_image.label = Imagen de Docker
|
11
17
|
sandbox_docker.label = Entorno Seguro (Contenedor Docker)
|
12
|
-
container_name.description = Nombre del contenedor personalizado
|
13
|
-
container_name.label = Nombre del contenedor Docker
|
14
|
-
dockerfile.description = Puede personalizar el archivo Dockerfile para la imagen editando la configuración anterior y reconstruyendo la imagen a través de Herramientas -> Reconstruir Imágenes de Sandbox Docker.
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = Nombre de imagen personalizado
|
17
|
-
image_name.label = Nombre de imagen Docker
|
@@ -3,15 +3,15 @@ auto_cwd.description = Ajoute automatiquement le répertoire de travail actuel
|
|
3
3
|
auto_cwd.label = Ajouter automatiquement CWD à sys_exec
|
4
4
|
cmd.sys_exec.description = Activer l'exécution des commandes système via sys_exec. Lorsqu'elle est activée, permet l'exécution des commandes système.
|
5
5
|
cmd.sys_exec.label = Activer : Exécution des commandes système
|
6
|
+
container_name.description = Nom de conteneur personnalisé
|
7
|
+
container_name.label = Nom du conteneur Docker
|
8
|
+
dockerfile.description = Vous pouvez personnaliser le Dockerfile pour l'image en modifiant la configuration ci-dessus et en reconstruisant l'image via Outils -> Rebuild Docker sandbox Images.
|
9
|
+
dockerfile.label = Dockerfile
|
10
|
+
image_name.description = Nom d'image personnalisé
|
11
|
+
image_name.label = Nom de l'image Docker
|
6
12
|
plugin.description = Fournit une intégration avec le système d'exploitation (OS) et permet l'exécution de commandes système.
|
7
13
|
plugin.name = Système (OS)
|
8
14
|
sandbox_docker.description = Exécute toutes les commandes système dans un environnement sandbox (conteneur Docker). Docker doit être installé et en cours d'exécution.
|
9
15
|
sandbox_docker_image.description = Spécifie l'image Docker à utiliser pour la sandbox.
|
10
16
|
sandbox_docker_image.label = Image Docker
|
11
17
|
sandbox_docker.label = Sandbox (Conteneur Docker)
|
12
|
-
container_name.description = Nom de conteneur personnalisé
|
13
|
-
container_name.label = Nom du conteneur Docker
|
14
|
-
dockerfile.description = Vous pouvez personnaliser le Dockerfile pour l'image en modifiant la configuration ci-dessus et en reconstruisant l'image via Outils -> Rebuild Docker sandbox Images.
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = Nom d'image personnalisé
|
17
|
-
image_name.label = Nom de l'image Docker
|
@@ -3,15 +3,15 @@ auto_cwd.description = Aggiunge automaticamente la directory di lavoro corrente
|
|
3
3
|
auto_cwd.label = Aggiungi automaticamente CWD a sys_exec
|
4
4
|
cmd.sys_exec.description = Abilita l'esecuzione dei comandi di sistema tramite sys_exec. Quando abilitata, consente l'esecuzione dei comandi di sistema.
|
5
5
|
cmd.sys_exec.label = Abilita: Esecuzione Comandi di Sistema
|
6
|
+
container_name.description = Nome del contenitore personalizzato
|
7
|
+
container_name.label = Nome del contenitore Docker
|
8
|
+
dockerfile.description = Puoi personalizzare il Dockerfile per l'immagine modificando la configurazione sopra e ricostruendo l'immagine tramite Strumenti -> Ricostruisci Immagini sandbox Docker.
|
9
|
+
dockerfile.label = Dockerfile
|
10
|
+
image_name.description = Nome immagine personalizzato
|
11
|
+
image_name.label = Nome immagine Docker
|
6
12
|
plugin.description = Fornisce integrazione con il sistema operativo (OS) e consente l'esecuzione di comandi di sistema.
|
7
13
|
plugin.name = Sistema (OS)
|
8
14
|
sandbox_docker.description = Esegue tutti i comandi di sistema in un ambiente sandbox (contenitore Docker). Docker deve essere installato e in funzione.
|
9
15
|
sandbox_docker_image.description = Specifica l'immagine Docker da utilizzare per la sandbox.
|
10
16
|
sandbox_docker_image.label = Immagine Docker
|
11
17
|
sandbox_docker.label = Sandbox (Contenitore Docker)
|
12
|
-
container_name.description = Nome del contenitore personalizzato
|
13
|
-
container_name.label = Nome del contenitore Docker
|
14
|
-
dockerfile.description = Puoi personalizzare il Dockerfile per l'immagine modificando la configurazione sopra e ricostruendo l'immagine tramite Strumenti -> Ricostruisci Immagini sandbox Docker.
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = Nome immagine personalizzato
|
17
|
-
image_name.label = Nome immagine Docker
|
@@ -3,15 +3,15 @@ auto_cwd.description = Automatycznie dodaje bieżący katalog roboczy do polecen
|
|
3
3
|
auto_cwd.label = Automatyczne dodawanie CWD do sys_exec
|
4
4
|
cmd.sys_exec.description = Włącz wykonywanie poleceń systemowych za pomocą sys_exec. Po włączeniu pozwala na wykonywanie poleceń systemowych.
|
5
5
|
cmd.sys_exec.label = Włącz: Wykonywanie Poleceń Systemowych
|
6
|
+
container_name.description = Niestandardowa nazwa kontenera
|
7
|
+
container_name.label = Nazwa kontenera Dockera
|
8
|
+
dockerfile.description = Możesz dostosować plik Dockerfile do obrazu, edytując powyższą konfigurację i odbudowując obraz za pomocą Narzędzia -> Odbuduj Obrazy sandbox Docker.
|
9
|
+
dockerfile.label = Dockerfile
|
10
|
+
image_name.description = Niestandardowa nazwa obrazu
|
11
|
+
image_name.label = Nazwa obrazu Docker
|
6
12
|
plugin.description = Zapewnia integrację z systemem operacyjnym (OS) i pozwala na wykonywanie poleceń systemowych.
|
7
13
|
plugin.name = System (OS)
|
8
14
|
sandbox_docker.description = Wykonuje wszystkie polecenia systemowe w środowisku sandbox (kontener Docker). Docker musi być zainstalowany i uruchomiony.
|
9
15
|
sandbox_docker_image.description = Określa obraz Dockera do użycia jako sandbox.
|
10
16
|
sandbox_docker_image.label = Obraz Dockera
|
11
17
|
sandbox_docker.label = Sandbox (Kontener Docker)
|
12
|
-
container_name.description = Niestandardowa nazwa kontenera
|
13
|
-
container_name.label = Nazwa kontenera Dockera
|
14
|
-
dockerfile.description = Możesz dostosować plik Dockerfile do obrazu, edytując powyższą konfigurację i odbudowując obraz za pomocą Narzędzia -> Odbuduj Obrazy sandbox Docker.
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = Niestandardowa nazwa obrazu
|
17
|
-
image_name.label = Nazwa obrazu Docker
|
@@ -3,15 +3,15 @@ auto_cwd.description = Автоматично додає поточний роб
|
|
3
3
|
auto_cwd.label = Автододавання CWD до sys_exec
|
4
4
|
cmd.sys_exec.description = Увімкніть виконання системних команд через sys_exec. Коли увімкнено, дозволяє виконувати системні команди.
|
5
5
|
cmd.sys_exec.label = Увімкнути: Виконання системних команд
|
6
|
+
container_name.description = Індивідуальна назва контейнера
|
7
|
+
container_name.label = Ім'я контейнера Docker
|
8
|
+
dockerfile.description = Ви можете налаштувати файл Dockerfile для образу, редагуючи вищезазначене налаштування та перебудовуючи образ через Інструменти -> Перебудова образів пісочниці Docker.
|
9
|
+
dockerfile.label = Dockerfile
|
10
|
+
image_name.description = Індивідуальна назва образу
|
11
|
+
image_name.label = Ім'я образу Docker
|
6
12
|
plugin.description = Забезпечує інтеграцію з операційною системою (OS) та дозволяє виконувати системні команди.
|
7
13
|
plugin.name = Система (OS)
|
8
14
|
sandbox_docker.description = Виконує всі системні команди в середовищі пісочниці (контейнер Docker). Docker повинен бути встановлений і запущений.
|
9
15
|
sandbox_docker_image.description = Вказує Docker-образ для використання в пісочниці.
|
10
16
|
sandbox_docker_image.label = Docker-образ
|
11
17
|
sandbox_docker.label = Пісочниця (контейнер Docker)
|
12
|
-
container_name.description = Індивідуальна назва контейнера
|
13
|
-
container_name.label = Ім'я контейнера Docker
|
14
|
-
dockerfile.description = Ви можете налаштувати файл Dockerfile для образу, редагуючи вищезазначене налаштування та перебудовуючи образ через Інструменти -> Перебудова образів пісочниці Docker.
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = Індивідуальна назва образу
|
17
|
-
image_name.label = Ім'я образу Docker
|
@@ -3,15 +3,15 @@ auto_cwd.description = 自动将当前工作目录附加到 sys_exec 命令。
|
|
3
3
|
auto_cwd.label = 自动附加 CWD 到 sys_exec
|
4
4
|
cmd.sys_exec.description = 启用通过 sys_exec 执行系统命令。启用后,允许执行系统命令。
|
5
5
|
cmd.sys_exec.label = 启用:系统命令执行
|
6
|
+
container_name.description = 自定义容器名称
|
7
|
+
container_name.label = Docker 容器名称
|
8
|
+
dockerfile.description = 您可以通过编辑上面的配置并通过工具 -> 重新构建 Docker 沙箱镜像来自定义镜像的 Dockerfile。
|
9
|
+
dockerfile.label = Dockerfile
|
10
|
+
image_name.description = 自定义镜像名称
|
11
|
+
image_name.label = Docker 镜像名称
|
6
12
|
plugin.description = 提供与操作系统 (OS) 的集成,并允许执行系统命令。
|
7
13
|
plugin.name = 系统 (OS)
|
8
14
|
sandbox_docker.description = 在沙箱环境(Docker 容器)中执行所有系统命令。必须安装并运行 Docker。
|
9
15
|
sandbox_docker_image.description = 指定用于沙箱的 Docker 镜像。
|
10
16
|
sandbox_docker_image.label = Docker 镜像
|
11
17
|
sandbox_docker.label = 沙箱(Docker 容器)
|
12
|
-
container_name.description = 自定义容器名称
|
13
|
-
container_name.label = Docker 容器名称
|
14
|
-
dockerfile.description = 您可以通过编辑上面的配置并通过工具 -> 重新构建 Docker 沙箱镜像来自定义镜像的 Dockerfile。
|
15
|
-
dockerfile.label = Dockerfile
|
16
|
-
image_name.description = 自定义镜像名称
|
17
|
-
image_name.label = Docker 镜像名称
|
@@ -1,15 +1,15 @@
|
|
1
1
|
[LOCALE]
|
2
|
-
auto_index.description = Wenn aktiviert, wird jede von dem Modell verwendete URL automatisch mit
|
3
|
-
auto_index.label = Auto-Index aller verwendeten URLs mit
|
2
|
+
auto_index.description = Wenn aktiviert, wird jede von dem Modell verwendete URL automatisch mit LlamaIndex (persistentem Index) indiziert.
|
3
|
+
auto_index.label = Auto-Index aller verwendeten URLs mit LlamaIndex
|
4
4
|
bing_api_key.description = Sie können Ihren eigenen API-Schlüssel unter https://www.microsoft.com/en-us/bing/apis/bing-web-search-api erhalten
|
5
5
|
bing_api_key.label = Microsoft Bing Search API-Schlüssel
|
6
6
|
bing_endpoint.description = API-Endpunkt für die Bing-Such-API, standardmäßig: https://api.bing.microsoft.com/v7.0/search
|
7
7
|
bing_endpoint.label = Bing Search API-Endpunkt
|
8
8
|
chunk_size.description = Seitenspezifische Inhalts-Chunk-Größe (maximale Zeichen pro Chunk).
|
9
9
|
chunk_size.label = Seitenspezifische Inhalts-Chunk-Größe
|
10
|
-
cmd.web_index.description = Aktivieren der Ausführung des web_index-Befehls.\nWenn aktiviert, kann das Modell Seiten und externen Inhalt mit
|
10
|
+
cmd.web_index.description = Aktivieren der Ausführung des web_index-Befehls.\nWenn aktiviert, kann das Modell Seiten und externen Inhalt mit LlamaIndex (persistentem Index) indizieren.
|
11
11
|
cmd.web_index.label = Aktivieren: Indizieren des Webs und externen Inhalts
|
12
|
-
cmd.web_index_query.description = Aktivieren der Ausführung des web_index_query-Befehls.\nWenn aktiviert, kann das Modell Webinhalte schnell indizieren und abfragen mit
|
12
|
+
cmd.web_index_query.description = Aktivieren der Ausführung des web_index_query-Befehls.\nWenn aktiviert, kann das Modell Webinhalte schnell indizieren und abfragen mit LlamaIndex (im Speicher Index).
|
13
13
|
cmd.web_index_query.label = Aktivieren: Schnelles Abfragen des Webs und externen Inhalts
|
14
14
|
cmd.web_index_query.tooltip = Beispiel-Prompt: Abfrage der Website http://example.com über (Frage).
|
15
15
|
cmd.web_index.tooltip = Beispiel-Prompt: Indiziere die Website http://example.com.
|
@@ -42,7 +42,7 @@ model_tmp_query.label = Modell für die Abfrage des temporären Index
|
|
42
42
|
model_tmp_query.tooltip = Modell, das verwendet wird, um den temporären Index für den web_index_query-Befehl abzufragen (im Speicher Index)
|
43
43
|
num_pages.description = Maximale Anzahl an Seiten, die pro Abfrage durchsucht werden.
|
44
44
|
num_pages.label = Anzahl der zu durchsuchenden Seiten
|
45
|
-
plugin.description = Ermöglicht die Verbindung mit dem Internet, das Durchsuchen von Webseiten nach aktuellen Daten und das Indizieren von externen Inhalten mit
|
45
|
+
plugin.description = Ermöglicht die Verbindung mit dem Internet, das Durchsuchen von Webseiten nach aktuellen Daten und das Indizieren von externen Inhalten mit LlamaIndex Datenladern.
|
46
46
|
plugin.name = Websuche
|
47
47
|
prompt_summarize.description = Prompt, der für die Zusammenfassung von Websuchergebnissen verwendet wird, benutzen Sie {query} als Platzhalter für die Suchanfrage.
|
48
48
|
prompt_summarize.label = Zusammenfassungs-Prompt
|
@@ -1,15 +1,15 @@
|
|
1
1
|
[LOCALE]
|
2
|
-
auto_index.description = If enabled, each URL used by the model will be automatically indexed using
|
3
|
-
auto_index.label = Auto-index all used URLs using
|
2
|
+
auto_index.description = If enabled, each URL used by the model will be automatically indexed using LlamaIndex (persistent index).
|
3
|
+
auto_index.label = Auto-index all used URLs using LlamaIndex
|
4
4
|
bing_api_key.description = You can obtain your own API key at https://www.microsoft.com/en-us/bing/apis/bing-web-search-api
|
5
5
|
bing_api_key.label = Microsoft Bing Search API KEY
|
6
6
|
bing_endpoint.description = API endpoint for the Bing Search API, default: https://api.bing.microsoft.com/v7.0/search
|
7
7
|
bing_endpoint.label = Bing Search API endpoint
|
8
8
|
chunk_size.description = Per-page content chunk size (maximum characters per chunk).
|
9
9
|
chunk_size.label = Per-page content chunk size
|
10
|
-
cmd.web_index.description = Enable `web_index` command execution.\nIf enabled, the model will be able to index pages and external content using
|
10
|
+
cmd.web_index.description = Enable `web_index` command execution.\nIf enabled, the model will be able to index pages and external content using LlamaIndex (persistent index).
|
11
11
|
cmd.web_index.label = Enable: indexing web and external content
|
12
|
-
cmd.web_index_query.description = Enable `web_index_query` command execution.\nIf enabled, the model will be able to quickly index and query web content using
|
12
|
+
cmd.web_index_query.description = Enable `web_index_query` command execution.\nIf enabled, the model will be able to quickly index and query web content using LlamaIndex (in-memory index).
|
13
13
|
cmd.web_index_query.label = Enable: quick query the web and external content
|
14
14
|
cmd.web_index_query.tooltip = Example prompt: Query the website http://example.com about (question).
|
15
15
|
cmd.web_index.tooltip = Example prompt: Index the website http://example.com.
|
@@ -42,7 +42,7 @@ model_tmp_query.label = Model for querying in-memory index
|
|
42
42
|
model_tmp_query.tooltip = Model used to query the temporary index for the `web_index_query` command (in-memory index)
|
43
43
|
num_pages.description = Maximum number of pages to search per query.
|
44
44
|
num_pages.label = Number of pages to search
|
45
|
-
plugin.description = Provides the ability to connect to the web, search web pages for current data, and index external content using
|
45
|
+
plugin.description = Provides the ability to connect to the web, search web pages for current data, and index external content using LlamaIndex data loaders.
|
46
46
|
plugin.name = Web Search
|
47
47
|
prompt_summarize.description = Prompt used for summarizing web search results, use {query} as a placeholder for the search query.
|
48
48
|
prompt_summarize.label = Summarize prompt
|
@@ -1,15 +1,15 @@
|
|
1
1
|
[LOCALE]
|
2
|
-
auto_index.description = Si está habilitado, cada URL utilizado por el modelo será automáticamente indexado usando
|
3
|
-
auto_index.label = Auto-indexación de todas las URL utilizadas con
|
2
|
+
auto_index.description = Si está habilitado, cada URL utilizado por el modelo será automáticamente indexado usando LlamaIndex (índice persistente).
|
3
|
+
auto_index.label = Auto-indexación de todas las URL utilizadas con LlamaIndex
|
4
4
|
bing_api_key.description = Puede obtener su propia clave API en https://www.microsoft.com/en-us/bing/apis/bing-web-search-api
|
5
5
|
bing_api_key.label = Clave API de Búsqueda de Microsoft Bing
|
6
6
|
bing_endpoint.description = Punto final de API para la API de Búsqueda de Bing, por defecto: https://api.bing.microsoft.com/v7.0/search
|
7
7
|
bing_endpoint.label = Punto final de API de Búsqueda de Bing
|
8
8
|
chunk_size.description = Tamaño de pedazo de contenido por página (máximo de caracteres por pedazo).
|
9
9
|
chunk_size.label = Tamaño de pedazo de contenido por página
|
10
|
-
cmd.web_index.description = Habilitar la ejecución del comando web_index.\nSi está habilitado, el modelo podrá indexar páginas y contenido externo usando
|
10
|
+
cmd.web_index.description = Habilitar la ejecución del comando web_index.\nSi está habilitado, el modelo podrá indexar páginas y contenido externo usando LlamaIndex (índice persistente).
|
11
11
|
cmd.web_index.label = Habilitar: indexación de la web y contenido externo
|
12
|
-
cmd.web_index_query.description = Habilitar la ejecución del comando web_index_query.\nSi está habilitado, el modelo podrá indexar y consultar rápidamente contenido web usando
|
12
|
+
cmd.web_index_query.description = Habilitar la ejecución del comando web_index_query.\nSi está habilitado, el modelo podrá indexar y consultar rápidamente contenido web usando LlamaIndex (índice en memoria).
|
13
13
|
cmd.web_index_query.label = Habilitar: consulta rápida de la web y contenido externo
|
14
14
|
cmd.web_index_query.tooltip = Ejemplo de prompt: Consultar la página web http://example.com sobre (pregunta).
|
15
15
|
cmd.web_index.tooltip = Ejemplo de prompt: Indexar la página web http://example.com.
|
@@ -42,7 +42,7 @@ model_tmp_query.label = Modelo para consultar índice en memoria
|
|
42
42
|
model_tmp_query.tooltip = Modelo utilizado para consultar el índice temporal para el comando web_index_query (índice en memoria)
|
43
43
|
num_pages.description = Número máximo de páginas a buscar por consulta.
|
44
44
|
num_pages.label = Número de páginas a buscar
|
45
|
-
plugin.description = Proporciona la capacidad de conectarse a la web, buscar páginas web para datos actuales e indexar contenido externo usando cargadores de datos de
|
45
|
+
plugin.description = Proporciona la capacidad de conectarse a la web, buscar páginas web para datos actuales e indexar contenido externo usando cargadores de datos de LlamaIndex.
|
46
46
|
plugin.name = Búsqueda Web
|
47
47
|
prompt_summarize.description = Prompt utilizado para resumir los resultados de búsqueda en la web, use {query} como marcador de posición para la consulta de búsqueda.
|
48
48
|
prompt_summarize.label = Prompt de resumen
|
@@ -1,15 +1,15 @@
|
|
1
1
|
[LOCALE]
|
2
|
-
auto_index.description = Si activé, chaque URL utilisée par le modèle sera automatiquement indexée en utilisant
|
3
|
-
auto_index.label = Indexation automatique de tous les URL utilisés avec
|
2
|
+
auto_index.description = Si activé, chaque URL utilisée par le modèle sera automatiquement indexée en utilisant LlamaIndex (index persistant).
|
3
|
+
auto_index.label = Indexation automatique de tous les URL utilisés avec LlamaIndex
|
4
4
|
bing_api_key.description = Vous pouvez obtenir votre propre clé API à https://www.microsoft.com/en-us/bing/apis/bing-web-search-api
|
5
5
|
bing_api_key.label = Clé API de recherche Microsoft Bing
|
6
6
|
bing_endpoint.description = Point d'accès API pour la recherche Bing API, par défaut : https://api.bing.microsoft.com/v7.0/search
|
7
7
|
bing_endpoint.label = Point d'accès API de Bing Search
|
8
8
|
chunk_size.description = Taille de chunk de contenu par page (nombre maximal de caractères par chunk).
|
9
9
|
chunk_size.label = Taille de chunk de contenu par page
|
10
|
-
cmd.web_index.description = Activer l'exécution de la commande web_index.\nSi activé, le modèle pourra indexer des pages et du contenu externe en utilisant
|
10
|
+
cmd.web_index.description = Activer l'exécution de la commande web_index.\nSi activé, le modèle pourra indexer des pages et du contenu externe en utilisant LlamaIndex (index persistant).
|
11
11
|
cmd.web_index.label = Activer : indexation du web et du contenu externe
|
12
|
-
cmd.web_index_query.description = Activer l'exécution de la commande web_index_query.\nSi activé, le modèle pourra indexer rapidement et interroger le contenu du web en utilisant
|
12
|
+
cmd.web_index_query.description = Activer l'exécution de la commande web_index_query.\nSi activé, le modèle pourra indexer rapidement et interroger le contenu du web en utilisant LlamaIndex (index en mémoire).
|
13
13
|
cmd.web_index_query.label = Activer : interrogation rapide du web et du contenu externe
|
14
14
|
cmd.web_index_query.tooltip = Exemple de prompt : Interrogez le site web http://example.com à propos de (question).
|
15
15
|
cmd.web_index.tooltip = Exemple de prompt : Indexez le site web http://example.com.
|
@@ -42,7 +42,7 @@ model_tmp_query.label = Modèle pour interroger l'index en mémoire
|
|
42
42
|
model_tmp_query.tooltip = Modèle utilisé pour interroger l'index temporaire pour la commande web_index_query (index en mémoire)
|
43
43
|
num_pages.description = Nombre maximal de pages à rechercher par requête.
|
44
44
|
num_pages.label = Nombre de pages à rechercher
|
45
|
-
plugin.description = Fournit la capacité de se connecter au web, de rechercher des pages web pour des données actuelles et d'indexer du contenu externe en utilisant des chargeurs de données
|
45
|
+
plugin.description = Fournit la capacité de se connecter au web, de rechercher des pages web pour des données actuelles et d'indexer du contenu externe en utilisant des chargeurs de données LlamaIndex.
|
46
46
|
plugin.name = Recherche Web
|
47
47
|
prompt_summarize.description = Prompt utilisé pour résumer les résultats de la recherche sur le web, utiliser {query} comme un espace réservé pour la requête de recherche.
|
48
48
|
prompt_summarize.label = Prompt de résumé
|
@@ -1,15 +1,15 @@
|
|
1
1
|
[LOCALE]
|
2
|
-
auto_index.description = Se abilitato, ogni URL utilizzato dal modello verrà automaticamente indicizzato usando
|
3
|
-
auto_index.label = Auto-indicizzazione di tutti gli URL utilizzati tramite
|
2
|
+
auto_index.description = Se abilitato, ogni URL utilizzato dal modello verrà automaticamente indicizzato usando LlamaIndex (indice persistente).
|
3
|
+
auto_index.label = Auto-indicizzazione di tutti gli URL utilizzati tramite LlamaIndex
|
4
4
|
bing_api_key.description = Puoi ottenere la tua chiave API su https://www.microsoft.com/en-us/bing/apis/bing-web-search-api
|
5
5
|
bing_api_key.label = Chiave API di ricerca Microsoft Bing
|
6
6
|
bing_endpoint.description = Endpoint API per Bing Search API, predefinito: https://api.bing.microsoft.com/v7.0/search
|
7
7
|
bing_endpoint.label = Endpoint API di ricerca Bing
|
8
8
|
chunk_size.description = Dimensione del chunk di contenuto per pagina (numero massimo di caratteri per chunk).
|
9
9
|
chunk_size.label = Dimensione del chunk di contenuto per pagina
|
10
|
-
cmd.web_index.description = Abilita l'esecuzione del comando web_index.\nSe abilitato, il modello sarà in grado di indicizzare pagine e contenuti esterni usando
|
10
|
+
cmd.web_index.description = Abilita l'esecuzione del comando web_index.\nSe abilitato, il modello sarà in grado di indicizzare pagine e contenuti esterni usando LlamaIndex (indice persistente).
|
11
11
|
cmd.web_index.label = Abilita: indicizzazione del web e contenuti esterni
|
12
|
-
cmd.web_index_query.description = Abilita l'esecuzione del comando web_index_query.\nSe abilitato, il modello sarà in grado di indicizzare e interrogare rapidamente i contenuti web usando
|
12
|
+
cmd.web_index_query.description = Abilita l'esecuzione del comando web_index_query.\nSe abilitato, il modello sarà in grado di indicizzare e interrogare rapidamente i contenuti web usando LlamaIndex (indice in memoria).
|
13
13
|
cmd.web_index_query.label = Abilita: veloce interrogazione del web e contenuti esterni
|
14
14
|
cmd.web_index_query.tooltip = Esempio di prompt: Interroga il sito web http://example.com su (domanda).
|
15
15
|
cmd.web_index.tooltip = Esempio di prompt: Indicizza il sito web http://example.com.
|
@@ -42,7 +42,7 @@ model_tmp_query.label = Modello per interrogare l'indice in memoria
|
|
42
42
|
model_tmp_query.tooltip = Modello utilizzato per interrogare l'indice temporaneo per il comando web_index_query (indice in memoria)
|
43
43
|
num_pages.description = Numero massimo di pagine da cercare per ogni query.
|
44
44
|
num_pages.label = Numero di pagine da cercare
|
45
|
-
plugin.description = Fornisce la capacità di connettersi al web, cercare pagine web per ottenere dati attuali e indicizzare contenuti esterni utilizzando i caricatori di dati
|
45
|
+
plugin.description = Fornisce la capacità di connettersi al web, cercare pagine web per ottenere dati attuali e indicizzare contenuti esterni utilizzando i caricatori di dati LlamaIndex.
|
46
46
|
plugin.name = Ricerca Web
|
47
47
|
prompt_summarize.description = Prompt utilizzato per riassumere i risultati della ricerca web, utilizzare {query} come segnaposto per la query di ricerca.
|
48
48
|
prompt_summarize.label = Prompt di riassunto
|
@@ -1,15 +1,15 @@
|
|
1
1
|
[LOCALE]
|
2
|
-
auto_index.description = Jeśli włączone, każdy URL wykorzystywany przez model będzie automatycznie indeksowany za pomocą
|
3
|
-
auto_index.label = Automatyczne indeksowanie wszystkich wykorzystanych URLi za pomocą
|
2
|
+
auto_index.description = Jeśli włączone, każdy URL wykorzystywany przez model będzie automatycznie indeksowany za pomocą LlamaIndex (trwały indeks).
|
3
|
+
auto_index.label = Automatyczne indeksowanie wszystkich wykorzystanych URLi za pomocą LlamaIndex
|
4
4
|
bing_api_key.description = Możesz uzyskać swój własny klucz API na stronie https://www.microsoft.com/en-us/bing/apis/bing-web-search-api
|
5
5
|
bing_api_key.label = Klucz API wyszukiwarki Microsoft Bing
|
6
6
|
bing_endpoint.description = Punk końcowy API dla API wyszukiwarki Bing, domyślnie: https://api.bing.microsoft.com/v7.0/search
|
7
7
|
bing_endpoint.label = Punkt końcowy API Bing Search
|
8
8
|
chunk_size.description = Rozmiar fragmentu treści na stronie (maksymalna liczba znaków na fragment).
|
9
9
|
chunk_size.label = Rozmiar fragmentu treści na stronie
|
10
|
-
cmd.web_index.description = Włącz wykonywanie polecenia web_index.\nJeśli włączone, model będzie mógł indeksować strony i zewnętrzne treści używając
|
10
|
+
cmd.web_index.description = Włącz wykonywanie polecenia web_index.\nJeśli włączone, model będzie mógł indeksować strony i zewnętrzne treści używając LlamaIndex (trwały indeks).
|
11
11
|
cmd.web_index.label = Włączenie: indeksowanie internetu i zewnętrznych treści
|
12
|
-
cmd.web_index_query.description = Włącz wykonywanie polecenia web_index_query.\nJeśli włączone, model będzie mógł szybko indeksować i wyszukiwać treści internetowe używając
|
12
|
+
cmd.web_index_query.description = Włącz wykonywanie polecenia web_index_query.\nJeśli włączone, model będzie mógł szybko indeksować i wyszukiwać treści internetowe używając LlamaIndex (indeks w pamięci).
|
13
13
|
cmd.web_index_query.label = Włączenie: szybkie przeszukiwanie internetu i zewnętrznych treści
|
14
14
|
cmd.web_index_query.tooltip = Przykład promptu: Wyszukaj na stronie internetowej http://example.com o (pytanie).
|
15
15
|
cmd.web_index.tooltip = Przykład promptu: Zindeksuj stronę internetową http://example.com.
|
@@ -42,7 +42,7 @@ model_tmp_query.label = Model do zapytań indeksu w pamięci
|
|
42
42
|
model_tmp_query.tooltip = Model używany do zapytań tymczasowego indeksu dla polecenia web_index_query (indeks w pamięci)
|
43
43
|
num_pages.description = Maksymalna liczba stron do przeszukania na zapytanie.
|
44
44
|
num_pages.label = Liczba stron do przeszukania
|
45
|
-
plugin.description = Zapewnia możliwość połączenia z internetem, przeszukiwania stron internetowych w poszukiwaniu aktualnych danych i indeksowania zewnętrznych treści przy użyciu ładowarek danych
|
45
|
+
plugin.description = Zapewnia możliwość połączenia z internetem, przeszukiwania stron internetowych w poszukiwaniu aktualnych danych i indeksowania zewnętrznych treści przy użyciu ładowarek danych LlamaIndex.
|
46
46
|
plugin.name = Wyszukiwanie w Internecie
|
47
47
|
prompt_summarize.description = Prompt używany do podsumowywania wyników wyszukiwania w internecie, użyj {query} jako symbol zastępczy dla zapytania wyszukiwania.
|
48
48
|
prompt_summarize.label = Prompt podsumowujący
|
@@ -1,15 +1,15 @@
|
|
1
1
|
[LOCALE]
|
2
|
-
auto_index.description = Якщо увімкнено, кожна URL-адреса, що використовується моделлю, буде автоматично індексуватися за допомогою
|
3
|
-
auto_index.label = Автоіндексація всіх використаних URL за допомогою
|
2
|
+
auto_index.description = Якщо увімкнено, кожна URL-адреса, що використовується моделлю, буде автоматично індексуватися за допомогою LlamaIndex (постійний індекс).
|
3
|
+
auto_index.label = Автоіндексація всіх використаних URL за допомогою LlamaIndex
|
4
4
|
bing_api_key.description = Ви можете отримати власний ключ API на https://www.microsoft.com/en-us/bing/apis/bing-web-search-api
|
5
5
|
bing_api_key.label = Ключ API пошуку Microsoft Bing
|
6
6
|
bing_endpoint.description = Кінцева точка API для Bing Search API, за замовчуванням: https://api.bing.microsoft.com/v7.0/search
|
7
7
|
bing_endpoint.label = Кінцева точка Bing Search API
|
8
8
|
chunk_size.description = Розмір частини вмісту сторінки (максимальна кількість символів на частину).
|
9
9
|
chunk_size.label = Розмір частини вмісту сторінки
|
10
|
-
cmd.web_index.description = Увімкнути виконання команди web_index.\nЯкщо увімкнено, модель зможе індексувати сторінки та зовнішній вміст за допомогою
|
10
|
+
cmd.web_index.description = Увімкнути виконання команди web_index.\nЯкщо увімкнено, модель зможе індексувати сторінки та зовнішній вміст за допомогою LlamaIndex (постійний індекс).
|
11
11
|
cmd.web_index.label = Увімкнення: індексація вебу та зовнішніх вмістів
|
12
|
-
cmd.web_index_query.description = Увімкнути виконання команди web_index_query.\nЯкщо увімкнено, модель зможе швидко індексувати та запитувати веб-вміст за допомогою
|
12
|
+
cmd.web_index_query.description = Увімкнути виконання команди web_index_query.\nЯкщо увімкнено, модель зможе швидко індексувати та запитувати веб-вміст за допомогою LlamaIndex (індекс у пам'яті).
|
13
13
|
cmd.web_index_query.label = Увімкнення: швидкий запит вебу та зовнішніх вмістів
|
14
14
|
cmd.web_index_query.tooltip = Приклад запиту: Запит на вебсайті http://example.com про (питання).
|
15
15
|
cmd.web_index.tooltip = Приклад запиту: Індексувати вебсайт http://example.com.
|
@@ -42,7 +42,7 @@ model_tmp_query.label = Модель для запитів індексу у п
|
|
42
42
|
model_tmp_query.tooltip = Модель, яка використовується для запитів тимчасового індексу для команди web_index_query (індекс у пам'яті)
|
43
43
|
num_pages.description = Максимальна кількість сторінок для пошуку за запитом.
|
44
44
|
num_pages.label = Кількість сторінок для пошуку
|
45
|
-
plugin.description = Надає можливість підключення до вебу, пошуку вебсторінок для актуальних даних та індексації зовнішнього вмісту за допомогою завантажувачів даних
|
45
|
+
plugin.description = Надає можливість підключення до вебу, пошуку вебсторінок для актуальних даних та індексації зовнішнього вмісту за допомогою завантажувачів даних LlamaIndex.
|
46
46
|
plugin.name = Веб-пошук
|
47
47
|
prompt_summarize.description = Шаблон для підсумування результатів веб-пошуку, використовуйте {query} як заповнювач для пошукового запиту.
|
48
48
|
prompt_summarize.label = Шаблон підсумування
|