Spaces:
Running
Running
File size: 690 Bytes
c2ea5ed 7d48c14 c2ea5ed 7d48c14 c2ea5ed 7d48c14 c2ea5ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""
Knowledge Extraction Methods Package
This package contains all available knowledge extraction methods organized by type:
- production: Production-ready methods using reference-based schemas
- baseline: Baseline methods using direct-based schemas (avoid importing due to evaluation dependency)
"""
# Only import production methods to avoid evaluation module dependency
from .production import multi_agent_knowledge_extractor
# NOTE: Baseline methods are temporarily not imported to avoid evaluation module dependency
# These can be imported individually if needed:
# from .baseline import original_method, clustering_method, etc.
__all__ = [
"multi_agent_knowledge_extractor",
] |