-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.81 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sentra-agent",
"version": "1.0.0",
"description": "Full-stack AI Agent solution with multi-platform adaptation, tool enhancement, knowledge graph, and anthropomorphic interaction",
"main": "dist/Main.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/Main.js",
"test:sentra-mcp-sdk": "node test-sentra-mcp-sdk.mjs",
"demo:action-learner": "node dist/utils/actionLearnerDemo.js",
"demo:action-learner-sim": "node dist/utils/actionLearnerFeedbackSimulation.js",
"demo:action-learner-xml": "node dist/utils/actionLearnerXmlDemo.js",
"demo:action-learner-payload": "node dist/utils/actionLearnerPayloadAblation.js",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:stop": "pm2 stop sentra-agent",
"pm2:restart": "pm2 restart sentra-agent",
"pm2:reload": "pm2 reload sentra-agent",
"pm2:delete": "pm2 delete sentra-agent",
"pm2:logs": "pm2 logs sentra-agent",
"pm2:monit": "pm2 monit",
"pm2:status": "pm2 status"
},
"dependencies": {
"@axync/extract-json": "^1.1.3",
"@langchain/core": "^0.2.0",
"@langchain/openai": "^0.2.0",
"@microsoft/recognizers-text-date-time": "^1.3.2",
"@microsoft/recognizers-text-suite": "^1.3.1",
"axios": "^1.13.5",
"bad-words": "^4.0.0",
"bad-words-chinese": "^1.0.2",
"chalk": "^5.6.2",
"chrono-node": "^2.6.3",
"chrono-node-zh": "^1.0.1",
"commander": "^12.0.0",
"compromise": "^14.14.3",
"dotenv": "^16.4.0",
"emoji-regex": "^10.3.0",
"eventsource-parser": "^3.0.6",
"extract-path": "^2.0.0",
"fast-xml-parser": "^4.3.2",
"fastest-levenshtein": "^1.0.16",
"fastscan": "^1.0.6",
"franc": "^6.2.0",
"get-urls": "^11.0.0",
"image-size": "^2.0.2",
"ioredis": "^5.8.0",
"json5": "^2.2.3",
"langchain": "^0.2.0",
"leven": "^4.0.0",
"linkify-it": "^5.0.0",
"luxon": "^3.4.4",
"mime-types": "^3.0.2",
"natural": "^6.5.0",
"node-fetch": "^3.3.2",
"segment": "^0.1.3",
"segmentit": "^2.0.3",
"sensitive-word-filter": "^1.0.2",
"sentiment-zh_cn_web": "^1.0.2",
"sentra-mcp": "./sentra-mcp",
"sentra-prompts": "./sentra-prompts",
"sentra-rag": "./sentra-rag",
"stopword": "^3.1.4",
"stopwords-iso": "^1.1.0",
"string-similarity": "^4.0.4",
"tiktoken": "^1.0.10",
"wink-bm25-text-search": "^3.1.2",
"wink-nlp-utils": "^2.1.0",
"ws": "^8.18.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.2",
"nodemon": "^3.0.0",
"typescript": "^5.6.3"
},
"keywords": [
"ai-agent",
"chatbot",
"llm",
"neo4j",
"redis",
"qq",
"wechat",
"openai",
"anthropomorphic",
"knowledge-graph",
"multimodal",
"rag"
],
"author": "Sentra Team",
"license": "SEE LICENSE IN LICENSE"
}