get_word_frequency
Analyze text to identify and count the most frequent meaningful words, excluding common stopwords, returning ranked word-frequency pairs for content analysis.
Instructions
Most frequent words excluding stopwords. Returns [{word, count}].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| top_n | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |