Check word count and reading time for a block of text, normalize its casing, then compare it to a reference string with edit distance.
Check word count, reading time, and character stats for the text.
text_stats({"text": "hello from an agent"})Normalize the text into a target case convention (snake, camel, title).
text_case({"text": "hello from an agent", "target": "snake"})Compare the normalized text against a reference string.
levenshtein({"a": "example", "b": "example"})