@@ -84,7 +84,7 @@ Status code: 200
84
84
``` json
85
85
{
86
86
"model_name" : " phi3-mini" ,
87
- "model_type" : " chat " ,
87
+ "model_type" : " chat_completion " ,
88
88
"model_provider_name" : " Microsoft"
89
89
}
90
90
```
@@ -93,29 +93,30 @@ Status code: 200
93
93
94
94
| Name | Description |
95
95
| --- | --- |
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. |
98
98
99
99
100
100
### ModelInfo
101
101
102
+ The information about the deployed model.
102
103
103
104
| Name | Type | Description |
104
105
| --- | --- | --- |
105
106
| model\_ name | string | The name of the model. |
106
107
| 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. |
108
109
109
110
### ModelType
110
111
111
- Unique identifier for the profile
112
+ The infernce task associated with the mode.
112
113
113
114
114
115
| Name | Type | Description |
115
116
| --- | --- | --- |
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