Skip to content

Commit 2d022db

Browse files
authored
Merge pull request #8469 from continuedev/continuebot/con-4476
Fix Navigation Structure: Consolidate Duplicate Documentation Paths (/customization/ → /customize/)
2 parents 2067989 + 754edc7 commit 2d022db

31 files changed

+146
-130
lines changed

docs/customization/overview.mdx

Lines changed: 0 additions & 35 deletions
This file was deleted.

docs/customize/custom-providers.mdx

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

88
![Context Items](/images/customize/images/context-provider-example-0c96ff77286fa970b23dddfdc1fa986a.png)
99

10-
## How Do Context Blocks Work?
11-
12-
Explore available context blocks in [the hub](https://hub.continue.dev/explore/context).
13-
1410
## Built-in Context Providers
1511

1612
You can add any built-in context-providers in your config file as shown below:

docs/customize/deep-dives/custom-providers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ You'll then be able to type "@" and see "MCP" in the context providers dropdown.
184184

185185
<Note>
186186
To provide conext beyond the built-in context providers, we now recommend
187-
using [MCP Servers](/customization/mcp-tools)
187+
using [MCP Servers](/customize/mcp-tools)
188188
</Note>
189189

190190
View the [deprecated context providers](/reference/deprecated-context-providers) for documentation on:

docs/customization/mcp-tools.mdx renamed to docs/customize/mcp-tools.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ These servers make it possible to:
1313
- **Allow partners** to contribute specialized functionality
1414
- **Connect to databases** to understand schema and data models during development
1515

16-
![MCP servers overview](/images/customization/images/mcp-blocks-overview-c9a104f9b586779c156f9cf34da197c2.png)
16+
![MCP servers overview](/images/customize/images/mcp-blocks-overview-c9a104f9b586779c156f9cf34da197c2.png)
1717

1818
## Learn More About MCP servers
1919

docs/customize/model-providers/overview.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,8 @@ models:
8282
- edit
8383
- apply
8484
```
85-
8685
For more detailed configuration, visit the specific provider pages linked above.
86+
87+
## Change Your Model Provider
88+
89+
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](./top-level/openai).

docs/customize/model-roles/00-intro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Models in Continue can be configured to be used for various roles in the extensi
1818
These roles can be specified for a `config.yaml` model block using `roles`. See the [YAML Specification](/reference#models) for more details.
1919

2020
<Info>
21-
For recommendations on which models work best for each role, see our [comprehensive model recommendations](/customization/models#recommended-models).
21+
For recommendations on which models work best for each role, see our [comprehensive model recommendations](/customize/models#recommended-models).
2222
</Info>
2323

2424
## Selecting model roles

docs/customize/model-roles/apply.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ When editing code, Chat and Edit model output often doesn't clearly align with e
1010
## Recommended Apply models
1111

1212
<Info>
13-
For the latest Apply model recommendations, see our [comprehensive model recommendations](/customization/models#recommended-models).
13+
For the latest Apply model recommendations, see our [comprehensive model recommendations](/customize/models#recommended-models).
1414
</Info>
1515

1616
We recommend [Morph Fast Apply](https://morphllm.com) or [Relace's Instant Apply model](https://hub.continue.dev/relace/instant-apply) for the fastest Apply experience. You can sign up for Morph's free tier [here](https://morphllm.com/dashboard) or get a Relace API key [here](https://app.relace.ai/settings/api-keys).

docs/customize/model-roles/embeddings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can add `embed` to a model's `roles` to specify that it can be used to embed
2020
## Recommended embedding models
2121

2222
<Info>
23-
See our [comprehensive model recommendations](/customization/models#recommended-models) for the best embedding models comparison.
23+
See our [comprehensive model recommendations](/customize/models#recommended-models) for the best embedding models comparison.
2424
</Info>
2525

2626
If you have the ability to use any model, we recommend `voyage-code-3`, which is listed below along with the rest of the options for embeddings models.

docs/customize/model-roles/reranking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ In Continue, rerankers are designated using the `rerank` role and used by [codeb
1212
## Recommended reranking models
1313

1414
<Info>
15-
For a comparison of all reranking models including open and closed options, see our [comprehensive model recommendations](/customization/models#recommended-models).
15+
For a comparison of all reranking models including open and closed options, see our [comprehensive model recommendations](/customize/models#recommended-models).
1616
</Info>
1717

1818
If you have the ability to use any model, we recommend `rerank-2` by Voyage AI, which is listed below along with the rest of the options for rerankers.

docs/customization/models.mdx renamed to docs/customize/models.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { ModelRecommendations } from "/snippets/ModelRecommendations.jsx";
1212
- **[Embedding](/customize/model-roles/embeddings)**: Transform code into vector representations for semantic search
1313
- **[Reranker](/customize/model-roles/reranking)**: Improve search relevance by ordering results based on semantic meaning
1414

15-
![Models Overview](/images/customization/images/model-blocks-overview-36c30e7e01928d7a9b5b26ff1639c34b.png)
15+
![Models Overview](/images/customize/images/model-blocks-overview-36c30e7e01928d7a9b5b26ff1639c34b.png)
1616

1717
## Recommended Models
1818

0 commit comments

Comments
 (0)