TK156
fix: 基本のHello WorldでSpace復旧
105fc53
raw
history blame
174 Bytes
import gradio as gr
def hello(name):
return f"Hello {name}! Space is working!"
demo = gr.Interface(
fn=hello,
inputs="text",
outputs="text"
)
demo.launch()