Skip to content

Commit d942e28

Browse files
committed
Fix images
1 parent c069b49 commit d942e28

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/overview/architecture.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ When the user tries to connect to an agent, the editor boots the agent sub-proce
1919

2020
Each connection can suppport several concurrent sessions, so you can have multiple trains of thought going on at once.
2121

22-
![Server Client setup](./images/server-client.svg)
22+
![Server Client setup](../images/server-client.svg)
2323

2424
ACP makes heavy use of JSON-RPC notifications to allow the agent to stream updates to the UI in real-time. It also uses JSON-RPC's bidrectional requests to allow the agent to make requests of the code editor: for example to request permissions for a tool call.
2525

2626
## MCP
2727

2828
Commonly the code editor will have user-configured MCP servers. When forwarding the prompt from the user, it passes configuration for these to the agent. This allows the agent to connect directly to the MCP server.
2929

30-
![MCP Server connection](./images/mcp.svg)
30+
![MCP Server connection](../images/mcp.svg)
3131

3232
The code editor may itself also wish to export MCP based tools. Instead of trying to run MCP and ACP on the same socket, the code editor can provide its own MCP server as configuration. As agents may only support MCP over stdio, the code editor can provide a small proxy that tunnels requests back to itself:
3333

34-
![MCP connection to self](./images/mcp-proxy.svg)
34+
![MCP connection to self](../images/mcp-proxy.svg)

0 commit comments

Comments
 (0)