Format entire codebase with ruff and add type hints across all modules: - Apply ruff formatting to all Python files (121 files, 17K insertions) - Add type hints to function signatures throughout lightrag core and API - Update test suite with improved type annotations and docstrings - Add pyrightconfig.json for static type checking configuration - Create prompt_optimized.py and test_extraction_prompt_ab.py test files - Update ruff.toml and .gitignore for improved linting configuration - Standardize code style across examples, reproduce scripts, and utilities
127 lines
3.6 KiB
Python
127 lines
3.6 KiB
Python
import asyncio
|
|
import os
|
|
|
|
import nest_asyncio
|
|
from llama_index.embeddings.openai import OpenAIEmbedding
|
|
from llama_index.llms.openai import OpenAI
|
|
|
|
from lightrag import LightRAG, QueryParam
|
|
from lightrag.llm.llama_index_impl import (
|
|
llama_index_complete_if_cache,
|
|
llama_index_embed,
|
|
)
|
|
from lightrag.utils import EmbeddingFunc
|
|
|
|
nest_asyncio.apply()
|
|
|
|
|
|
# Configure working directory
|
|
WORKING_DIR = './index_default'
|
|
print(f'WORKING_DIR: {WORKING_DIR}')
|
|
|
|
# Model configuration
|
|
LLM_MODEL = os.environ.get('LLM_MODEL', 'gpt-4')
|
|
print(f'LLM_MODEL: {LLM_MODEL}')
|
|
EMBEDDING_MODEL = os.environ.get('EMBEDDING_MODEL', 'text-embedding-3-large')
|
|
print(f'EMBEDDING_MODEL: {EMBEDDING_MODEL}')
|
|
EMBEDDING_MAX_TOKEN_SIZE = int(os.environ.get('EMBEDDING_MAX_TOKEN_SIZE', 8192))
|
|
print(f'EMBEDDING_MAX_TOKEN_SIZE: {EMBEDDING_MAX_TOKEN_SIZE}')
|
|
|
|
# OpenAI configuration
|
|
OPENAI_API_KEY = os.environ.get('OPENAI_API_KEY', 'your-api-key-here')
|
|
|
|
if not os.path.exists(WORKING_DIR):
|
|
print(f'Creating working directory: {WORKING_DIR}')
|
|
os.mkdir(WORKING_DIR)
|
|
|
|
|
|
# Initialize LLM function
|
|
async def llm_model_func(prompt, system_prompt=None, history_messages=None, **kwargs):
|
|
if history_messages is None:
|
|
history_messages = []
|
|
try:
|
|
# Initialize OpenAI if not in kwargs
|
|
if 'llm_instance' not in kwargs:
|
|
llm_instance = OpenAI(
|
|
model=LLM_MODEL,
|
|
api_key=OPENAI_API_KEY,
|
|
temperature=0.7,
|
|
)
|
|
kwargs['llm_instance'] = llm_instance
|
|
|
|
response = await llama_index_complete_if_cache(
|
|
kwargs['llm_instance'],
|
|
prompt,
|
|
system_prompt=system_prompt,
|
|
history_messages=history_messages,
|
|
**kwargs,
|
|
)
|
|
return response
|
|
except Exception as e:
|
|
print(f'LLM request failed: {e!s}')
|
|
raise
|
|
|
|
|
|
# Initialize embedding function
|
|
async def embedding_func(texts):
|
|
try:
|
|
embed_model = OpenAIEmbedding(
|
|
model=EMBEDDING_MODEL,
|
|
api_key=OPENAI_API_KEY,
|
|
)
|
|
return await llama_index_embed(texts, embed_model=embed_model)
|
|
except Exception as e:
|
|
print(f'Embedding failed: {e!s}')
|
|
raise
|
|
|
|
|
|
# Get embedding dimension
|
|
async def get_embedding_dim():
|
|
test_text = ['This is a test sentence.']
|
|
embedding = await embedding_func(test_text)
|
|
embedding_dim = embedding.shape[1]
|
|
print(f'embedding_dim={embedding_dim}')
|
|
return embedding_dim
|
|
|
|
|
|
async def initialize_rag():
|
|
embedding_dimension = await get_embedding_dim()
|
|
|
|
rag = LightRAG(
|
|
working_dir=WORKING_DIR,
|
|
llm_model_func=llm_model_func,
|
|
embedding_func=EmbeddingFunc(
|
|
embedding_dim=embedding_dimension,
|
|
max_token_size=EMBEDDING_MAX_TOKEN_SIZE,
|
|
func=embedding_func,
|
|
),
|
|
)
|
|
|
|
await rag.initialize_storages() # Auto-initializes pipeline_status
|
|
return rag
|
|
|
|
|
|
def main():
|
|
# Initialize RAG instance
|
|
rag = asyncio.run(initialize_rag())
|
|
|
|
# Insert example text
|
|
with open('./book.txt', encoding='utf-8') as f:
|
|
rag.insert(f.read())
|
|
|
|
# Test different query modes
|
|
print('\nNaive Search:')
|
|
print(rag.query('What are the top themes in this story?', param=QueryParam(mode='naive')))
|
|
|
|
print('\nLocal Search:')
|
|
print(rag.query('What are the top themes in this story?', param=QueryParam(mode='local')))
|
|
|
|
print('\nGlobal Search:')
|
|
print(rag.query('What are the top themes in this story?', param=QueryParam(mode='global')))
|
|
|
|
print('\nHybrid Search:')
|
|
print(rag.query('What are the top themes in this story?', param=QueryParam(mode='hybrid')))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|