Files
AI/참고/ontocast-main/ontocast/tool/agg/__init__.py

17 lines
391 B
Python
Raw Normal View History

2026-05-12 19:40:31 +09:00
"""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",
]