Variable workingMemoryEntrySchemaConst
workingMemoryEntrySchema: ZodObject<
{
agent: ZodOptional<ZodString>;
created_at: ZodOptional<ZodString>;
expires_at: ZodOptional<ZodString>;
id: ZodString;
key: ZodOptional<ZodString>;
updated_at: ZodOptional<ZodString>;
value: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
agent?: string;
created_at?: string;
expires_at?: string;
id: string;
key?: string;
updated_at?: string;
value?: string;
},
{
agent?: string;
created_at?: string;
expires_at?: string;
id: string;
key?: string;
updated_at?: string;
value?: string;
},
> = ...
Runtime validator for WorkingMemoryEntry.