Files
AI/참고/ontocast-main/ontocast/tool/aggregate.py

19 lines
490 B
Python
Raw Normal View History

2026-05-12 19:40:31 +09:00
"""Graph aggregation for OntoCast.
This module re-exports the embedding-based aggregator as the main aggregation
implementation. Use EmbeddingBasedAggregator for aggregating and disambiguating
RDF graphs from multiple content units.
"""
from ontocast.tool.agg.aggregate import (
EmbeddingBasedAggregator,
aggregate_chunk_graphs,
aggregate_content_unit_graphs,
)
__all__ = [
"EmbeddingBasedAggregator",
"aggregate_content_unit_graphs",
"aggregate_chunk_graphs",
]