uipath-cli
latest
false
UiPath CLI 用户指南
- 概述
- 开始使用
- 概念
- 使用 UiPath CLI
- 操作指南
- CI/CD 方法
- 命令参考
- 迁移
- 参考与支持
重要 :
请注意,此内容已使用机器翻译进行了本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。
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.
大纲
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
选项
| 标记 | 用途 |
|---|---|
--all-fields | Return full model objects instead of the trimmed default projection. |
示例
uip agent model list
uip agent model list --all-fields
uip agent model list
uip agent model list --all-fields
数据形状(--输出 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 }
]
}
相关内容
uip agent init --model— the flag this list feeds.