(ctx context.Context, sessionId *string, msgId *string, content string)
| 704 | } |
| 705 | |
| 706 | func sendSystemInstructionCard(ctx context.Context, |
| 707 | sessionId *string, msgId *string, content string) { |
| 708 | newCard, _ := newSendCard( |
| 709 | withHeader("🥷 已进入角色扮演模式", larkcard.TemplateIndigo), |
| 710 | withMainText(content), |
| 711 | withNote("请注意,这将开始一个全新的对话,您将无法利用之前话题的历史信息")) |
| 712 | replyCard(ctx, msgId, newCard) |
| 713 | } |
| 714 | |
| 715 | func sendPicCreateInstructionCard(ctx context.Context, |
| 716 | sessionId *string, msgId *string) { |
no test coverage detected