Files
stack/apps/api/src/agent-memory/dto/upsert-agent-memory.dto.ts
T
2026-03-01 02:20:15 +00:00

11 lines
259 B
TypeScript

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;
}