diff --git a/examples/werewolf_game/actions/common_actions.py b/examples/werewolf_game/actions/common_actions.py index 5f56806da..9a5e628eb 100644 --- a/examples/werewolf_game/actions/common_actions.py +++ b/examples/werewolf_game/actions/common_actions.py @@ -34,7 +34,6 @@ class Speak(Action): async def run(self, context: str, profile: str): - # prompt = self.PROMPT_TEMPLATE.format(context=context, profile=profile) prompt = self.PROMPT_TEMPLATE.replace("__context__", context).replace("__profile__", profile) rsp = await self._aask(prompt)