(ctx context.Context, sessionId *string, msgId *string)
| 713 | } |
| 714 | |
| 715 | func sendPicCreateInstructionCard(ctx context.Context, |
| 716 | sessionId *string, msgId *string) { |
| 717 | newCard, _ := newSendCard( |
| 718 | withHeader("🖼️ 已进入图片创作模式", larkcard.TemplateBlue), |
| 719 | withPicResolutionBtn(sessionId), |
| 720 | withNote("提醒:回复文本或图片,让AI生成相关的图片。")) |
| 721 | replyCard(ctx, msgId, newCard) |
| 722 | } |
| 723 | |
| 724 | func sendVisionInstructionCard(ctx context.Context, |
| 725 | sessionId *string, msgId *string) { |
no test coverage detected