Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes links docs typos #478

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading