Skip to content

Commit 6afa18b

Browse files
committed
use OPENAI_API_KEY env var
1 parent 72a8072 commit 6afa18b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sales/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ First, install all the necessary dependencies:
1111
pip install -r requirements.txt
1212
```
1313
## 2. Set Your OpenAI API Key
14-
To utilize OpenAI in this template, you need to set your OPEN_AI_KEY environment variable. Here’s how you can set it based on your operating system:
14+
To utilize OpenAI in this template, you need to set your OPENAI_API_KEY environment variable. Here’s how you can set it based on your operating system:
1515

1616
### On Linux / macOS:
1717
```shell
18-
export OPEN_AI_KEY=your-openai-api-key
18+
export OPENAI_API_KEY=your-openai-api-key
1919
```
2020

2121
### On Windows (Command Prompt):
2222
```shell
23-
set OPEN_AI_KEY=your-openai-api-key
23+
set OPENAI_API_KEY=your-openai-api-key
2424
```
2525

2626
### On Windows (PowerShell):
2727
```shell
28-
$env:OPEN_AI_KEY="your-openai-api-key"
28+
$env:OPENAI_API_KEY="your-openai-api-key"
2929
```
3030

3131
### 3. Run the App

0 commit comments

Comments
 (0)