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: [/* ... */] });search_site, view_pricing, start_free_trial{
name: "search_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_site, view_pricing, start_free_trial<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_site" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_site",
"description": "Search speakai.co for a topic, feature, or help article.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "What to search for."
}
},
"required": [
"query"
]
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });search_site, view_pricing, start_free_trial{
name: "search_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));search_site, view_pricing, start_free_trial<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_site" tooldescription="...">
<!-- the same action, as UI -->
</form>