File size: 562 Bytes
0c05632 f4b75ae 0c05632 1bd00b9 9928cdb 1bd00b9 0c05632 e649ffb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
from gradio_client import Client
import os
HF_TOKEN = os.environ.get('HUGGING_FACE_HUB_TOKEN')
# gr.load(name="Attuned-Communication-Bot", src="spaces").launch()
# gr.load(name="spaces/attuned-ai/Attuned-Communication-Bot", hf_token=HF_TOKEN, src="spaces").launch()
demo = gr.load("gradio/Attuned-Communication-Bot", src="spaces")
demo.launch()
# login works
# def environ_auth(username, password):
# if username == os.environ["username"] and password == os.environ["password"]:
# return True
# else:
# return False |