Added Timestamp (#2579)

This commit is contained in:
Saket Aryan
2025-04-23 12:29:27 +05:30
committed by GitHub
parent c958664185
commit cc5686bd0d
3 changed files with 7 additions and 1 deletions

View File

@@ -164,6 +164,11 @@ mode: "wide"
<Tab title="TypeScript">
<Update label="2025-04-22" description="v2.1.19">
**Improvements:**
- **Client:** Added support for `timestamps`
</Update>
<Update label="2025-04-17" description="v2.1.18">
**Improvements:**
- **Client:** Added support for custom instructions

View File

@@ -1,6 +1,6 @@
{
"name": "mem0ai",
"version": "2.1.18",
"version": "2.1.19",
"description": "The Memory Layer For Your AI Apps",
"main": "./dist/index.js",
"module": "./dist/index.mjs",

View File

@@ -21,6 +21,7 @@ export interface MemoryOptions {
end_date?: string;
custom_categories?: custom_categories[];
custom_instructions?: string;
timestamp?: number;
}
export interface ProjectOptions {