Skip to content

Commit d758d15

Browse files
authored
Merge pull request #7656 from microsoft/isidorn/correct-hamster
gpt-3.5 and gpt-4 are deprecated
2 parents 14b618e + 288dc08 commit d758d15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/extension-guides/language-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Once you've built the prompt for the language model, you first select the langua
7373

7474
To select the language model, you can specify the following properties: `vendor`, `id`, `family`, or `version`. Use these properties to either broadly match all models of a given vendor or family, or select one specific model by its ID. Learn more about these properties in the [API reference](/api/references/vscode-api#LanguageModelChat).
7575

76-
> **Note**: Currently, `gpt-4o`, `gpt-4` and `gpt-3.5-turbo` are supported for the language model family. We expect that the list of supported models will grow over time.
76+
> **Note**: Currently, `gpt-4o` is supported for the language model family. We expect that the list of supported models grows over time. `gpt-3.5` and `gpt-4` are deprecated.
7777
7878
If there are no models that match the specified criteria, the `selectChatModels` method returns an empty array. Your extension must appropriately handle this case.
7979

@@ -190,7 +190,7 @@ We don't expect specific models to stay supported forever. When you reference a
190190

191191
### Choosing the appropriate model
192192

193-
Extension authors can choose which model is the most appropriate for their extension. We recommend using `gpt-4o` for its performance and quality. In addition, `gpt-3.5-turbo`, and `gpt-4` are also available. To get a full list of available models, you can use this code snippet:
193+
Extension authors can choose which model is the most appropriate for their extension. We recommend using `gpt-4o` for its performance and quality. To get a full list of available models, you can use this code snippet:
194194
```typescript
195195
const allModels = await vscode.lm.selectChatModels(MODEL_SELECTOR);
196196
```

0 commit comments

Comments
 (0)