forked from share121/chat-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "koishi-plugin-chat-ai",
"description": "可以调用与 OpenAI 客户端兼容的 AI",
"version": "2.4.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "share121",
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/share121/chat-ai",
"repository": {
"type": "git",
"url": "https://github.com/share121/chat-ai.git"
},
"license": "MIT",
"keywords": [
"ai",
"deepseek",
"openai",
"chatbot",
"koishi",
"plugin"
],
"peerDependencies": {
"@koishijs/plugin-console": "^5.11.0",
"koishi": "^4.18.3"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@koishijs/client": "^5.11.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"typescript-eslint": "^8.22.0"
},
"dependencies": {
"@satorijs/element": "^3.1.7",
"@shikijs/markdown-it": "^2.2.0",
"@vueuse/core": "^12.5.0",
"async-mutex": "^0.5.0",
"markdown-it-async": "^2.0.0",
"openai": "^4.81.0"
},
"koishi": {
"description": {
"en": "Support AI streaming output, highly customizable, can call all AI compatible with OpenAI client, such as DeepSeek, ChatGPT, Tongyi Thousand Questions, Wenxin Yiyin, etc., with contextual memory, long-term memory",
"zh": "支持 AI 流式输出,高度自定义,可以调用与 OpenAI 客户端兼容所有的 AI,如 DeepSeek、ChatGPT、通义千问、文心一言等,拥有上下文记忆、长期记忆"
},
"service": {
"required": [
"database",
"console"
],
"implements": [
"ai"
]
}
}
}