This commit is contained in:
Larfii
2024-10-07 18:48:45 +08:00
parent 13c67c2bcf
commit fba232487b
6 changed files with 152 additions and 5 deletions

19
examples/insert.py Normal file
View File

@@ -0,0 +1,19 @@
import os
import sys
sys.path.append('xxx/xxx/LightRAG')
from lightrag import LightRAG
os.environ["OPENAI_API_KEY"] = ""
WORKING_DIR = ""
if not os.path.exists(WORKING_DIR):
os.mkdir(WORKING_DIR)
rag = LightRAG(working_dir=WORKING_DIR)
with open('./text.txt', 'r') as f:
text = f.read()
rag.insert(text)