Charles Grandjean
fix the tool
0e4f8b2
raw
history blame contribute delete
411 Bytes
#!/usr/bin/env python3
"""
Utils package for CyberLegalAI
"""
from utils.lawyer_profile_formatter import (
format_lawyer_profile_from_api,
format_lawyer_profiles_from_response,
get_lawyer_profile_summary,
format_lawyers_as_string
)
__all__ = [
'format_lawyer_profile_from_api',
'format_lawyer_profiles_from_response',
'get_lawyer_profile_summary',
'format_lawyers_as_string'
]