@devangkumar/dvai 1.0.8 → 1.0.9
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/package.json +4 -7
- package/src/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devangkumar/dvai",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A powerful AI assistant for your terminal",
|
|
3
|
+
"version": "1.0.9",
|
|
4
|
+
"description": "A powerful AI assistant for your terminal powered by Groq",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -14,15 +14,12 @@
|
|
|
14
14
|
"ai",
|
|
15
15
|
"cli",
|
|
16
16
|
"terminal",
|
|
17
|
-
"
|
|
17
|
+
"groq",
|
|
18
|
+
"llama"
|
|
18
19
|
],
|
|
19
20
|
"author": "",
|
|
20
21
|
"license": "ISC",
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@google/generative-ai": "^0.24.1",
|
|
23
|
-
"chalk": "^5.6.2",
|
|
24
|
-
"commander": "^14.0.3",
|
|
25
|
-
"devang-super-ai-terminal-v1": "^1.0.0",
|
|
26
23
|
"groq-sdk": "^1.2.0",
|
|
27
24
|
"inquirer": "^8.2.4",
|
|
28
25
|
"ora": "^5.4.1"
|
package/src/index.js
CHANGED
|
@@ -3,7 +3,6 @@ import ora from "ora";
|
|
|
3
3
|
import inquirer from "inquirer";
|
|
4
4
|
|
|
5
5
|
// --- CONFIGURATION ---
|
|
6
|
-
// Replace this with your encoded Groq API Key
|
|
7
6
|
const _k = "Z3NrX0pnUTkyZjdqUWVSYzRKdUtLQkt6V0dyeWIzRll3UmF0bDNkNDM4S21zZ0VGdFJscDIydmc=";
|
|
8
7
|
const HARDCODED_API_KEY = Buffer.from(_k, 'base64').toString();
|
|
9
8
|
|