ii5's picture
Upload 4 files
ea54f0b verified
raw
history blame contribute delete
499 Bytes
"""
AI Text Humanizer Package
A sophisticated text transformation system that converts AI-generated text
into more human-like, academic writing while preserving formatting.
"""
__version__ = "2.0.0"
__author__ = "AI Text Humanizer Team"
__description__ = "Advanced text humanization with markdown preservation"
from .app import AdvancedAcademicTextHumanizer, NLP_GLOBAL, download_nltk_resources
__all__ = [
"AdvancedAcademicTextHumanizer",
"NLP_GLOBAL",
"download_nltk_resources"
]