import { z } from 'zod'; /** * Input schema for the SimpleLearningAgentExtract automation. */ export const SimpleLearningAgentExtractInputsSchema = z.object({ url: z.string().url().describe('URL to extract content from'), }); export type SimpleLearningAgentExtractInputs = z.infer; /** * Output schema for the SimpleLearningAgentExtract automation. */ export const SimpleLearningAgentExtractOutputsSchema = z.object({ heading: z.string().describe('Main heading text'), description: z.string().describe('Description paragraph text'), status: z.enum(['success', 'failure']).describe('Extraction status'), }); export type SimpleLearningAgentExtractOutputs = z.infer;