add all in kb.init

This commit is contained in:
svlandeg 2023-10-12 12:11:35 +02:00
parent 438786a510
commit 8bba0dbae4

View File

@ -1,3 +1,11 @@
from .candidate import Candidate, get_candidates, get_candidates_batch
from .kb import KnowledgeBase
from .kb_in_memory import InMemoryLookupKB
__all__ = [
"Candidate",
"KnowledgeBase",
"InMemoryLookupKB",
"get_candidates",
"get_candidates_batch",
]