Spaces:
Sleeping
Sleeping
File size: 499 Bytes
ea54f0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
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"
]
|