One tool registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
search_publication: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "search_publication",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}search_publication<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_publication" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_publication",
"description": "Search Leonidas Tsementzis's public articles, talks, photographs, and background information. Matching publication details and canonical paths are returned, and a visible result panel is displayed; this never contacts anyone or changes site content.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Words or a phrase to find in titles, summaries, topics, and excerpts.",
"maxLength": 240
},
"type": {
"type": "string",
"enum": [
"all",
"blog",
"talk",
"photo",
"about"
],
"description": "Optional publication type. Use all to search every public item."
},
"year_from": {
"type": "integer",
"minimum": 2000,
"maximum": 2100,
"description": "Optional first publication year, inclusive."
},
"year_to": {
"type": "integer",
"minimum": 2000,
"maximum": 2100,
"description": "Optional last publication year, inclusive."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Maximum number of returned and visible results. Defaults to 10."
}
}
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": false
}
}search_publication: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "search_publication",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));search_publication<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_publication" tooldescription="...">
<!-- the same action, as UI -->
</form>