e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
29 lines
721 B
Python
29 lines
721 B
Python
#!/usr/bin/env python
|
|
"""Knowledge base package exports (lazy-loaded)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
__all__ = [
|
|
"DocumentAdder",
|
|
"KnowledgeBaseInitializer",
|
|
"KnowledgeBaseManager",
|
|
]
|
|
|
|
|
|
def __getattr__(name: str) -> Any:
|
|
if name == "DocumentAdder":
|
|
from .add_documents import DocumentAdder
|
|
|
|
return DocumentAdder
|
|
if name == "KnowledgeBaseInitializer":
|
|
from .initializer import KnowledgeBaseInitializer
|
|
|
|
return KnowledgeBaseInitializer
|
|
if name == "KnowledgeBaseManager":
|
|
from .manager import KnowledgeBaseManager
|
|
|
|
return KnowledgeBaseManager
|
|
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|