jostlebot commited on
Commit
f33abb4
·
1 Parent(s): 48edd44

Use anthropic_key secret name

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ from typing import List
14
  app = FastAPI()
15
 
16
  # Get API key from environment (set as HF Space secret)
17
- ANTHROPIC_API_KEY = os.environ.get("ANTHROPIC_API_KEY", "")
18
 
19
  class Message(BaseModel):
20
  role: str
 
14
  app = FastAPI()
15
 
16
  # Get API key from environment (set as HF Space secret)
17
+ ANTHROPIC_API_KEY = os.environ.get("anthropic_key", "")
18
 
19
  class Message(BaseModel):
20
  role: str