TheThing / app.py
takeraparterer's picture
Update app.py
cbf3071
import gradio as gr
def greet(name):
return "uwu notices your bulge"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()