ai-openai 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,8 @@ Simplifies calling AI models for chat responses, learning advice, and more.
|
|
|
16
16
|
## Setup
|
|
17
17
|
|
|
18
18
|
1. Get your free HuggingFace token at https://huggingface.co/settings/tokens
|
|
19
|
-
2. Create a .env file
|
|
19
|
+
2. Create a .env file and add your HuggingFace token:
|
|
20
|
+
HUGGINGFACE=your_token_here
|
|
20
21
|
3. Then run your project.
|
|
21
22
|
|
|
22
23
|
## Usage
|
|
@@ -36,4 +37,4 @@ require("dotenv").config();
|
|
|
36
37
|
## Installation
|
|
37
38
|
|
|
38
39
|
```bash
|
|
39
|
-
npm install openai
|
|
40
|
+
npm install ai-openai
|