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
6 lines
186 B
Python
6 lines
186 B
Python
from .lightrag import LightRAG as LightRAG
|
|
from .lightrag import QueryParam as QueryParam
|
|
|
|
__version__ = '1.4.9.9'
|
|
__author__ = 'Zirui Guo'
|
|
__url__ = 'https://github.com/HKUDS/LightRAG'
|