All checks were successful
ci/woodpecker/push/api Pipeline was successful
Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
11 lines
259 B
TypeScript
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;
|
|
}
|