TK156
fix: 最小テストアプリでビルド修正
e5808c5
raw
history blame
227 Bytes
import gradio as gr
def hello(name):
return f"Hello {name}!"
demo = gr.Interface(
fn=hello,
inputs=gr.Textbox(label="Name"),
outputs=gr.Textbox(label="Greeting")
)
if __name__ == "__main__":
demo.launch()