5 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
search_openai_docs: 3 parameters have no description (query, limit, cursor); lookup_page: 2 parameters have no description (path, anchor); navigate_to_page: 1 parameter has no description (intent); ge{
name: "search_openai_docs",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}search_openai_docs, lookup_page, lookup_context, navigate_to_page, generate_custom_guide<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_openai_docs" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_openai_docs",
"description": "Search OpenAI Developers and ChatGPT Learn documentation. Use lookup_page on a result to read the exact page content.",
"inputSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 500
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2000
}
},
"required": [
"query"
]
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}search_openai_docs: 3 parameters have no description (query, limit, cursor); lookup_page: 2 parameters have no description (path, anchor); navigate_to_page: 1 parameter has no description (intent); ge{
name: "search_openai_docs",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "navigate_to_page" /* short, unique, verb-based */ }search_openai_docs, lookup_page, lookup_context, navigate_to_page, generate_custom_guide<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_openai_docs" tooldescription="...">
<!-- the same action, as UI -->
</form>