list_examples
Discover and filter Ilograph example diagrams by complexity level (beginner, intermediate, advanced) to simplify learning and implementation.
Instructions
Lists available Ilograph example diagrams, optionally filtering by category.
Args:
category: Filter examples by complexity ('beginner', 'intermediate', 'advanced').
Returns:
A dictionary containing a list of available examples and a message guiding the user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"anyOf": [
{
"enum": [
"beginner",
"intermediate",
"advanced"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category"
}
},
"type": "object"
}