Spaces:
Running
Running
test login
Browse files
login.py
CHANGED
@@ -28,7 +28,9 @@ def login():
|
|
28 |
st.write("Now with the power of LangChain's Conversantional Agents, we are able to build "
|
29 |
"an RAG-enabled chatbot within one MyScale instance! ")
|
30 |
st.write("Log in to Chat with RAG!")
|
31 |
-
|
|
|
|
|
32 |
st.divider()
|
33 |
st.write("- [Privacy Policy](https://myscale.com/privacy/)\n"
|
34 |
"- [Terms of Sevice](https://myscale.com/terms/)")
|
|
|
28 |
st.write("Now with the power of LangChain's Conversantional Agents, we are able to build "
|
29 |
"an RAG-enabled chatbot within one MyScale instance! ")
|
30 |
st.write("Log in to Chat with RAG!")
|
31 |
+
print(f"client id {AUTH0_CLIENT_ID} domain {AUTH0_DOMAIN}")
|
32 |
+
user_info = login_button(AUTH0_CLIENT_ID, AUTH0_DOMAIN, "auth0")
|
33 |
+
st.write(user_info)
|
34 |
st.divider()
|
35 |
st.write("- [Privacy Policy](https://myscale.com/privacy/)\n"
|
36 |
"- [Terms of Sevice](https://myscale.com/terms/)")
|