apitest / app.py
Chipmunk91's picture
Create app.py
7f8cbb9 verified
raw
history blame contribute delete
143 Bytes
import gradio as gr
def greet(text):
return text + " hello"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()