forked from HAL9000/cleveragents-core
16 lines
490 B
Python
16 lines
490 B
Python
"""Backward-compatible export for the context analysis agent implementations.
|
|
|
|
This module maintains the historical import location while forwarding to the
|
|
LangGraph-based implementations under
|
|
``cleveragents.agents.graphs.context_analysis``.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from cleveragents.agents.graphs.context_analysis import ( # type: ignore[import-not-found]
|
|
ContextAnalysisAgent,
|
|
ContextAnalysisState,
|
|
)
|
|
|
|
__all__ = ["ContextAnalysisAgent", "ContextAnalysisState"]
|