get_player_wordcloud
Analyze a Dota 2 player's chat patterns by retrieving their most frequently used words from in-game communications using their Steam32 account ID.
Instructions
Get most common words used by player in chat.
Args:
account_id: Steam32 account ID of the player
Returns:
List of player's most frequently used words
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "integer"
}
},
"required": [
"account_id"
],
"type": "object"
}