schema: convertInputSchemaToSchema()

in src/utils/initExtraTools.ts [70:83]


      schema: convertInputSchemaToSchema({
        type: 'object',
        properties: {
          DateTimeDisplay: {
            type: 'array',
            description: '日期或时间数组',
            items: {
              type: 'string',
              description: '日期或时间,如:2025-01-02 或 2025-01-01 12:11:00',
            }
          },
        },
        required: ['DateTimeDisplay'],
      }),