Spaces:
Sleeping
Sleeping
File size: 394 Bytes
7934a24 82dac74 7934a24 82dac74 7934a24 82dac74 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
def simple_function(name):
return f"Привет, {name}!"
with gr.Blocks() as demo:
name_input = gr.Textbox(label="Введите ваше имя")
greeting_output = gr.Textbox(label="Приветствие")
submit_btn = gr.Button("Отправить")
submit_btn.click(simple_function, inputs=name_input, outputs=greeting_output)
demo.launch() |