RoTaskForum / app.py
DimaQip's picture
Update app.py
9cc3c35 verified
raw
history blame contribute delete
244 Bytes
import gradio as gr
def greet(name):
return f"Привет, {name}!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(label="Введите ваше имя"),
outputs=gr.Textbox(label="Приветствие")
)
demo.launch()