Skip to content

Commit 41d422c

Browse files
authored
Update adding-ai-to-vscode-using-continue.mdx
1 parent d1a7e72 commit 41d422c

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

pages/generative-apis/reference-content/adding-ai-to-vscode-using-continue.mdx

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,19 @@ After configuring the API, open VS Code and activate Continue:
9696

9797
<Message type="important">
9898
Enabling tab completion **may lead to higher token consumption** as the model generates predictions for every keystroke. Be mindful of your API usage and adjust settings accordingly to avoid unexpected costs. For more information, refer to the [official Continue documentation](https://docs.continue.dev/reference#tabautocompleteoptions).
99-
</Message>
99+
</Message>
100+
101+
### Going further
102+
103+
You can add additional parameters to configure your model behaviour by editing `config.json`.
104+
For instance, you can add the following `systemMessage` value to modify LLM messages `"role":"system"` and/or `"role":"developer"` and provide less verbose answers:
105+
```json
106+
{
107+
"models": [
108+
{
109+
"model": "...",
110+
"systemMessage": "You are an expert software developer. You give concise responses."
111+
}
112+
]
113+
}
114+
```

0 commit comments

Comments
 (0)