Gradio / hello.py
chenbridge's picture
Upload folder using huggingface_hub
28c59ee verified
raw
history blame contribute delete
235 Bytes
import gradio as gr
import os
os.environ["TEMP"] = "/temp"
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
#demo.launch()
demo.launch(share=True, server_name="0.0.0.0")