AI_Humanizer / agents /__init__.py
AJAY KASU
feat: complete 3-agent AI humanizer pipeline
d1abcca
raw
history blame contribute delete
330 Bytes
# agents package
# sequential pipeline: analyze -> draft -> humanize -> verify
from .semantic_analyzer import SemanticAnalyzer
from .draft_generator import DraftGenerator
from .humanizer import Humanizer
from .verifier import Verifier
__all__ = [
"SemanticAnalyzer",
"DraftGenerator",
"Humanizer",
"Verifier",
]