mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-21 14:05:17 +02:00
add #TOTEST flag
This commit is contained in:
parent
a41ed7df66
commit
8a5f8b7ee0
4 changed files with 4 additions and 0 deletions
|
|
@ -105,6 +105,7 @@ You are a member of a professional butler team and will provide helpful suggesti
|
|||
"""
|
||||
|
||||
|
||||
# TOTEST
|
||||
class SearchAndSummarize(Action):
|
||||
name: str = ""
|
||||
content: Optional[str] = None
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ from metagpt.learn.skill_loader import Skill
|
|||
from metagpt.logs import logger
|
||||
|
||||
|
||||
# TOTEST
|
||||
class ArgumentsParingAction(Action):
|
||||
skill: Skill
|
||||
ask: str
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ flowchart TB
|
|||
"""
|
||||
|
||||
|
||||
# TOTEST
|
||||
class SummarizeCode(Action):
|
||||
name: str = "SummarizeCode"
|
||||
context: CodeSummarizeContext = Field(default_factory=CodeSummarizeContext)
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ from metagpt.llm import LLMType
|
|||
from metagpt.logs import logger
|
||||
|
||||
|
||||
# TOTEST
|
||||
class TalkAction(Action):
|
||||
def __init__(self, name: str = "", talk="", history_summary="", knowledge="", context=None, llm=None, **kwargs):
|
||||
context = context or {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue