CoolFace
Apppublic

nizzad/mathsadventure

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
main.py9 linesDownload Raw Back to root
1from src.main import app  # or whatever your app is called2 3# If it's a Gradio or Streamlit app, this ensures it runs properly4if __name__ == "__main__":5    app.launch()  # For Gradio6    # or7    # import streamlit as st8    # app()  # If app is a Streamlit function9