fix: light_server.py fix

This commit is contained in:
hyb
2025-01-26 09:13:11 +08:00
parent 275eebe28a
commit cd5b1dc98f
2 changed files with 8 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ VECTOR_STORAGE = "NanoVectorDBStorage"
# read config.ini
config = configparser.ConfigParser()
config.read("config.ini")
config.read("config.ini", "utf-8")
# Redis config
redis_uri = config.get("redis", "uri", fallback=None)
if redis_uri:
@@ -734,7 +734,8 @@ def create_app(args):
azure_openai_embed,
)
if args.llm_binding_host == "openai-ollama" or args.embedding_binding == "ollama":
from lightrag.llm.openai import openai_complete_if_cache, openai_embed
from lightrag.llm.openai import openai_complete_if_cache
from lightrag.llm.ollama import ollama_embed
async def openai_alike_model_complete(
prompt,

View File

@@ -499,11 +499,11 @@ class Neo4JStorage(BaseGraphStorage):
# 方法2兼容旧版本的查询方式
query = """
MATCH (n)
WITH DISTINCT labels(n) AS node_labels
UNWIND node_labels AS label
RETURN DISTINCT label
ORDER BY label
MATCH (n)
WITH DISTINCT labels(n) AS node_labels
UNWIND node_labels AS label
RETURN DISTINCT label
ORDER BY label
"""
result = await session.run(query)