ai-content-maker/.venv/Lib/site-packages/spacy/kb/__init__.py

12 lines
271 B
Python
Raw Permalink Normal View History

2024-05-03 04:18:51 +03: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",
]