chore: update larkService message in sendFunctionSelector
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 4s

This commit is contained in:
zhaoyingbo 2024-10-12 10:41:05 +00:00
parent 366766104c
commit c41f6744fa
2 changed files with 13 additions and 7 deletions

View File

@ -32,7 +32,8 @@ const sendGroupSelector = async ({
const sendFunctionSelector = async ({
logger,
larkCard,
larkBody: { actionOption },
larkService,
larkBody: { actionOption, messageId },
}: Context.Data) => {
const cardGender = larkCard.child("groupAgent")
logger.debug(`Action option: ${JSON.stringify(actionOption)}`)
@ -50,11 +51,16 @@ const sendFunctionSelector = async ({
value: "summary-gpt-4o|总结消息",
},
]
return cardGender.genCard("functionSelector", {
functions,
chatId,
chatName,
})
larkService.message.update(
messageId,
cardGender.genCard("functionSelector", {
functions,
chatId,
chatName,
})
)
return {}
}
/**

View File

@ -27,5 +27,5 @@ export const manageBotReq = async (ctx: Context.Data): Promise<Response> => {
if (larkBody.isActionMsg) return await manageActionMsg(ctx)
// 返回成功响应
return ctx.genResp.custom("{}")
return ctx.genResp.ok()
}