Spaces:
Running
Running
retrieve api keys correctly from secret
Browse files
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(
|
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(
|
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"
|