Skip to content

Commit

Permalink
Update parallel.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Armxyz1 authored Jun 14, 2024
1 parent 434bf54 commit 5ed2815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sotopia/envs/parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def __init__(
available_action_types: set[ActionType] = set(
["none", "speak", "non-verbal communication", "action", "leave"]
),
action_order: Literal["simutaneous", "round-robin", "random"] = "simutaneous",
action_order: Literal["simultaneous", "round-robin", "random"] = "simultaneous",
model_name: str = "gpt-3.5-turbo",
evaluators: list[Evaluator] = [],
terminal_evaluators: list[Evaluator] = [],
Expand All @@ -138,7 +138,7 @@ def __init__(
Args:
available_action_types (set[ActionType], optional): The action types that are available to the agents. Defaults to set(["none", "speak", "non-verbal communication", "action"]).
action_order (Literal["simutaneous", "round-robin", "random"], optional): The order in which the agents take actions. Defaults to "simutaneous".
action_order (Literal["simultaneous", "round-robin", "random"], optional): The order in which the agents take actions. Defaults to "simultaneous".
model_name (str, optional): The name of the language model to use. Defaults to "gpt-3.5-turbo".
"""
super().__init__()
Expand Down

0 comments on commit 5ed2815

Please sign in to comment.