Swiper-match / core /__init__.py
Almaz K
added phone numbers to results
e4c90f5
raw
history blame contribute delete
502 Bytes
"""
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'
]