feat(group-agent): 更新卡片 & 过滤机器人消息
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 46s
Egg Server CI/CD / refresh-image (push) Successful in 14s
Egg Server CI/CD / fast-deploy (push) Successful in 3s

This commit is contained in:
zhaoyingbo 2024-10-15 01:33:25 +00:00
parent 9545670a51
commit 056d51f5a7
3 changed files with 28 additions and 4 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -28,19 +28,19 @@
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript-eslint": "^8.8.1"
"typescript-eslint": "^8.9.0"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.19.0",
"@dotenvx/dotenvx": "^1.19.2",
"@egg/hooks": "^1.2.0",
"@egg/lark-msg-tool": "^1.7.4",
"@egg/lark-msg-tool": "^1.8.0",
"@egg/logger": "^1.4.4",
"@egg/net-tool": "^1.9.2",
"@egg/path-tool": "^1.4.1",
"@langchain/core": "^0.3.10",
"@langchain/core": "^0.3.11",
"@langchain/openai": "^0.3.7",
"joi": "^17.13.3",
"langfuse-langchain": "^3.27.0",

View File

@ -9,6 +9,11 @@ interface Message {
time: string
}
/**
* JSON
* @param data - JSON
* @returns
*/
const extractTextFromJson = (data: any): string => {
let result = ""
@ -31,6 +36,11 @@ const extractTextFromJson = (data: any): string => {
return result
}
/**
*
* @param context -
* @returns
*/
const getChatHistory = async ({
larkService,
larkBody: {
@ -100,6 +110,11 @@ const getChatHistory = async ({
const messages: Message[] = []
/**
*
* @param chat -
* @returns
*/
const getText = (chat: LarkServer.MessageData) => {
let { text } = parseJsonString(chat.body.content, { text: "" }) as {
text: string
@ -119,13 +134,22 @@ const getChatHistory = async ({
return text.replace(/<[^>]+>/g, "")
}
/**
* post
* @param chat -
* @returns post
*/
const getPost = (chat: LarkServer.MessageData) => {
const content = parseJsonString(chat.body.content, null)
if (!content) return ""
return extractTextFromJson(content)
}
// 构建消息数组
for (const chat of filteredMsg) {
// 过滤掉机器人消息
const user = mentions.get(chat.sender.id)
if (!user) continue
messages.push({
user: mentions.get(chat.sender.id)!,
content: chat.msg_type === "text" ? getText(chat) : getPost(chat),