xuj98 commited on
Commit
6281049
Β·
verified Β·
1 Parent(s): 6fd3ca3

test login

Browse files
Files changed (1) hide show
  1. login.py +3 -1
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
- login_button(AUTH0_CLIENT_ID, AUTH0_DOMAIN, "auth0")
 
 
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/)")