From 125c1f6f25da30bae22822a1ae2eb349d2e909ea Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Tue, 15 Jul 2025 21:48:45 -0700 Subject: [PATCH] fix: model name --- examples/main_cli_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/main_cli_example.py b/examples/main_cli_example.py index 787baa1..1ce3edc 100644 --- a/examples/main_cli_example.py +++ b/examples/main_cli_example.py @@ -65,7 +65,7 @@ async def main(args): llm_config = { - "type": "ollama", "model": "Qwen/Qwen3-8B" + "type": "ollama", "model": "qwen3:8b" } chat = LeannChat(index_path=INDEX_PATH, llm_config=llm_config)