Files
Threat-Modeling-Toolkit/tmt/llm/__init__.py

10 lines
182 B
Python

"""LLM-powered security review modules."""
from tmt.llm.prompts import PromptLibrary
from tmt.llm.reviewer import LLMReviewer
__all__ = [
"PromptLibrary",
"LLMReviewer",
]