chara-animator / 00app.py
mook84816's picture
Create 00app.py
b75ed21 verified
raw
history blame contribute delete
362 Bytes
import gradio as gr
def hello(name):
return f"hello {name}"
with gr.Blocks() as demo:
gr.Markdown("## HF 起動テスト")
inp = gr.Textbox(label="name")
out = gr.Textbox(label="result")
btn = gr.Button("run")
btn.click(hello, inputs=inp, outputs=out)
if __name__ == "__main__":
demo.launch(server_name="0.0.0.0", server_port=7860)