ibuilder / agents /__init__.py
Soufianesejjari's picture
Add utility and service packages, enhance profile model, and implement PDF handling
71fdb6d
raw
history blame contribute delete
310 Bytes
"""
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'
]