Step 3 partially implemented.

This commit is contained in:
Jim Lancaster
2026-06-24 16:59:33 -05:00
parent 8c4a82ec35
commit c6d95f5e73
8 changed files with 456 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "search_docs",
"description": "Search internal docs with a short safe query.",
"parameters": {
"type": "object",
"additionalProperties": false,
"properties": {
"query": {
"type": "string",
"description": "Short neutral search phrase",
"minLength": 1,
"maxLength": 180
},
"scope": {
"type": "string",
"enum": ["public", "internal"]
},
"top_k": {
"type": "integer",
"minimum": 1,
"maximum": 10
}
},
"required": ["query", "scope"]
}
}