Models - List
Azure OpenAI リソースからアクセスできるすべてのモデルの一覧を取得します。 これには、基本モデルと、Azure OpenAI リソースが所有するすべての正常に完了した微調整済みモデルが含まれます。
GET {endpoint}/openai/models?api-version=2024-10-21
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
endpoint
|
path | True |
string url |
サポートされている Cognitive Services エンドポイント (プロトコルとホスト名など: https://aoairesource.openai.azure.com。"aoairesource" を Azure OpenAI アカウント名に置き換えます)。 |
api-version
|
query | True |
string |
要求された API バージョン。 |
要求ヘッダー
名前 | 必須 | 型 | 説明 |
---|---|---|---|
api-key | True |
string |
コグニティブ サービスの Azure OpenAI アカウント キーをここで指定します。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
成功 |
|
Other Status Codes |
エラーが発生しました。 |
セキュリティ
api-key
コグニティブ サービスの Azure OpenAI アカウント キーをここで指定します。
型:
apiKey
/:
header
例
Getting all models owned by account.
要求のサンプル
GET https://aoairesource.openai.azure.com/openai/models?api-version=2024-10-21
応答のサンプル
{
"data": [
{
"status": "succeeded",
"capabilities": {
"fine_tune": true,
"inference": true,
"completion": true,
"chat_completion": false,
"embeddings": false
},
"lifecycle_status": "generally-available",
"deprecation": {
"fine_tune": 1677662127,
"inference": 1709284527
},
"id": "curie",
"created_at": 1646126127,
"object": "model"
},
{
"status": "succeeded",
"model": "curie",
"fine_tune": "ft-72a2792ef7d24ba7b82c7fe4a37e379f",
"capabilities": {
"fine_tune": false,
"inference": true,
"completion": true,
"chat_completion": false,
"embeddings": false
},
"lifecycle_status": "generally-available",
"deprecation": {
"inference": 1709284527
},
"id": "curie.ft-72a2792ef7d24ba7b82c7fe4a37e379f",
"created_at": 1646126127,
"object": "model"
}
],
"object": "list"
}
定義
名前 | 説明 |
---|---|
Capabilities |
資格 |
Deprecation |
廃止 |
Error |
エラー |
Error |
ErrorCode |
Error |
ErrorResponse |
Fine |
FineTuningState |
Inner |
InnerError |
Inner |
InnerErrorCode |
Life |
LifeCycleStatus |
Model |
モデル |
Model |
ModelList |
Type |
TypeDiscriminator |
Capabilities
資格
名前 | 型 | 説明 |
---|---|---|
chat_completion |
boolean |
モデルがチャット完了をサポートしているかどうかを示す値。 |
completion |
boolean |
モデルが完了をサポートしているかどうかを示す値。 |
embeddings |
boolean |
モデルが埋め込みをサポートしているかどうかを示す値。 |
fine_tune |
boolean |
モデルを微調整に使用できるかどうかを示す値。 |
inference |
boolean |
モデルをデプロイできるかどうかを示す値。 |
Deprecation
廃止
名前 | 型 | 説明 |
---|---|---|
fine_tune |
integer |
このモデルの微調整サポートの終了日。 モデルを微調整するために |
inference |
integer |
このモデルの推論サポートの終了日。 |
Error
エラー
名前 | 型 | 説明 |
---|---|---|
code |
ErrorCode |
|
details |
Error[] |
エラーの詳細 (使用可能な場合)。 |
innererror |
InnerError |
|
message |
string |
このエラーのメッセージ。 |
target |
string |
エラーが発生した場所 (使用可能な場合)。 |
ErrorCode
ErrorCode
名前 | 型 | 説明 |
---|---|---|
conflict |
string |
要求された操作が現在のリソースの状態と競合しています。 |
contentFilter |
string |
安全システムの結果、画像の生成に失敗しました。 |
fileImportFailed |
string |
ファイルのインポートに失敗しました。 |
forbidden |
string |
この操作は、現在のユーザー/API キーでは禁止されています。 |
internalFailure |
string |
内部エラー。 再試行してください。 |
invalidPayload |
string |
要求データがこの操作に対して無効です。 |
itemDoesAlreadyExist |
string |
項目は既に存在します。 |
jsonlValidationFailed |
string |
jsonl データの検証に失敗しました。 |
notFound |
string |
リソースが見つかりません。 |
quotaExceeded |
string |
クォータを超えました。 |
serviceUnavailable |
string |
このサービスは現在使用できません。 |
tooManyRequests |
string |
要求が多すぎます。 後で再試行してください。 |
unauthorized |
string |
現在のユーザー/API キーは、操作に対して承認されていません。 |
unexpectedEntityState |
string |
この操作は、現在のリソースの状態では実行できません。 |
ErrorResponse
ErrorResponse
名前 | 型 | 説明 |
---|---|---|
error |
エラー |
FineTuningState
FineTuningState
名前 | 型 | 説明 |
---|---|---|
cancelled |
string |
操作が取り消され、不完全です。 これは、終了状態として分類できます。 |
created |
string |
操作が作成されました。 この状態は Azure OpenAI によって返されず、互換性のためにのみ公開されます。 非アクティブな状態として分類できます。 |
failed |
string |
操作はエラーで処理を完了しており、それ以上使用することはできません。 これは、終了状態として分類できます。 |
pending |
string |
この操作は、今後処理されるキューにまだありません。 非アクティブな状態として分類できます。 |
running |
string |
操作の処理が開始されました。 アクティブな状態として分類できます。 |
succeeded |
string |
操作が正常に処理され、使用する準備が整いました。 これは、終了状態として分類できます。 |
InnerError
InnerError
名前 | 型 | 説明 |
---|---|---|
code |
InnerErrorCode |
|
innererror |
InnerError |
InnerErrorCode
InnerErrorCode
名前 | 型 | 説明 |
---|---|---|
invalidPayload |
string |
要求データがこの操作に対して無効です。 |
LifeCycleStatus
LifeCycleStatus
名前 | 型 | 説明 |
---|---|---|
generally-available |
string |
モデルは一般提供されています。 |
preview |
string |
モデルはプレビュー段階であり、サービス プレビューの用語でカバーされています。 |
Model
モデル
名前 | 型 | 説明 |
---|---|---|
capabilities |
資格 |
|
created_at |
integer |
このジョブまたは項目が作成されたときのタイムスタンプ (unix エポック)。 |
deprecation |
廃止 |
|
fine_tune |
string |
微調整モデルの場合の微調整ジョブ ID (微調整 ID)。それ以外の場合は |
id |
string |
この項目の ID。 |
lifecycle_status |
LifeCycleStatus |
|
model |
string |
これが微調整モデルの場合の基本モデル ID (model-id)。それ以外の場合は |
object |
TypeDiscriminator |
|
status |
FineTuningState |
ModelList
ModelList
名前 | 型 | 説明 |
---|---|---|
data |
Model[] |
項目の一覧。 |
object |
TypeDiscriminator |
TypeDiscriminator
TypeDiscriminator
名前 | 型 | 説明 |
---|---|---|
batch |
string |
このオブジェクトはバッチを表します。 |
file |
string |
このオブジェクトはファイルを表します。 |
fine_tuning.job |
string |
このオブジェクトは、微調整ジョブを表します。 |
fine_tuning.job.checkpoint |
string |
このオブジェクトは、微調整ジョブのチェックポイントを表します。 |
fine_tuning.job.event |
string |
このオブジェクトは、微調整ジョブのイベントを表します。 |
list |
string |
このオブジェクトは、他のオブジェクトの一覧を表します。 |
model |
string |
このオブジェクトは、モデルを表します (基本モデルまたは微調整ジョブの結果を指定できます)。 |
upload |
string |
このオブジェクトは、ファイルのアップロードを表します。 |
upload.part |
string |
このオブジェクトは、ファイルのアップロードの一部を表します。 |