File size: 121 Bytes
94b8906
2970095
94b8906
674984d
1
2
3
4
import gradio as gr
def greet(name): return f"hello {name}"

gr.Interface(fn=greet,inputs="text",outputs="text").launch()