Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions docs/cody/clients/install-vscode.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -410,16 +410,20 @@ Example VS Code user settings JSON configuration:

### Provider configuration options

- `provider`: `"google"`, `"groq"` or `"ollama"`
- The LLM provider type.
- `model`: `string`
- The ID of the model, e.g. `"gemini-1.5-pro-latest"`
- `tokens`: `number` - optional
- The context window size of the model. Default: `7000`.
- `apiKey`: `string` - optional
- The API key for the endpoint. Required if the provider is `"google"` or `"groq"`.
- `apiEndpoint`: `string` - optional
- The endpoint URL, if you don't want to use the provider’s default endpoint.
- `"provider"`: `"google"`, `"groq"`, `"ollama"` or `"openai"`
- The LLM provider type.
- `"model"`: `string`
- The ID of the model, e.g. `"gemini-2.0-flash-exp"`
- `"inputTokens"`: `number` - optional
- The context window size of the model's input. Default: 7000.
- `"outputTokens"`: `number` - optional
- The context window size of the model's output. Default: 4000.
- `"apiKey"`: `string` - optional
- The API key for the endpoint. Required if the provider is `"google"`, `"groq"`, `"ollama"` or `"openai"`.
- `"apiEndpoint"`: `string` - optional
- The endpoint URL, if you don't want to use the provider’s default endpoint.
- `"options"` : `object` - optional
- Additional parameters like `temperature`, `topK`, `topP` based on provider documentation.

### Debugging experimental models

Expand Down
Loading