@agient/chatbot 1.1.0 → 1.2.0
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 +14 -38
- package/dist/index.d.ts +96 -118
- package/dist/index.js +1 -10395
- package/package.json +14 -34
package/package.json
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agient/chatbot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "An AI chatbot that will perform actions on the behalf of users to help them get things done",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"homepage": "https://agient.dev",
|
|
7
|
-
"author": {
|
|
8
|
-
"name": "Eirik Måseidvåg",
|
|
9
|
-
"email": "eirik.maaseidvaag@gmail.com",
|
|
10
|
-
"url": "https://github.com/Eirmas"
|
|
11
|
-
},
|
|
12
5
|
"keywords": [
|
|
13
6
|
"chatbot",
|
|
14
7
|
"ai",
|
|
@@ -16,10 +9,15 @@
|
|
|
16
9
|
"rag-agent",
|
|
17
10
|
"agient"
|
|
18
11
|
],
|
|
12
|
+
"homepage": "https://agient.dev",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Eirik Måseidvåg",
|
|
16
|
+
"email": "eirik.maaseidvaag@gmail.com",
|
|
17
|
+
"url": "https://github.com/Eirmas"
|
|
18
|
+
},
|
|
19
|
+
"sideEffects": false,
|
|
19
20
|
"type": "module",
|
|
20
|
-
"main": "./dist/index.js",
|
|
21
|
-
"module": "./dist/index.js",
|
|
22
|
-
"types": "./dist/index.d.ts",
|
|
23
21
|
"exports": {
|
|
24
22
|
".": {
|
|
25
23
|
"types": "./dist/index.d.ts",
|
|
@@ -28,31 +26,13 @@
|
|
|
28
26
|
},
|
|
29
27
|
"./package.json": "./package.json"
|
|
30
28
|
},
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
"main": "./dist/index.js",
|
|
30
|
+
"module": "./dist/index.js",
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
34
32
|
"files": [
|
|
35
|
-
"dist"
|
|
36
|
-
"README.md",
|
|
37
|
-
"LICENSE"
|
|
33
|
+
"dist"
|
|
38
34
|
],
|
|
39
|
-
"release": {
|
|
40
|
-
"branches": [
|
|
41
|
-
"main",
|
|
42
|
-
{
|
|
43
|
-
"name": "next",
|
|
44
|
-
"prerelease": true
|
|
45
|
-
}
|
|
46
|
-
]
|
|
47
|
-
},
|
|
48
35
|
"dependencies": {
|
|
49
|
-
"@
|
|
50
|
-
"@vueuse/core": "13.9.0",
|
|
51
|
-
"dompurify": "3.2.7",
|
|
52
|
-
"marked": "16.3.0",
|
|
53
|
-
"socket.io-client": "4.8.1",
|
|
54
|
-
"uuid": "13.0.0",
|
|
55
|
-
"vue": "3.5.22",
|
|
56
|
-
"vue3-lottie": "3.3.1"
|
|
36
|
+
"@ai-sdk/provider-utils": "^4.0.19"
|
|
57
37
|
}
|
|
58
38
|
}
|