diff --git a/apps/docs/docs/add_tools.md b/apps/docs/docs/add_tools.md index 3e95e175..f88ce710 100644 --- a/apps/docs/docs/add_tools.md +++ b/apps/docs/docs/add_tools.md @@ -10,7 +10,15 @@ You can mock any tool you have created by checking the 'Mock tool responses' opt ### Adding MCP tools -[![MCP server](https://img.youtube.com/vi/EbkIPCTyD58/0.jpg)](https://www.youtube.com/watch?v=EbkIPCTyD58) +You can add a running MCP server in Settings -> Tools. + +![Example Tool](img/add-mcp-server.png) + +You can use [supergateway](https://github.com/supercorp-ai/supergateway) to expose any MCP stdio server as an SSE server. + +Now, you can import the tools from the MCP server in the Build view. + +![Example Tool](img/import-mcp-tools.png) ### Debug tool calls in the playground diff --git a/apps/docs/docs/create_agents.md b/apps/docs/docs/create_agents.md index 9237cfc4..72ee7853 100644 --- a/apps/docs/docs/create_agents.md +++ b/apps/docs/docs/create_agents.md @@ -4,7 +4,7 @@ Copilot can set up agents for you from scratch. ### Instruct copilot First, tell it about the initial set of agents that make up your assistant. -[![Prompt to agents](https://img.youtube.com/vi/3t2Fpn6Vyds/0.jpg)](https://www.youtube.com/watch?v=3t2Fpn6Vyds) +![Agent Config](img/create-agents-delivery.png) Using copilot to create your initial set of agents helps you leverage best practices in formatting agent instructions and connecting agents to each other as a graph, all of which have been baked into copilot. @@ -12,9 +12,3 @@ Using copilot to create your initial set of agents helps you leverage best pract Once you apply changes, inspect the agents to see how copilot has built them. Specifically, note the Instructions, and Examples in each agent. ![Agent Config](img/agent-instruction.png) - - -### Make changes if needed -Tweak the instructions and examples through the copilot, or generate instructions button, or by manually editing it. - -[![Feedback](https://img.youtube.com/vi/uoCEQtOe7eE/0.jpg)](https://www.youtube.com/watch?v=uoCEQtOe7eE) \ No newline at end of file diff --git a/apps/docs/docs/img/add-mcp-server.png b/apps/docs/docs/img/add-mcp-server.png new file mode 100644 index 00000000..18b629df Binary files /dev/null and b/apps/docs/docs/img/add-mcp-server.png differ diff --git a/apps/docs/docs/img/create-agents-delivery.png b/apps/docs/docs/img/create-agents-delivery.png new file mode 100644 index 00000000..a22ac8d5 Binary files /dev/null and b/apps/docs/docs/img/create-agents-delivery.png differ diff --git a/apps/docs/docs/img/import-mcp-tools.png b/apps/docs/docs/img/import-mcp-tools.png new file mode 100644 index 00000000..e2c2efff Binary files /dev/null and b/apps/docs/docs/img/import-mcp-tools.png differ diff --git a/apps/docs/docs/img/update-agent-copilot.png b/apps/docs/docs/img/update-agent-copilot.png new file mode 100644 index 00000000..adb5dffd Binary files /dev/null and b/apps/docs/docs/img/update-agent-copilot.png differ diff --git a/apps/docs/docs/img/update-agent-generate.png b/apps/docs/docs/img/update-agent-generate.png new file mode 100644 index 00000000..6e076405 Binary files /dev/null and b/apps/docs/docs/img/update-agent-generate.png differ diff --git a/apps/docs/docs/img/update-agent-manual.png b/apps/docs/docs/img/update-agent-manual.png new file mode 100644 index 00000000..cf3648d0 Binary files /dev/null and b/apps/docs/docs/img/update-agent-manual.png differ diff --git a/apps/docs/docs/update_agents.md b/apps/docs/docs/update_agents.md index 28b24482..10fd437b 100644 --- a/apps/docs/docs/update_agents.md +++ b/apps/docs/docs/update_agents.md @@ -1,8 +1,19 @@ ## Update agent behavior +There are three ways for you to update the agent's behavior: + +### 1. With help of Copilot + Copilot can help you update agent behavior. It is also aware of the current chat in the playground so you can make references to the current chat while instructing copilot to update agents. -![Update Agent Behavior](img/update-agent-with-copilot.png) +![Update Agent Behavior](img/update-agent-copilot.png) -Playground: -![Test Updated Agent](img/test-updated-agent.png) \ No newline at end of file +### 2. Using the Generate button + +![Update Agent Behavior](img/update-agent-generate.png) + +### 3. By manually editing the instructions + +You can manually edit the agent instructions anytime. + +![Update Agent Behavior](img/update-agent-manual.png)