wechat_parse_sticker_placeholder
Parse text with sticker placeholders like [sticker:dog] into a JSON array of text and sticker parts.
Instructions
Parse sticker placeholders from text.
Example: "Hello [sticker:dog]" -> [{"type": "text", "content": "Hello "}, {"type": "sticker", "name": "dog"}]
Args: text: Text with sticker placeholders
Returns: JSON array of parsed parts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |