@usewhisper/sdk 3.9.0 → 3.10.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/index.d.mts +3 -0
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1373,6 +1373,8 @@ interface QueryParams {
|
|
|
1373
1373
|
compress?: boolean;
|
|
1374
1374
|
compression_strategy?: "summarize" | "extract" | "delta" | "adaptive";
|
|
1375
1375
|
use_cache?: boolean;
|
|
1376
|
+
include_parent_content?: boolean;
|
|
1377
|
+
retrieval_profile?: "legacy" | "precision_v1";
|
|
1376
1378
|
}
|
|
1377
1379
|
interface QueryResult {
|
|
1378
1380
|
results: Array<{
|
|
@@ -1400,6 +1402,7 @@ interface QueryResult {
|
|
|
1400
1402
|
matched_sources?: number;
|
|
1401
1403
|
};
|
|
1402
1404
|
profile?: string;
|
|
1405
|
+
retrieval_profile?: "legacy" | "precision_v1";
|
|
1403
1406
|
compression?: any;
|
|
1404
1407
|
timing?: {
|
|
1405
1408
|
cache_check_ms?: number;
|
package/index.d.ts
CHANGED
|
@@ -1373,6 +1373,8 @@ interface QueryParams {
|
|
|
1373
1373
|
compress?: boolean;
|
|
1374
1374
|
compression_strategy?: "summarize" | "extract" | "delta" | "adaptive";
|
|
1375
1375
|
use_cache?: boolean;
|
|
1376
|
+
include_parent_content?: boolean;
|
|
1377
|
+
retrieval_profile?: "legacy" | "precision_v1";
|
|
1376
1378
|
}
|
|
1377
1379
|
interface QueryResult {
|
|
1378
1380
|
results: Array<{
|
|
@@ -1400,6 +1402,7 @@ interface QueryResult {
|
|
|
1400
1402
|
matched_sources?: number;
|
|
1401
1403
|
};
|
|
1402
1404
|
profile?: string;
|
|
1405
|
+
retrieval_profile?: "legacy" | "precision_v1";
|
|
1403
1406
|
compression?: any;
|
|
1404
1407
|
timing?: {
|
|
1405
1408
|
cache_check_ms?: number;
|