diff --git a/api/extension-guides/language-model.md b/api/extension-guides/language-model.md index 06a180bce..542f56748 100644 --- a/api/extension-guides/language-model.md +++ b/api/extension-guides/language-model.md @@ -196,7 +196,7 @@ Extension authors can choose which model is the most appropriate for their exten ```typescript const allModels = await vscode.lm.selectChatModels(MODEL_SELECTOR); ``` -> **Note**: All models have the limit of `4K` tokens. The returned model object from `selectChatModels` call has the attribute `maxInputTokens` that shows the token limit. These limits will be expanded as we learn more how extensions are using the language models. +> **Note**: All models have a limit of `4K` tokens. The returned model object from the `selectChatModels` call has a `maxInputTokens` attribute that shows the token limit. These limits will be expanded as we learn more about how extensions are using the language models. ### Rate limiting