fix(group-agent): 修复卡片报错
All checks were successful
Egg Server MIflow / build-image (push) Successful in 46s

This commit is contained in:
zhaoyingbo 2024-09-27 03:01:35 +00:00
parent eb0408fcd4
commit b4871e837a
5 changed files with 5 additions and 3 deletions

View File

@ -1 +1,2 @@
view
view
.git

BIN
bun.lockb

Binary file not shown.

View File

@ -38,7 +38,7 @@
"@egg/hooks": "^1.2.0",
"@egg/lark-msg-tool": "^1.4.0",
"@egg/logger": "^1.4.3",
"@egg/net-tool": "^1.6.5",
"@egg/net-tool": "^1.7.1",
"@egg/path-tool": "^1.4.1",
"@langchain/core": "^0.3.3",
"@langchain/openai": "^0.3.2",

View File

@ -34,4 +34,5 @@ export const manageActionMsg = async (ctx: Context.Data) => {
const actionType = getActionType(ctx.body)
if (actionType === "button") manageBtnClick(ctx)
if (actionType === "select_static") manageBtnClick(ctx)
return ctx.genResp.json()
}

View File

@ -26,7 +26,7 @@ export const manageBotReq = async (ctx: Context.Data): Promise<Response> => {
// 处理Event消息
if (getIsEventMsg(body)) manageEventMsg(ctx)
// 处理Action消息
if (getIsActionMsg(body)) manageActionMsg(ctx)
if (getIsActionMsg(body)) return await manageActionMsg(ctx)
// 返回成功响应
return ctx.genResp.ok()