From a03005a1a549beff177901811e6c33e2ad30a009 Mon Sep 17 00:00:00 2001 From: Peefy Date: Wed, 24 Dec 2025 16:56:07 +0800 Subject: [PATCH] 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 --- README-zh.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index 38431bbf..96750b9a 100644 --- a/README-zh.md +++ b/README-zh.md @@ -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: