Files
INTUIA/Programa final/spacy/kb/__init__.py
T

12 lines
271 B
Python
Raw Normal View History

2026-03-15 13:27:50 +00:00
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",
]