Anne31415 commited on
Commit
976634b
·
1 Parent(s): 5751fd4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -18,13 +18,15 @@ nltk.download('punkt')
18
  with st.sidebar:
19
  st.title(':orange_book: BinDoc GmbH')
20
 
21
- # API key input
22
- api_key = st.text_input('Enter your OpenAI API Key:', type='password')
23
-
24
- if api_key:
25
- os.environ['OPENAI_API_KEY'] = api_key
26
- else:
 
27
  st.warning('API key is required to proceed.')
 
28
 
29
  st.markdown("Experience the future of document interaction with the revolutionary")
30
  st.markdown("**BinDocs Chat App**.")
 
18
  with st.sidebar:
19
  st.title(':orange_book: BinDoc GmbH')
20
 
21
+ # Securely store the API key
22
+ st.secret("OPENAI_API_KEY")
23
+
24
+ # Retrieve the API key from st.secrets
25
+ api_key = st.secrets.get("OPENAI_API_KEY")
26
+
27
+ if not api_key:
28
  st.warning('API key is required to proceed.')
29
+ st.stop() # Stop the app if the API key is not provided
30
 
31
  st.markdown("Experience the future of document interaction with the revolutionary")
32
  st.markdown("**BinDocs Chat App**.")