From 5ed281523b88f39ebfb02f6a04c2cc41d3e9056a Mon Sep 17 00:00:00 2001 From: Armaan Khetarpaul Date: Fri, 14 Jun 2024 08:15:42 +0530 Subject: [PATCH] Update parallel.py --- sotopia/envs/parallel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sotopia/envs/parallel.py b/sotopia/envs/parallel.py index 32120f78d..199be857d 100644 --- a/sotopia/envs/parallel.py +++ b/sotopia/envs/parallel.py @@ -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] = [], @@ -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__()