Spaces:
Running
Running
Update README with correct environment variable name
Browse files
README.md
CHANGED
@@ -25,13 +25,13 @@ A Streamlit application that helps parents experience unique parenting support a
|
|
25 |
1. Create a `.env` file in the root directory
|
26 |
2. Add your Anthropic API key:
|
27 |
```
|
28 |
-
|
29 |
```
|
30 |
|
31 |
### Hugging Face Spaces
|
32 |
1. Go to your Space's Settings
|
33 |
2. Under "Repository secrets", add:
|
34 |
-
- Name: `
|
35 |
- Value: Your Anthropic API key
|
36 |
|
37 |
### Testing API Key
|
@@ -52,4 +52,4 @@ streamlit run src/streamlit_app.py
|
|
52 |
```
|
53 |
|
54 |
## Deployment
|
55 |
-
The app is configured for deployment on Hugging Face Spaces. Make sure to set the `
|
|
|
25 |
1. Create a `.env` file in the root directory
|
26 |
2. Add your Anthropic API key:
|
27 |
```
|
28 |
+
ANTHROPIC_KEY=your_api_key_here
|
29 |
```
|
30 |
|
31 |
### Hugging Face Spaces
|
32 |
1. Go to your Space's Settings
|
33 |
2. Under "Repository secrets", add:
|
34 |
+
- Name: `ANTHROPIC_KEY`
|
35 |
- Value: Your Anthropic API key
|
36 |
|
37 |
### Testing API Key
|
|
|
52 |
```
|
53 |
|
54 |
## Deployment
|
55 |
+
The app is configured for deployment on Hugging Face Spaces. Make sure to set the `ANTHROPIC_KEY` in the Space's secrets before deploying.
|