chatbot-test / app.py
argami's picture
sharing
4de0ac4
Raw
History Blame Contribute Delete
245 Bytes
import os
import gradio as gr
import dotenv
dotenv.load_dotenv()
read_key = os.environ.get("HF_TOKEN", None)
# the space is displayed, but does nothing
demo = gr.load("argami/ba-chatbot", token=read_key, src="spaces")
demo.launch(share=True)