Added New Param, output_format (#2639)

This commit is contained in:
Saket Aryan
2025-05-06 22:56:48 +05:30
committed by GitHub
parent 02a2b59555
commit 6e9f8cf218
4 changed files with 24 additions and 12 deletions

View File

@@ -22,12 +22,18 @@ export interface MemoryOptions {
custom_categories?: custom_categories[];
custom_instructions?: string;
timestamp?: number;
output_format?: string | OutputFormat;
}
export interface ProjectOptions {
fields?: string[];
}
export enum OutputFormat {
V1 = "v1.0",
V1_1 = "v1.1",
}
export enum API_VERSION {
V1 = "v1",
V2 = "v2",