hulei2018
hulei2018
我也遇到这个问题,有人解决吗
i have the same issue
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()) 报错:...