File size: 394 Bytes
9cd4ac5
 
d94ca47
 
9cd4ac5
d94ca47
 
 
 
 
 
 
9cd4ac5
d94ca47
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

def greet(name):
    return f"Привет, {name}! Это динамический результат."

demo = gr.Interface(
    fn=greet,
    inputs="text",
    outputs="text",
    title="Приветствие от Gradio",
    description="Введи своё имя, чтобы получить приветствие!"
)

if __name__ == "__main__":
    demo.launch()