- 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.
16 lines
430 B
JSON
16 lines
430 B
JSON
{
|
|
"name": "doc_inspect",
|
|
"description": "Get detailed documentation for a specific Yao process, including arguments, return type, and methods.",
|
|
"process": "tools.doc_inspect",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "Process name (e.g. models.user.Find)"
|
|
}
|
|
},
|
|
"required": ["name"]
|
|
},
|
|
"x-process-args": ["$args.name"]
|
|
}
|