@swizzy_ai/kit 1.0.1 → 1.0.2
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 +4 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,10 +47,10 @@ npm install @swizzy_ai/kit
|
|
|
47
47
|
For multimodal functions and different LLM providers, set all your API keys as environment variables:
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
#
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
# Include multiple API keys
|
|
51
|
+
OPENAI_API_KEY="your-openai-key"
|
|
52
|
+
ANTHROPIC_API_KEY="your-anthropic-key"
|
|
53
|
+
GEMINI_API_KEY="your-gemini-key"
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
Or configure them programmatically:
|
|
@@ -60,13 +60,6 @@ const { Wizard, Models } = require('@swizzy_ai/kit');
|
|
|
60
60
|
|
|
61
61
|
const wizard = new Wizard({
|
|
62
62
|
id: 'my-workflow',
|
|
63
|
-
apiKeys: {
|
|
64
|
-
openai: process.env.OPENAI_API_KEY,
|
|
65
|
-
anthropic: process.env.ANTHROPIC_API_KEY,
|
|
66
|
-
gemini: process.env.GEMINI_API_KEY,
|
|
67
|
-
groq: process.env.GROQ_API_KEY,
|
|
68
|
-
together: process.env.TOGETHER_API_KEY
|
|
69
|
-
}
|
|
70
63
|
});
|
|
71
64
|
```
|
|
72
65
|
|