Fix lint issue

This commit is contained in:
Andrii Lazarchuk
2024-10-28 17:05:38 +02:00
parent 0e71a906af
commit 84b60e4aa6
2 changed files with 7 additions and 4 deletions

View File

@@ -1,14 +1,13 @@
import os
import logging
logging.basicConfig(format="%(levelname)s:%(message)s", level=logging.INFO)
from lightrag import LightRAG, QueryParam
from lightrag.llm import ollama_model_complete, ollama_embedding
from lightrag.utils import EmbeddingFunc
WORKING_DIR = "./dickens"
logging.basicConfig(format="%(levelname)s:%(message)s", level=logging.INFO)
if not os.path.exists(WORKING_DIR):
os.mkdir(WORKING_DIR)