Skip to content

Commit 931e497

Browse files
committed
Add more docs
1 parent c2b424a commit 931e497

File tree

4 files changed

+22
-20
lines changed

4 files changed

+22
-20
lines changed

docs/cody/capabilities/agentic-chat.mdx renamed to docs/cody/capabilities/agentic-context-fetching.mdx

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Agentic context fetching
1+
# Agentic Context Fetching
22

3-
<p className="subtitle"> Learn about agentic context fetching, a mini-agent that uses search and tools to retrieve context.</p>
3+
<p className= "subtitle"> Learn about agentic context fetching, a mini-agent that uses search and tools to retrieve context.</p>
44

55
Cody's agentic context fetching experience can evaluate context and fetch any additional context (MCP, OpenCtx, terminal, etc.) by providing enhanced, context-aware chat capabilities. It extends Cody's functionality by proactively understanding your coding environment and gathering relevant information based on your requests before responding. These features help you get noticeably higher-quality responses.
66

@@ -32,11 +32,11 @@ It has access to a suite of tools for retrieving relevant context. These tools i
3232

3333
It integrates seamlessly with external services, such as web content retrieval and issue tracking systems, using OpenCtx providers. To learn more, [read the OpenCtx docs](/cody/capabilities/openctx).
3434

35-
<Callout type="info">Terminal access is not supported on the Web. It currently only works with VS Code, JetBrains, and Visual Studio editor extensions.</Callout>
35+
<Callout type= "info">Terminal access is not supported on the Web. It currently only works with VS Code, JetBrains, and Visual Studio editor extensions.</Callout>
3636

3737
## Terminal access
3838

39-
Agentic context fetching can use the CLI Tool to request the execution of shell commands to gather context from your terminal. Its ability to execute terminal commands enhances its context-gathering capabilities. However, its essential to understand that any information accessible via your terminal could potentially be shared with the LLM. It's recommended not to request information that you don't want to share. Here's what you should consider:
39+
Agentic context fetching can use the CLI Tool to request the execution of shell commands to gather context from your terminal. Its ability to execute terminal commands enhances its context-gathering capabilities. However, it's essential to understand that any information accessible via your terminal could potentially be shared with the LLM. It's recommended not to request information that you don't want to share. Here's what you should consider:
4040

4141
- **Requires user consent**: Agentic context fetching will pause and ask for permission each time before executing any shell command.
4242
- **Trusted workspaces only**: Commands can only be executed within trusted workspaces with a valid shell
@@ -54,14 +54,8 @@ Agentic context fetching can be helpful to assist you with a wide range of tasks
5454

5555
## Enable agentic context fetching
5656

57-
### Getting agentic context fetching access for Pro users
57+
Agentic context fetching is enabled by default for all Cody users. It uses LLM reflection and basic tool use steps to gather and refine context before sending it in the final model query. The review step in agentic context fetching experience defaults to Gemini 2.5 Flash and falls back to Claude Haiku or GPT 4.1 mini if Flash is unavailable.
5858

59-
Pro users can find the agentic context fetching option in the LLM selector drop-down.
59+
If a user doesn't have any of these models, the agentic context fetching experience will use the model selected from the model dropdown for the final output.
6060

61-
![agentic context fetching interface](https://storage.googleapis.com/sourcegraph-assets/Docs/agenti%20-chat.jpg)
62-
63-
### Getting agentic context fetching access for Enterprise customers
64-
65-
Agentic context fetching uses smaller models from the Gemini, Claude, and GPT families for reflection steps and whichever model you choose from the model selector for the final response. This provide a good balance between quality and latency. If none of the smaller models are available on your instance, we will fall back to the model chosen in the model selector for reflection. We use the latest versions of these models, and can fall back to older versions when necessary. The default models may be changed to optimize for quality and/or latency.
66-
67-
Terminal access is disabled by default. To enable it, set the `agentic-chat-cli-tool-experimental` feature flag [terminal access](#terminal-commands)
61+
Terminal access for Enterprise users is disabled by default. To enable it, set the `agentic-chat-cli-tool-experimental` feature flag [terminal access](#terminal-commands).

docs/cody/clients/feature-reference.mdx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
| @-file ||||||
1616
| @-symbol ||||||
1717
| LLM Selection ||||||
18+
| Agentic Context Fetching ||||||
1819
| **Context Selection** | | | | | |
1920
| Single-repo context ||||||
2021
| Multi-repo context |||| ✅ (public code only) ||
@@ -26,11 +27,11 @@
2627

2728
## Code Autocomplete and Auto-edit
2829

29-
| **Feature** | **VS Code** | **JetBrains** | **Visual Studio** |
30-
| ------------------------------------------------------ | ----------- | ------------- | ----------------- |
31-
| Single and multi-line autocompletion ||||
32-
| Cycle through multiple completion suggestions ||||
33-
| Accept suggestions word-by-word ||||
30+
| **Feature** | **VS Code** | **JetBrains** | **Visual Studio** |
31+
| ----------------------------------------------------- | ----------- | ------------- | ----------------- |
32+
| Single and multi-line autocompletion ||||
33+
| Cycle through multiple completion suggestions ||||
34+
| Accept suggestions word-by-word ||||
3435
| Auto-edit suggestions via cursor movements and typing ||||
3536

3637
Few exceptions that apply to Cody Pro and Cody Enterprise users:

src/data/navigation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const navigation: NavigationItem[] = [
5555
subsections: [
5656
{ title: "Chat", href: "/cody/capabilities/chat", },
5757
{ title: "Query Types", href: "/cody/capabilities/query-types", },
58-
{ title: "Agentic chat", href: "/cody/capabilities/agentic-chat", },
58+
{ title: "Agentic Context Fetching", href: "/cody/capabilities/agentic-context-fetching", },
5959
{ title: "Autocomplete", href: "/cody/capabilities/autocomplete", },
6060
{ title: "Auto-edit", href: "/cody/capabilities/auto-edit", },
6161
{ title: "Prompts", href: "/cody/capabilities/prompts", },

src/data/redirects.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6795,7 +6795,14 @@ const redirectsData = [
67956795
source: "/analytics/self-hosted",
67966796
destination: "/analytics/air-gapped",
67976797
permanent: true
6798-
}
6798+
},
6799+
6800+
//Agentic chat redirect
6801+
{
6802+
source: "/cody/capabilities/agentic-chat",
6803+
destination: "/cody/capabilities/agentic-context-fetching",
6804+
permanent: true
6805+
},
67996806

68006807

68016808
];

0 commit comments

Comments
 (0)