Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@ Get started in [VS Code](https://marketplace.visualstudio.com/items?itemName=Con

## Agent

[Agent](https://docs.continue.dev/features/agent/quick-start) to work on development tasks together with AI
[Agent](https://docs.continue.dev/ide-extensions/agent/quick-start) to work on development tasks together with AI

![agent](docs/images/agent.gif)

## Chat

[Chat](https://docs.continue.dev/features/chat/quick-start) to ask general questions and clarify code sections
[Chat](https://docs.continue.dev/ide-extensions/chat/quick-start) to ask general questions and clarify code sections

![chat](docs/images/chat.gif)

## Edit

[Edit](https://docs.continue.dev/features/edit/quick-start) to modify a code section without leaving your current file
[Edit](https://docs.continue.dev/ide-extensions/edit/quick-start) to modify a code section without leaving your current file

![edit](docs/images/edit.gif)

## Autocomplete

[Autocomplete](https://docs.continue.dev/features/autocomplete/quick-start) to receive inline code suggestions as you type
[Autocomplete](https://docs.continue.dev/ide-extensions/autocomplete/quick-start) to receive inline code suggestions as you type

![autocomplete](docs/images/autocomplete.gif)

Expand Down
2 changes: 1 addition & 1 deletion docs/chat/how-to-use-it.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You select a code section with your mouse, press `cmd/ctrl` + `L` (VS Code) or `

## Use @ to Include Project Context in AI Chat Responses

If there is information from the codebase, documentation, IDE, or other tools that you want to include as context, you can type @ to select and include it as context. You can learn more about how to use this in [Chat context selection](/features/chat/quick-start#how-to-use-%40-for-additional-context).
If there is information from the codebase, documentation, IDE, or other tools that you want to include as context, you can type @ to select and include it as context. You can learn more about how to use this in [Chat context selection](/ide-extensions/chat/quick-start#how-to-use--for-additional-context).

## Insert AI-Generated Code Changes Directly into Your File

Expand Down
2 changes: 1 addition & 1 deletion docs/customization/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Slash commands allow you to easily add custom functionality to Continue. You can

## 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](/customization/mcp-tools)
Unchain your LLM with the power of tools using [Agent](/ide-extensions/agent/quick-start). Add custom tools using [MCP Servers](/customization/mcp-tools)

Whatever you choose, you'll probably start by editing your Agent.

Expand Down
2 changes: 1 addition & 1 deletion docs/customization/rules.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ By implementing rules, you transform the AI from a generic coding agent into a k

## How Rules Work

Your agent detects rules and applies the specified rules while in [Agent](/features/agent/quick-start), [Chat](/features/chat/quick-start), and [Edit](/features/edit/quick-start) modes.
Your agent detects rules and applies the specified rules while in [Agent](/ide-extensions/agent/quick-start), [Chat](/ide-extensions/chat/quick-start), and [Edit](/ide-extensions/edit/quick-start) modes.

## Where to Manage Rules

Expand Down
4 changes: 2 additions & 2 deletions docs/customize/deep-dives/rules.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ keywords: [rules, system, prompt, message]
sidebarTitle: "Rules"
---

Rules provide instructions to the model for [Agent](../../features/agent/quick-start), [Chat](../../features/chat/quick-start), and [Edit](../../features/edit/quick-start) requests.
Rules provide instructions to the model for [Agent](../../ide-extensions/agent/quick-start), [Chat](../../ide-extensions/chat/quick-start), and [Edit](../../ide-extensions/edit/quick-start) requests.

<Info>
Rules are not included in [autocomplete](./autocomplete) or
Expand Down Expand Up @@ -258,7 +258,7 @@ globs: ["**/*.ts", "**/*.tsx"]

### How to Customize Chat System Message

Continue includes a simple default system message for [Agent](../../features/agent/quick-start) and [Chat](../../features/chat/quick-start) requests, to help the model provide reliable codeblock formats in its output.
Continue includes a simple default system message for [Agent](../../ide-extensions/agent/quick-start) and [Chat](../../ide-extensions/chat/quick-start) requests, to help the model provide reliable codeblock formats in its output.

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).

Expand Down
2 changes: 1 addition & 1 deletion docs/customize/model-roles/autocomplete.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ModelRecommendations } from '/snippets/ModelRecommendations.jsx'

An "autocomplete model" is an LLM that is trained on a special format called fill-in-the-middle (FIM). This format is designed to be given the prefix and suffix of a code file and predict what goes between. This task is very specific, which on one hand means that the models can be smaller (even a 3B parameter model can perform well). On the other hand, this means that Chat models, though larger, will often perform poorly even with extensive prompting.

In Continue, autocomplete models are used to display inline [Autocomplete](../../features/autocomplete/quick-start) suggestions as you type. Autocomplete models are designated by adding the `autocomplete` to the model's `roles` in `config.yaml`.
In Continue, autocomplete models are used to display inline [Autocomplete](../../ide-extensions/autocomplete/quick-start) suggestions as you type. Autocomplete models are designated by adding the `autocomplete` to the model's `roles` in `config.yaml`.

## Recommended Autocomplete models

Expand Down
2 changes: 1 addition & 1 deletion docs/customize/model-roles/chat.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ModelRecommendations } from '/snippets/ModelRecommendations.jsx'

A "chat model" is an LLM that is trained to respond in a conversational format. Because they should be able to answer general questions and generate complex code, the best chat models are typically large, often 405B+ parameters.

In Continue, these models are used for normal [Chat](../../features/chat/quick-start). The selected chat model will also be used for [Edit](../../features/edit/quick-start) and [Apply](./apply.mdx) if no `edit` or `apply` models are specified, respectively.
In Continue, these models are used for normal [Chat](../../ide-extensions/chat/quick-start). The selected chat model will also be used for [Edit](../../ide-extensions/edit/quick-start) and [Apply](./apply.mdx) if no `edit` or `apply` models are specified, respectively.

## Recommended Chat models

Expand Down
Loading
Loading