inputSchema property
JSON Schema for the tool's input parameters.
Implementation
@override
Map<String, dynamic> get inputSchema => {
'type': 'object',
'properties': {
'plan_summary': {
'type': 'string',
'description': 'Summary of the plan to execute',
},
},
'required': ['plan_summary'],
'additionalProperties': false,
};