From a1f39d1269572e62ff366a9d598818f5fa34605a Mon Sep 17 00:00:00 2001 From: geekan Date: Sun, 24 Dec 2023 11:48:30 +0800 Subject: [PATCH] fix main process --- metagpt/actions/write_prd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metagpt/actions/write_prd.py b/metagpt/actions/write_prd.py index 1223e5486..47e02b699 100644 --- a/metagpt/actions/write_prd.py +++ b/metagpt/actions/write_prd.py @@ -123,7 +123,7 @@ class WritePRD(Action): # logger.info(rsp) project_name = CONFIG.project_name if CONFIG.project_name else "" context = CONTEXT_TEMPLATE.format(requirements=requirements, project_name=project_name) - node = await WRITE_PRD_NODE.fill(context=context, llm=self.llm, schema=schema) + node = await WRITE_PRD_NODE.fill(context=context, llm=self.llm) # schema=schema await self._rename_workspace(node) return node