Replies: 2 comments 2 replies
-
Can you log it with |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi @wadood42 I know its an old thread but I have the same issue. Did you find a solution? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is my Zod Schema:
const parser = StructuredOutputParser.fromZodSchema(
z.array(
z.object({
title: z.string(),
introduction: z.string(),
body: z.array(
z.object({
title: z.string(),
text: z.string(),
})
),
conclusion: z.string(),
})
)
);
llms's output:
Beta Was this translation helpful? Give feedback.
All reactions