- Fix ambiguous fullwidth characters (commas, parentheses) in strings and comments - Replace Chinese comments with English equivalents - Fix unused imports with proper noqa annotations for intentional imports - Fix bare except clauses with specific exception types - Fix redefined variables and undefined names - Add ruff noqa annotations for generated protobuf files - Add lint and format check to GitHub Actions CI pipeline
13 lines
317 B
Python
13 lines
317 B
Python
"""
|
|
LEANN - Low-storage Embedding Approximation for Neural Networks
|
|
|
|
A revolutionary vector database that democratizes personal AI.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
# Re-export main API from leann-core
|
|
from leann_core import LeannBuilder, LeannChat, LeannSearcher
|
|
|
|
__all__ = ["LeannBuilder", "LeannChat", "LeannSearcher"]
|