Skip to content

Commit

Permalink
Update test_turn_strategies.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowin committed Sep 9, 2024
1 parent b99677c commit 7a9e3cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/orchestration/test_turn_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Popcorn,
Random,
RoundRobin,
Single,
SingleAgent,
)
from controlflow.tasks.task import Task

Expand All @@ -34,7 +34,7 @@ def available_agents(agents: list[Agent], tasks: list[Task]):


def test_single_strategy(agents, available_agents):
strategy = Single(agent=agents[0])
strategy = SingleAgent(agent=agents[0])
current_agent = agents[0]

tools = strategy.get_tools(current_agent, available_agents)
Expand Down

0 comments on commit 7a9e3cb

Please sign in to comment.