gradio-demo / app.py
tnzkm's picture
Upload folder using huggingface_hub
44a306e
raw
history blame contribute delete
280 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch(
show_api=False,
# auth=('test', 'test'),
# auth_message='Auth now'
)