nateraw's picture
Upload app.py with huggingface_hub
01e1489
raw history blame
No virus
171 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
interface = gr.Interface(greet, 'text', 'text')
if __name__ == '__main__':
interface.launch()