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': {
    'reason': {
      'type': 'string',
      'description': 'Reason for entering plan mode',
    },
  },
  'required': ['reason'],
  'additionalProperties': false,
};