File size: 310 Bytes
71fdb6d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Agents package for specialized AI tasks
"""
from .profile_extractor import ProfileExtractor, extract_profile_information
from .grammar_corrector import GrammarCorrector, correct_grammar

__all__ = [
    'ProfileExtractor',
    'GrammarCorrector',
    'extract_profile_information',
    'correct_grammar'
]