@ctxprotocol/sdk 0.12.0 → 0.13.1
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/README.md +10 -14
- package/dist/client/index.cjs +3 -4
- package/dist/client/index.cjs.map +1 -1
- package/dist/client/index.d.cts +8 -6
- package/dist/client/index.d.ts +8 -6
- package/dist/client/index.js +3 -4
- package/dist/client/index.js.map +1 -1
- package/dist/contrib/search/index.d.cts +2 -2
- package/dist/contrib/search/index.d.ts +2 -2
- package/dist/index.cjs +3 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/dist/{types-Dw_bmVr4.d.cts → types-BStHo4tI.d.cts} +29 -58
- package/dist/{types-Dw_bmVr4.d.ts → types-BStHo4tI.d.ts} +29 -58
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -565,8 +565,6 @@ var Query = class {
|
|
|
565
565
|
includeData: opts.includeData,
|
|
566
566
|
includeDataUrl: opts.includeDataUrl,
|
|
567
567
|
includeDeveloperTrace: opts.includeDeveloperTrace,
|
|
568
|
-
queryDepth: opts.queryDepth,
|
|
569
|
-
debugScoutDeepMode: opts.debugScoutDeepMode,
|
|
570
568
|
stream: true
|
|
571
569
|
})
|
|
572
570
|
});
|
|
@@ -694,8 +692,9 @@ var ContextClient = class {
|
|
|
694
692
|
* Query resource for agentic queries (pay-per-response).
|
|
695
693
|
*
|
|
696
694
|
* Unlike `tools.execute()` which calls a single tool once, `query` sends
|
|
697
|
-
* a natural-language question and lets the server handle
|
|
698
|
-
*
|
|
695
|
+
* a natural-language question and lets the server handle discovery,
|
|
696
|
+
* metadata scout, clarification, iterative execution, and AI synthesis —
|
|
697
|
+
* one flat fee.
|
|
699
698
|
*/
|
|
700
699
|
query;
|
|
701
700
|
/**
|