You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/advanced/deep-dives/autocomplete.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ The following settings can be configured for autocompletion in the IDE extension
98
98
99
99
### `config.json` Configuration
100
100
101
-
The `config.json` configuration format (deprecated) offers further configuration options through `tabAutocompleteOptions`. See the [JSON Reference](../reference.mdx#tabautocompleteoptions) for more details.
101
+
The `config.json` configuration format (deprecated) offers further configuration options through `tabAutocompleteOptions`. See the [JSON Reference](/reference#tabautocompleteoptions) for more details.
Copy file name to clipboardExpand all lines: docs/docs/advanced/deep-dives/configuration.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,15 +26,15 @@ To open this `config.yaml`, you need to open the assistants dropdown in the top-
26
26
27
27
When editing this file, you can see the available options suggested as you type, or check the reference below. When you save a config file from the IDE, Continue will automatically refresh to take into account your changes. A config file is automatically created the first time you use Continue, and always automatically generated with default values if it doesn't exist.
28
28
29
-
See the full reference for `config.yaml`[here](../../advanced/reference).
29
+
See the full reference for `config.yaml`[here](/reference).
30
30
31
31
## Deprecated configuration methods
32
32
33
33
:::info
34
34
View the `config.json` migration guide [here](../yaml-migration.mdx)
35
35
:::
36
36
37
-
-[`config.json`](../reference.mdx) - The original configuration format which is stored in a file at the same location as `config.yaml`
37
+
-[`config.json`](/reference) - The original configuration format which is stored in a file at the same location as `config.yaml`
-[`config.ts`](#configts) - Advanced configuration (probably unnecessary) - a TypeScript file in your home directory that can be used to programmatically modify (_merged_) the `config.json` schema:
Copy file name to clipboardExpand all lines: docs/docs/advanced/deep-dives/development-data.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,6 @@ You can also configure custom destinations for your data, including remote HTTP
16
16
17
17
For hub assistants, data destinations are configured in `data` blocks. Visit the hub to [explore example data blocks](https://hub.continue.dev/explore/data) or [create your own](https://hub.continue.dev/new?type=block&blockType=data).
18
18
19
-
See more details about adding `data` blocks to your configuration files in the [YAML specification](../../advanced/reference#data)
19
+
See more details about adding `data` blocks to your configuration files in the [YAML specification](/reference#data)
20
20
21
21
When sending development data to your own HTTP endpoint, it will receive an event JSON blob at the given `schema` version. You can view event names, schema versions, and fields [here in the source code](https://github.com/continuedev/continue/tree/main/packages/config-yaml/src/schemas/data).
Copy file name to clipboardExpand all lines: docs/docs/advanced/deep-dives/rules.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,7 +176,7 @@ Continue includes a simple default system message for [Chat](../../features/chat
176
176
177
177
This can be viewed in the rules section of the toolbar (see above), or in the source code [here](https://github.com/continuedev/continue/blob/main/core/llm/constructMessages.ts#L4).
178
178
179
-
Advanced users can override this system message for a specific model if needed by using `chatOptions.baseSystemMessage`. See the [`config.yaml` reference](../../advanced/reference#models).
179
+
Advanced users can override this system message for a specific model if needed by using `chatOptions.baseSystemMessage`. See the [`config.yaml` reference](/reference#models).
We recently introduced a new configuration format, `config.yaml`, to replace `config.json`. See the `config.yaml` reference and migration guide [here](./reference.md).
8
+
We recently introduced a new configuration format, `config.yaml`, to replace `config.json`. See the `config.yaml` reference and migration guide [here](/reference).
9
9
:::
10
10
11
11
Below are details for each property that can be set in `config.json`. The config schema code is found in [`extensions/vscode/config_schema.json`](https://github.com/continuedev/continue/blob/main/extensions/vscode/config_schema.json).
@@ -14,7 +14,7 @@ Below are details for each property that can be set in `config.json`. The config
14
14
15
15
### `models`
16
16
17
-
Your **chat** models are defined here, which are used for [Chat](./chat/how-to-use-it.md), [Edit](./edit/how-to-use-it.md) and [VS Code actions](./customize/deep-dives/vscode-actions.md).
17
+
Your **chat** models are defined here, which are used for [Chat](/features/chat/how-it-works), [Edit](/features/edit/how-it-works) and [VS Code actions](/advanced/deep-dives/vscode-actions).
18
18
19
19
Each model has specific configuration options tailored to its provider and functionality, which can be seen as suggestions while editing the json.
20
20
@@ -471,7 +471,7 @@ Several experimental config parameters are available, as described below:
471
471
-`docstring`: Prompt for adding docstrings.
472
472
-`fix`: Prompt for fixing code.
473
473
-`optimize`: Prompt for optimizing code.
474
-
-`modelContextProtocolServers`: See [Model Context Protocol](/customize/context-providers#model-context-protocol)
474
+
-`modelContextProtocolServers`: See [Model Context Protocol](/customization/mcp-tools)
475
475
476
476
Example
477
477
@@ -506,7 +506,7 @@ Example
506
506
507
507
### Fully deprecated settings
508
508
509
-
Some deprecated `config.json` settings are no longer stored in config and have been moved to be editable through the [User Settings Page](./customize/deep-dives/settings.md). If found in `config.json`, they will be auto-migrated to User Settings and removed from `config.json`.
509
+
Some deprecated `config.json` settings are no longer stored in config and have been moved to be editable through the [User Settings Page](/advanced/deep-dives/settings). If found in `config.json`, they will be auto-migrated to User Settings and removed from `config.json`.
510
510
511
511
-`allowAnonymousTelemetry`: This value will be migrated to the safest merged value (`false` if either are `false`).
512
512
-`promptPath`: This value will override during migration.
@@ -527,4 +527,4 @@ Some deprecated `config.json` settings are no longer stored in config and have b
527
527
-`displayRawMarkdown`
528
528
-`showChatScrollbar`
529
529
530
-
See [User Settings Page](./customize/deep-dives/settings.md) for more information about each option.
530
+
See [User Settings Page](/advanced/deep-dives/settings) for more information about each option.
Copy file name to clipboardExpand all lines: docs/docs/advanced/model-roles/00-intro.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Models in Continue can be configured to be used for various roles in the extensi
18
18
-[`embed`](./embeddings.mdx): Used to generate embeddings used for vector search (@Codebase and @Docs context providers)
19
19
-[`rerank`](./reranking.mdx): Used to rerank results from vector search
20
20
21
-
These roles can be specified for a `config.yaml` model block using `roles`. See the [YAML Specification](../../advanced/reference#models) for more details.
21
+
These roles can be specified for a `config.yaml` model block using `roles`. See the [YAML Specification](/reference#models) for more details.
@@ -38,9 +38,9 @@ Add all model configurations in `config.json`, including models in `models`, `ta
38
38
- `inlineEdit` -> e.g. `roles: [chat, edit]`
39
39
- `applyCodeBlock` -> e.g. `roles: [chat, apply]`
40
40
41
-
Model-level `requestOptions` remain, with minor changes. See [YAML Continue Config Reference](./reference.mdx#models)
41
+
Model-level `requestOptions` remain, with minor changes. See [YAML Continue Config Reference](/reference#models)
42
42
43
-
Model-level `completionOptions` are replaced by `defaultCompletionOptions`, with minor changes. See [YAML Continue Config Reference](./reference.mdx#models)
43
+
Model-level `completionOptions` are replaced by `defaultCompletionOptions`, with minor changes. See [YAML Continue Config Reference](/reference#models)
44
44
45
45
<!-- TODO - ollama autodetect supported? -->
46
46
@@ -330,7 +330,7 @@ mcpServers:
330
330
331
331
Some deprecated `config.json` settings are no longer stored in config and have been moved to be editable through the [User Settings Page](./deep-dives/settings.md) (Gear Icon). If found in `config.json`, they will be auto-migrated to User Settings and removed from `config.json`.
332
332
333
-
See the [JSON Config Reference](./reference#fully-deprecated-settings) for more information on fully deprecated options.
333
+
See the [JSON Config Reference](/reference#fully-deprecated-settings) for more information on fully deprecated options.
334
334
335
335
The following top-level fields from `config.json` still work when using `config.json` but have been deprecated and don't have a YAML equivalent:
336
336
@@ -355,4 +355,4 @@ The following top-level fields from `config.json` have been deprecated. Most UI-
355
355
356
356
## New Configuration options
357
357
358
-
The YAML configuration format offers new configuration options not available in the JSON format. See the [YAML Config Reference](./reference.mdx) for more information.
358
+
The YAML configuration format offers new configuration options not available in the JSON format. See the [YAML Config Reference](/reference) for more information.
0 commit comments