word_cloud_by_post_ids
Generate word clouds to visualize the most frequent words in posts within a specified ID range, enabling analysis of common themes and language patterns.
Instructions
Generate a word cloud analysis showing the most common words used in posts within a specified ID range.
Args:
start_id: Starting post ID
end_id: Ending post ID
min_word_length: Minimum length of words to include (default: 3)
max_words: Maximum number of words to return (default: 100)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_id | Yes | ||
max_words | No | ||
min_word_length | No | ||
start_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_id": {
"title": "End Id",
"type": "integer"
},
"max_words": {
"default": 100,
"title": "Max Words",
"type": "integer"
},
"min_word_length": {
"default": 3,
"title": "Min Word Length",
"type": "integer"
},
"start_id": {
"title": "Start Id",
"type": "integer"
}
},
"required": [
"start_id",
"end_id"
],
"title": "word_cloud_by_post_idsArguments",
"type": "object"
}