TestSpaces1 / app.py
theodac's picture
Create app.py
2aac7bb verified
raw
history blame contribute delete
129 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()