pygpt-net 2.6.60__py3-none-any.whl → 2.6.62__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 +14 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/chat/common.py +115 -6
- pygpt_net/controller/chat/input.py +4 -1
- pygpt_net/controller/chat/response.py +8 -2
- pygpt_net/controller/presets/presets.py +121 -6
- pygpt_net/controller/settings/editor.py +0 -15
- pygpt_net/controller/settings/profile.py +16 -4
- pygpt_net/controller/settings/workdir.py +30 -5
- pygpt_net/controller/theme/common.py +4 -2
- pygpt_net/controller/theme/markdown.py +4 -7
- pygpt_net/controller/theme/theme.py +2 -1
- pygpt_net/controller/ui/ui.py +32 -7
- pygpt_net/core/agents/custom/__init__.py +7 -1
- pygpt_net/core/agents/custom/llama_index/factory.py +17 -6
- pygpt_net/core/agents/custom/llama_index/runner.py +52 -4
- pygpt_net/core/agents/custom/llama_index/utils.py +12 -1
- pygpt_net/core/agents/custom/router.py +45 -6
- pygpt_net/core/agents/custom/runner.py +11 -5
- pygpt_net/core/agents/custom/schema.py +3 -1
- pygpt_net/core/agents/custom/utils.py +13 -1
- pygpt_net/core/agents/runners/llama_workflow.py +65 -5
- pygpt_net/core/agents/runners/openai_workflow.py +2 -1
- pygpt_net/core/db/viewer.py +11 -5
- pygpt_net/core/node_editor/graph.py +18 -9
- pygpt_net/core/node_editor/models.py +9 -2
- pygpt_net/core/node_editor/types.py +15 -1
- pygpt_net/core/presets/presets.py +216 -29
- pygpt_net/core/render/markdown/parser.py +0 -2
- pygpt_net/core/render/web/renderer.py +76 -11
- pygpt_net/data/config/config.json +5 -6
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/settings.json +2 -38
- pygpt_net/data/css/style.dark.css +18 -0
- pygpt_net/data/css/style.light.css +20 -1
- pygpt_net/data/locale/locale.de.ini +66 -1
- pygpt_net/data/locale/locale.en.ini +64 -3
- pygpt_net/data/locale/locale.es.ini +66 -1
- pygpt_net/data/locale/locale.fr.ini +66 -1
- pygpt_net/data/locale/locale.it.ini +66 -1
- pygpt_net/data/locale/locale.pl.ini +67 -2
- pygpt_net/data/locale/locale.uk.ini +66 -1
- pygpt_net/data/locale/locale.zh.ini +66 -1
- pygpt_net/data/locale/plugin.cmd_system.en.ini +62 -66
- pygpt_net/item/ctx.py +23 -1
- pygpt_net/provider/agents/llama_index/flow_from_schema.py +2 -2
- pygpt_net/provider/agents/llama_index/workflow/codeact.py +9 -6
- pygpt_net/provider/agents/llama_index/workflow/openai.py +38 -11
- pygpt_net/provider/agents/llama_index/workflow/planner.py +36 -16
- pygpt_net/provider/agents/llama_index/workflow/supervisor.py +60 -10
- pygpt_net/provider/agents/openai/agent.py +3 -1
- pygpt_net/provider/agents/openai/agent_b2b.py +13 -9
- pygpt_net/provider/agents/openai/agent_planner.py +6 -2
- pygpt_net/provider/agents/openai/agent_with_experts.py +4 -1
- pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +4 -2
- pygpt_net/provider/agents/openai/agent_with_feedback.py +4 -2
- pygpt_net/provider/agents/openai/evolve.py +6 -2
- pygpt_net/provider/agents/openai/supervisor.py +3 -1
- pygpt_net/provider/api/openai/agents/response.py +1 -0
- pygpt_net/provider/core/config/patch.py +18 -1
- pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +0 -6
- pygpt_net/tools/agent_builder/tool.py +48 -26
- pygpt_net/tools/agent_builder/ui/dialogs.py +36 -28
- pygpt_net/ui/__init__.py +2 -4
- pygpt_net/ui/dialog/about.py +58 -38
- pygpt_net/ui/dialog/db.py +142 -3
- pygpt_net/ui/dialog/preset.py +47 -8
- pygpt_net/ui/layout/toolbox/presets.py +64 -16
- pygpt_net/ui/main.py +2 -2
- pygpt_net/ui/widget/dialog/confirm.py +27 -3
- pygpt_net/ui/widget/dialog/db.py +0 -0
- pygpt_net/ui/widget/draw/painter.py +90 -1
- pygpt_net/ui/widget/lists/preset.py +908 -60
- pygpt_net/ui/widget/node_editor/command.py +10 -10
- pygpt_net/ui/widget/node_editor/config.py +157 -0
- pygpt_net/ui/widget/node_editor/editor.py +223 -153
- pygpt_net/ui/widget/node_editor/item.py +12 -11
- pygpt_net/ui/widget/node_editor/node.py +246 -13
- pygpt_net/ui/widget/node_editor/view.py +179 -63
- pygpt_net/ui/widget/tabs/output.py +1 -1
- pygpt_net/ui/widget/textarea/input.py +157 -23
- pygpt_net/utils.py +114 -2
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.62.dist-info}/METADATA +26 -100
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.62.dist-info}/RECORD +86 -85
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.62.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.62.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.62.dist-info}/entry_points.txt +0 -0
|
@@ -43,6 +43,7 @@ action.profile.delete = Eliminar perfil (solo de la lista)
|
|
|
43
43
|
action.profile.delete_all = Eliminar perfil (y todos los archivos de usuario)
|
|
44
44
|
action.redo = Rehacer
|
|
45
45
|
action.refresh = Refrescar
|
|
46
|
+
action.reload: Recargar
|
|
46
47
|
action.rename = Renombrar
|
|
47
48
|
action.reset = Reiniciar
|
|
48
49
|
action.restore = Restaurar
|
|
@@ -50,7 +51,8 @@ action.save = Guardar
|
|
|
50
51
|
action.save_as = Guardar como...
|
|
51
52
|
action.save_selection_as = Guardar selección como...
|
|
52
53
|
action.select_all = Seleccionar todo
|
|
53
|
-
action.tab.add.chat
|
|
54
|
+
action.tab.add.chat: Añadir un nuevo chat
|
|
55
|
+
action.tab.add.chat.tooltip: Añadir un nuevo chat (clic derecho para más opciones...)
|
|
54
56
|
action.tab.add.notepad = Agregar un nuevo bloc de notas
|
|
55
57
|
action.tab.add.tool = Añadir una nueva herramienta
|
|
56
58
|
action.tab.close = Cerrar
|
|
@@ -72,6 +74,8 @@ action.use.read_cmd = Pedir leer este archivo...
|
|
|
72
74
|
action.video.open = Abrir vídeo o audio...
|
|
73
75
|
action.video.play = Reproducir vídeo o audio...
|
|
74
76
|
action.video.transcribe = Transcribir audio...
|
|
77
|
+
agent.builder.title = Editor de Agentes
|
|
78
|
+
agent.builder.tooltip = Abrir Editor de Agentes
|
|
75
79
|
agent.coder.additional.label = Prompt adicional
|
|
76
80
|
agent.coder.additional.prompt.desc = Prompt adicional para el agente (se añadirá al prompt base)
|
|
77
81
|
agent.coder.base.label = Prompt base
|
|
@@ -101,6 +105,7 @@ agent.option.prompt.planner.desc = Prompt para agente planificador
|
|
|
101
105
|
agent.option.prompt.search.desc = Prompt para agente de búsqueda
|
|
102
106
|
agent.option.prompt.supervisor.desc = Prompt para Supervisor
|
|
103
107
|
agent.option.prompt.worker.desc = Prompt para Trabajador
|
|
108
|
+
agent.option.role = Breve descripción del funcionamiento del agente para instruir al modelo (opcional)
|
|
104
109
|
agent.option.section.base = Agente base
|
|
105
110
|
agent.option.section.chooser = Selector
|
|
106
111
|
agent.option.section.feedback = Feedback
|
|
@@ -239,6 +244,8 @@ clipboard.copied_to = Copiado al portapapeles:
|
|
|
239
244
|
cmd.enabled = + Herramientas
|
|
240
245
|
cmd.tip = Consejo: Para habilitar la ejecución de herramientas desde complementos, debe habilitar la opción "+ Herramientas".
|
|
241
246
|
coming_soon = Próximamente...
|
|
247
|
+
common.down = Mover hacia abajo
|
|
248
|
+
common.up = Mover hacia arriba
|
|
242
249
|
confirm.assistant.delete = ¿Eliminar asistente?
|
|
243
250
|
confirm.assistant.files.clear = ¿Limpiar archivos (solo local)?
|
|
244
251
|
confirm.assistant.files.truncate = ¿Está seguro de eliminar todos los archivos de todas las bases?
|
|
@@ -652,6 +659,7 @@ event.control.voice_cmd.toggle = Control de voz: Conmutar
|
|
|
652
659
|
event.control.voice_msg.start = Entrada de voz: Iniciar
|
|
653
660
|
event.control.voice_msg.stop = Entrada de voz: Detener
|
|
654
661
|
event.control.voice_msg.toggle = Entrada de voz: Conmutar
|
|
662
|
+
exit.msg = ¿Te gusta PyGPT? Apoya el desarrollo del proyecto:
|
|
655
663
|
expert.wait.failed: Error al llamar al experto
|
|
656
664
|
expert.wait.status: Esperando al experto...
|
|
657
665
|
files.delete.confirm = ¿Eliminar archivo/directorio?
|
|
@@ -679,6 +687,8 @@ html_canvas.clear.confirm = ¿Limpiar la salida del lienzo HTML?
|
|
|
679
687
|
icon.audio.input = Activar/desactivar entrada de audio
|
|
680
688
|
icon.audio.output = Activar/desactivar salida de audio
|
|
681
689
|
icon.remote_tool.web = Búsqueda en la Web (herramienta remota, no una herramienta local)
|
|
690
|
+
icon.remote_tool.web.disabled: Búsqueda Web (herramienta remota, no local) - deshabilitada
|
|
691
|
+
icon.remote_tool.web.enabled: Búsqueda Web (herramienta remota, no local) - habilitada
|
|
682
692
|
icon.video.capture = Activar/desactivar captura de vídeo desde la cámara
|
|
683
693
|
idx.btn.clear = Limpiar índice
|
|
684
694
|
idx.btn.index_all = Indexar todo
|
|
@@ -726,6 +736,7 @@ input.search.placeholder = Buscar...
|
|
|
726
736
|
input.send_clear = Limpiar al enviar
|
|
727
737
|
input.stream = Transmisión
|
|
728
738
|
input.tab = Entrada
|
|
739
|
+
input.tab.tooltip = {chars} caracteres (~{tokens} fichas)
|
|
729
740
|
interpreter.all = Ejecutar historial (todo)
|
|
730
741
|
interpreter.auto_clear = Limpiar al enviar
|
|
731
742
|
interpreter.btn.clear = Limpiar salida
|
|
@@ -774,6 +785,7 @@ menu.config.save = Guardar configuración
|
|
|
774
785
|
menu.config.settings = Configuración...
|
|
775
786
|
menu.debug = Depurar
|
|
776
787
|
menu.debug.agent = Agente...
|
|
788
|
+
menu.debug.agent_builder = Editor de Agentes
|
|
777
789
|
menu.debug.app.log = Ver archivo de registro (app.log)
|
|
778
790
|
menu.debug.assistants = Asistentes...
|
|
779
791
|
menu.debug.attachments = Archivos / adjuntos...
|
|
@@ -827,6 +839,7 @@ menu.theme.style = Estilo...
|
|
|
827
839
|
menu.theme.syntax = Resaltado de sintaxis del código...
|
|
828
840
|
menu.theme.tooltips = Mostrar tooltips
|
|
829
841
|
menu.tools = Herramientas
|
|
842
|
+
menu.tools.agent.builder = Editor de Agentes
|
|
830
843
|
menu.tools.audio.transcribe = Transcribir archivos de audio/video
|
|
831
844
|
menu.tools.html_canvas = Lienzo HTML/JS
|
|
832
845
|
menu.tools.image.viewer = Visor de imágenes
|
|
@@ -934,6 +947,57 @@ multimodal.audio = Audio
|
|
|
934
947
|
multimodal.image = Imagen
|
|
935
948
|
multimodal.text = Texto
|
|
936
949
|
multimodal.video = Video
|
|
950
|
+
node.editor.bottom.tip: Clic derecho: añadir nodo / deshacer / rehacer • Clic medio: panorámica de vista • Ctrl + rueda del ratón: zoom; Clic izquierdo en un puerto: crear conexión • Ctrl + Clic izquierdo en un puerto: reconectar o desconectar • Clic derecho o SUPR un nodo/conexión: eliminar
|
|
951
|
+
node.editor.cap.na: n/d
|
|
952
|
+
node.editor.cap.unlimited: ilimitado (∞)
|
|
953
|
+
node.editor.cmd.add: Añadir
|
|
954
|
+
node.editor.cmd.clear: Limpiar
|
|
955
|
+
node.editor.cmd.connect: Conectar
|
|
956
|
+
node.editor.cmd.delete_connection: Eliminar Conexión
|
|
957
|
+
node.editor.cmd.delete_node: Eliminar Nodo
|
|
958
|
+
node.editor.cmd.move_node: Mover Nodo
|
|
959
|
+
node.editor.cmd.resize_node: Redimensionar Nodo
|
|
960
|
+
node.editor.cmd.rewire_connection: Reconectar
|
|
961
|
+
node.editor.edge.delete: Eliminar conexión
|
|
962
|
+
node.editor.hint.click_start: Clic: iniciar una nueva conexión
|
|
963
|
+
node.editor.hint.ctrl_rewire: Ctrl+Clic: reconectar/desconectar existente
|
|
964
|
+
node.editor.label.id: ID
|
|
965
|
+
node.editor.lbl.allowed: Conexiones permitidas:
|
|
966
|
+
node.editor.lbl.node: Nodo:
|
|
967
|
+
node.editor.lbl.port: Puerto:
|
|
968
|
+
node.editor.list.tip: Lista de flujos de trabajo de agentes personalizados añadidos
|
|
969
|
+
node.editor.macro.delete_selection: Eliminar selección
|
|
970
|
+
node.editor.menu.add: Añadir
|
|
971
|
+
node.editor.menu.clear: Limpiar
|
|
972
|
+
node.editor.menu.redo: Rehacer
|
|
973
|
+
node.editor.menu.undo: Deshacer
|
|
974
|
+
node.editor.node.delete: Eliminar
|
|
975
|
+
node.editor.node.rename: Renombrar
|
|
976
|
+
node.editor.overlay.grab: Agarrar: alternar panorámica global con el Botón Izquierdo
|
|
977
|
+
node.editor.overlay.zoom_in: Acercar
|
|
978
|
+
node.editor.overlay.zoom_out: Alejar
|
|
979
|
+
node.editor.property.agent.name = Agente
|
|
980
|
+
node.editor.property.input.name = Entrada
|
|
981
|
+
node.editor.property.instruction.name = Instrucción
|
|
982
|
+
node.editor.property.instruction.placeholder = Instrucción del sistema para el agente
|
|
983
|
+
node.editor.property.local_tools.name = Herramientas locales
|
|
984
|
+
node.editor.property.memory.name = Memoria
|
|
985
|
+
node.editor.property.name.name = Nombre
|
|
986
|
+
node.editor.property.name.placeholder = Nombre del agente
|
|
987
|
+
node.editor.property.output.name = Salida
|
|
988
|
+
node.editor.property.remote_tools.name = Herramientas remotas
|
|
989
|
+
node.editor.property.role.name = Rol
|
|
990
|
+
node.editor.property.role.placeholder = Descripción corta opcional del propósito del agente
|
|
991
|
+
node.editor.rename.label: Nombre:
|
|
992
|
+
node.editor.rename.title: Renombrar Nodo
|
|
993
|
+
node.editor.side.input: Entrada
|
|
994
|
+
node.editor.side.output: Salida
|
|
995
|
+
node.editor.spec.agent.title = Agente
|
|
996
|
+
node.editor.spec.end.title = Fin
|
|
997
|
+
node.editor.spec.memory.title = Memoria (Contexto)
|
|
998
|
+
node.editor.spec.start.title = Inicio
|
|
999
|
+
node.editor.status.no_nodes: No hay nodos
|
|
1000
|
+
node.editor.type.unknown: Desconocido
|
|
937
1001
|
notify.agent.goal.content = Agente: la meta ha sido alcanzada.
|
|
938
1002
|
notify.agent.goal.title = Meta alcanzada
|
|
939
1003
|
notify.agent.stop.content = Agente: detenido
|
|
@@ -1419,6 +1483,7 @@ settings.vision.capture.idx = Dispositivo de Cámara
|
|
|
1419
1483
|
settings.vision.capture.idx.desc = Seleccione un dispositivo de cámara para la captura de video en tiempo real
|
|
1420
1484
|
settings.vision.capture.quality = Calidad de captura (%)
|
|
1421
1485
|
settings.vision.capture.width = Ancho de captura (en píxeles)
|
|
1486
|
+
settings.zero.limit.desc: Establecer en 0 para desactivar el límite.
|
|
1422
1487
|
settings.zoom = Zoom de ventana de salida del chat
|
|
1423
1488
|
speech.enable = Hablar
|
|
1424
1489
|
speech.listening = Hable ahora...
|
|
@@ -43,6 +43,7 @@ action.profile.delete = Supprimer le profil (seulement de la liste)
|
|
|
43
43
|
action.profile.delete_all = Supprimer le profil (et tous les fichiers utilisateur)
|
|
44
44
|
action.redo = Refaire
|
|
45
45
|
action.refresh = Actualiser
|
|
46
|
+
action.reload: Recharger
|
|
46
47
|
action.rename = Renommer
|
|
47
48
|
action.reset = Réinitialiser
|
|
48
49
|
action.restore = Restaurer
|
|
@@ -50,7 +51,8 @@ action.save = Enregistrer
|
|
|
50
51
|
action.save_as = Enregistrer sous...
|
|
51
52
|
action.save_selection_as = Enregistrer la sélection sous...
|
|
52
53
|
action.select_all = Sélectionner tout
|
|
53
|
-
action.tab.add.chat
|
|
54
|
+
action.tab.add.chat: Ajouter une nouvelle discussion
|
|
55
|
+
action.tab.add.chat.tooltip: Ajouter une nouvelle discussion (Clic Droit pour plus d'options...)
|
|
54
56
|
action.tab.add.notepad = Ajouter un nouveau bloc-notes
|
|
55
57
|
action.tab.add.tool = Ajouter un nouvel outil
|
|
56
58
|
action.tab.close = Fermer
|
|
@@ -72,6 +74,8 @@ action.use.read_cmd = Demander à lire ce fichier...
|
|
|
72
74
|
action.video.open = Ouvrir une vidéo ou un audio...
|
|
73
75
|
action.video.play = Lire une vidéo ou un audio...
|
|
74
76
|
action.video.transcribe = Transcrire l'audio...
|
|
77
|
+
agent.builder.title = Éditeur d'Agents
|
|
78
|
+
agent.builder.tooltip = Ouvrir l'Éditeur d'Agents
|
|
75
79
|
agent.coder.additional.label = Prompt supplémentaire
|
|
76
80
|
agent.coder.additional.prompt.desc = Prompt supplémentaire pour l'agent (sera ajouté au prompt de base)
|
|
77
81
|
agent.coder.base.label = Prompt de base
|
|
@@ -101,6 +105,7 @@ agent.option.prompt.planner.desc = Prompt pour agent planificateur
|
|
|
101
105
|
agent.option.prompt.search.desc = Prompt pour agent de recherche
|
|
102
106
|
agent.option.prompt.supervisor.desc = Prompt pour superviseur
|
|
103
107
|
agent.option.prompt.worker.desc = Prompt pour travailleur
|
|
108
|
+
agent.option.role = Brève description du fonctionnement de l'agent pour l'instruction du modèle (facultatif)
|
|
104
109
|
agent.option.section.base = Agent de base
|
|
105
110
|
agent.option.section.chooser = Choisisseur
|
|
106
111
|
agent.option.section.feedback = Feedback
|
|
@@ -239,6 +244,8 @@ clipboard.copied_to = Copié dans le presse-papiers:
|
|
|
239
244
|
cmd.enabled = + Outils
|
|
240
245
|
cmd.tip = Astuce : Pour activer l'exécution d'outils à partir de plugins, vous devez activer l'option "+ Outils".
|
|
241
246
|
coming_soon = À venir...
|
|
247
|
+
common.down = Déplacer vers le bas
|
|
248
|
+
common.up = Déplacer vers le haut
|
|
242
249
|
confirm.assistant.delete = Supprimer l'assistant ?
|
|
243
250
|
confirm.assistant.files.clear = Effacer les fichiers (seulement local) ?
|
|
244
251
|
confirm.assistant.files.truncate = Êtes-vous sûr de vouloir supprimer tous les fichiers de toutes les bases ?
|
|
@@ -651,6 +658,7 @@ event.control.voice_cmd.toggle = Commande vocale : Basculer
|
|
|
651
658
|
event.control.voice_msg.start = Entrée vocale : Commencer
|
|
652
659
|
event.control.voice_msg.stop = Entrée vocale : Arrêter
|
|
653
660
|
event.control.voice_msg.toggle = Entrée vocale : Basculer
|
|
661
|
+
exit.msg = PyGPT vous plaît-il ? Soutenez le développement du projet :
|
|
654
662
|
expert.wait.failed: Échec de l'appel à l'expert
|
|
655
663
|
expert.wait.status: En attente de l'expert...
|
|
656
664
|
files.delete.confirm = Supprimer le fichier/répertoire ?
|
|
@@ -678,6 +686,8 @@ html_canvas.clear.confirm = Effacer la sortie du canevas HTML ?
|
|
|
678
686
|
icon.audio.input = Activer/désactiver l'entrée audio
|
|
679
687
|
icon.audio.output = Activer/désactiver la sortie audio
|
|
680
688
|
icon.remote_tool.web = Recherche sur le Web (outil distant, pas un outil local)
|
|
689
|
+
icon.remote_tool.web.disabled: Recherche Web (outil distant, pas un outil local) - désactivé
|
|
690
|
+
icon.remote_tool.web.enabled: Recherche Web (outil distant, pas un outil local) - activé
|
|
681
691
|
icon.video.capture = Activer/désactiver la capture vidéo depuis la caméra
|
|
682
692
|
idx.btn.clear = Effacer l'index
|
|
683
693
|
idx.btn.index_all = Indexer tout
|
|
@@ -725,6 +735,7 @@ input.search.placeholder = Rechercher...
|
|
|
725
735
|
input.send_clear = Effacer après envoi
|
|
726
736
|
input.stream = Flux
|
|
727
737
|
input.tab = Entrée
|
|
738
|
+
input.tab.tooltip = {chars} caractères (~{tokens} jetons)
|
|
728
739
|
interpreter.all = Exécuter l'historique (tous)
|
|
729
740
|
interpreter.auto_clear = Effacer à l'envoi
|
|
730
741
|
interpreter.btn.clear = Effacer la sortie
|
|
@@ -773,6 +784,7 @@ menu.config.save = Sauvegarder la config
|
|
|
773
784
|
menu.config.settings = Paramètres...
|
|
774
785
|
menu.debug = Débogage
|
|
775
786
|
menu.debug.agent = Agent...
|
|
787
|
+
menu.debug.agent_builder = Éditeur d'Agents
|
|
776
788
|
menu.debug.app.log = Voir le fichier de log (app.log)
|
|
777
789
|
menu.debug.assistants = Assistants...
|
|
778
790
|
menu.debug.attachments = Fichiers / pièces jointes...
|
|
@@ -826,6 +838,7 @@ menu.theme.style = Style...
|
|
|
826
838
|
menu.theme.syntax = Coloration syntaxique du code...
|
|
827
839
|
menu.theme.tooltips = Afficher les infobulles
|
|
828
840
|
menu.tools = Outils
|
|
841
|
+
menu.tools.agent.builder = Éditeur d'Agents
|
|
829
842
|
menu.tools.audio.transcribe = Transcrire des fichiers audio/vidéo
|
|
830
843
|
menu.tools.html_canvas = Canvas HTML/JS
|
|
831
844
|
menu.tools.image.viewer = Visionneuse d'image
|
|
@@ -933,6 +946,57 @@ multimodal.audio = Audio
|
|
|
933
946
|
multimodal.image = Image
|
|
934
947
|
multimodal.text = Texte
|
|
935
948
|
multimodal.video = Vidéo
|
|
949
|
+
node.editor.bottom.tip: Clic droit: ajouter un nœud / annuler / rétablir • Clic milieu: déplacer la vue • Ctrl + Molette: zoom; Clic gauche sur un port: créer une connexion • Ctrl + Clic gauche sur un port: reconnecter/détacher • Clic droit ou SUPPRIMER un nœud/connexion: supprimer
|
|
950
|
+
node.editor.cap.na: n/a
|
|
951
|
+
node.editor.cap.unlimited: illimité (∞)
|
|
952
|
+
node.editor.cmd.add: Ajouter
|
|
953
|
+
node.editor.cmd.clear: Effacer
|
|
954
|
+
node.editor.cmd.connect: Connecter
|
|
955
|
+
node.editor.cmd.delete_connection: Supprimer la connexion
|
|
956
|
+
node.editor.cmd.delete_node: Supprimer le nœud
|
|
957
|
+
node.editor.cmd.move_node: Déplacer le nœud
|
|
958
|
+
node.editor.cmd.resize_node: Redimensionner le nœud
|
|
959
|
+
node.editor.cmd.rewire_connection: Reconnecter
|
|
960
|
+
node.editor.edge.delete: Supprimer la connexion
|
|
961
|
+
node.editor.hint.click_start: Cliquez: commencez une nouvelle connexion
|
|
962
|
+
node.editor.hint.ctrl_rewire: Ctrl+Clic: reconnecter/détacher l'existant
|
|
963
|
+
node.editor.label.id: ID
|
|
964
|
+
node.editor.lbl.allowed: Connexions autorisées:
|
|
965
|
+
node.editor.lbl.node: Nœud:
|
|
966
|
+
node.editor.lbl.port: Port:
|
|
967
|
+
node.editor.list.tip: Liste des workflows d'agents personnalisés ajoutés
|
|
968
|
+
node.editor.macro.delete_selection: Supprimer la sélection
|
|
969
|
+
node.editor.menu.add: Ajouter
|
|
970
|
+
node.editor.menu.clear: Effacer
|
|
971
|
+
node.editor.menu.redo: Rétablir
|
|
972
|
+
node.editor.menu.undo: Annuler
|
|
973
|
+
node.editor.node.delete: Supprimer
|
|
974
|
+
node.editor.node.rename: Renommer
|
|
975
|
+
node.editor.overlay.grab: Saisir: basculer le panoramique global avec le bouton gauche
|
|
976
|
+
node.editor.overlay.zoom_in: Zoomer
|
|
977
|
+
node.editor.overlay.zoom_out: Dézoomer
|
|
978
|
+
node.editor.property.agent.name = Agent
|
|
979
|
+
node.editor.property.input.name = Entrée
|
|
980
|
+
node.editor.property.instruction.name = Instruction
|
|
981
|
+
node.editor.property.instruction.placeholder = Instruction système pour l'agent
|
|
982
|
+
node.editor.property.local_tools.name = Outils locaux
|
|
983
|
+
node.editor.property.memory.name = Mémoire
|
|
984
|
+
node.editor.property.name.name = Nom
|
|
985
|
+
node.editor.property.name.placeholder = Nom de l'agent
|
|
986
|
+
node.editor.property.output.name = Sortie
|
|
987
|
+
node.editor.property.remote_tools.name = Outils distants
|
|
988
|
+
node.editor.property.role.name = Rôle
|
|
989
|
+
node.editor.property.role.placeholder = Courte description facultative de l'objectif de l'agent
|
|
990
|
+
node.editor.rename.label: Nom:
|
|
991
|
+
node.editor.rename.title: Renommer le nœud
|
|
992
|
+
node.editor.side.input: Entrée
|
|
993
|
+
node.editor.side.output: Sortie
|
|
994
|
+
node.editor.spec.agent.title = Agent
|
|
995
|
+
node.editor.spec.end.title = Fin
|
|
996
|
+
node.editor.spec.memory.title = Mémoire (Contexte)
|
|
997
|
+
node.editor.spec.start.title = Démarrer
|
|
998
|
+
node.editor.status.no_nodes: Pas de nœuds
|
|
999
|
+
node.editor.type.unknown: Inconnu
|
|
936
1000
|
notify.agent.goal.content = Agent : l'objectif a été atteint.
|
|
937
1001
|
notify.agent.goal.title = Objectif atteint
|
|
938
1002
|
notify.agent.stop.content = Agent : arrêté
|
|
@@ -1418,6 +1482,7 @@ settings.vision.capture.idx = Appareil Photo
|
|
|
1418
1482
|
settings.vision.capture.idx.desc = Sélectionnez un appareil photo pour la capture vidéo en temps réel
|
|
1419
1483
|
settings.vision.capture.quality = Qualité de capture (%)
|
|
1420
1484
|
settings.vision.capture.width = Largeur de capture (en pixels)
|
|
1485
|
+
settings.zero.limit.desc: Réglez sur 0 pour désactiver la limite.
|
|
1421
1486
|
settings.zoom = Zoom de la fenêtre de sortie du chat
|
|
1422
1487
|
speech.enable = Parler
|
|
1423
1488
|
speech.listening = Parler maintenant...
|
|
@@ -43,6 +43,7 @@ action.profile.delete = Rimuovi profilo (solo dall'elenco)
|
|
|
43
43
|
action.profile.delete_all = Elimina profilo (e tutti i file utente)
|
|
44
44
|
action.redo = Rifare
|
|
45
45
|
action.refresh = Aggiorna
|
|
46
|
+
action.reload: Ricarica
|
|
46
47
|
action.rename = Rinomina
|
|
47
48
|
action.reset = Reset
|
|
48
49
|
action.restore = Ripristina
|
|
@@ -50,7 +51,8 @@ action.save = Salva
|
|
|
50
51
|
action.save_as = Salva con nome...
|
|
51
52
|
action.save_selection_as = Salva selezione come...
|
|
52
53
|
action.select_all = Seleziona tutto
|
|
53
|
-
action.tab.add.chat
|
|
54
|
+
action.tab.add.chat: Aggiungi una nuova chat
|
|
55
|
+
action.tab.add.chat.tooltip: Aggiungi una nuova chat (Clic Destro per maggiori opzioni...)
|
|
54
56
|
action.tab.add.notepad = Aggiungi un nuovo blocco note
|
|
55
57
|
action.tab.add.tool = Aggiungi un nuovo strumento
|
|
56
58
|
action.tab.close = Chiudi
|
|
@@ -72,6 +74,8 @@ action.use.read_cmd = Chiedi di leggere questo file...
|
|
|
72
74
|
action.video.open = Apri video o audio...
|
|
73
75
|
action.video.play = Riproduci video o audio...
|
|
74
76
|
action.video.transcribe = Trascrivi audio...
|
|
77
|
+
agent.builder.title = Editor di Agenti
|
|
78
|
+
agent.builder.tooltip = Apri l'Editor di Agenti
|
|
75
79
|
agent.coder.additional.label = Prompt aggiuntivo
|
|
76
80
|
agent.coder.additional.prompt.desc = Prompt aggiuntivo per l'agente (verrà aggiunto al prompt di base)
|
|
77
81
|
agent.coder.base.label = Prompt di base
|
|
@@ -101,6 +105,7 @@ agent.option.prompt.planner.desc = Prompt per agente pianificatore
|
|
|
101
105
|
agent.option.prompt.search.desc = Prompt per agente di ricerca
|
|
102
106
|
agent.option.prompt.supervisor.desc = Prompt per Supervisore
|
|
103
107
|
agent.option.prompt.worker.desc = Prompt per Lavoratore
|
|
108
|
+
agent.option.role = Breve descrizione del funzionamento dell'agente per istruire il modello (opzionale)
|
|
104
109
|
agent.option.section.base = Agente Base
|
|
105
110
|
agent.option.section.chooser = Scegliere
|
|
106
111
|
agent.option.section.feedback = Feedback
|
|
@@ -239,6 +244,8 @@ clipboard.copied_to = Copiato negli appunti:
|
|
|
239
244
|
cmd.enabled = + Strumenti
|
|
240
245
|
cmd.tip = Suggerimento: Per abilitare l'esecuzione di strumenti dai plugin, è necessario abilitare l'opzione "+ Strumenti".
|
|
241
246
|
coming_soon = Prossimamente...
|
|
247
|
+
common.down = Sposta in basso
|
|
248
|
+
common.up = Sposta in alto
|
|
242
249
|
confirm.assistant.delete = Eliminare l'assistente?
|
|
243
250
|
confirm.assistant.files.clear = Vuoi cancellare i file (solo locale)?
|
|
244
251
|
confirm.assistant.files.truncate = Sei sicuro di voler rimuovere tutti i file da tutte le basi?
|
|
@@ -651,6 +658,7 @@ event.control.voice_cmd.toggle = Comando vocale: Commuta
|
|
|
651
658
|
event.control.voice_msg.start = Input vocale: Avvia
|
|
652
659
|
event.control.voice_msg.stop = Input vocale: Arresta
|
|
653
660
|
event.control.voice_msg.toggle = Input vocale: Commuta
|
|
661
|
+
exit.msg = Ti piace PyGPT? Sostieni lo sviluppo del progetto:
|
|
654
662
|
expert.wait.failed: Chiamata all'esperto non riuscita
|
|
655
663
|
expert.wait.status: In attesa dell'esperto...
|
|
656
664
|
files.delete.confirm = Eliminare il file/la cartella?
|
|
@@ -678,6 +686,8 @@ html_canvas.clear.confirm = Cancellare l'output del canvas HTML?
|
|
|
678
686
|
icon.audio.input = Attiva/disattiva ingresso audio
|
|
679
687
|
icon.audio.output = Attiva/disattiva uscita audio
|
|
680
688
|
icon.remote_tool.web = Ricerca Web (strumento remoto, non uno strumento locale)
|
|
689
|
+
icon.remote_tool.web.disabled: Ricerca Web (strumento remoto, non locale) - disattivato
|
|
690
|
+
icon.remote_tool.web.enabled: Ricerca Web (strumento remoto, non locale) - attivato
|
|
681
691
|
icon.video.capture = Attiva/disattiva cattura video dalla fotocamera
|
|
682
692
|
idx.btn.clear = Cancella indice
|
|
683
693
|
idx.btn.index_all = Indicizza tutto
|
|
@@ -725,6 +735,7 @@ input.search.placeholder = Cerca...
|
|
|
725
735
|
input.send_clear = Pulisci dopo l'invio
|
|
726
736
|
input.stream = Flusso
|
|
727
737
|
input.tab = Input
|
|
738
|
+
input.tab.tooltip = {chars} caratteri (~{tokens} token)
|
|
728
739
|
interpreter.all = Esegui cronologia (tutto)
|
|
729
740
|
interpreter.auto_clear = Cancella all'invio
|
|
730
741
|
interpreter.btn.clear = Cancella output
|
|
@@ -773,6 +784,7 @@ menu.config.save = Salva configurazione
|
|
|
773
784
|
menu.config.settings = Impostazioni...
|
|
774
785
|
menu.debug = Debug
|
|
775
786
|
menu.debug.agent = Agente...
|
|
787
|
+
menu.debug.agent_builder = Editor di Agenti
|
|
776
788
|
menu.debug.app.log = Visualizza il file di log (app.log)
|
|
777
789
|
menu.debug.assistants = Assistenti...
|
|
778
790
|
menu.debug.attachments = File / allegati...
|
|
@@ -826,6 +838,7 @@ menu.theme.style = Stile...
|
|
|
826
838
|
menu.theme.syntax = Evidenziazione della sintassi del codice...
|
|
827
839
|
menu.theme.tooltips = Mostra suggerimenti
|
|
828
840
|
menu.tools = Strumenti
|
|
841
|
+
menu.tools.agent.builder = Editor di Agenti
|
|
829
842
|
menu.tools.audio.transcribe = Trascrivi file audio/video
|
|
830
843
|
menu.tools.html_canvas = Canvas HTML/JS
|
|
831
844
|
menu.tools.image.viewer = Visualizzatore di immagini
|
|
@@ -933,6 +946,57 @@ multimodal.audio = Audio
|
|
|
933
946
|
multimodal.image = Immagine
|
|
934
947
|
multimodal.text = Testo
|
|
935
948
|
multimodal.video = Video
|
|
949
|
+
node.editor.bottom.tip: Clic destro: aggiungi nodo / annulla / ripristina • Clic centrale: panoramica • Ctrl + rotella del mouse: zoom; Clic sinistro su una porta: crea connessione • Ctrl + Clic sinistro su una porta: riconnetti o separa • Clic destro o CANC su un nodo/connessione: rimuovi
|
|
950
|
+
node.editor.cap.na: n/d
|
|
951
|
+
node.editor.cap.unlimited: illimitato (∞)
|
|
952
|
+
node.editor.cmd.add: Aggiungi
|
|
953
|
+
node.editor.cmd.clear: Svuota
|
|
954
|
+
node.editor.cmd.connect: Connetti
|
|
955
|
+
node.editor.cmd.delete_connection: Elimina Connessione
|
|
956
|
+
node.editor.cmd.delete_node: Elimina Nodo
|
|
957
|
+
node.editor.cmd.move_node: Sposta Nodo
|
|
958
|
+
node.editor.cmd.resize_node: Ridimensiona Nodo
|
|
959
|
+
node.editor.cmd.rewire_connection: Riconnetti
|
|
960
|
+
node.editor.edge.delete: Elimina Connessione
|
|
961
|
+
node.editor.hint.click_start: Clicca: inizia una nuova connessione
|
|
962
|
+
node.editor.hint.ctrl_rewire: Ctrl+Clic: riconnetti/separa esistente
|
|
963
|
+
node.editor.label.id: ID
|
|
964
|
+
node.editor.lbl.allowed: Connessioni consentite:
|
|
965
|
+
node.editor.lbl.node: Nodo:
|
|
966
|
+
node.editor.lbl.port: Porta:
|
|
967
|
+
node.editor.list.tip: Elenco dei flussi di lavoro dell'agente personalizzati aggiunti
|
|
968
|
+
node.editor.macro.delete_selection: Elimina selezione
|
|
969
|
+
node.editor.menu.add: Aggiungi
|
|
970
|
+
node.editor.menu.clear: Svuota
|
|
971
|
+
node.editor.menu.redo: Ripristina
|
|
972
|
+
node.editor.menu.undo: Annulla
|
|
973
|
+
node.editor.node.delete: Elimina
|
|
974
|
+
node.editor.node.rename: Rinomina
|
|
975
|
+
node.editor.overlay.grab: Afferra: alterna panoramica globale con Pulsante Sinistro
|
|
976
|
+
node.editor.overlay.zoom_in: Ingrandisci
|
|
977
|
+
node.editor.overlay.zoom_out: Riduci
|
|
978
|
+
node.editor.property.agent.name = Agente
|
|
979
|
+
node.editor.property.input.name = Ingresso
|
|
980
|
+
node.editor.property.instruction.name = Istruzione
|
|
981
|
+
node.editor.property.instruction.placeholder = Istruzione di sistema per l'agente
|
|
982
|
+
node.editor.property.local_tools.name = Strumenti locali
|
|
983
|
+
node.editor.property.memory.name = Memoria
|
|
984
|
+
node.editor.property.name.name = Nome
|
|
985
|
+
node.editor.property.name.placeholder = Nome dell'agente
|
|
986
|
+
node.editor.property.output.name = Uscita
|
|
987
|
+
node.editor.property.remote_tools.name = Strumenti remoti
|
|
988
|
+
node.editor.property.role.name = Ruolo
|
|
989
|
+
node.editor.property.role.placeholder = Descrizione breve opzionale dello scopo dell'agente
|
|
990
|
+
node.editor.rename.label: Nome:
|
|
991
|
+
node.editor.rename.title: Rinomina Nodo
|
|
992
|
+
node.editor.side.input: Ingresso
|
|
993
|
+
node.editor.side.output: Uscita
|
|
994
|
+
node.editor.spec.agent.title = Agente
|
|
995
|
+
node.editor.spec.end.title = Fine
|
|
996
|
+
node.editor.spec.memory.title = Memoria (Contesto)
|
|
997
|
+
node.editor.spec.start.title = Inizio
|
|
998
|
+
node.editor.status.no_nodes: Nessun nodo
|
|
999
|
+
node.editor.type.unknown: Sconosciuto
|
|
936
1000
|
notify.agent.goal.content = Agente: l'obiettivo è stato raggiunto.
|
|
937
1001
|
notify.agent.goal.title = Obiettivo raggiunto
|
|
938
1002
|
notify.agent.stop.content = Agente: fermato
|
|
@@ -1418,6 +1482,7 @@ settings.vision.capture.idx = Dispositivo Fotocamera
|
|
|
1418
1482
|
settings.vision.capture.idx.desc = Seleziona un dispositivo fotocamera per la cattura video in tempo reale
|
|
1419
1483
|
settings.vision.capture.quality = Qualità della cattura (%)
|
|
1420
1484
|
settings.vision.capture.width = Larghezza della cattura (in pixel)
|
|
1485
|
+
settings.zero.limit.desc: Imposta a 0 per disabilitare il limite.
|
|
1421
1486
|
settings.zoom = Zoom finestra output chat
|
|
1422
1487
|
speech.enable = Parla
|
|
1423
1488
|
speech.listening = Parla ora...
|
|
@@ -43,6 +43,7 @@ action.profile.delete = Usuń profil (tylko z listy)
|
|
|
43
43
|
action.profile.delete_all = Usuń profil (i wszystkie pliki użytkownika)
|
|
44
44
|
action.redo = Powtórz
|
|
45
45
|
action.refresh = Odśwież
|
|
46
|
+
action.reload: Przeładuj
|
|
46
47
|
action.rename = Zmień nazwę
|
|
47
48
|
action.reset = Resetuj
|
|
48
49
|
action.restore = Przywróć
|
|
@@ -50,7 +51,8 @@ action.save = Zapisz
|
|
|
50
51
|
action.save_as = Zapisz jako...
|
|
51
52
|
action.save_selection_as = Zapisz zaznaczenie jako...
|
|
52
53
|
action.select_all = Wybierz wszystko
|
|
53
|
-
action.tab.add.chat
|
|
54
|
+
action.tab.add.chat: Dodaj nowy czat
|
|
55
|
+
action.tab.add.chat.tooltip: Dodaj nowy czat (PPM dla więcej opcji...)
|
|
54
56
|
action.tab.add.notepad = Dodaj nowy notatnik
|
|
55
57
|
action.tab.add.tool = Dodaj nowe narzędzie
|
|
56
58
|
action.tab.close = Zamknij
|
|
@@ -72,6 +74,8 @@ action.use.read_cmd = Poproś o odczytanie tego pliku...
|
|
|
72
74
|
action.video.open = Otwórz wideo lub audio...
|
|
73
75
|
action.video.play = Odtwórz wideo lub audio...
|
|
74
76
|
action.video.transcribe = Przepisz dźwięk...
|
|
77
|
+
agent.builder.title = Edytor Agentów
|
|
78
|
+
agent.builder.tooltip = Otwórz Edytor Agentów
|
|
75
79
|
agent.coder.additional.label = Dodatkowy prompt
|
|
76
80
|
agent.coder.additional.prompt.desc = Dodatkowy prompt dla agenta (zostanie dodany do podstawowego promptu)
|
|
77
81
|
agent.coder.base.label = Podstawowy prompt
|
|
@@ -101,6 +105,7 @@ agent.option.prompt.planner.desc = Prompt dla agenta planisty
|
|
|
101
105
|
agent.option.prompt.search.desc = Prompt dla agenta wyszukującego
|
|
102
106
|
agent.option.prompt.supervisor.desc = Prompt dla Supervisora
|
|
103
107
|
agent.option.prompt.worker.desc = Prompt dla Workera
|
|
108
|
+
agent.option.role = Krótki opis działania agenta do instruowania modelu (opcjonalne)
|
|
104
109
|
agent.option.section.base = Agent bazowy
|
|
105
110
|
agent.option.section.chooser = Wybieracz
|
|
106
111
|
agent.option.section.feedback = Feedback
|
|
@@ -239,6 +244,8 @@ clipboard.copied_to = Skopiowano do schowka:
|
|
|
239
244
|
cmd.enabled = + Narzędzia
|
|
240
245
|
cmd.tip = Wskazówka: Aby umożliwić wykonanie narzędzi z wtyczek, musisz włączyć opcję "+ Narzędzia".
|
|
241
246
|
coming_soon = Dostępne wkrótce...
|
|
247
|
+
common.down = Przesuń w dół
|
|
248
|
+
common.up = Przesuń w górę
|
|
242
249
|
confirm.assistant.delete = Na pewno usunąć asystenta?
|
|
243
250
|
confirm.assistant.files.clear = Wyczyścić pliki (tylko lokalnie)?
|
|
244
251
|
confirm.assistant.files.truncate = Czy na pewno usunąć wszystkie pliki ze wszystkich baz?
|
|
@@ -652,6 +659,7 @@ event.control.voice_cmd.toggle = Kontrola głosowa: Przełącz
|
|
|
652
659
|
event.control.voice_msg.start = Wejście głosowe: Rozpocznij
|
|
653
660
|
event.control.voice_msg.stop = Wejście głosowe: Zatrzymaj
|
|
654
661
|
event.control.voice_msg.toggle = Wejście głosowe: Przełącz
|
|
662
|
+
exit.msg = Podoba Ci się PyGPT? Wesprzyj rozwój projektu:
|
|
655
663
|
expert.wait.failed: Nie udało się wywołać eksperta
|
|
656
664
|
expert.wait.status: Oczekiwanie na eksperta...
|
|
657
665
|
files.delete.confirm = Usunąć plik/katalog?
|
|
@@ -679,6 +687,8 @@ html_canvas.clear.confirm = Wyczyścić wynik płótna HTML?
|
|
|
679
687
|
icon.audio.input = Włącz/wyłącz wejście audio
|
|
680
688
|
icon.audio.output = Włącz/wyłącz wyjście audio
|
|
681
689
|
icon.remote_tool.web = Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne)
|
|
690
|
+
icon.remote_tool.web.disabled: Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne) - wyłączone
|
|
691
|
+
icon.remote_tool.web.enabled: Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne) - włączone
|
|
682
692
|
icon.video.capture = Włącz/wyłącz przechwytywanie wideo z kamery
|
|
683
693
|
idx.btn.clear = Wyczyść indeks
|
|
684
694
|
idx.btn.index_all = Indeksuj wszystko
|
|
@@ -726,6 +736,7 @@ input.search.placeholder = Szukaj...
|
|
|
726
736
|
input.send_clear = Wyczyść po wysłaniu
|
|
727
737
|
input.stream = Stream
|
|
728
738
|
input.tab = Input
|
|
739
|
+
input.tab.tooltip = {chars} znaków (~{tokens} tokenów)
|
|
729
740
|
interpreter.all = Wykonaj historię (wszystko)
|
|
730
741
|
interpreter.auto_clear = Wyczyść wyjście przy wysyłaniu
|
|
731
742
|
interpreter.btn.clear = Wyczyść wyjście
|
|
@@ -774,6 +785,7 @@ menu.config.save = Zapisz ustawienia
|
|
|
774
785
|
menu.config.settings = Ustawienia...
|
|
775
786
|
menu.debug = Debug
|
|
776
787
|
menu.debug.agent = Agent...
|
|
788
|
+
menu.debug.agent_builder = Edytor Agentów
|
|
777
789
|
menu.debug.app.log = Wyświetl plik logów (app.log)
|
|
778
790
|
menu.debug.assistants = Asystenci...
|
|
779
791
|
menu.debug.attachments = Pliki / załączniki...
|
|
@@ -827,6 +839,7 @@ menu.theme.style = Styl...
|
|
|
827
839
|
menu.theme.syntax = Podświetlanie składni kodu...
|
|
828
840
|
menu.theme.tooltips = Pokaż podpowiedzi
|
|
829
841
|
menu.tools = Narzędzia
|
|
842
|
+
menu.tools.agent.builder = Edytor Agentów
|
|
830
843
|
menu.tools.audio.transcribe = Transkrybuj pliki audio/wideo
|
|
831
844
|
menu.tools.html_canvas = HTML/JS Canvas
|
|
832
845
|
menu.tools.image.viewer = Przeglądarka obrazów
|
|
@@ -934,6 +947,57 @@ multimodal.audio = Dźwięk
|
|
|
934
947
|
multimodal.image = Obraz
|
|
935
948
|
multimodal.text = Tekst
|
|
936
949
|
multimodal.video = Wideo
|
|
950
|
+
node.editor.bottom.tip: Prawy klik: dodaj węzeł / cofnij / ponów • Środkowy klik: przesuwaj widok • Ctrl + kółko myszy: zoom; Lewy klik portu: stwórz połączenie • Ctrl + lewy klik portu: przepnij lub odłącz • Prawy klik lub DEL węzła/połączenia: usuń
|
|
951
|
+
node.editor.cap.na: n/d
|
|
952
|
+
node.editor.cap.unlimited: nieograniczone (∞)
|
|
953
|
+
node.editor.cmd.add: Dodaj
|
|
954
|
+
node.editor.cmd.clear: Wyczyść
|
|
955
|
+
node.editor.cmd.connect: Połącz
|
|
956
|
+
node.editor.cmd.delete_connection: Usuń połączenie
|
|
957
|
+
node.editor.cmd.delete_node: Usuń węzeł
|
|
958
|
+
node.editor.cmd.move_node: Przenieś węzeł
|
|
959
|
+
node.editor.cmd.resize_node: Zmień rozmiar węzła
|
|
960
|
+
node.editor.cmd.rewire_connection: Przepnij połączenie
|
|
961
|
+
node.editor.edge.delete: Usuń połączenie
|
|
962
|
+
node.editor.hint.click_start: Kliknij: rozpocznij nowe połączenie
|
|
963
|
+
node.editor.hint.ctrl_rewire: Ctrl+Klik: przepnij/odłącz istniejące
|
|
964
|
+
node.editor.label.id: ID
|
|
965
|
+
node.editor.lbl.allowed: Dozwolone połączenia:
|
|
966
|
+
node.editor.lbl.node: Węzeł:
|
|
967
|
+
node.editor.lbl.port: Port:
|
|
968
|
+
node.editor.list.tip: Lista dodanych spersonalizowanych agentów
|
|
969
|
+
node.editor.macro.delete_selection: Usuń zaznaczenie
|
|
970
|
+
node.editor.menu.add: Dodaj
|
|
971
|
+
node.editor.menu.clear: Wyczyść
|
|
972
|
+
node.editor.menu.redo: Ponów
|
|
973
|
+
node.editor.menu.undo: Cofnij
|
|
974
|
+
node.editor.node.delete: Usuń
|
|
975
|
+
node.editor.node.rename: Zmień nazwę
|
|
976
|
+
node.editor.overlay.grab: Chwyć: przełącz globalne przesuwanie LPM
|
|
977
|
+
node.editor.overlay.zoom_in: Powiększ
|
|
978
|
+
node.editor.overlay.zoom_out: Pomniejsz
|
|
979
|
+
node.editor.property.agent.name = Agent
|
|
980
|
+
node.editor.property.input.name = Wejście
|
|
981
|
+
node.editor.property.instruction.name = Instrukcja
|
|
982
|
+
node.editor.property.instruction.placeholder = Instrukcja systemowa dla agenta
|
|
983
|
+
node.editor.property.local_tools.name = Lokalne narzędzia
|
|
984
|
+
node.editor.property.memory.name = Pamięć
|
|
985
|
+
node.editor.property.name.name = Nazwa
|
|
986
|
+
node.editor.property.name.placeholder = Nazwa agenta
|
|
987
|
+
node.editor.property.output.name = Wyjście
|
|
988
|
+
node.editor.property.remote_tools.name = Zdalne narzędzia
|
|
989
|
+
node.editor.property.role.name = Rola
|
|
990
|
+
node.editor.property.role.placeholder = Opcjonalny krótki opis celu agenta
|
|
991
|
+
node.editor.rename.label: Nazwa:
|
|
992
|
+
node.editor.rename.title: Zmień nazwę węzła
|
|
993
|
+
node.editor.side.input: Wejście
|
|
994
|
+
node.editor.side.output: Wyjście
|
|
995
|
+
node.editor.spec.agent.title = Agent
|
|
996
|
+
node.editor.spec.end.title = Koniec
|
|
997
|
+
node.editor.spec.memory.title = Pamięć (Kontekst)
|
|
998
|
+
node.editor.spec.start.title = Start
|
|
999
|
+
node.editor.status.no_nodes: Brak węzłów
|
|
1000
|
+
node.editor.type.unknown: Nieznany
|
|
937
1001
|
notify.agent.goal.content = Agent: cel został osiągnięty.
|
|
938
1002
|
notify.agent.goal.title = Cel osiągnięty
|
|
939
1003
|
notify.agent.stop.content = Agent: zatrzymany
|
|
@@ -1185,7 +1249,7 @@ settings.ctx.search.desc = Włącz wyszukiwanie również w treści elementów k
|
|
|
1185
1249
|
settings.ctx.sources = Pokaż źródła LlamaIndex
|
|
1186
1250
|
settings.ctx.sources.desc = Jeśli opcja jest włączona, wykorzystane źródła będą wyświetlane w odpowiedzi (jeśli dostępne, nie zadziała w czacie z wł. opcją stream)
|
|
1187
1251
|
settings.ctx.urls.internal = Otwieraj adresy URL w wbudowanej przeglądarce
|
|
1188
|
-
settings.ctx.urls.internal.desc = Włącz tę opcję, aby otwierać wszystkie adresy URL we wbudowanej przeglądarce (Chromium) zamiast w zewnętrznej przeglądarce.
|
|
1252
|
+
settings.ctx.urls.internal.desc = Włącz tę opcję, aby otwierać wszystkie adresy URL we wbudowanej przeglądarce (Chromium) zamiast w zewnętrznej przeglądarce.
|
|
1189
1253
|
settings.ctx.use_extra = Używaj dodatkowego kontekstu outputu
|
|
1190
1254
|
settings.ctx.use_extra.desc = Jeśli włączone, zwykły tekst outputu (jeśli dostępny) z wyników poleceń będzie wyświetlany obok outputu JSON.
|
|
1191
1255
|
settings.debug.show_menu = Pokaż menu debugowania
|
|
@@ -1419,6 +1483,7 @@ settings.vision.capture.idx = Urządzenie Kamery
|
|
|
1419
1483
|
settings.vision.capture.idx.desc = Wybierz urządzenie kamery do przechwytywania wideo w czasie rzeczywistym
|
|
1420
1484
|
settings.vision.capture.quality = Jakość przechwytywania (%)
|
|
1421
1485
|
settings.vision.capture.width = Szerokość przechwytywania (w pikselach)
|
|
1486
|
+
settings.zero.limit.desc: Ustaw wartość 0, aby wyłączyć limit.
|
|
1422
1487
|
settings.zoom = Powiększenie okna outputu czatu
|
|
1423
1488
|
speech.enable = Mowa
|
|
1424
1489
|
speech.listening = Mów teraz...
|