File size: 411 Bytes
0e4f8b2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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'
]