QA-context / App.py
AndrewChar's picture
Update App.py
0c57adf
raw
history blame
150 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()