agenticaichat 1.0.5 → 1.0.6

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 +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -92,7 +92,7 @@ npm run dev
92
92
  For all frameworks, you need a backend endpoint that handles chatbot queries. The setup wizard generates configuration files, but you must implement the API route yourself unless using Next.js.
93
93
 
94
94
  1. Run the setup wizard to generate `.env.chatbot` and `chatbot-config.json`:
95
-
95
+
96
96
  ```bash
97
97
  npx agenticai-setup
98
98
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenticaichat",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "AI-powered chatbot for business analytics with natural language database queries",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -73,11 +73,14 @@
73
73
  "@google/generative-ai": "^0.24.1",
74
74
  "axios": "^1.13.2",
75
75
  "better-sqlite3": "^12.5.0",
76
+ "chalk": "^4.1.2",
76
77
  "dotenv": "^17.2.3",
78
+ "inquirer": "^8.2.6",
77
79
  "lucide-react": "^0.559.0",
78
80
  "mongodb": "^7.0.0",
79
81
  "mysql2": "^3.15.3",
80
82
  "openai": "^6.10.0",
83
+ "ora": "^5.4.1",
81
84
  "pg": "^8.16.3",
82
85
  "react": ">=18.0.0",
83
86
  "react-dom": ">=18.0.0"
@@ -89,10 +92,7 @@
89
92
  "@types/pg": "^8.15.6",
90
93
  "@types/react": "^18.2.0",
91
94
  "@types/react-dom": "^18.2.0",
92
- "chalk": "^4.1.2",
93
95
  "commander": "^11.1.0",
94
- "inquirer": "^8.2.6",
95
- "ora": "^5.4.1",
96
96
  "ts-node": "^10.9.2",
97
97
  "typescript": "^5.3.0"
98
98
  },