BirdM's picture
Update app.py
80f49b1 verified
raw
history blame
184 Bytes
import gradio as gr
def test():
return "La app está funcionando 🎉"
demo = gr.Interface(fn=test, inputs=None, outputs="text", title="Detector de Imágenes IA")
demo.launch()