Spaces:
Running
Running
| #!/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' | |
| ] | |