Gradioo_Apps / app.py
endro2437's picture
Upload folder using huggingface_hub
ae92dfa verified
raw
history blame contribute delete
188 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
iface.launch()