3 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });get_gym_info, get_class_schedule<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_gym_info" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_gym_info",
"description": "Get key information about Armor Athletics (Tacoma, WA): location, contact details, opening hours, training programs, and frequently asked questions.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {
"readOnlyHint": true
}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });document.modelContext.dispatchEvent(new Event("toolchange"));get_gym_info, get_class_schedule<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_gym_info" tooldescription="...">
<!-- the same action, as UI -->
</form>