chore: Format codes , PEP8

This commit is contained in:
DevXiaolan 2023-09-19 15:01:21 +08:00
parent 86f49faefb
commit 90b2a0769b

View file

@ -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