Spaces:
Sleeping
Sleeping
| """ | |
| Core modules for the Swiper Match application | |
| Contains the main business logic and configuration | |
| """ | |
| # Import core components | |
| from .matcher import CarDealerMatcher | |
| from .config import ( | |
| DETAILED_MODEL_PATH, | |
| SIMPLE_MODEL_PATH, | |
| UI_CONFIG, | |
| GRADIO_CSS, | |
| MAKE_MODEL_DATA | |
| ) | |
| # Define what gets exported when using "from core import *" | |
| __all__ = [ | |
| 'CarDealerMatcher', | |
| 'DETAILED_MODEL_PATH', | |
| 'SIMPLE_MODEL_PATH', | |
| 'UI_CONFIG', | |
| 'GRADIO_CSS', | |
| 'MAKE_MODEL_DATA' | |
| ] |