Spell Word
spell_wordBreak text into individual characters with optional position indices for precise character-level verification.
Instructions
Break text into individual characters with optional indices.
Perfect for verifying character-by-character content.
Args:
text (string): The text to spell out
include_indices (boolean): Include position numbers (default: true)
Returns: Array of characters, indexed list, spelled out string.
Example: spell_word("cat") → ['c', 'a', 't'] with indices [0:'c', 1:'a', 2:'t']
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The text to spell out | |
| include_indices | No | Include position numbers |