mixpeek 0.81.270 → 0.81.271

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.
@@ -53,7 +53,7 @@ export interface StageParamsFeatureSearch {
53
53
  */
54
54
  'hard_timeout_ms'?: number;
55
55
  /**
56
- * OPTIONAL (BACKE-3177). Declare this retriever serves an INTERACTIVE surface (chat widget, live search-as-you-type): the stage opts out of the server-side extended degrade-retry and degrades at its first hard ceiling. Use when a caller abandons long before the two-attempt worst case (~20s) — a fast \'search is degraded\' beats a correct answer nobody waits for, and skips the wasted backend work. Leave False (default) for batch/backfill/API callers: the extended retry converts a slow-but-real backend into complete results instead of zero documents.
56
+ * OPTIONAL (BACKE-3177). Declare this retriever serves an INTERACTIVE surface (chat widget, live search-as-you-type): the stage opts out of the server-side extended degrade-retry and degrades at its first hard ceiling. Use when a caller abandons long before the two-attempt worst case (~20s) — a fast \'search is degraded\' beats a correct answer nobody waits for, and skips the wasted backend work. Leave False (default) for batch/backfill/API callers: the extended retry converts a slow-but-real backend into complete results instead of zero documents. CONSUMER CONTRACT: this opt-out converts a latency problem into a ZERO-RESULTS problem — a ceiling timeout now returns an empty set with status \'degraded\' and an explanatory warning. Any consumer that renders or synthesizes over the result set MUST read status/warnings before treating empty as no-match, or it will confidently tell users content does not exist during a backend brownout (hit in production within minutes of the first adoption; see BACKE-3177).
57
57
  * @type {boolean}
58
58
  * @memberof StageParamsFeatureSearch
59
59
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mixpeek",
3
- "version": "0.81.270",
3
+ "version": "0.81.271",
4
4
  "description": "Official Mixpeek TypeScript/JavaScript SDK for multimodal data processing and retrieval",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",