Skip to content

Commit 099b6fc

Browse files
committed
descriptions
1 parent eadf6fd commit 099b6fc

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

articles/machine-learning/reference-model-inference-info.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Status code: 200
8484
```json
8585
{
8686
"model_name": "phi3-mini",
87-
"model_type": "chat",
87+
"model_type": "chat_completion",
8888
"model_provider_name": "Microsoft"
8989
}
9090
```
@@ -93,29 +93,30 @@ Status code: 200
9393

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

9999

100100
### ModelInfo
101101

102+
The information about the deployed model.
102103

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

109110
### ModelType
110111

111-
Unique identifier for the profile
112+
The infernce task associated with the mode.
112113

113114

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

0 commit comments

Comments
 (0)