fetch_llm_data
Retrieve LLM data from starwind.dev with a rate limit of 3 requests per minute and optional caching. Configurable to fetch full or partial datasets for efficient integration with Starwind UI components.
Instructions
Fetches LLM data from starwind.dev (rate limited to 3 requests per minute, with caching)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full | No | Whether to fetch the full LLM data (defaults to false) |
Input Schema (JSON Schema)
{
"properties": {
"full": {
"description": "Whether to fetch the full LLM data (defaults to false)",
"type": "boolean"
}
},
"required": [],
"type": "object"
}