shivam-cli-generator 1.0.4 → 1.0.5

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/ai.js +1 -1
  2. package/package.json +1 -1
package/ai.js CHANGED
@@ -18,7 +18,7 @@ if (!apiKey) {
18
18
  }
19
19
 
20
20
  // ✅ Correct Groq client initialization
21
- const client = new Groq({ apiKey });
21
+ const client = new Groq({ apiKey: apiKey.trim() });
22
22
 
23
23
  // ✅ Use the inputURL if provided
24
24
  const inputURL = process.argv[2];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shivam-cli-generator",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "",
5
5
  "main": "ai.js",
6
6
  "type": "module",