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