- Updated the builtinSearch function to delegate search operations to the websearch tool, improving modularity and maintainability. - Enhanced context handling by passing the agent context to builtinSearch, allowing for user and team identification during searches. - Added a new DecryptValue function in cloud.go to streamline value decryption, delegating to the existing config.DecryptValue method. - Updated .gitignore to include tools/README.md for better project organization.
21 lines
541 B
JSON
21 lines
541 B
JSON
{
|
|
"name": "processcall",
|
|
"description": "Execute a Yao process by name. Supports models, schemas, stores, flows, and scripts.",
|
|
"process": "tools.processcall",
|
|
"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"]
|
|
}
|