32 lines
1012 B
Python
32 lines
1012 B
Python
"""Agent module for OntoCast.
|
|
|
|
This module provides a collection of agents that handle various aspects of ontology
|
|
processing, including document conversion, text chunking, fact aggregation, and
|
|
ontology management. Each agent is designed to perform a specific task in the
|
|
ontology processing pipeline.
|
|
"""
|
|
|
|
from .chunk_text import chunk_text
|
|
from .convert_document import convert_document
|
|
from .criticise_facts import criticise_facts
|
|
from .criticise_ontology import criticise_ontology
|
|
from .render_facts import render_facts, render_facts_fresh
|
|
from .render_ontology import render_ontology, render_ontology_fresh
|
|
from .select_ontology import select_ontology
|
|
from .serialize import serialize
|
|
from .sublimate_ontology import sublimate_ontology
|
|
|
|
__all__ = [
|
|
"chunk_text",
|
|
"convert_document",
|
|
"criticise_facts",
|
|
"criticise_ontology",
|
|
"render_facts",
|
|
"render_ontology",
|
|
"select_ontology",
|
|
"serialize",
|
|
"sublimate_ontology",
|
|
"render_ontology_fresh",
|
|
"render_facts_fresh",
|
|
]
|