modify pronunciation

This commit is contained in:
kevin-meng 2023-09-25 23:27:12 +08:00
parent 02cc5c274d
commit 1a7f415fa9
2 changed files with 4 additions and 2 deletions

View file

@ -9,10 +9,10 @@ class Protect(Action):
this is game history:
{context}.
Attention: you can not protect the same player two nights in a row.
Now, choose one to portect, you will:
Now, choose one to protect, you will:
"""
def __init__(self, name="Speak", context=None, llm=None):
def __init__(self, name="Protect", context=None, llm=None):
super().__init__(name, context, llm)
async def run(self, context: str):

View file

@ -1,6 +1,8 @@
import asyncio
import platform
import fire
import sys
sys.path.append("../../")
from examples.werewolf_game.werewolf_game import WerewolfGame
from examples.werewolf_game.roles import Moderator, Villager, Werewolf, Guard