Merge pull request #15 from iorisa/feature/bug-1113

fixbug: MET-1113
This commit is contained in:
Justin-ZL 2023-09-01 19:41:06 +08:00 committed by GitHub
commit a36d46d6b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ from metagpt.logs import logger
class TalkAction(Action):
def __init__(self, name: str = '', talk='', history_summary='', knowledge='', context=None, llm=None, **kwargs):
def __init__(self, name: str = "", talk="", history_summary="", knowledge="", context=None, llm=None, **kwargs):
context = context or {}
context["talk"] = talk
context["history_summery"] = history_summary
@ -32,7 +32,7 @@ class TalkAction(Action):
if self._history_summary != "":
prompt += "According to the historical conversation above, "
language = CONFIG.language or DEFAULT_LANGUAGE
prompt += f"Answer in {language}:\n {self._talk}"
prompt += f"Answer in {language}, and the answers must follow the Markdown format.\n {self._talk}"
return prompt
async def run(self, *args, **kwargs) -> ActionOutput: