From 5c533f5e1aa9aa75fbf5c985fb65444e28ce17c7 Mon Sep 17 00:00:00 2001 From: yangdx Date: Tue, 13 May 2025 00:08:21 +0800 Subject: [PATCH] Fix liinting --- examples/lightrag_openai_compatible_demo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/lightrag_openai_compatible_demo.py b/examples/lightrag_openai_compatible_demo.py index 45948b6f..82e1b07b 100644 --- a/examples/lightrag_openai_compatible_demo.py +++ b/examples/lightrag_openai_compatible_demo.py @@ -100,7 +100,7 @@ async def embedding_func(texts: list[str]) -> np.ndarray: return await ollama_embed( texts=texts, embed_model="bge-m3:latest", - host="http://m4.lan.znipower.com:11434", + host="http://localhost:11434", )