inputSchema property

  1. @override
Map<String, dynamic> get inputSchema
override

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'],
};