mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-11 15:15:18 +02:00
modify pronunciation
This commit is contained in:
parent
02cc5c274d
commit
1a7f415fa9
2 changed files with 4 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue