- 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
List guardrail definitions, BYOG guardrails, LLM-as-judge models, and the guardrail catalog with `uip agent guardrails`.
uip agent guardrails is a read-only discovery group for the guardrails an agent project can reference — built-in validators and bring-your-own-guardrail (BYOG) connections — plus the models available for the LLM-as-judge guardrail and the authored catalog metadata (descriptions, use cases, examples) for each validator. It does not attach a guardrail to a project; that's done by hand-editing agent.json.
Sinopsis
uip agent guardrails list [--byo]
uip agent guardrails llm-as-judge-models
uip agent guardrails catalog [--validator <id>]
uip agent guardrails list [--byo]
uip agent guardrails llm-as-judge-models
uip agent guardrails catalog [--validator <id>]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
uip agent guardrails list
List available guardrail definitions, including disabled ones (a disabled BYOG configuration is worth showing — otherwise it's indistinguishable from one that was never set up).
Opciones
| Marca | Propósito |
|---|---|
--byo | Filter to bring-your-own (BYOG) guardrails only. |
Ejemplos
uip agent guardrails list
uip agent guardrails list --byo
uip agent guardrails list
uip agent guardrails list --byo
Forma de datos (--json de salida)
{
"Code": "GuardrailDefinitionsList",
"Data": [
{
"Validator": "pii_detection",
"IsByo": false,
"Status": "Available",
"AllowedScopes": ["Agent", "Llm", "Tool"],
"GuardrailStages": { "Agent": ["PreExecution", "PostExecution"], "Llm": ["PreExecution", "PostExecution"], "Tool": ["PreExecution", "PostExecution"] },
"Parameters": [
{ "Type": "enum-list", "Id": "entities", "Required": true, "DefaultValue": ["Email", "Address"], "Options": ["Person", "Address", "Email", "..."] }
]
}
]
}
{
"Code": "GuardrailDefinitionsList",
"Data": [
{
"Validator": "pii_detection",
"IsByo": false,
"Status": "Available",
"AllowedScopes": ["Agent", "Llm", "Tool"],
"GuardrailStages": { "Agent": ["PreExecution", "PostExecution"], "Llm": ["PreExecution", "PostExecution"], "Tool": ["PreExecution", "PostExecution"] },
"Parameters": [
{ "Type": "enum-list", "Id": "entities", "Required": true, "DefaultValue": ["Email", "Address"], "Options": ["Person", "Address", "Email", "..."] }
]
}
]
}
Validator is not unique — a BYOG definition can share a built-in's name (a tenant can have two harmful_content entries). Use IsByo plus the Byo* fields (ByoValidatorName, ByoConnectionId, ByoConfigurationId, ByoConnectorName, ByoConnectorKey, FolderKey) to tell them apart — ByoValidatorName and ByoConnectionId are the two values a coded agent passes to ByoValidator(...).
uip agent guardrails llm-as-judge-models
List LLM models available for the LLM-as-judge guardrail. Requires login.
Ejemplo
uip agent guardrails llm-as-judge-models
uip agent guardrails llm-as-judge-models
Forma de datos (--json de salida)
{
"Code": "LlmGatewayModelsList",
"Data": [
{ "ModelId": "anthropic.claude-haiku-4-5-20251001-v1:0", "DisplayName": "Claude Haiku 4.5", "Vendor": "AwsBedrock", "ModelFamily": "AnthropicClaude", "SubscriptionType": "UiPathOwned", "IsByo": false, "IsPreview": false, "IsBlockedByPolicy": false }
]
}
{
"Code": "LlmGatewayModelsList",
"Data": [
{ "ModelId": "anthropic.claude-haiku-4-5-20251001-v1:0", "DisplayName": "Claude Haiku 4.5", "Vendor": "AwsBedrock", "ModelFamily": "AnthropicClaude", "SubscriptionType": "UiPathOwned", "IsByo": false, "IsPreview": false, "IsBlockedByPolicy": false }
]
}
Models blocked by tenant policy are filtered out before the list is returned.
uip agent guardrails catalog
Fetch authored catalog metadata (descriptions, use cases, examples) for guardrail validators.
Opciones
| Marca | Propósito |
|---|---|
--validator <id> | Filter to a single validator by its snake_case ID (e.g. pii_detection). |
Ejemplos
uip agent guardrails catalog
uip agent guardrails catalog --validator pii_detection
uip agent guardrails catalog
uip agent guardrails catalog --validator pii_detection
Forma de datos (--json de salida)
{
"Code": "GuardrailCatalog",
"Data": {
"schema_version": "1.0.0",
"guardrails": [
{ "validator_id": "pii_detection", "display_name": "PII Detection", "type": "BuiltIn", "status": "Available", "description": "...", "use_cases": ["..."], "examples": [] }
]
}
}
{
"Code": "GuardrailCatalog",
"Data": {
"schema_version": "1.0.0",
"guardrails": [
{ "validator_id": "pii_detection", "display_name": "PII Detection", "type": "BuiltIn", "status": "Available", "description": "...", "use_cases": ["..."], "examples": [] }
]
}
}
If the catalog feature isn't yet enabled for the tenant, this fails with Code: "GuardrailCatalogUnavailable".
Relacionado
uip agent review— one of its rule categories isguardrails.
Ver también
- Authentication — required for
llm-as-judge-models. - Opciones globales, códigos de salida.