mirror of
https://github.com/mblanke/ThreatHunt.git
synced 2026-03-01 05:50:21 -05:00
17 lines
450 B
Python
17 lines
450 B
Python
"""Analyst-assist agent module for ThreatHunt.
|
|
|
|
Provides read-only guidance on CSV artifact data, analytical pivots, and hypotheses.
|
|
Agents are advisory only and do not execute actions or modify data.
|
|
"""
|
|
|
|
from .core import ThreatHuntAgent
|
|
from .providers import LLMProvider, LocalProvider, NetworkedProvider, OnlineProvider
|
|
|
|
__all__ = [
|
|
"ThreatHuntAgent",
|
|
"LLMProvider",
|
|
"LocalProvider",
|
|
"NetworkedProvider",
|
|
"OnlineProvider",
|
|
]
|