docker / app.py
test090309a's picture
test
8a4601c verified
raw
history blame
131 Bytes
import gradio as gr
def hello(name):
return f"Hallo, {name}!"
gr.Interface(fn=hello, inputs="text", outputs="text").launch()