docs: fix the simple program rag init function return value in README-zh.md

docs: fix the simple program rag init function return value in README-zh.md
This commit is contained in:
Peefy
2025-12-24 16:56:07 +08:00
committed by GitHub
parent 833ddf4931
commit a03005a1a5

View File

@@ -255,7 +255,8 @@ async def initialize_rag():
llm_model_func=gpt_4o_mini_complete,
)
# IMPORTANT: Both initialization calls are required!
await rag.initialize_storages() # Initialize storage backends return rag
await rag.initialize_storages() # Initialize storage backends
return rag
async def main():
try: