uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- 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
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 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
データシェイプ(--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 }
]
}
関連
uip agent init --model— the flag this list feeds.