pom / app.py
pom0's picture
Add Gradio app
756b735
raw
history blame contribute delete
143 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()