2024-10-18 14:17:14 +01:00
|
|
|
|
"""
|
|
|
|
|
LightRAG meets Amazon Bedrock ⛰️
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import os
|
2024-10-18 16:50:02 +01:00
|
|
|
|
import logging
|
2024-10-18 14:17:14 +01:00
|
|
|
|
|
|
|
|
|
from lightrag import LightRAG, QueryParam
|
|
|
|
|
from lightrag.llm import bedrock_complete, bedrock_embedding
|
|
|
|
|
from lightrag.utils import EmbeddingFunc
|
|
|
|
|
|
2024-10-18 16:50:02 +01:00
|
|
|
|
logging.getLogger("aiobotocore").setLevel(logging.WARNING)
|
2024-10-18 14:17:14 +01:00
|
|
|
|
|
2024-10-18 16:50:02 +01:00
|
|
|
|
WORKING_DIR = "./dickens"
|
2024-10-18 14:17:14 +01:00
|
|
|
|
if not os.path.exists(WORKING_DIR):
|
|
|
|
|
os.mkdir(WORKING_DIR)
|
|
|
|
|
|
|
|
|
|
rag = LightRAG(
|
|
|
|
|
working_dir=WORKING_DIR,
|
|
|
|
|
llm_model_func=bedrock_complete,
|
2024-10-18 16:50:02 +01:00
|
|
|
|
llm_model_name="Anthropic Claude 3 Haiku // Amazon Bedrock",
|
2024-10-18 14:17:14 +01:00
|
|
|
|
embedding_func=EmbeddingFunc(
|
|
|
|
|
embedding_dim=1024,
|
|
|
|
|
max_token_size=8192,
|
2024-10-18 16:50:02 +01:00
|
|
|
|
func=bedrock_embedding
|
2024-10-18 14:17:14 +01:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
2024-10-18 16:50:02 +01:00
|
|
|
|
with open("./book.txt", 'r', encoding='utf-8') as f:
|
2024-10-18 14:17:14 +01:00
|
|
|
|
rag.insert(f.read())
|
|
|
|
|
|
2024-10-18 16:50:02 +01:00
|
|
|
|
for mode in ["naive", "local", "global", "hybrid"]:
|
|
|
|
|
print("\n+-" + "-" * len(mode) + "-+")
|
|
|
|
|
print(f"| {mode.capitalize()} |")
|
|
|
|
|
print("+-" + "-" * len(mode) + "-+\n")
|
|
|
|
|
print(
|
|
|
|
|
rag.query(
|
|
|
|
|
"What are the top themes in this story?",
|
|
|
|
|
param=QueryParam(mode=mode)
|
|
|
|
|
)
|
|
|
|
|
)
|