mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-11 15:15:18 +02:00
fix typo
This commit is contained in:
parent
21d588ae0e
commit
ad88c5000d
5 changed files with 37 additions and 37 deletions
|
|
@ -14,9 +14,9 @@ from metagpt.logs import logger
|
|||
async def main():
|
||||
llm = LLM()
|
||||
# llm type check
|
||||
id_ques = "what's your name"
|
||||
logger.info(f"{id_ques}: ")
|
||||
logger.info(await llm.aask(id_ques))
|
||||
question = "what's your name"
|
||||
logger.info(f"{question}: ")
|
||||
logger.info(await llm.aask(question))
|
||||
logger.info("\n\n")
|
||||
|
||||
logger.info(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue