@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.
Files changed (2) hide show
  1. package/README.md +4 -11
  2. 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
- # Required for multimodal features
51
- export OPENAI_API_KEY="your-openai-key"
52
- export ANTHROPIC_API_KEY="your-anthropic-key"
53
- export GEMINI_API_KEY="your-gemini-key"
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swizzy_ai/kit",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A TypeScript library for building wizard-like workflows with LLM integration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",