s23-model / app.py
IhorIvanyshyn01's picture
Add dummy app.py to fix NO_APP_FILE Space error
d601542
raw
history blame contribute delete
164 Bytes
import gradio as gr
def dummy():
return "Space is running and ready for evaluation!"
iface = gr.Interface(fn=dummy, inputs=[], outputs="text")
iface.launch()