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