send_message
Send a text message to a QQ group or friend. Optionally wait for a reply to continue the conversation.
Instructions
Send a text message to a QQ group or friend, optionally waiting for a reply.
This is the primary tool for sending text messages. It supports message splitting via </分段> tags or punctuation-based chunking. The message is sent immediately and the bot's own message is written to the buffer.
To split a reply into multiple messages, insert </分段> at split points. For example: "Hi</分段>How are you?" sends two separate messages.
Behavior: rate-limited (60s dedup window), duplicate content within 60s is blocked. After sending, blocks until a reply arrives (unless wait_reply=False). The reply includes the full message objects.
Use send_image for images, send_voice for audio, send_file for files. For a standalone wait without sending, use wait_for_reply.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| content | Yes | ||
| target_type | No | group | |
| reply_to | No | ||
| split_content | No | ||
| num_chunks | No | ||
| wait_reply | No |