mirror of
https://github.com/mytechnotalent/Threat-Modeling-Toolkit.git
synced 2026-03-31 21:10:15 +02:00
10 lines
182 B
Python
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",
|
|
]
|