Merge branch 'feat/custom_schema_and_layout' of github.com:presenton/presenton into feat/custom_schema_and_layout

This commit is contained in:
sauravniraula 2025-07-17 03:15:28 +05:45
commit ede81ab9db
No known key found for this signature in database
GPG key ID: 60FCC1B5A5E83326

View file

@ -7,7 +7,7 @@ export const ImageSchema = z.object({
prompt: z.string().meta({
description: "Prompt used to generate the image",
}),
image_type:z.literal('image')
__image_type__:z.literal('image')
})
export const IconSchema = z.object({
@ -17,5 +17,5 @@ export const IconSchema = z.object({
prompt: z.string().meta({
description: "Prompt used to generate the icon",
}),
image_type:z.literal('icon')
__image_type__:z.literal('icon')
})