FixedRecall / app.py
John Graham Reynolds
add basics
d67c7fc
raw
history blame
137 Bytes
import gradio as gr
def greet(name):
return 'Hello, ' + name + '!'
gr.Interface(fn=greet, inputs='text', outputs='text').launch()