@agient/chatbot 1.0.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 +9 -0
- package/package.json +55 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="#">
|
|
3
|
+
<img src=".github/assets/hi.gif" width="150" height="150" />
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
# @agient/chatbot
|
|
8
|
+
|
|
9
|
+
Create AI chatbot assitstants with minimal setup. Implement tool that will allow your chatbots to perform actions or fetch data from your website
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agient/chatbot",
|
|
3
|
+
"version": "1.0.0",
|
|
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
|
+
"keywords": [
|
|
13
|
+
"chatbot",
|
|
14
|
+
"ai",
|
|
15
|
+
"llm-agent",
|
|
16
|
+
"rag-agent",
|
|
17
|
+
"agient"
|
|
18
|
+
],
|
|
19
|
+
"type": "module",
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"module": "./dist/index.js",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"default": "./dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./package.json": "./package.json"
|
|
30
|
+
},
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist",
|
|
36
|
+
"!**/*.tsbuildinfo"
|
|
37
|
+
],
|
|
38
|
+
"release": {
|
|
39
|
+
"branches": [
|
|
40
|
+
"main",
|
|
41
|
+
{
|
|
42
|
+
"name": "next",
|
|
43
|
+
"prerelease": true
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@tailwindcss/vite": "4.1.7",
|
|
49
|
+
"@vueuse/core": "13.2.0",
|
|
50
|
+
"socket.io-client": "4.8.1",
|
|
51
|
+
"uuid": "11.1.0",
|
|
52
|
+
"vue": "3.5.14"
|
|
53
|
+
},
|
|
54
|
+
"packageManager": "pnpm@10.11.0"
|
|
55
|
+
}
|