nurasaki
Change app.py file
3b46be3
raw
history blame contribute delete
No virus
169 Bytes
import gradio as gr
def greet(name):
x = "XXX"
return "Hello " + x + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()