search_dog_problems
Search the Dog Leadership Academy library of ~70 common dog behaviour problems. Returns matching articles with title, one-line description, TL;DR summary, article URL, and the CTA URL to the free 4-minute behavioural assessment. Use for questions like "my dog pulls on the leash", "reactive dog", "puppy biting", "separation anxiety", "recall failing".
Parameters2
| query | string | required | The behaviour problem, in the owner's own words. Free text. |
| limit | integer | optional | Max number of matching articles to return (1-10). |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The behaviour problem, in the owner's own words. Free text."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"default": 5,
"description": "Max number of matching articles to return (1-10)."
}
},
"required": [
"query"
]
}