Type Alias: MultiTurnConfig
type MultiTurnConfig =
| z.objectOutputType<{
type: z.ZodOptional<z.ZodLiteral<"stateful">>;
response_id_field: z.ZodString;
request_id_field: z.ZodString;
}, z.ZodTypeAny, "passthrough">
| z.objectOutputType<{
type: z.ZodOptional<z.ZodLiteral<"stateless">>;
assistant_role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
}, z.ZodTypeAny, "passthrough">
| null;
Defined in: src/models/red-team-details.ts:233
Public response fields; the runtime schema assignment checks this structure.