File size: 296 Bytes
e5eabef d804e92 e5eabef |
1 2 3 4 5 6 7 8 9 10 11 12 |
# main.py
from frontend.gradio_app import create_gradio_interface
def main():
"""Main entry point to run the Jewelry Recommender application."""
print("Starting Jewelry Recommender System...")
demo = create_gradio_interface()
demo.launch()
if __name__ == "__main__":
main()
|