ykl7 commited on
Commit
0194da3
·
1 Parent(s): fdbaaaf

retrieve api keys correctly from secret

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -195,13 +195,13 @@ if prompt := st.chat_input("Type here"):
195
  options["temperature"] = 0.0
196
 
197
  if selected_reasoner == "Claude Sonnet":
198
- api_key = os.getenv(st.session_state["claude_key"])
199
  options["API_KEY"] = api_key
200
  options["model_family"] = "Anthropic"
201
  options["model_name"] = "claude-3-5-sonnet-20240620"
202
 
203
  elif selected_reasoner == "GPT-4o":
204
- api_key = os.getenv(st.session_state["openai_key"])
205
  options["API_KEY"] = api_key
206
  options["model_family"] = "OpenAI"
207
  options["model_name"] = "gpt-4o-2024-05-13"
 
195
  options["temperature"] = 0.0
196
 
197
  if selected_reasoner == "Claude Sonnet":
198
+ api_key = os.getenv("claude_key")
199
  options["API_KEY"] = api_key
200
  options["model_family"] = "Anthropic"
201
  options["model_name"] = "claude-3-5-sonnet-20240620"
202
 
203
  elif selected_reasoner == "GPT-4o":
204
+ api_key = os.getenv("openai_key")
205
  options["API_KEY"] = api_key
206
  options["model_family"] = "OpenAI"
207
  options["model_name"] = "gpt-4o-2024-05-13"