import gradio as gr from PIL import Image import numpy as np import os # Create the Gradio app app = gr.Interface( inputs=gr.Image(type="pil"), title="App Detection" ) # Run the app app.launch()