Skip to content

Commit 3c7e412

Browse files
committed
descriptions
1 parent 9f1093d commit 3c7e412

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

articles/ai-studio/reference/reference-model-inference-info.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Status code: 200
8585
```json
8686
{
8787
"model_name": "phi3-mini",
88-
"model_type": "chat",
88+
"model_type": "chat_completion",
8989
"model_provider_name": "Microsoft"
9090
}
9191
```
@@ -94,29 +94,30 @@ Status code: 200
9494

9595
| Name | Description |
9696
| --- | --- |
97-
| [ModelInfo](#modelinfo) | |
98-
| [ModelType](#modeltype) | Unique identifier for the profile |
97+
| [ModelInfo](#modelinfo) | The information about the deployed model. |
98+
| [ModelType](#modeltype) | The infernce task associated with the mode. |
9999

100100

101101
### ModelInfo
102102

103+
The information about the deployed model.
103104

104105
| Name | Type | Description |
105106
| --- | --- | --- |
106107
| model\_name | string | The name of the model. |
107108
| model\_provider\_name | string | The provider of the model. |
108-
| model\_type | [ModelType](#modeltype) | Unique identifier for the profile |
109+
| model\_type | [ModelType](#modeltype) | The infernce task associated with the mode. |
109110

110111
### ModelType
111112

112-
Unique identifier for the profile
113+
The infernce task associated with the mode.
113114

114115

115116
| Name | Type | Description |
116117
| --- | --- | --- |
117-
| audio\_generation | string | |
118-
| chat | string | |
119-
| embeddings | string | |
120-
| image\_embeddings | string | |
121-
| image\_generation | string | |
122-
| text\_generation | string | |
118+
| audio\_generation | string | A text-to-audio generative model. |
119+
| chat_completion | string | A model capable of taking chat-formatted messages and generate responses. |
120+
| embeddings | string | A model capable of generating embeddings from a text. |
121+
| image\_embeddings | string | A model capable of generating embeddings from an image and text description. |
122+
| image\_generation | string | A model capable of generating images from an image and text description. |
123+
| text\_generation | string | A text generation model. |

0 commit comments

Comments
 (0)