Precommit fixes

This commit is contained in:
Tami Takamiya 2025-09-16 14:32:10 -04:00
parent ae975f96ce
commit e3f7cd318a
No known key found for this signature in database
GPG key ID: B23C22B8CB1E70C7
3 changed files with 52 additions and 2 deletions

View file

@ -6133,6 +6133,31 @@
"type": "boolean",
"default": true
},
"items": {
"oneOf": [
{
"type": "null"
},
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
},
{
"type": "array"
},
{
"type": "object"
}
]
},
"title": {
"type": "string"
},
"default": {
"oneOf": [
{
@ -7075,6 +7100,14 @@
"default": true,
"description": "Whether this parameter is required for tool invocation"
},
"items": {
"type": "object",
"description": "Type of the elements when parameter_type is array"
},
"title": {
"type": "string",
"description": "(Optional) Title of the parameter"
},
"default": {
"oneOf": [
{