// This file is auto-generated by @hey-api/openapi-ts import { z } from 'zod' import { zGetChatAppParametersData, zGetChatAppParametersResponse } from '../../zod/api/parameters' import { base } from '../common' /** * Get Application Parameters Information * * Used at the start of entering the page to obtain information such as features, input parameter names, types, and default values. */ export const getChatAppParametersContract = base.route({ path: '/parameters', method: 'GET', operationId: 'getChatAppParameters', summary: 'Get Application Parameters Information', description: 'Used at the start of entering the page to obtain information such as features, input parameter names, types, and default values.', tags: ['Application'], }).input(zGetChatAppParametersData).output(z.object({ body: zGetChatAppParametersResponse, status: z.literal(200) }))