diff_diff_words
Compare two text strings at the word level to identify added and removed words, generating an inline diff with clear visual indicators for changes.
Instructions
[diff] Compare two strings at the word level and return an inline diff. Added words are prefixed with '+', removed words with '-'. Returns {inline: str, added_words: int, removed_words: int}.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text_a | Yes | ||
| text_b | Yes |