Spaces:
Sleeping
Sleeping
""" | |
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" | |
] | |