alfraser commited on
Commit
68dcdec
·
1 Parent(s): 7c01db4

Updated front page so that I can toggle off security and the associated message on the front page will just disappear

Browse files
Files changed (1) hide show
  1. Home.py +8 -0
Home.py CHANGED
@@ -21,3 +21,11 @@ if st_setup("LLM Architecture Assessment", skip_login=True):
21
  - This project predominantly uses [LLama 2](https://ai.meta.com/llama/) and derivative models for language inference. Models are made available under the [Meta Llama license](https://ai.meta.com/llama/license/).
22
  - This application is built on [streamlit](https://streamlit.io).
23
  """)
 
 
 
 
 
 
 
 
 
21
  - This project predominantly uses [LLama 2](https://ai.meta.com/llama/) and derivative models for language inference. Models are made available under the [Meta Llama license](https://ai.meta.com/llama/license/).
22
  - This application is built on [streamlit](https://streamlit.io).
23
  """)
24
+
25
+ # Display access message if security is not disabled
26
+ running_local = 'running_local'
27
+ if running_local not in st.secrets:
28
+ st.write("""
29
+ ## Access
30
+ Some elements of this application are password protected. If you would like access to the project please contact me either via LinkedIn or the email address above, explaining why you want access and for how long and I will set that up for you. Thanks for your understanding :-)
31
+ """)