uipath-cli
latest
false
UiPath CLI user guide
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
List LLM models available for the authenticated tenant with `uip agent model list`.
uip agent model is a read-only discovery group for the LLM models available to configure on an agent. It registers a single subcommand, list. Requires login.
Synopsis
uip agent model list [--all-fields]
uip agent model list [--all-fields]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
uip agent model list
Options
| Flag | Purpose |
|---|---|
--all-fields | Return full model objects instead of the trimmed default projection. |
Examples
uip agent model list
uip agent model list --all-fields
uip agent model list
uip agent model list --all-fields
Data shape (--output json)
Default projection:
{
"Code": "AgentModelList",
"Data": [
{ "Provider": "OpenAI", "Name": "gpt-4o", "IsByo": false, "IsPreview": false, "MaxTokens": 4096 }
]
}
{
"Code": "AgentModelList",
"Data": [
{ "Provider": "OpenAI", "Name": "gpt-4o", "IsByo": false, "IsPreview": false, "MaxTokens": 4096 }
]
}
--all-fields:
{
"Code": "AgentModelList",
"Data": [
{ "Provider": "OpenAI", "Name": "gpt-4o", "IsByo": false, "IsPreview": false, "IsSuggested": true, "IsDeprecated": false, "MaxTokens": 4096, "MaxInputTokens": 128000 }
]
}
{
"Code": "AgentModelList",
"Data": [
{ "Provider": "OpenAI", "Name": "gpt-4o", "IsByo": false, "IsPreview": false, "IsSuggested": true, "IsDeprecated": false, "MaxTokens": 4096, "MaxInputTokens": 128000 }
]
}
Related
uip agent init --model— the flag this list feeds.