hulei2018

Results 4 comments of hulei2018

i have tried, but i have still this issue

代码: import asyncio from metagpt.rag.engines import SimpleEngine doc_path = "data_base/travel.txt" async def main(): engine = SimpleEngine.from_docs(input_files=[doc_path]) answer = await engine.query("what does Bob like?") print(answer) if __name__ == "__main__": asyncio.run(main()) 报错:...