Skip to content

Commit 28bc74b

Browse files
committed
fix all broken links
1 parent 8479991 commit 28bc74b

28 files changed

+61
-61
lines changed

docs/docs/advanced/00-overview.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ Explore Continue's advanced capabilities for power users and complex development
1212

1313
Master how Continue understands your codebase and integrates with your development tools.
1414

15-
[Explore Context & Integration →](./context-integration)
15+
[Explore Context & Integration →](./context-integration/custom-providers)
1616

1717
## Deep Dives
1818

1919
Detailed technical explanations of Continue's internal workings and advanced configuration options.
2020

21-
[Read Deep Dives →](./deep-dives)
21+
[Read Deep Dives →](./deep-dives/configuration.md)
2222

2323
## Model Providers
2424

2525
Configure and optimize different AI model providers for your specific needs and infrastructure.
2626

27-
[Configure Providers →](./model-providers)
27+
[Configure Providers →](./model-providers/top-level/openai.mdx)
2828

2929
## Model Roles
3030

3131
Understand how different models can be assigned specific roles in your development workflow.
3232

33-
[Learn Model Roles →](./model-roles)
33+
[Learn Model Roles →](./model-roles/00-intro.mdx)
3434

3535
## Reference
3636

docs/docs/advanced/context-integration/codebase.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ If you need to force a refresh of the index, reload the VS Code window with <kbd
9696

9797
## Repository map
9898

99-
Models in the Claude 3, Llama 3.1/3.2, Gemini 1.5, and GPT-4o families will automatically use a [repository map](../context-providers.mdx#repository-map) during codebase retrieval, which allows the model to understand the structure of your codebase and use it to answer questions. Currently, the repository map only contains the filepaths in the codebase.
99+
Models in the Claude 3, Llama 3.1/3.2, Gemini 1.5, and GPT-4o families will automatically use a [repository map](./custom-providers.mdx#repository-map) during codebase retrieval, which allows the model to understand the structure of your codebase and use it to answer questions. Currently, the repository map only contains the filepaths in the codebase.

docs/docs/advanced/context-integration/custom-providers.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ As an example, say you are working on solving a new GitHub Issue. You type '@Iss
1515

1616
## Context blocks
1717

18-
You can add context providers to assistants using [`context` blocks](../hub/blocks/block-types.md#context). Explore available context blocks in [the hub](https://hub.continue.dev/explore/context).
18+
You can add context providers to assistants using [`context` blocks](../../hub/blocks/block-types.md#context). Explore available context blocks in [the hub](https://hub.continue.dev/explore/context).
1919

2020
## Built-in Context Providers
2121

@@ -167,7 +167,7 @@ Reference the contents from any documentation site.
167167

168168
Note that this will only enable the `@Docs` context provider.
169169

170-
To use it, you need to add a documentation site to your config file. See the [docs](../advanced/deep-dives/docs.mdx) page for more information.
170+
To use it, you need to add a documentation site to your config file. See the [docs](../deep-dives/docs.mdx) page for more information.
171171

172172
### `@Open`
173173

@@ -253,7 +253,7 @@ Reference the most relevant snippets from your codebase.
253253
</TabItem>
254254
</Tabs>
255255

256-
Read more about indexing and retrieval [here](../advanced/deep-dives/codebase.mdx).
256+
Read more about indexing and retrieval [here](../deep-dives/codebase.mdx).
257257

258258
### `@Folder`
259259

docs/docs/advanced/context-integration/documentation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Tabs from "@theme/Tabs";
1919

2020
# @Docs
2121

22-
The [`@Docs` context provider](advanced/context-integration/custom-providers#docs) allows you to efficiently reference documentation directly within Continue.
22+
The [`@Docs` context provider](./custom-providers#docs) allows you to efficiently reference documentation directly within Continue.
2323

2424
## Enabling the `@Docs` context provider
2525

@@ -111,7 +111,7 @@ For bulk documentation site adds or edits, we recommend editing your global conf
111111
</TabItem>
112112
</Tabs>
113113

114-
See [the config reference](../../reference) for all documentation site configuration options.
114+
See [the config reference](../reference) for all documentation site configuration options.
115115

116116
Indexing will re-sync upon saving the configuration file.
117117

docs/docs/advanced/context-integration/slash-commands.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ import Tabs from "@theme/Tabs";
1414
Slash commands are shortcuts that can be activated by typing '/' in a chat session (press <kbd>cmd/ctrl</kbd> + <kbd>L</kbd> (VS Code) or <kbd>cmd/ctrl</kbd> + <kbd>J</kbd> (JetBrains)), and selecting from the dropdown.
1515
![slash-commands](/img/slash-commands.png)
1616

17-
Slash commands can be combined with additional instructions, including [context providers](../context-providers.mdx) or [highlighted code](../../edit/context-selection#highlighted-code).
17+
Slash commands can be combined with additional instructions, including [context providers](./custom-providers.mdx) or highlighted code.
1818

1919
## Prompts
2020

2121
### Assistant prompt blocks
2222

23-
The easiest way to add a slash command is by adding [`prompt` blocks](../../hub/blocks/block-types.md#prompts) to your assistant, which show up as slash commands in [Chat](../../chat/how-it-works.md).
23+
The easiest way to add a slash command is by adding [`prompt` blocks](../../hub/blocks/block-types.md#prompts) to your assistant, which show up as slash commands in [Chat](../../features/chat/how-it-works.mdx).
2424

2525
### Prompt files
2626

2727
It is also possible to write your own slash command by defining a “.prompt file.” Prompt files can be as simple as a text file, but also include templating so that you can refer to files, URLs, highlighted code, and more.
2828

29-
Learn more about prompt files [here](./prompts.md)
29+
Learn more about prompt files [here](../deep-dives/prompts.md)
3030

3131
### MCP Server prompts
3232

33-
Any prompts provided by [Model Context Protocol](https://modelcontextprotocol.io/introduction) servers are also accessible in chat as Slash Commands. See the [MCP Server Deep Dive](./mcp.mdx) for more details.
33+
Any prompts provided by [Model Context Protocol](https://modelcontextprotocol.io/introduction) servers are also accessible in chat as Slash Commands. See the [MCP Server Deep Dive](../deep-dives/mcp.mdx) for more details.

docs/docs/advanced/deep-dives/autocomplete.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The following settings can be configured for autocompletion in the IDE extension
9898

9999
### `config.json` Configuration
100100

101-
The `config.json` configuration format (deprecated) offers further configuration options through `tabAutocompleteOptions`. See the [JSON Reference](../../json-reference.md#tabautocompleteoptions) for more details.
101+
The `config.json` configuration format (deprecated) offers further configuration options through `tabAutocompleteOptions`. See the [JSON Reference](../reference.mdx#tabautocompleteoptions) for more details.
102102

103103
## FAQs
104104

docs/docs/advanced/deep-dives/codebase.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ If you need to force a refresh of the index, reload the VS Code window with <kbd
9696

9797
## Repository map
9898

99-
Models in the Claude 3, Llama 3.1/3.2, Gemini 1.5, and GPT-4o families will automatically use a [repository map](../context-providers.mdx#repository-map) during codebase retrieval, which allows the model to understand the structure of your codebase and use it to answer questions. Currently, the repository map only contains the filepaths in the codebase.
99+
Models in the Claude 3, Llama 3.1/3.2, Gemini 1.5, and GPT-4o families will automatically use a [repository map](../context-integration/custom-providers.mdx#repository-map) during codebase retrieval, which allows the model to understand the structure of your codebase and use it to answer questions. Currently, the repository map only contains the filepaths in the codebase.

docs/docs/advanced/deep-dives/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ See the full reference for `config.yaml` [here](../../advanced/reference).
3131
## Deprecated configuration methods
3232

3333
:::info
34-
View the `config.json` migration guide [here](../../yaml-migration.md)
34+
View the `config.json` migration guide [here](../yaml-migration.mdx)
3535
:::
3636

37-
- [`config.json`](../../json-reference.md) - The original configuration format which is stored in a file at the same location as `config.yaml`
37+
- [`config.json`](../reference.mdx) - The original configuration format which is stored in a file at the same location as `config.yaml`
3838
- [`.continuerc.json`](#continuercjson) - Workspace-level configuration
3939
- [`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:
4040
- `~/.continue/config.ts` (MacOS / Linux)

docs/docs/advanced/deep-dives/docs.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Tabs from "@theme/Tabs";
1919

2020
# @Docs
2121

22-
The [`@Docs` context provider](advanced/context-integration/custom-providers#docs) allows you to efficiently reference documentation directly within Continue.
22+
The [`@Docs` context provider](../context-integration/custom-providers#docs) allows you to efficiently reference documentation directly within Continue.
2323

2424
## Enabling the `@Docs` context provider
2525

@@ -111,7 +111,7 @@ For bulk documentation site adds or edits, we recommend editing your global conf
111111
</TabItem>
112112
</Tabs>
113113

114-
See [the config reference](../../reference) for all documentation site configuration options.
114+
See [the config reference](../reference) for all documentation site configuration options.
115115

116116
Indexing will re-sync upon saving the configuration file.
117117

docs/docs/advanced/deep-dives/slash-commands.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ import Tabs from "@theme/Tabs";
1414
Slash commands are shortcuts that can be activated by typing '/' in a chat session (press <kbd>cmd/ctrl</kbd> + <kbd>L</kbd> (VS Code) or <kbd>cmd/ctrl</kbd> + <kbd>J</kbd> (JetBrains)), and selecting from the dropdown.
1515
![slash-commands](/img/slash-commands.png)
1616

17-
Slash commands can be combined with additional instructions, including [context providers](../context-providers.mdx) or [highlighted code](../../edit/context-selection#highlighted-code).
17+
Slash commands can be combined with additional instructions, including [context providers](../context-integration/custom-providers.mdx) or highlighted code.
1818

1919
## Prompts
2020

2121
### Assistant prompt blocks
2222

23-
The easiest way to add a slash command is by adding [`prompt` blocks](../../hub/blocks/block-types.md#prompts) to your assistant, which show up as slash commands in [Chat](../../chat/how-it-works.md).
23+
The easiest way to add a slash command is by adding [`prompt` blocks](../../hub/blocks/block-types.md#prompts) to your assistant, which show up as slash commands in [Chat](../../features/chat/how-it-works.mdx).
2424

2525
### Prompt files
2626

docs/docs/advanced/deep-dives/vscode-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Right click actions let you highlight a desired region of code, right click, and
2626

2727
The highlighted code you’ve selected will be included in your prompt alongside a pre-written set of instructions depending on the selected action. This is the only section of code that the model will attempt to edit.
2828

29-
Right click actions that generate inline diffs use the same prompt and response processing logic as [Edit](../../edit/how-it-works.md).
29+
Right click actions that generate inline diffs use the same prompt and response processing logic as [Edit](../../features/edit/how-it-works.mdx).
3030

3131
![context-menu](/img/context-menu.png)
3232

docs/docs/advanced/telemetry.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ The following usage information is collected and reported:
2626

2727
## How to Opt Out
2828

29-
You can disable anonymous telemetry by visiting the [User Settings Page](./advanced/deep-dives/settings.md) and toggling "Allow Anonymous Telemetry" off.
29+
You can disable anonymous telemetry by visiting the [User Settings Page](./deep-dives/settings.md) and toggling "Allow Anonymous Telemetry" off.
3030

3131
Alternatively in VS Code, you can disable telemetry through your VS Code settings by unchecking the "Continue: Telemetry Enabled" box (this will override the Settings Page settings). VS Code settings can be accessed with `File` > `Preferences` > `Settings` (or use the keyboard shortcut <kbd>ctrl</kbd> + <kbd>,</kbd> on Windows/Linux or <kbd>cmd</kbd> + <kbd>,</kbd> on macOS).

docs/docs/advanced/yaml-migration.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Continue's YAML configuration format provides more readable, maintainable, consi
1111
See also
1212

1313
- [Intro to YAML](https://yaml.org/)
14-
- [JSON Continue Config Reference](/json-reference)
15-
- [YAML Continue Config Reference](/advanced/reference)
14+
- [JSON Continue Config Reference](/advanced/reference)
15+
- [YAML Continue Config Reference](./reference.mdx)
1616

1717
## Create YAML file
1818

@@ -38,9 +38,9 @@ Add all model configurations in `config.json`, including models in `models`, `ta
3838
- `inlineEdit` -> e.g. `roles: [chat, edit]`
3939
- `applyCodeBlock` -> e.g. `roles: [chat, apply]`
4040

41-
Model-level `requestOptions` remain, with minor changes. See [YAML Continue Config Reference](./reference.md#models)
41+
Model-level `requestOptions` remain, with minor changes. See [YAML Continue Config Reference](./reference.mdx#models)
4242

43-
Model-level `completionOptions` are replaced by `defaultCompletionOptions`, with minor changes. See [YAML Continue Config Reference](./reference.md#models)
43+
Model-level `completionOptions` are replaced by `defaultCompletionOptions`, with minor changes. See [YAML Continue Config Reference](./reference.mdx#models)
4444

4545
<!-- TODO - ollama autodetect supported? -->
4646

@@ -328,9 +328,9 @@ mcpServers:
328328

329329
## Deprecated configuration options
330330

331-
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.md) (Gear Icon). If found in `config.json`, they will be auto-migrated to User Settings and removed from `config.json`.
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`.
332332

333-
See the [JSON Config Reference](./json-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.
334334

335335
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:
336336

@@ -355,4 +355,4 @@ The following top-level fields from `config.json` have been deprecated. Most UI-
355355

356356
## New Configuration options
357357

358-
The YAML configuration format offers new configuration options not available in the JSON format. See the [YAML Config Reference](./reference) for more information.
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.

docs/docs/customization/00-overview.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ keywords: [customize, configure, config]
66

77
Continue can be deeply customized. For example you might:
88

9-
- **Change your Model Provider**. Continue allows you to choose your favorite or even add multiple model providers. This allows you to use different models for different tasks, or to try another model if you're not happy with the results from your current model. Continue supports all of the popular model providers, including OpenAI, Anthropic, Microsoft/Azure, Mistral, and more. You can even self host your own model provider if you'd like. Learn more about [model providers](../advanced/model-providers/).
10-
- **Select different models for specific tasks**. Different Continue features can use different models. We call these _model roles_. For example, you can use a different model for chat than you do for autocomplete. Learn more about [model roles](./model-roles/) .
11-
- **Add a Context Provider**. Context providers allow you to add information to your prompts, giving your LLM additional context to work with. Context providers allow you to reference snippets from your codebase, or lookup relevant documentation, or use a search engine to find information and much more. Learn more about [context providers](./context-providers.mdx).
12-
- **Create a Slash Command**. Slash commands allow you to easily add custom functionality to Continue. You can use a slash command that allows you to generate a shell command from natural language, or perhaps generate a commit message, or create your own custom command to do whatever you want. Learn more about [slash commands](./deep-dives/slash-commands.mdx).
13-
- **Call external tools and functions**. Unchain your LLM with the power of tools using [Agent](../features/agent/quick-start). Add custom tools using [MCP Servers](./deep-dives/mcp.mdx)
9+
- **Change your Model Provider**. Continue allows you to choose your favorite or even add multiple model providers. This allows you to use different models for different tasks, or to try another model if you're not happy with the results from your current model. Continue supports all of the popular model providers, including OpenAI, Anthropic, Microsoft/Azure, Mistral, and more. You can even self host your own model provider if you'd like. Learn more about [model providers](../advanced/model-providers/top-level/openai.mdx).
10+
- **Select different models for specific tasks**. Different Continue features can use different models. We call these _model roles_. For example, you can use a different model for chat than you do for autocomplete. Learn more about [model roles](../advanced/model-roles/00-intro.mdx).
11+
- **Add a Context Provider**. Context providers allow you to add information to your prompts, giving your LLM additional context to work with. Context providers allow you to reference snippets from your codebase, or lookup relevant documentation, or use a search engine to find information and much more. Learn more about [context providers](../advanced/context-integration/custom-providers.mdx).
12+
- **Create a Slash Command**. Slash commands allow you to easily add custom functionality to Continue. You can use a slash command that allows you to generate a shell command from natural language, or perhaps generate a commit message, or create your own custom command to do whatever you want. Learn more about [slash commands](../advanced/deep-dives/slash-commands.mdx).
13+
- **Call external tools and functions**. Unchain your LLM with the power of tools using [Agent](../features/agent/quick-start.mdx). Add custom tools using [MCP Servers](../advanced/deep-dives/mcp.mdx)
1414

1515
Whatever you choose, you'll probably start by editing your Assistant.
1616

@@ -21,4 +21,4 @@ You can easily access your assistant configuration from the Continue Chat sideba
2121
![configure an assistant](/img/configure-continue.png)
2222

2323
- See [Editing Hub Assistants](../hub/assistants/edit-an-assistant.md) for more details on managing your hub assistant
24-
- See the [Config Deep Dive](./deep-dives/configuration.md) for more details on configuring local assistants.
24+
- See the [Config Deep Dive](../advanced/deep-dives/configuration.md) for more details on configuring local assistants.

docs/docs/customization/models.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ These blocks form the foundation of the entire assistant experience, offering di
1919

2020
## Learn More
2121

22-
Continue supports [many model providers](../advanced/model-providers), including Anthropic, OpenAI, Gemini, Ollama, Amazon Bedrock, Azure, xAI, DeepSeek, and more. Models can have various roles like `chat`, `edit`, `apply`, `autocomplete`, `embed`, and `rerank`.
22+
Continue supports [many model providers](../advanced/model-providers/top-level/openai.mdx), including Anthropic, OpenAI, Gemini, Ollama, Amazon Bedrock, Azure, xAI, DeepSeek, and more. Models can have various roles like `chat`, `edit`, `apply`, `autocomplete`, `embed`, and `rerank`.
2323

24-
Read more about roles [here](../advanced/model-roles/intro.mdx) and view [`models`](../advanced/reference#models) in the YAML Reference.
24+
Read more about roles [here](../advanced/model-roles/00-intro.mdx) and view [`models`](../advanced/reference#models) in the YAML Reference.

docs/docs/customization/rules.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ By implementing rules, you transform the AI from a generic coding assistant into
1818

1919
### How Rules Work
2020

21-
Your assistant detects rule blocks and applies the specified rules while in [Agent](../agent/how-to-use-it), [Chat](../chat/how-to-use-it), and [Edit](../edit/how-to-use-it) modes.
21+
Your assistant detects rule blocks and applies the specified rules while in [Agent](../features/agent/quick-start), [Chat](../features/chat/quick-start), and [Edit](../features/edit/quick-start) modes.
2222

2323
## Learn More
2424

0 commit comments

Comments
 (0)