uipath-cli
latest
false
UiPath-CLI-Benutzerhandbuch
- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- UIP-codierter Agent
- uip coder
- uip context-grounding
- UIP-Dokumentation
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- get-library-object-repository
- get-object-repository
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- list-instances
- Beispiele für Listenworkflows
- Packen
- Veröffentlichen
- remote
- restore
- run, debug & execution
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- tm
- UIA
- uip tasks
- UIP-Ablaufverfolgungen
- uip traces feedback
- Migration
- Referenz und Support
Wichtig :
Dieser Inhalt wurde maschinell übersetzt.
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
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.
Zusammenfassung
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
Optionen
| Markieren | Zweck |
|---|---|
--all-fields | Return full model objects instead of the trimmed default projection. |
Beispiele
uip agent model list
uip agent model list --all-fields
uip agent model list
uip agent model list --all-fields
Datenform (--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 }
]
}
Zugehörig
uip agent init --model— the flag this list feeds.