mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-15 11:02:36 +02:00
chore: Format codes , PEP8
This commit is contained in:
parent
86f49faefb
commit
90b2a0769b
1 changed files with 4 additions and 2 deletions
|
|
@ -21,11 +21,13 @@ Attention: Provide as markdown block as the format above, at least 10 questions.
|
|||
"""
|
||||
|
||||
# prepare for a interview
|
||||
|
||||
|
||||
class PrepareInterview(Action):
|
||||
def __init__(self, name, context=None, llm=None):
|
||||
super().__init__(name, context, llm)
|
||||
|
||||
async def run(self,context):
|
||||
async def run(self, context):
|
||||
prompt = PROMPT_TEMPLATE.format(context=context)
|
||||
question_list = await self._aask_v1(prompt)
|
||||
return question_list
|
||||
return question_list
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue