aymonc's picture
Create app.py
97bbfd7
raw
history blame
279 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
#demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo = gr.load("PharmaAI/private_gradio_test", inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch(show_api=False)