File size: 373 Bytes
2532605 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # KRONECTOR — Agent Pipeline
# DataAgent → PredictionAgent → CritiqueAgent → SynthesisAgent
from .data_agent import data_agent
from .prediction_agent import prediction_agent
from .critique_agent import critique_agent
from .synthesis_agent import synthesis_agent
__all__ = [
"data_agent",
"prediction_agent",
"critique_agent",
"synthesis_agent",
]
|