yao/tools/proc/schema.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

21 lines
543 B
JSON

{
"name": "process_call",
"description": "Execute a Yao process by name. Supports models, schemas, stores, flows, and scripts.",
"process": "tools.process_call",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Process name (e.g. models.user.Find)"
},
"args": {
"type": "array",
"description": "Process arguments",
"items": {}
}
},
"required": ["name"]
},
"x-process-args": ["$args.name", "$args.args"]
}