mirror of
https://github.com/langgenius/dify.git
synced 2026-05-11 06:37:13 +08:00
16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
export const zGetAppPromptTemplatesQuery = z.object({
|
|
app_mode: z.string(),
|
|
has_context: z.string().optional().default('true'),
|
|
model_mode: z.string(),
|
|
model_name: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Prompt templates retrieved successfully
|
|
*/
|
|
export const zGetAppPromptTemplatesResponse = z.array(z.record(z.string(), z.unknown()))
|