@memnexus-ai/sdk 1.61.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1298,11 +1298,11 @@ interface DigestRequest {
|
|
|
1298
1298
|
recent?: string;
|
|
1299
1299
|
/** Filter to memories with these topics */
|
|
1300
1300
|
topics?: string[];
|
|
1301
|
-
/** Limit to specific conversation IDs */
|
|
1301
|
+
/** Limit to specific conversation IDs (max 10). Each id triggers its own hybrid search during gather, so the list is bounded to prevent a single-request memory blow-up. */
|
|
1302
1302
|
conversationIds?: string[];
|
|
1303
1303
|
/** Output format: "structured" (sections with headers), "narrative" (chronological prose), "timeline" (dated event list), "status-report" (done/in-progress/blocked) */
|
|
1304
1304
|
format?: 'structured' | 'narrative' | 'timeline' | 'status-report';
|
|
1305
|
-
/** Maximum number of memories to consider (1-
|
|
1305
|
+
/** Maximum number of memories to consider (1-100, default 100) */
|
|
1306
1306
|
maxSources?: number;
|
|
1307
1307
|
/** Whether to include source memory IDs in the response */
|
|
1308
1308
|
includeMemoryIds?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1298,11 +1298,11 @@ interface DigestRequest {
|
|
|
1298
1298
|
recent?: string;
|
|
1299
1299
|
/** Filter to memories with these topics */
|
|
1300
1300
|
topics?: string[];
|
|
1301
|
-
/** Limit to specific conversation IDs */
|
|
1301
|
+
/** Limit to specific conversation IDs (max 10). Each id triggers its own hybrid search during gather, so the list is bounded to prevent a single-request memory blow-up. */
|
|
1302
1302
|
conversationIds?: string[];
|
|
1303
1303
|
/** Output format: "structured" (sections with headers), "narrative" (chronological prose), "timeline" (dated event list), "status-report" (done/in-progress/blocked) */
|
|
1304
1304
|
format?: 'structured' | 'narrative' | 'timeline' | 'status-report';
|
|
1305
|
-
/** Maximum number of memories to consider (1-
|
|
1305
|
+
/** Maximum number of memories to consider (1-100, default 100) */
|
|
1306
1306
|
maxSources?: number;
|
|
1307
1307
|
/** Whether to include source memory IDs in the response */
|
|
1308
1308
|
includeMemoryIds?: boolean;
|