yao/tools/docs/list.json
Max 7877797549 fix(tests): temporarily disable KB/DB search in tests
- Skipped tests related to KB/DB search functionality due to temporary unavailability.
- Updated test cases in chat_test.go, search_auth_integration_test.go, search_auto_full_test.go, and others to reflect this change.
- Adjusted search handling in search.go to limit search types to "web" only until KB/DB search is re-enabled.
2026-05-03 10:26:06 +08:00

20 lines
543 B
JSON

{
"name": "doc_list",
"description": "List or search Yao process documentation. Returns matching entries with name, group, and description.",
"process": "tools.doc_list",
"inputSchema": {
"type": "object",
"properties": {
"keyword": {
"type": "string",
"description": "Search keyword (empty to list all)"
},
"limit": {
"type": "integer",
"description": "Max results (default 20)",
"default": 20
}
}
},
"x-process-args": ["$args.keyword", "$args.limit"]
}