test-spaces-app / app.py
nateraw's picture
Upload app.py with huggingface_hub
2a53d6f
raw
history blame contribute delete
171 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
interface = gr.Interface(greet, 'text', 'text')
if __name__ == '__main__':
interface.launch()