dftest1 / src /agents /__init__.py
akcanca's picture
Upload 110 files (#1)
07fe054 verified
"""
Agentic Forensic Controller
An LLM agent that controls the detection pipeline via structured reasoning and tool use.
"""
from .forensic_agent import AgenticForensicController
from .structured_evidence import EvidenceAnalysis, ActionDecision
from .evidence_analyzer import EvidenceAnalyzer
__all__ = [
'AgenticForensicController',
'EvidenceAnalysis',
'ActionDecision',
'EvidenceAnalyzer',
]