bearsprediction / app-test.py
whywynn's picture
Replacing test app.py file w/ bearsprediction
02592f3
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