HaruthaiAi's picture
Create app.py
b3dd5c8 verified
raw
history blame contribute delete
142 Bytes
import gradio as gr
def hello(name):
return f"Hello, {name}!"
demo = gr.Interface(fn=hello, inputs="text", outputs="text")
demo.launch()