Test-bot / app.py
DinisCruz's picture
testing gradio basic auth
98fab5a
raw
history blame
360 Bytes
# import gradio as gr
#
# def greet(name):
# return "Hello ...." + name + "!!"
#
# iface = gr.Interface(fn=greet, inputs="text", outputs="text")
# iface.launch()
import gradio as gr
from test_bot.Gradio_Test import Gradio_Test
gradio_test = Gradio_Test()
demo = gradio_test.create_demo()
if __name__ == "__main__":
demo.launch("admin", "pass1234")