uipath-cli
latest
false
Guide de l'utilisateur de UiPath CLI
- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- uip coder
- uip context-grounding
- UiPath Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Tâches (Jobs)
- Dossiers
- Processus
- Paquets
- Machines
- Utilisateurs
- Rôles
- Licences
- Flux
- Pièces jointes (Attachments)
- Sessions
- Calendriers
- magasins d'informations d’identification
- journaux-audit
- paramètres
- Actifs
- Compartiments
- Compartiment-fichiers
- Bibliothèques
- Files d'attente (Queues)
- éléments de la file d'attente
- Déclencheurs (Triggers)
- Webhooks
- add-test-data-entity
- ajouter une file d'attente de données de test
- add-test-data-variation
- Analyser
- Construire
- créer-projet
- Différence
- recherche-activités
- Obtenir les règles de l'analyse
- récupérer-activité-xaml par défaut
- Récupérer les erreurs
- obtenir des cas de test manuels
- Obtenir les étapes de test manuelles
- get-library-object-repository
- get-object-repository
- Obtenir les versions
- exemple de workflow
- indiquer l'application
- indiquer l'élément
- inspecter-package
- install-data-fabric-entities
- installer-ou-Update-packages
- list-data-fabric-entités
- list-instances
- listes-exemples-workflow
- Créer un package
- Publier
- remote
- restore
- run, debug & execution
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- tm
- UIA
- uip tasks
- Traçages UIP
- uip traces feedback
- Migration
- Référence et assistance
Important :
Ce contenu a été traduit à l'aide d'une traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être 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.
Synthèse
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.
Arguments
<name>(required) — Feature name to use in the agent.
Options
| Drapeau | Default | Requis | Objectif |
|---|---|---|---|
--memory-space <name> | — | oui | Memory space name to attach. |
--folder-path <path> | — | oui | 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 ou semantic. | |
--field <name=weight> | — | Input field weight. Repeatable. | |
--disable-dynamic-few-shot | désactivé | Attach the memory space without enabling dynamic few-shot retrieval (enabled by default). | |
--path <path> | . | Chemin d’accès au répertoire du projet d’agent. |
Exemple
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
Format des données (--sortie json)
{
"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
Options
| Drapeau | Default | Objectif |
|---|---|---|
--path <path> | . | Chemin d’accès au répertoire du projet d’agent. |
Exemple
uip agent memory list --path ./my-agent
uip agent memory list --path ./my-agent
Format des données (--sortie json)
{
"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
Arguments
<name>(required) — Feature name, memory space name, or ID to remove.
Options
| Drapeau | Objectif |
|---|---|
--folder-path <path> | Folder path, when removing by memory space name. |
--path <path> | Path to the agent project directory (default .). |
Exemple
uip agent memory remove SupportRecall --path ./my-agent
uip agent memory remove SupportRecall --path ./my-agent
Format des données (--sortie json)
{ "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.
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<name> | oui | Feature name, memory space name, or ID. |
<key> | oui | Memory item key. |
<value> | oui | Memory item value. |
Options
| Drapeau | Requis | Objectif |
|---|---|---|
--folder-path <path> | Folder path, when selecting by memory space name. | |
--memory-type <type> | oui | 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 .). |
Exemples
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
Format des données (--sortie json)
{
"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
Arguments
<name>(required) — Feature name, memory space name, or ID.
Options
| Drapeau | Objectif |
|---|---|
--folder-path <path> | Folder path, when selecting by memory space name. |
--path <path> | Path to the agent project directory (default .). |
Exemple
uip agent memory item list SupportRecall --path ./my-agent
uip agent memory item list SupportRecall --path ./my-agent
Format des données (--sortie json)
{
"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
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<name> | oui | Feature name, memory space name, or ID. |
<key> | oui | Memory item key or ID to remove. |
Options
| Drapeau | Objectif |
|---|---|
--folder-path <path> | Folder path, when selecting by memory space name. |
--path <path> | Path to the agent project directory (default .). |
Exemple
uip agent memory item remove SupportRecall customer-tier --path ./my-agent
uip agent memory item remove SupportRecall customer-tier --path ./my-agent
Format des données (--sortie json)
{ "Code": "AgentMemoryItemRemove", "Data": { "Status": "Memory item removed", "Memory": "SupportRecall", "Key": "customer-tier" } }
{ "Code": "AgentMemoryItemRemove", "Data": { "Status": "Memory item removed", "Memory": "SupportRecall", "Key": "customer-tier" } }
Associé
uip agent validate— re-run after editing memory configuration.uip agent refresh— regenerates derived files after a memory space is added.
Voir également
- Synthèse
- uip agent memory add
- Arguments
- Options
- Exemple
- Format des données (--sortie json)
- uip agent memory list
- Options
- Exemple
- Format des données (--sortie json)
- uip agent memory remove
- Arguments
- Options
- Exemple
- Format des données (--sortie json)
- uip agent memory item add
- Arguments
- Options
- Exemples
- Format des données (--sortie json)
- uip agent memory item list
- Arguments
- Options
- Exemple
- Format des données (--sortie json)
- uip agent memory item remove
- Arguments
- Options
- Exemple
- Format des données (--sortie json)
- Associé
- Voir également