GRC / app.py
JefeSoso's picture
Update app.py
8ccb942 verified
raw
history blame
No virus
157 Bytes
import gradio as gr
def greet(Question):
return "Answer: " + Question + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()