Files
AI/참고/ontocast-main/ontocast/tool/agg/__init__.py
2026-05-12 19:40:31 +09:00

17 lines
391 B
Python

"""Embedding-based aggregation pipeline for RDF content unit graphs."""
from .aggregate import (
EmbeddingBasedAggregator,
aggregate_chunk_graphs,
aggregate_content_unit_graphs,
)
from .uri_builder import EntityRole, URIBuilder
__all__ = [
"EmbeddingBasedAggregator",
"EntityRole",
"URIBuilder",
"aggregate_content_unit_graphs",
"aggregate_chunk_graphs",
]