HI DerekLegenzoff , I'm trying to create the new deployment with the latest version of gpt-35-turbo (0613) and getting the below error
Deployment Name: "gpt-35-turbo-deployment": performing CreateOrUpdate: unexpected status 400 with error: InvalidResourceProperties: The specified scale type 'Standard' of account deployment is not supported by the model 'gpt-35-turbo'.
Note: This error is not coming for 0301 version
Update:
I checked the model API and indeed as per the error the new version doesn't support the scale type yet
version: 0613
```
{
"capabilities": {
"fine_tune": false,
"inference": true,
"completion": false,
"embeddings": false,
"scale_types": []
},
"lifecycle_status": "generally-available",
"deprecation": {
"inference": 1705276800
},
"id": "gpt-35-turbo",
"status": "succeeded",
"created_at": 1687132800,
"updated_at": 1687132800,
"object": "model"
},
```
version 0301
```
{
"capabilities": {
"fine_tune": false,
"inference": true,
"completion": true,
"embeddings": false,
"scale_types": [
"standard"
]
},
"lifecycle_status": "generally-available",
"deprecation": {
"inference": 1697328000
},
"id": "gpt-35-turbo",
"status": "succeeded",
"created_at": 1678320000,
"updated_at": 1678320000,
"object": "model"
},
```
May i know the scale_type should support in the future ? or it will not support at all ? Curious to know why one version of the model support where the other version stop supporting it