File size: 315 Bytes
39028c9
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Intent-Aware Context-Preserving Summarization of Long Technical Documents
Main package initialization
"""

__version__ = "0.1.0"
__author__ = "Your Name"

from . import preprocessing
from . import models
from . import summarizer
from . import utils

__all__ = ['preprocessing', 'models', 'summarizer', 'utils']