Action that analyzes text content and provides various statistics including word count, character count, readability scores, and common word analysis.

Example

// Analyze a simple text
await runAction({
ActionName: 'Text Analyzer',
Params: [{
Name: 'Text',
Value: 'The quick brown fox jumps over the lazy dog.'
}]
});

// Analyze with custom options
await runAction({
ActionName: 'Text Analyzer',
Params: [{
Name: 'Text',
Value: 'Your text here...'
}, {
Name: 'IncludeWordFrequency',
Value: true
}]
});

Hierarchy (view full)

Constructors

Methods

  • Executes the action with the provided parameters.

    Parameters

    • params: RunActionParams<any>

      The action execution parameters including context

    Returns Promise<ActionResultSimple>

    Promise resolving to the action result