datascientist22 commited on
Commit
4d80be3
1 Parent(s): 7af9481

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import os
7
  from anthropic import Client # For Claude Haiku model
8
 
9
  # Claude API setup
10
- CLAUDE_API_KEY = st.secrets['claude_api_key'] # Store your Claude API key in Streamlit secrets
11
  client = Client(api_key=CLAUDE_API_KEY)
12
 
13
  # Main function for chatbot app
 
7
  from anthropic import Client # For Claude Haiku model
8
 
9
  # Claude API setup
10
+ CLAUDE_API_KEY = st.secrets['ANTHROPIC_API_KEY'] # Store your Claude API key in Streamlit secrets
11
  client = Client(api_key=CLAUDE_API_KEY)
12
 
13
  # Main function for chatbot app