Variable: textAnalyzeTool
ts
const textAnalyzeTool: Tool<SpooledJsonArtifact<unknown>>;Analyze text and return statistics as a JSON document.
Remarks
Reports character counts (with and without spaces), word/sentence/paragraph/line counts, unique word count, average word length, a rough token estimate (4 chars/token), and a set of character-class booleans (is_all_alpha, is_all_ascii, etc.).
Output is JSON, so the artifact constructor is set to @nhtio/adk!SpooledJsonArtifact — consumer code can read the result back as a parsed record without re-parsing.