// This file is auto-generated by @hey-api/openapi-ts import { oc } from '@orpc/contract' import * as z from 'zod' import { zPostRuleStructuredOutputGenerateBody, zPostRuleStructuredOutputGenerateResponse, } from './zod.gen' /** * Generate structured output rules using LLM */ export const post = oc .route({ description: 'Generate structured output rules using LLM', inputStructure: 'detailed', method: 'POST', operationId: 'postRuleStructuredOutputGenerate', path: '/rule-structured-output-generate', tags: ['console'], }) .input(z.object({ body: zPostRuleStructuredOutputGenerateBody })) .output(zPostRuleStructuredOutputGenerateResponse) export const ruleStructuredOutputGenerate = { post, } export const contract = { ruleStructuredOutputGenerate, }