@memnexus-ai/sdk 1.55.4 → 1.55.5
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
|
@@ -566,7 +566,7 @@ interface SearchRequest {
|
|
|
566
566
|
mode?: 'unified' | 'content' | 'facts';
|
|
567
567
|
/** Search algorithm: hybrid (combined, default), semantic (vector), or keyword (fulltext). */
|
|
568
568
|
searchMethod?: 'keyword' | 'semantic' | 'hybrid';
|
|
569
|
-
/**
|
|
569
|
+
/** Target number of results (defaults to 20). Note: when the v2.33 RRF consensus-exemption feature is enabled (CONSENSUS_EXEMPTION_ENABLED, off by default), a hybrid response MAY contain up to limit + CONSENSUS_EXEMPTION_MAX_PINS results — a small number of dual-primary-consensus documents appended after the top-`limit` window without evicting it. With the feature off, the response never exceeds `limit`. */
|
|
570
570
|
limit?: number;
|
|
571
571
|
/** Offset for pagination (defaults to 0) */
|
|
572
572
|
offset?: number;
|
|
@@ -798,7 +798,7 @@ interface ClaimGroup {
|
|
|
798
798
|
signals: ClaimGroupSignals;
|
|
799
799
|
}
|
|
800
800
|
interface SearchResponse {
|
|
801
|
-
/** Flattened search results with memory fields and search metadata */
|
|
801
|
+
/** Flattened search results with memory fields and search metadata. Length is normally ≤ the request `limit`; when the v2.33 consensus-exemption feature is enabled it may be up to limit + CONSENSUS_EXEMPTION_MAX_PINS (appended dual-primary-consensus documents). */
|
|
802
802
|
data: SearchResult[];
|
|
803
803
|
/** Search metadata including pagination, timing, and method */
|
|
804
804
|
meta: SearchMeta;
|
package/dist/index.d.ts
CHANGED
|
@@ -566,7 +566,7 @@ interface SearchRequest {
|
|
|
566
566
|
mode?: 'unified' | 'content' | 'facts';
|
|
567
567
|
/** Search algorithm: hybrid (combined, default), semantic (vector), or keyword (fulltext). */
|
|
568
568
|
searchMethod?: 'keyword' | 'semantic' | 'hybrid';
|
|
569
|
-
/**
|
|
569
|
+
/** Target number of results (defaults to 20). Note: when the v2.33 RRF consensus-exemption feature is enabled (CONSENSUS_EXEMPTION_ENABLED, off by default), a hybrid response MAY contain up to limit + CONSENSUS_EXEMPTION_MAX_PINS results — a small number of dual-primary-consensus documents appended after the top-`limit` window without evicting it. With the feature off, the response never exceeds `limit`. */
|
|
570
570
|
limit?: number;
|
|
571
571
|
/** Offset for pagination (defaults to 0) */
|
|
572
572
|
offset?: number;
|
|
@@ -798,7 +798,7 @@ interface ClaimGroup {
|
|
|
798
798
|
signals: ClaimGroupSignals;
|
|
799
799
|
}
|
|
800
800
|
interface SearchResponse {
|
|
801
|
-
/** Flattened search results with memory fields and search metadata */
|
|
801
|
+
/** Flattened search results with memory fields and search metadata. Length is normally ≤ the request `limit`; when the v2.33 consensus-exemption feature is enabled it may be up to limit + CONSENSUS_EXEMPTION_MAX_PINS (appended dual-primary-consensus documents). */
|
|
802
802
|
data: SearchResult[];
|
|
803
803
|
/** Search metadata including pagination, timing, and method */
|
|
804
804
|
meta: SearchMeta;
|