Skip to content

Commit

Permalink
Fixes links docs typos
Browse files Browse the repository at this point in the history
Corgi example just didn't work.
Others had typos and bad links.
  • Loading branch information
skrawcz committed Dec 13, 2024
1 parent 8ef2665 commit bc3af0d
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 35 deletions.
2 changes: 1 addition & 1 deletion burr/core/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -2094,7 +2094,7 @@ def with_graph(self, graph: Graph) -> "ApplicationBuilder[StateType]":

def with_parallel_executor(self, executor_factory: lambda: Executor):
"""Assigns a default executor to be used for recursive/parallel sub-actions. This effectively allows
for executing multiple Burr apps in parallel. See https://burr.dagworks.io/pull/concepts/parallelism/
for executing multiple Burr apps in parallel. See https://burr.dagworks.io/concepts/parallelism/
for more details.
This will default to a simple threadpool executor, meaning that you will be bound by the number of threads
Expand Down
8 changes: 4 additions & 4 deletions docs/examples/agents/agent-patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ We have the following templates:

## Multimodal agent

[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/multi_modal_agent)
[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/multi_modal_agent.py)

![](./_agent_patterns/multi_modal_agent.png)

## Multi-agent collaboration

[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/multi_agent_collaboration)
[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/multi_agent_collaboration.py)

![](./_agent_patterns/multi_agent_collaboration.png)

## Supervisor agent

[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/agent_supervisor)
[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/agent_supervisor.py)

![](./_agent_patterns/agent_supervisor.png)


## Hierarchical teams

[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/hierarchical_agent_teams)
[Code template](https://github.com/DAGWorks-Inc/burr/tree/main/examples/templates/hierarchical_agent_teams.py)

![](./_agent_patterns/hierarchical_agent_teams.png)
Loading

0 comments on commit bc3af0d

Please sign in to comment.