app_img / app.py
MonitorKarma's picture
Gradio
4af5890
raw
history blame contribute delete
150 Bytes
import gradio as gr
def greet(name):
return f"Привет, {name}!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()