Anne31415 commited on
Commit
11b20cc
·
1 Parent(s): 595558f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,10 +19,10 @@ with st.sidebar:
19
  st.title(':orange_book: BinDoc GmbH')
20
 
21
  # Securely store the API key
22
- st.secrets("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.')
 
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["OPENAI_API_KEY"]
26
 
27
  if not api_key:
28
  st.warning('API key is required to proceed.')