(ctx context.Context, sessionId *string, msgId *string, content string)
| 768 | } |
| 769 | |
| 770 | func sendVisionTopicCard(ctx context.Context, |
| 771 | sessionId *string, msgId *string, content string) { |
| 772 | newCard, _ := newSendCard( |
| 773 | withHeader("🕵️图片推理结果", larkcard.TemplateBlue), |
| 774 | withMainText(content), |
| 775 | withNote("让LLM和你一起推理图片的内容~")) |
| 776 | replyCard(ctx, msgId, newCard) |
| 777 | } |
| 778 | |
| 779 | func sendHelpCard(ctx context.Context, |
| 780 | sessionId *string, msgId *string) { |
no test coverage detected