get_context_stats
Analyze context usage patterns by retrieving statistical information on counts, categories, and metrics within the Convolut Context Bank system.
Instructions
Get statistical information about contexts including counts, categories, and usage metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_range | No | Time range for statistics | 30d |
group_by | No | How to group the statistics | category |
Input Schema (JSON Schema)
{
"properties": {
"date_range": {
"default": "30d",
"description": "Time range for statistics",
"enum": [
"7d",
"30d",
"90d",
"1y",
"all"
],
"type": "string"
},
"group_by": {
"default": "category",
"description": "How to group the statistics",
"enum": [
"category",
"tags",
"date",
"favorite"
],
"type": "string"
}
},
"type": "object"
}