pygpt-net 2.6.60__py3-none-any.whl → 2.6.61__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygpt_net/CHANGELOG.txt +7 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/chat/common.py +115 -6
- pygpt_net/controller/chat/input.py +4 -1
- pygpt_net/controller/presets/presets.py +121 -6
- pygpt_net/controller/settings/editor.py +0 -15
- pygpt_net/controller/theme/markdown.py +2 -5
- pygpt_net/controller/ui/ui.py +4 -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 +35 -2
- 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 +2 -1
- pygpt_net/core/agents/custom/schema.py +3 -1
- pygpt_net/core/agents/custom/utils.py +13 -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 +3 -1
- pygpt_net/core/presets/presets.py +216 -29
- pygpt_net/core/render/markdown/parser.py +0 -2
- 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/locale/locale.de.ini +64 -1
- pygpt_net/data/locale/locale.en.ini +62 -3
- pygpt_net/data/locale/locale.es.ini +64 -1
- pygpt_net/data/locale/locale.fr.ini +64 -1
- pygpt_net/data/locale/locale.it.ini +64 -1
- pygpt_net/data/locale/locale.pl.ini +65 -2
- pygpt_net/data/locale/locale.uk.ini +64 -1
- pygpt_net/data/locale/locale.zh.ini +64 -1
- pygpt_net/data/locale/plugin.cmd_system.en.ini +62 -66
- pygpt_net/provider/agents/llama_index/flow_from_schema.py +2 -2
- pygpt_net/provider/core/config/patch.py +10 -1
- pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +0 -6
- pygpt_net/tools/agent_builder/tool.py +42 -26
- pygpt_net/tools/agent_builder/ui/dialogs.py +60 -11
- 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 +52 -16
- pygpt_net/ui/widget/dialog/db.py +0 -0
- pygpt_net/ui/widget/lists/preset.py +644 -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 +183 -151
- pygpt_net/ui/widget/node_editor/item.py +12 -11
- pygpt_net/ui/widget/node_editor/node.py +267 -12
- pygpt_net/ui/widget/node_editor/view.py +180 -63
- pygpt_net/ui/widget/tabs/output.py +1 -1
- pygpt_net/ui/widget/textarea/input.py +2 -2
- pygpt_net/utils.py +114 -2
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.61.dist-info}/METADATA +11 -94
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.61.dist-info}/RECORD +59 -58
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.61.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.61.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.60.dist-info → pygpt_net-2.6.61.dist-info}/entry_points.txt +0 -0
|
@@ -43,6 +43,7 @@ action.profile.delete = Remove profile (from list only)
|
|
|
43
43
|
action.profile.delete_all = Delete profile (with all user files)
|
|
44
44
|
action.redo = Redo
|
|
45
45
|
action.refresh = Refresh
|
|
46
|
+
action.reload = Reload
|
|
46
47
|
action.rename = Rename
|
|
47
48
|
action.reset = Reset
|
|
48
49
|
action.restore = Restore
|
|
@@ -51,6 +52,7 @@ action.save_as = Save as...
|
|
|
51
52
|
action.save_selection_as = Save selection as...
|
|
52
53
|
action.select_all = Select all
|
|
53
54
|
action.tab.add.chat = Add a new chat
|
|
55
|
+
action.tab.add.chat.tooltip = Add a new chat (RMB click to more options...)
|
|
54
56
|
action.tab.add.notepad = Add a new notepad
|
|
55
57
|
action.tab.add.tool = Add a new tool
|
|
56
58
|
action.tab.close = Close
|
|
@@ -75,7 +77,7 @@ action.video.transcribe = Transcribe audio...
|
|
|
75
77
|
agent.builder.confirm.clear.msg = Do you really want to clear the graph?
|
|
76
78
|
agent.builder.confirm.clear.title = Clear
|
|
77
79
|
agent.builder.confirm.delete.msg = Do you really want to delete the agent?
|
|
78
|
-
agent.builder.title = Agents Builder
|
|
80
|
+
agent.builder.title = Agents Builder
|
|
79
81
|
agent.coder.additional.label = Additional prompt
|
|
80
82
|
agent.coder.additional.prompt.desc = Additional prompt for agent (will be added to the base prompt)
|
|
81
83
|
agent.coder.base.label = Base prompt
|
|
@@ -105,6 +107,7 @@ agent.option.prompt.planner.desc = Prompt for Planner agent
|
|
|
105
107
|
agent.option.prompt.search.desc = Prompt for search agent
|
|
106
108
|
agent.option.prompt.supervisor.desc = Prompt for Supervisor
|
|
107
109
|
agent.option.prompt.worker.desc = Prompt for Worker
|
|
110
|
+
agent.option.role = Short description of the agent's operation for instructing the model (optional)
|
|
108
111
|
agent.option.section.base = Base agent
|
|
109
112
|
agent.option.section.chooser = Chooser
|
|
110
113
|
agent.option.section.feedback = Feedback
|
|
@@ -245,6 +248,8 @@ clipboard.copied_to = Copied to clipboard:
|
|
|
245
248
|
cmd.enabled = + Tools
|
|
246
249
|
cmd.tip = Tip: To enable the execution of tools from plugins you must enable the "+ Tools" option.
|
|
247
250
|
coming_soon = Coming soon...
|
|
251
|
+
common.down = Move down
|
|
252
|
+
common.up = Move up
|
|
248
253
|
confirm.assistant.delete = Delete assistant?
|
|
249
254
|
confirm.assistant.files.clear = Clear files (local only)?
|
|
250
255
|
confirm.assistant.files.truncate = Are you sure you want to remove all files from all Assistants?
|
|
@@ -685,6 +690,8 @@ html_canvas.clear.confirm = Clear HTML canvas output?
|
|
|
685
690
|
icon.audio.input = Enable/disable audio input
|
|
686
691
|
icon.audio.output = Enable/disable audio output
|
|
687
692
|
icon.remote_tool.web = Web Search (remote tool, not a local tool)
|
|
693
|
+
icon.remote_tool.web.disabled = Web Search (remote tool, not a local tool) - disabled
|
|
694
|
+
icon.remote_tool.web.enabled = Web Search (remote tool, not a local tool) - enabled
|
|
688
695
|
icon.video.capture = Enable/disable camera capture
|
|
689
696
|
idx.btn.clear = Clear index
|
|
690
697
|
idx.btn.index_all = Index all
|
|
@@ -780,7 +787,7 @@ menu.config.save = Save config
|
|
|
780
787
|
menu.config.settings = Settings...
|
|
781
788
|
menu.debug = Debug
|
|
782
789
|
menu.debug.agent = Agent...
|
|
783
|
-
menu.debug.agent_builder = Agents Builder
|
|
790
|
+
menu.debug.agent_builder = Agents Builder
|
|
784
791
|
menu.debug.app.log = View log file (app.log)
|
|
785
792
|
menu.debug.assistants = Assistants...
|
|
786
793
|
menu.debug.attachments = Files / attachments...
|
|
@@ -835,7 +842,7 @@ menu.theme.style = Style...
|
|
|
835
842
|
menu.theme.syntax = Code syntax highlight...
|
|
836
843
|
menu.theme.tooltips = Show tooltips
|
|
837
844
|
menu.tools = Tools
|
|
838
|
-
menu.tools.agent.builder = Agents Builder
|
|
845
|
+
menu.tools.agent.builder = Agents Builder
|
|
839
846
|
menu.tools.audio.transcribe = Transcribe Audio/Video Files
|
|
840
847
|
menu.tools.html_canvas = HTML/JS Canvas
|
|
841
848
|
menu.tools.image.viewer = Image Viewer
|
|
@@ -943,6 +950,57 @@ multimodal.audio = Audio
|
|
|
943
950
|
multimodal.image = Image
|
|
944
951
|
multimodal.text = Text
|
|
945
952
|
multimodal.video = Video
|
|
953
|
+
node.editor.bottom.tip = Right-click: add node / undo / redo • Middle-click: pan view • Ctrl + Mouse wheel: zoom Left-click a port: create connection • Ctrl + Left-click a port: rewire or detach • Right-click or DEL a node/connection: remove
|
|
954
|
+
node.editor.cap.na = n/a
|
|
955
|
+
node.editor.cap.unlimited = unlimited (∞)
|
|
956
|
+
node.editor.cmd.add = Add
|
|
957
|
+
node.editor.cmd.clear = Clear
|
|
958
|
+
node.editor.cmd.connect = Connect
|
|
959
|
+
node.editor.cmd.delete_connection = Delete Connection
|
|
960
|
+
node.editor.cmd.delete_node = Delete Node
|
|
961
|
+
node.editor.cmd.move_node = Move Node
|
|
962
|
+
node.editor.cmd.resize_node = Resize Node
|
|
963
|
+
node.editor.cmd.rewire_connection = Rewire Connection
|
|
964
|
+
node.editor.edge.delete = Delete connection
|
|
965
|
+
node.editor.hint.click_start = Click: start a new connection
|
|
966
|
+
node.editor.hint.ctrl_rewire = Ctrl+Click: rewire/detach existing
|
|
967
|
+
node.editor.label.id = ID
|
|
968
|
+
node.editor.lbl.allowed = Allowed connections:
|
|
969
|
+
node.editor.lbl.node = Node:
|
|
970
|
+
node.editor.lbl.port = Port:
|
|
971
|
+
node.editor.list.tip = List of added custom agent workflows (available in the agent type section of the presets editor)
|
|
972
|
+
node.editor.macro.delete_selection = Delete selection
|
|
973
|
+
node.editor.menu.add = Add
|
|
974
|
+
node.editor.menu.clear = Clear
|
|
975
|
+
node.editor.menu.redo = Redo
|
|
976
|
+
node.editor.menu.undo = Undo
|
|
977
|
+
node.editor.node.delete = Delete
|
|
978
|
+
node.editor.node.rename = Rename
|
|
979
|
+
node.editor.overlay.grab = Grab: toggle global panning with Left Mouse Button
|
|
980
|
+
node.editor.overlay.zoom_in = Zoom In
|
|
981
|
+
node.editor.overlay.zoom_out = Zoom Out
|
|
982
|
+
node.editor.property.agent.name = Agent
|
|
983
|
+
node.editor.property.input.name = Input
|
|
984
|
+
node.editor.property.instruction.name = Instruction
|
|
985
|
+
node.editor.property.instruction.placeholder = System instruction for the agent
|
|
986
|
+
node.editor.property.local_tools.name = Local tools
|
|
987
|
+
node.editor.property.memory.name = Memory
|
|
988
|
+
node.editor.property.name.name = Name
|
|
989
|
+
node.editor.property.name.placeholder = Name of the agent
|
|
990
|
+
node.editor.property.output.name = Output
|
|
991
|
+
node.editor.property.remote_tools.name = Remote tools
|
|
992
|
+
node.editor.property.role.name = Role
|
|
993
|
+
node.editor.property.role.placeholder = Optional short description of agent's purpose
|
|
994
|
+
node.editor.rename.label = Name:
|
|
995
|
+
node.editor.rename.title = Rename Node
|
|
996
|
+
node.editor.side.input = Input
|
|
997
|
+
node.editor.side.output = Output
|
|
998
|
+
node.editor.spec.agent.title = Agent
|
|
999
|
+
node.editor.spec.end.title = End
|
|
1000
|
+
node.editor.spec.memory.title = Memory (Context)
|
|
1001
|
+
node.editor.spec.start.title = Start
|
|
1002
|
+
node.editor.status.no_nodes = No nodes
|
|
1003
|
+
node.editor.type.unknown = Unknown
|
|
946
1004
|
notify.agent.goal.content = Agent: the goal has been achieved.
|
|
947
1005
|
notify.agent.goal.title = Goal achieved
|
|
948
1006
|
notify.agent.stop.content = Agent: stopped
|
|
@@ -1492,6 +1550,7 @@ settings.vision.capture.idx = Camera Device
|
|
|
1492
1550
|
settings.vision.capture.idx.desc = Select a camera device for real-time video capture
|
|
1493
1551
|
settings.vision.capture.quality = Capture quality (%)
|
|
1494
1552
|
settings.vision.capture.width = Capture width (in pixels)
|
|
1553
|
+
settings.zero.limit.desc = Set to 0 to disable the limit.
|
|
1495
1554
|
settings.zoom = Chat output window zoom
|
|
1496
1555
|
speech.enable = Speak
|
|
1497
1556
|
speech.listening = Speak now...
|
|
@@ -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?
|
|
@@ -679,6 +686,8 @@ html_canvas.clear.confirm = ¿Limpiar la salida del lienzo HTML?
|
|
|
679
686
|
icon.audio.input = Activar/desactivar entrada de audio
|
|
680
687
|
icon.audio.output = Activar/desactivar salida de audio
|
|
681
688
|
icon.remote_tool.web = Búsqueda en la Web (herramienta remota, no una herramienta local)
|
|
689
|
+
icon.remote_tool.web.disabled: Búsqueda Web (herramienta remota, no local) - deshabilitada
|
|
690
|
+
icon.remote_tool.web.enabled: Búsqueda Web (herramienta remota, no local) - habilitada
|
|
682
691
|
icon.video.capture = Activar/desactivar captura de vídeo desde la cámara
|
|
683
692
|
idx.btn.clear = Limpiar índice
|
|
684
693
|
idx.btn.index_all = Indexar todo
|
|
@@ -774,6 +783,7 @@ menu.config.save = Guardar configuración
|
|
|
774
783
|
menu.config.settings = Configuración...
|
|
775
784
|
menu.debug = Depurar
|
|
776
785
|
menu.debug.agent = Agente...
|
|
786
|
+
menu.debug.agent_builder = Editor de Agentes
|
|
777
787
|
menu.debug.app.log = Ver archivo de registro (app.log)
|
|
778
788
|
menu.debug.assistants = Asistentes...
|
|
779
789
|
menu.debug.attachments = Archivos / adjuntos...
|
|
@@ -827,6 +837,7 @@ menu.theme.style = Estilo...
|
|
|
827
837
|
menu.theme.syntax = Resaltado de sintaxis del código...
|
|
828
838
|
menu.theme.tooltips = Mostrar tooltips
|
|
829
839
|
menu.tools = Herramientas
|
|
840
|
+
menu.tools.agent.builder = Editor de Agentes
|
|
830
841
|
menu.tools.audio.transcribe = Transcribir archivos de audio/video
|
|
831
842
|
menu.tools.html_canvas = Lienzo HTML/JS
|
|
832
843
|
menu.tools.image.viewer = Visor de imágenes
|
|
@@ -934,6 +945,57 @@ multimodal.audio = Audio
|
|
|
934
945
|
multimodal.image = Imagen
|
|
935
946
|
multimodal.text = Texto
|
|
936
947
|
multimodal.video = Video
|
|
948
|
+
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
|
|
949
|
+
node.editor.cap.na: n/d
|
|
950
|
+
node.editor.cap.unlimited: ilimitado (∞)
|
|
951
|
+
node.editor.cmd.add: Añadir
|
|
952
|
+
node.editor.cmd.clear: Limpiar
|
|
953
|
+
node.editor.cmd.connect: Conectar
|
|
954
|
+
node.editor.cmd.delete_connection: Eliminar Conexión
|
|
955
|
+
node.editor.cmd.delete_node: Eliminar Nodo
|
|
956
|
+
node.editor.cmd.move_node: Mover Nodo
|
|
957
|
+
node.editor.cmd.resize_node: Redimensionar Nodo
|
|
958
|
+
node.editor.cmd.rewire_connection: Reconectar
|
|
959
|
+
node.editor.edge.delete: Eliminar conexión
|
|
960
|
+
node.editor.hint.click_start: Clic: iniciar una nueva conexión
|
|
961
|
+
node.editor.hint.ctrl_rewire: Ctrl+Clic: reconectar/desconectar existente
|
|
962
|
+
node.editor.label.id: ID
|
|
963
|
+
node.editor.lbl.allowed: Conexiones permitidas:
|
|
964
|
+
node.editor.lbl.node: Nodo:
|
|
965
|
+
node.editor.lbl.port: Puerto:
|
|
966
|
+
node.editor.list.tip: Lista de flujos de trabajo de agentes personalizados añadidos
|
|
967
|
+
node.editor.macro.delete_selection: Eliminar selección
|
|
968
|
+
node.editor.menu.add: Añadir
|
|
969
|
+
node.editor.menu.clear: Limpiar
|
|
970
|
+
node.editor.menu.redo: Rehacer
|
|
971
|
+
node.editor.menu.undo: Deshacer
|
|
972
|
+
node.editor.node.delete: Eliminar
|
|
973
|
+
node.editor.node.rename: Renombrar
|
|
974
|
+
node.editor.overlay.grab: Agarrar: alternar panorámica global con el Botón Izquierdo
|
|
975
|
+
node.editor.overlay.zoom_in: Acercar
|
|
976
|
+
node.editor.overlay.zoom_out: Alejar
|
|
977
|
+
node.editor.property.agent.name = Agente
|
|
978
|
+
node.editor.property.input.name = Entrada
|
|
979
|
+
node.editor.property.instruction.name = Instrucción
|
|
980
|
+
node.editor.property.instruction.placeholder = Instrucción del sistema para el agente
|
|
981
|
+
node.editor.property.local_tools.name = Herramientas locales
|
|
982
|
+
node.editor.property.memory.name = Memoria
|
|
983
|
+
node.editor.property.name.name = Nombre
|
|
984
|
+
node.editor.property.name.placeholder = Nombre del agente
|
|
985
|
+
node.editor.property.output.name = Salida
|
|
986
|
+
node.editor.property.remote_tools.name = Herramientas remotas
|
|
987
|
+
node.editor.property.role.name = Rol
|
|
988
|
+
node.editor.property.role.placeholder = Descripción corta opcional del propósito del agente
|
|
989
|
+
node.editor.rename.label: Nombre:
|
|
990
|
+
node.editor.rename.title: Renombrar Nodo
|
|
991
|
+
node.editor.side.input: Entrada
|
|
992
|
+
node.editor.side.output: Salida
|
|
993
|
+
node.editor.spec.agent.title = Agente
|
|
994
|
+
node.editor.spec.end.title = Fin
|
|
995
|
+
node.editor.spec.memory.title = Memoria (Contexto)
|
|
996
|
+
node.editor.spec.start.title = Inicio
|
|
997
|
+
node.editor.status.no_nodes: No hay nodos
|
|
998
|
+
node.editor.type.unknown: Desconocido
|
|
937
999
|
notify.agent.goal.content = Agente: la meta ha sido alcanzada.
|
|
938
1000
|
notify.agent.goal.title = Meta alcanzada
|
|
939
1001
|
notify.agent.stop.content = Agente: detenido
|
|
@@ -1419,6 +1481,7 @@ settings.vision.capture.idx = Dispositivo de Cámara
|
|
|
1419
1481
|
settings.vision.capture.idx.desc = Seleccione un dispositivo de cámara para la captura de video en tiempo real
|
|
1420
1482
|
settings.vision.capture.quality = Calidad de captura (%)
|
|
1421
1483
|
settings.vision.capture.width = Ancho de captura (en píxeles)
|
|
1484
|
+
settings.zero.limit.desc: Establecer en 0 para desactivar el límite.
|
|
1422
1485
|
settings.zoom = Zoom de ventana de salida del chat
|
|
1423
1486
|
speech.enable = Hablar
|
|
1424
1487
|
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 ?
|
|
@@ -678,6 +685,8 @@ html_canvas.clear.confirm = Effacer la sortie du canevas HTML ?
|
|
|
678
685
|
icon.audio.input = Activer/désactiver l'entrée audio
|
|
679
686
|
icon.audio.output = Activer/désactiver la sortie audio
|
|
680
687
|
icon.remote_tool.web = Recherche sur le Web (outil distant, pas un outil local)
|
|
688
|
+
icon.remote_tool.web.disabled: Recherche Web (outil distant, pas un outil local) - désactivé
|
|
689
|
+
icon.remote_tool.web.enabled: Recherche Web (outil distant, pas un outil local) - activé
|
|
681
690
|
icon.video.capture = Activer/désactiver la capture vidéo depuis la caméra
|
|
682
691
|
idx.btn.clear = Effacer l'index
|
|
683
692
|
idx.btn.index_all = Indexer tout
|
|
@@ -773,6 +782,7 @@ menu.config.save = Sauvegarder la config
|
|
|
773
782
|
menu.config.settings = Paramètres...
|
|
774
783
|
menu.debug = Débogage
|
|
775
784
|
menu.debug.agent = Agent...
|
|
785
|
+
menu.debug.agent_builder = Éditeur d'Agents
|
|
776
786
|
menu.debug.app.log = Voir le fichier de log (app.log)
|
|
777
787
|
menu.debug.assistants = Assistants...
|
|
778
788
|
menu.debug.attachments = Fichiers / pièces jointes...
|
|
@@ -826,6 +836,7 @@ menu.theme.style = Style...
|
|
|
826
836
|
menu.theme.syntax = Coloration syntaxique du code...
|
|
827
837
|
menu.theme.tooltips = Afficher les infobulles
|
|
828
838
|
menu.tools = Outils
|
|
839
|
+
menu.tools.agent.builder = Éditeur d'Agents
|
|
829
840
|
menu.tools.audio.transcribe = Transcrire des fichiers audio/vidéo
|
|
830
841
|
menu.tools.html_canvas = Canvas HTML/JS
|
|
831
842
|
menu.tools.image.viewer = Visionneuse d'image
|
|
@@ -933,6 +944,57 @@ multimodal.audio = Audio
|
|
|
933
944
|
multimodal.image = Image
|
|
934
945
|
multimodal.text = Texte
|
|
935
946
|
multimodal.video = Vidéo
|
|
947
|
+
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
|
|
948
|
+
node.editor.cap.na: n/a
|
|
949
|
+
node.editor.cap.unlimited: illimité (∞)
|
|
950
|
+
node.editor.cmd.add: Ajouter
|
|
951
|
+
node.editor.cmd.clear: Effacer
|
|
952
|
+
node.editor.cmd.connect: Connecter
|
|
953
|
+
node.editor.cmd.delete_connection: Supprimer la connexion
|
|
954
|
+
node.editor.cmd.delete_node: Supprimer le nœud
|
|
955
|
+
node.editor.cmd.move_node: Déplacer le nœud
|
|
956
|
+
node.editor.cmd.resize_node: Redimensionner le nœud
|
|
957
|
+
node.editor.cmd.rewire_connection: Reconnecter
|
|
958
|
+
node.editor.edge.delete: Supprimer la connexion
|
|
959
|
+
node.editor.hint.click_start: Cliquez: commencez une nouvelle connexion
|
|
960
|
+
node.editor.hint.ctrl_rewire: Ctrl+Clic: reconnecter/détacher l'existant
|
|
961
|
+
node.editor.label.id: ID
|
|
962
|
+
node.editor.lbl.allowed: Connexions autorisées:
|
|
963
|
+
node.editor.lbl.node: Nœud:
|
|
964
|
+
node.editor.lbl.port: Port:
|
|
965
|
+
node.editor.list.tip: Liste des workflows d'agents personnalisés ajoutés
|
|
966
|
+
node.editor.macro.delete_selection: Supprimer la sélection
|
|
967
|
+
node.editor.menu.add: Ajouter
|
|
968
|
+
node.editor.menu.clear: Effacer
|
|
969
|
+
node.editor.menu.redo: Rétablir
|
|
970
|
+
node.editor.menu.undo: Annuler
|
|
971
|
+
node.editor.node.delete: Supprimer
|
|
972
|
+
node.editor.node.rename: Renommer
|
|
973
|
+
node.editor.overlay.grab: Saisir: basculer le panoramique global avec le bouton gauche
|
|
974
|
+
node.editor.overlay.zoom_in: Zoomer
|
|
975
|
+
node.editor.overlay.zoom_out: Dézoomer
|
|
976
|
+
node.editor.property.agent.name = Agent
|
|
977
|
+
node.editor.property.input.name = Entrée
|
|
978
|
+
node.editor.property.instruction.name = Instruction
|
|
979
|
+
node.editor.property.instruction.placeholder = Instruction système pour l'agent
|
|
980
|
+
node.editor.property.local_tools.name = Outils locaux
|
|
981
|
+
node.editor.property.memory.name = Mémoire
|
|
982
|
+
node.editor.property.name.name = Nom
|
|
983
|
+
node.editor.property.name.placeholder = Nom de l'agent
|
|
984
|
+
node.editor.property.output.name = Sortie
|
|
985
|
+
node.editor.property.remote_tools.name = Outils distants
|
|
986
|
+
node.editor.property.role.name = Rôle
|
|
987
|
+
node.editor.property.role.placeholder = Courte description facultative de l'objectif de l'agent
|
|
988
|
+
node.editor.rename.label: Nom:
|
|
989
|
+
node.editor.rename.title: Renommer le nœud
|
|
990
|
+
node.editor.side.input: Entrée
|
|
991
|
+
node.editor.side.output: Sortie
|
|
992
|
+
node.editor.spec.agent.title = Agent
|
|
993
|
+
node.editor.spec.end.title = Fin
|
|
994
|
+
node.editor.spec.memory.title = Mémoire (Contexte)
|
|
995
|
+
node.editor.spec.start.title = Démarrer
|
|
996
|
+
node.editor.status.no_nodes: Pas de nœuds
|
|
997
|
+
node.editor.type.unknown: Inconnu
|
|
936
998
|
notify.agent.goal.content = Agent : l'objectif a été atteint.
|
|
937
999
|
notify.agent.goal.title = Objectif atteint
|
|
938
1000
|
notify.agent.stop.content = Agent : arrêté
|
|
@@ -1418,6 +1480,7 @@ settings.vision.capture.idx = Appareil Photo
|
|
|
1418
1480
|
settings.vision.capture.idx.desc = Sélectionnez un appareil photo pour la capture vidéo en temps réel
|
|
1419
1481
|
settings.vision.capture.quality = Qualité de capture (%)
|
|
1420
1482
|
settings.vision.capture.width = Largeur de capture (en pixels)
|
|
1483
|
+
settings.zero.limit.desc: Réglez sur 0 pour désactiver la limite.
|
|
1421
1484
|
settings.zoom = Zoom de la fenêtre de sortie du chat
|
|
1422
1485
|
speech.enable = Parler
|
|
1423
1486
|
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?
|
|
@@ -678,6 +685,8 @@ html_canvas.clear.confirm = Cancellare l'output del canvas HTML?
|
|
|
678
685
|
icon.audio.input = Attiva/disattiva ingresso audio
|
|
679
686
|
icon.audio.output = Attiva/disattiva uscita audio
|
|
680
687
|
icon.remote_tool.web = Ricerca Web (strumento remoto, non uno strumento locale)
|
|
688
|
+
icon.remote_tool.web.disabled: Ricerca Web (strumento remoto, non locale) - disattivato
|
|
689
|
+
icon.remote_tool.web.enabled: Ricerca Web (strumento remoto, non locale) - attivato
|
|
681
690
|
icon.video.capture = Attiva/disattiva cattura video dalla fotocamera
|
|
682
691
|
idx.btn.clear = Cancella indice
|
|
683
692
|
idx.btn.index_all = Indicizza tutto
|
|
@@ -773,6 +782,7 @@ menu.config.save = Salva configurazione
|
|
|
773
782
|
menu.config.settings = Impostazioni...
|
|
774
783
|
menu.debug = Debug
|
|
775
784
|
menu.debug.agent = Agente...
|
|
785
|
+
menu.debug.agent_builder = Editor di Agenti
|
|
776
786
|
menu.debug.app.log = Visualizza il file di log (app.log)
|
|
777
787
|
menu.debug.assistants = Assistenti...
|
|
778
788
|
menu.debug.attachments = File / allegati...
|
|
@@ -826,6 +836,7 @@ menu.theme.style = Stile...
|
|
|
826
836
|
menu.theme.syntax = Evidenziazione della sintassi del codice...
|
|
827
837
|
menu.theme.tooltips = Mostra suggerimenti
|
|
828
838
|
menu.tools = Strumenti
|
|
839
|
+
menu.tools.agent.builder = Editor di Agenti
|
|
829
840
|
menu.tools.audio.transcribe = Trascrivi file audio/video
|
|
830
841
|
menu.tools.html_canvas = Canvas HTML/JS
|
|
831
842
|
menu.tools.image.viewer = Visualizzatore di immagini
|
|
@@ -933,6 +944,57 @@ multimodal.audio = Audio
|
|
|
933
944
|
multimodal.image = Immagine
|
|
934
945
|
multimodal.text = Testo
|
|
935
946
|
multimodal.video = Video
|
|
947
|
+
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
|
|
948
|
+
node.editor.cap.na: n/d
|
|
949
|
+
node.editor.cap.unlimited: illimitato (∞)
|
|
950
|
+
node.editor.cmd.add: Aggiungi
|
|
951
|
+
node.editor.cmd.clear: Svuota
|
|
952
|
+
node.editor.cmd.connect: Connetti
|
|
953
|
+
node.editor.cmd.delete_connection: Elimina Connessione
|
|
954
|
+
node.editor.cmd.delete_node: Elimina Nodo
|
|
955
|
+
node.editor.cmd.move_node: Sposta Nodo
|
|
956
|
+
node.editor.cmd.resize_node: Ridimensiona Nodo
|
|
957
|
+
node.editor.cmd.rewire_connection: Riconnetti
|
|
958
|
+
node.editor.edge.delete: Elimina Connessione
|
|
959
|
+
node.editor.hint.click_start: Clicca: inizia una nuova connessione
|
|
960
|
+
node.editor.hint.ctrl_rewire: Ctrl+Clic: riconnetti/separa esistente
|
|
961
|
+
node.editor.label.id: ID
|
|
962
|
+
node.editor.lbl.allowed: Connessioni consentite:
|
|
963
|
+
node.editor.lbl.node: Nodo:
|
|
964
|
+
node.editor.lbl.port: Porta:
|
|
965
|
+
node.editor.list.tip: Elenco dei flussi di lavoro dell'agente personalizzati aggiunti
|
|
966
|
+
node.editor.macro.delete_selection: Elimina selezione
|
|
967
|
+
node.editor.menu.add: Aggiungi
|
|
968
|
+
node.editor.menu.clear: Svuota
|
|
969
|
+
node.editor.menu.redo: Ripristina
|
|
970
|
+
node.editor.menu.undo: Annulla
|
|
971
|
+
node.editor.node.delete: Elimina
|
|
972
|
+
node.editor.node.rename: Rinomina
|
|
973
|
+
node.editor.overlay.grab: Afferra: alterna panoramica globale con Pulsante Sinistro
|
|
974
|
+
node.editor.overlay.zoom_in: Ingrandisci
|
|
975
|
+
node.editor.overlay.zoom_out: Riduci
|
|
976
|
+
node.editor.property.agent.name = Agente
|
|
977
|
+
node.editor.property.input.name = Ingresso
|
|
978
|
+
node.editor.property.instruction.name = Istruzione
|
|
979
|
+
node.editor.property.instruction.placeholder = Istruzione di sistema per l'agente
|
|
980
|
+
node.editor.property.local_tools.name = Strumenti locali
|
|
981
|
+
node.editor.property.memory.name = Memoria
|
|
982
|
+
node.editor.property.name.name = Nome
|
|
983
|
+
node.editor.property.name.placeholder = Nome dell'agente
|
|
984
|
+
node.editor.property.output.name = Uscita
|
|
985
|
+
node.editor.property.remote_tools.name = Strumenti remoti
|
|
986
|
+
node.editor.property.role.name = Ruolo
|
|
987
|
+
node.editor.property.role.placeholder = Descrizione breve opzionale dello scopo dell'agente
|
|
988
|
+
node.editor.rename.label: Nome:
|
|
989
|
+
node.editor.rename.title: Rinomina Nodo
|
|
990
|
+
node.editor.side.input: Ingresso
|
|
991
|
+
node.editor.side.output: Uscita
|
|
992
|
+
node.editor.spec.agent.title = Agente
|
|
993
|
+
node.editor.spec.end.title = Fine
|
|
994
|
+
node.editor.spec.memory.title = Memoria (Contesto)
|
|
995
|
+
node.editor.spec.start.title = Inizio
|
|
996
|
+
node.editor.status.no_nodes: Nessun nodo
|
|
997
|
+
node.editor.type.unknown: Sconosciuto
|
|
936
998
|
notify.agent.goal.content = Agente: l'obiettivo è stato raggiunto.
|
|
937
999
|
notify.agent.goal.title = Obiettivo raggiunto
|
|
938
1000
|
notify.agent.stop.content = Agente: fermato
|
|
@@ -1418,6 +1480,7 @@ settings.vision.capture.idx = Dispositivo Fotocamera
|
|
|
1418
1480
|
settings.vision.capture.idx.desc = Seleziona un dispositivo fotocamera per la cattura video in tempo reale
|
|
1419
1481
|
settings.vision.capture.quality = Qualità della cattura (%)
|
|
1420
1482
|
settings.vision.capture.width = Larghezza della cattura (in pixel)
|
|
1483
|
+
settings.zero.limit.desc: Imposta a 0 per disabilitare il limite.
|
|
1421
1484
|
settings.zoom = Zoom finestra output chat
|
|
1422
1485
|
speech.enable = Parla
|
|
1423
1486
|
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?
|
|
@@ -679,6 +686,8 @@ html_canvas.clear.confirm = Wyczyścić wynik płótna HTML?
|
|
|
679
686
|
icon.audio.input = Włącz/wyłącz wejście audio
|
|
680
687
|
icon.audio.output = Włącz/wyłącz wyjście audio
|
|
681
688
|
icon.remote_tool.web = Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne)
|
|
689
|
+
icon.remote_tool.web.disabled: Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne) - wyłączone
|
|
690
|
+
icon.remote_tool.web.enabled: Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne) - włączone
|
|
682
691
|
icon.video.capture = Włącz/wyłącz przechwytywanie wideo z kamery
|
|
683
692
|
idx.btn.clear = Wyczyść indeks
|
|
684
693
|
idx.btn.index_all = Indeksuj wszystko
|
|
@@ -774,6 +783,7 @@ menu.config.save = Zapisz ustawienia
|
|
|
774
783
|
menu.config.settings = Ustawienia...
|
|
775
784
|
menu.debug = Debug
|
|
776
785
|
menu.debug.agent = Agent...
|
|
786
|
+
menu.debug.agent_builder = Edytor Agentów
|
|
777
787
|
menu.debug.app.log = Wyświetl plik logów (app.log)
|
|
778
788
|
menu.debug.assistants = Asystenci...
|
|
779
789
|
menu.debug.attachments = Pliki / załączniki...
|
|
@@ -827,6 +837,7 @@ menu.theme.style = Styl...
|
|
|
827
837
|
menu.theme.syntax = Podświetlanie składni kodu...
|
|
828
838
|
menu.theme.tooltips = Pokaż podpowiedzi
|
|
829
839
|
menu.tools = Narzędzia
|
|
840
|
+
menu.tools.agent.builder = Edytor Agentów
|
|
830
841
|
menu.tools.audio.transcribe = Transkrybuj pliki audio/wideo
|
|
831
842
|
menu.tools.html_canvas = HTML/JS Canvas
|
|
832
843
|
menu.tools.image.viewer = Przeglądarka obrazów
|
|
@@ -934,6 +945,57 @@ multimodal.audio = Dźwięk
|
|
|
934
945
|
multimodal.image = Obraz
|
|
935
946
|
multimodal.text = Tekst
|
|
936
947
|
multimodal.video = Wideo
|
|
948
|
+
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ń
|
|
949
|
+
node.editor.cap.na: n/d
|
|
950
|
+
node.editor.cap.unlimited: nieograniczone (∞)
|
|
951
|
+
node.editor.cmd.add: Dodaj
|
|
952
|
+
node.editor.cmd.clear: Wyczyść
|
|
953
|
+
node.editor.cmd.connect: Połącz
|
|
954
|
+
node.editor.cmd.delete_connection: Usuń połączenie
|
|
955
|
+
node.editor.cmd.delete_node: Usuń węzeł
|
|
956
|
+
node.editor.cmd.move_node: Przenieś węzeł
|
|
957
|
+
node.editor.cmd.resize_node: Zmień rozmiar węzła
|
|
958
|
+
node.editor.cmd.rewire_connection: Przepnij połączenie
|
|
959
|
+
node.editor.edge.delete: Usuń połączenie
|
|
960
|
+
node.editor.hint.click_start: Kliknij: rozpocznij nowe połączenie
|
|
961
|
+
node.editor.hint.ctrl_rewire: Ctrl+Klik: przepnij/odłącz istniejące
|
|
962
|
+
node.editor.label.id: ID
|
|
963
|
+
node.editor.lbl.allowed: Dozwolone połączenia:
|
|
964
|
+
node.editor.lbl.node: Węzeł:
|
|
965
|
+
node.editor.lbl.port: Port:
|
|
966
|
+
node.editor.list.tip: Lista dodanych spersonalizowanych agentów
|
|
967
|
+
node.editor.macro.delete_selection: Usuń zaznaczenie
|
|
968
|
+
node.editor.menu.add: Dodaj
|
|
969
|
+
node.editor.menu.clear: Wyczyść
|
|
970
|
+
node.editor.menu.redo: Ponów
|
|
971
|
+
node.editor.menu.undo: Cofnij
|
|
972
|
+
node.editor.node.delete: Usuń
|
|
973
|
+
node.editor.node.rename: Zmień nazwę
|
|
974
|
+
node.editor.overlay.grab: Chwyć: przełącz globalne przesuwanie LPM
|
|
975
|
+
node.editor.overlay.zoom_in: Powiększ
|
|
976
|
+
node.editor.overlay.zoom_out: Pomniejsz
|
|
977
|
+
node.editor.property.agent.name = Agent
|
|
978
|
+
node.editor.property.input.name = Wejście
|
|
979
|
+
node.editor.property.instruction.name = Instrukcja
|
|
980
|
+
node.editor.property.instruction.placeholder = Instrukcja systemowa dla agenta
|
|
981
|
+
node.editor.property.local_tools.name = Lokalne narzędzia
|
|
982
|
+
node.editor.property.memory.name = Pamięć
|
|
983
|
+
node.editor.property.name.name = Nazwa
|
|
984
|
+
node.editor.property.name.placeholder = Nazwa agenta
|
|
985
|
+
node.editor.property.output.name = Wyjście
|
|
986
|
+
node.editor.property.remote_tools.name = Zdalne narzędzia
|
|
987
|
+
node.editor.property.role.name = Rola
|
|
988
|
+
node.editor.property.role.placeholder = Opcjonalny krótki opis celu agenta
|
|
989
|
+
node.editor.rename.label: Nazwa:
|
|
990
|
+
node.editor.rename.title: Zmień nazwę węzła
|
|
991
|
+
node.editor.side.input: Wejście
|
|
992
|
+
node.editor.side.output: Wyjście
|
|
993
|
+
node.editor.spec.agent.title = Agent
|
|
994
|
+
node.editor.spec.end.title = Koniec
|
|
995
|
+
node.editor.spec.memory.title = Pamięć (Kontekst)
|
|
996
|
+
node.editor.spec.start.title = Start
|
|
997
|
+
node.editor.status.no_nodes: Brak węzłów
|
|
998
|
+
node.editor.type.unknown: Nieznany
|
|
937
999
|
notify.agent.goal.content = Agent: cel został osiągnięty.
|
|
938
1000
|
notify.agent.goal.title = Cel osiągnięty
|
|
939
1001
|
notify.agent.stop.content = Agent: zatrzymany
|
|
@@ -1185,7 +1247,7 @@ settings.ctx.search.desc = Włącz wyszukiwanie również w treści elementów k
|
|
|
1185
1247
|
settings.ctx.sources = Pokaż źródła LlamaIndex
|
|
1186
1248
|
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
1249
|
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.
|
|
1250
|
+
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
1251
|
settings.ctx.use_extra = Używaj dodatkowego kontekstu outputu
|
|
1190
1252
|
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
1253
|
settings.debug.show_menu = Pokaż menu debugowania
|
|
@@ -1419,6 +1481,7 @@ settings.vision.capture.idx = Urządzenie Kamery
|
|
|
1419
1481
|
settings.vision.capture.idx.desc = Wybierz urządzenie kamery do przechwytywania wideo w czasie rzeczywistym
|
|
1420
1482
|
settings.vision.capture.quality = Jakość przechwytywania (%)
|
|
1421
1483
|
settings.vision.capture.width = Szerokość przechwytywania (w pikselach)
|
|
1484
|
+
settings.zero.limit.desc: Ustaw wartość 0, aby wyłączyć limit.
|
|
1422
1485
|
settings.zoom = Powiększenie okna outputu czatu
|
|
1423
1486
|
speech.enable = Mowa
|
|
1424
1487
|
speech.listening = Mów teraz...
|