From bc3be3b0028ab2a9a621a5d9765699c408d7afd2 Mon Sep 17 00:00:00 2001 From: Peefy Date: Wed, 24 Dec 2025 16:51:06 +0800 Subject: [PATCH] docs: fix the simple program rag init function return value --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 154802c3..0ab21759 100644 --- a/README.md +++ b/README.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: