csu / geochat /serve /gradio_trial.py
roselee's picture
Upload folder using huggingface_hub
2b49482 verified
raw
history blame contribute delete
158 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)