Skip to content

Commit c5be706

Browse files
docs: update examples from notebooks (#1071)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 348f8b4 commit c5be706

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

docs/v2/examples/smolagents.mdx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@ _View Notebook on <a href={'https://github.com/AgentOps-AI/agentops/blob/main/ex
99
# Orchestrate a Multi-Agent System
1010

1111
In this notebook, we will make a multi-agent web browser: an agentic system with several agents collaborating to solve problems using the web!
12+
13+
It will be a simple hierarchy, using a `ManagedAgent` object to wrap the managed web search agent:
14+
15+
```
16+
+----------------+
17+
| Manager agent |
18+
+----------------+
19+
|
20+
_________|______________
21+
| |
22+
Code interpreter +--------------------------------+
23+
tool | Managed agent |
24+
| +------------------+ |
25+
| | Web Search agent | |
26+
| +------------------+ |
27+
| | | |
28+
| Web Search tool | |
29+
| Visit webpage tool |
30+
+--------------------------------+
31+
```
32+
Let’s set up this system.
33+
1234
Run the line below to install the required dependencies:
1335

1436

0 commit comments

Comments
 (0)