refactor: think

This commit is contained in:
莘权 马 2023-09-05 22:51:14 +08:00
parent fa0b0b1511
commit e2ffba8631

View file

@ -58,7 +58,9 @@ class Assistant(Role):
skills = self.skills.get_skill_list()
for desc, name in skills.items():
prompt += f"If explicitly want you to do {desc}, return `[SKILL]: {name}` brief and clear. For instance: [SKILL]: {name}\n"
prompt += "Otherwise, return `[TALK]: {talk}` brief and clear. For instance: [TALK]: distribute watermelon"
prompt += (
'Otherwise, return `[TALK]: {talk}` brief and clear. For instance: if {talk} is "xxxx" return [TALK]: xxxx'
)
logger.info(prompt)
rsp = await self._llm.aask(prompt, [])
logger.info(rsp)