import { IsNotEmpty } from "class-validator"; /** * DTO for upserting an agent memory entry. * The value accepts any JSON-serializable data. */ export class UpsertAgentMemoryDto { @IsNotEmpty({ message: "value must not be empty" }) value!: unknown; }