uipath-cli
latest
false
Guía del usuario de UiPath CLI
- Información general
- Comience ya
- Conceptos
- Uso de UiPath CLI
- Guías prácticas
- Recetas de CI/CD
- Referencia de los comandos
- Información general
- Códigos de salida
- Opciones globales
- agente de código UIP
- uip coder
- uip context-grounding
- UIP Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- añadir-entidad-de-datos-de-prueba
- añadir-cola-de-datos-de-prueba
- añadir-variación-de-datos-de-prueba
- Analizar
- Crear
- Crear proyecto
- Diferencia
- Buscar actividades
- obtener-reglas-del-analizador
- obtener-predeterminado-actividad-xaml
- obtener-errores
- obtener-casos-de-prueba-manual
- obtener-pasos-de-prueba-manual
- get-library-object-repository
- get-object-repository
- obtener versiones
- get-workflow-example
- indicar-aplicación
- indicar-elemento
- inspeccionar-paquete
- install-data-fabric-entities
- instalar-o-actualizar-paquetes
- enumerar-data-fabric-entities
- list-instances
- ejemplos-de-flujo-de-trabajo-de-lista
- Paquete
- Publicar
- remote
- restore
- run, debug & execution
- archivo de ejecución
- plantillas-de-búsqueda
- iniciar-studio
- detener la ejecución
- tm
- UIA
- uip tasks
- Seguimientos de UIP
- uip traces feedback
- Migración
- Referencia y soporte
Importante :
Este contenido se ha traducido mediante traducción automática.
La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.
Attach, list, and remove memory spaces and memory items on a low-code agent with `uip agent memory`.
uip agent memory manages the memory-space features attached to an agent: a memory space is a retrieval-augmented recall source (episodic or escalation memory) the agent can search against at runtime. uip agent memory item manages individual key/value items seeded into a configured memory space.
Local-only — no login required.
Sinopsis
uip agent memory add <name> --memory-space <name> --folder-path <path> [--reference-key <key>] [--description <desc>] [--threshold <n>] [--result-count <n>] [--search-mode <hybrid|semantic>] [--field <name=weight>]... [--disable-dynamic-few-shot] [--path <dir>]
uip agent memory list [--path <dir>]
uip agent memory remove <name> [--folder-path <path>] [--path <dir>]
uip agent memory item add <name> <key> <value> --memory-type <episodic|escalation> [--folder-path <path>] [--description <desc>] [--metadata <json>] [--path <dir>]
uip agent memory item list <name> [--folder-path <path>] [--path <dir>]
uip agent memory item remove <name> <key> [--folder-path <path>] [--path <dir>]
uip agent memory add <name> --memory-space <name> --folder-path <path> [--reference-key <key>] [--description <desc>] [--threshold <n>] [--result-count <n>] [--search-mode <hybrid|semantic>] [--field <name=weight>]... [--disable-dynamic-few-shot] [--path <dir>]
uip agent memory list [--path <dir>]
uip agent memory remove <name> [--folder-path <path>] [--path <dir>]
uip agent memory item add <name> <key> <value> --memory-type <episodic|escalation> [--folder-path <path>] [--description <desc>] [--metadata <json>] [--path <dir>]
uip agent memory item list <name> [--folder-path <path>] [--path <dir>]
uip agent memory item remove <name> <key> [--folder-path <path>] [--path <dir>]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
uip agent memory add
Attach a memory space to the agent.
Argumentos
<name>(required) — Feature name to use in the agent.
Opciones
| Marca | Predeterminado | Obligatorio | Propósito |
|---|---|---|---|
--memory-space <name> | — | Sí | Memory space name to attach. |
--folder-path <path> | — | Sí | Folder path where the memory space exists. |
--reference-key <key> | — | Memory space solution resource key. | |
--description <desc> | — | Memory space description. | |
--threshold <n> | 0 | Retrieval score threshold. | |
--result-count <n> | 3 | Number of results to retrieve (positive integer). | |
--search-mode <mode> | hybrid | hybrid o semantic. | |
--field <name=weight> | — | Input field weight. Repeatable. | |
--disable-dynamic-few-shot | Desactivado | Attach the memory space without enabling dynamic few-shot retrieval (enabled by default). | |
--path <path> | . | Ruta al directorio del proyecto del agente. |
Ejemplo
uip agent memory add SupportRecall --memory-space customer-support-recall --folder-path Shared --path ./my-agent
uip agent memory add SupportRecall --memory-space customer-support-recall --folder-path Shared --path ./my-agent
Forma de datos (--json de salida)
{
"Code": "AgentMemoryAdd",
"Data": {
"Status": "Memory space added",
"Name": "SupportRecall",
"MemorySpace": "customer-support-recall",
"FolderPath": "Shared",
"DynamicFewShotEnabled": true,
"Id": "a1b2c3d4-0000-0000-0000-000000000070"
}
}
{
"Code": "AgentMemoryAdd",
"Data": {
"Status": "Memory space added",
"Name": "SupportRecall",
"MemorySpace": "customer-support-recall",
"FolderPath": "Shared",
"DynamicFewShotEnabled": true,
"Id": "a1b2c3d4-0000-0000-0000-000000000070"
}
}
uip agent memory list
Opciones
| Marca | Predeterminado | Propósito |
|---|---|---|
--path <path> | . | Ruta al directorio del proyecto del agente. |
Ejemplo
uip agent memory list --path ./my-agent
uip agent memory list --path ./my-agent
Forma de datos (--json de salida)
{
"Code": "AgentMemoryList",
"Data": [
{ "Name": "SupportRecall", "MemorySpace": "customer-support-recall", "FolderPath": "Shared", "DynamicFewShotEnabled": true, "Id": "a1b2c3d4-0000-0000-0000-000000000070" }
]
}
{
"Code": "AgentMemoryList",
"Data": [
{ "Name": "SupportRecall", "MemorySpace": "customer-support-recall", "FolderPath": "Shared", "DynamicFewShotEnabled": true, "Id": "a1b2c3d4-0000-0000-0000-000000000070" }
]
}
uip agent memory remove
Argumentos
<name>(required) — Feature name, memory space name, or ID to remove.
Opciones
| Marca | Propósito |
|---|---|
--folder-path <path> | Folder path, when removing by memory space name. |
--path <path> | Path to the agent project directory (default .). |
Ejemplo
uip agent memory remove SupportRecall --path ./my-agent
uip agent memory remove SupportRecall --path ./my-agent
Forma de datos (--json de salida)
{ "Code": "AgentMemoryRemove", "Data": { "Status": "Memory space removed", "Name": "SupportRecall" } }
{ "Code": "AgentMemoryRemove", "Data": { "Status": "Memory space removed", "Name": "SupportRecall" } }
A memory space not found by name/ID fails the command with a non-zero exit code.
uip agent memory item add
Add a memory item to a configured memory space.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<name> | Sí | Feature name, memory space name, or ID. |
<key> | Sí | Memory item key. |
<value> | Sí | Memory item value. |
Opciones
| Marca | Obligatorio | Propósito |
|---|---|---|
--folder-path <path> | Folder path, when selecting by memory space name. | |
--memory-type <type> | Sí | episodic (0) or escalation (1) — numeric values 0/1 also accepted. |
--description <desc> | Memory item description. | |
--metadata <json> | Memory item metadata as a JSON object. | |
--path <path> | Path to the agent project directory (default .). |
Ejemplos
uip agent memory item add SupportRecall customer-tier gold --memory-type episodic --metadata '{"source":"seed"}' --path ./my-agent
uip agent memory item add SupportRecall escalation-case pending --memory-type escalation --path ./my-agent
uip agent memory item add SupportRecall customer-tier gold --memory-type episodic --metadata '{"source":"seed"}' --path ./my-agent
uip agent memory item add SupportRecall escalation-case pending --memory-type escalation --path ./my-agent
Forma de datos (--json de salida)
{
"Code": "AgentMemoryItemAdd",
"Data": { "Status": "Memory item added", "Memory": "SupportRecall", "Key": "customer-tier", "MemoryType": 0, "Id": "a1b2c3d4-0000-0000-0000-000000000080" }
}
{
"Code": "AgentMemoryItemAdd",
"Data": { "Status": "Memory item added", "Memory": "SupportRecall", "Key": "customer-tier", "MemoryType": 0, "Id": "a1b2c3d4-0000-0000-0000-000000000080" }
}
uip agent memory item list
Argumentos
<name>(required) — Feature name, memory space name, or ID.
Opciones
| Marca | Propósito |
|---|---|
--folder-path <path> | Folder path, when selecting by memory space name. |
--path <path> | Path to the agent project directory (default .). |
Ejemplo
uip agent memory item list SupportRecall --path ./my-agent
uip agent memory item list SupportRecall --path ./my-agent
Forma de datos (--json de salida)
{
"Code": "AgentMemoryItemList",
"Data": [
{ "Key": "customer-tier", "Value": "gold", "MemoryType": 0, "Description": null, "Metadata": { "source": "seed" }, "Id": "a1b2c3d4-0000-0000-0000-000000000080" }
]
}
{
"Code": "AgentMemoryItemList",
"Data": [
{ "Key": "customer-tier", "Value": "gold", "MemoryType": 0, "Description": null, "Metadata": { "source": "seed" }, "Id": "a1b2c3d4-0000-0000-0000-000000000080" }
]
}
uip agent memory item remove
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<name> | Sí | Feature name, memory space name, or ID. |
<key> | Sí | Memory item key or ID to remove. |
Opciones
| Marca | Propósito |
|---|---|
--folder-path <path> | Folder path, when selecting by memory space name. |
--path <path> | Path to the agent project directory (default .). |
Ejemplo
uip agent memory item remove SupportRecall customer-tier --path ./my-agent
uip agent memory item remove SupportRecall customer-tier --path ./my-agent
Forma de datos (--json de salida)
{ "Code": "AgentMemoryItemRemove", "Data": { "Status": "Memory item removed", "Memory": "SupportRecall", "Key": "customer-tier" } }
{ "Code": "AgentMemoryItemRemove", "Data": { "Status": "Memory item removed", "Memory": "SupportRecall", "Key": "customer-tier" } }
Relacionado
uip agent validate— re-run after editing memory configuration.uip agent refresh— regenerates derived files after a memory space is added.
Ver también
- Sinopsis
- uip agent memory add
- Argumentos
- Opciones
- Ejemplo
- Forma de datos (--json de salida)
- uip agent memory list
- Opciones
- Ejemplo
- Forma de datos (--json de salida)
- uip agent memory remove
- Argumentos
- Opciones
- Ejemplo
- Forma de datos (--json de salida)
- uip agent memory item add
- Argumentos
- Opciones
- Ejemplos
- Forma de datos (--json de salida)
- uip agent memory item list
- Argumentos
- Opciones
- Ejemplo
- Forma de datos (--json de salida)
- uip agent memory item remove
- Argumentos
- Opciones
- Ejemplo
- Forma de datos (--json de salida)
- Relacionado
- Ver también