mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-01 20:03:28 +02:00
ActionOutput use extracted_content
This commit is contained in:
parent
6df217e4d9
commit
3be5980214
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ class Action(ABC):
|
|||
parsed_data = CustomDecoder(strict=False).decode(extracted_content)
|
||||
logger.debug(parsed_data)
|
||||
instruct_content = output_class(**parsed_data)
|
||||
return ActionOutput(content, instruct_content)
|
||||
return ActionOutput(extracted_content, instruct_content)
|
||||
|
||||
async def run(self, *args, **kwargs):
|
||||
"""Run action"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue