@morphllm/morphsdk 0.2.83 → 0.2.84
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/{chunk-RL4JBZ3T.js → chunk-262WRPS5.js} +2 -2
- package/dist/{chunk-HRK53IKL.js → chunk-D4EQYM6O.js} +2 -2
- package/dist/{chunk-P2O5JKE5.js → chunk-KRDIR7GG.js} +17 -8
- package/dist/chunk-KRDIR7GG.js.map +1 -0
- package/dist/{chunk-QOYI77CN.js → chunk-LF2X6YNP.js} +2 -2
- package/dist/{chunk-LXG37353.js → chunk-LX2WNS3L.js} +2 -2
- package/dist/{chunk-S27A4NQM.js → chunk-MJ7JODAY.js} +2 -2
- package/dist/{chunk-HPR6BJA7.js → chunk-N3RNM4A4.js} +5 -5
- package/dist/client.cjs +16 -7
- package/dist/client.cjs.map +1 -1
- package/dist/client.js +7 -7
- package/dist/index.cjs +16 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -7
- package/dist/tools/warp_grep/agent/runner.cjs +16 -7
- package/dist/tools/warp_grep/agent/runner.cjs.map +1 -1
- package/dist/tools/warp_grep/agent/runner.js +2 -2
- package/dist/tools/warp_grep/anthropic.cjs +16 -7
- package/dist/tools/warp_grep/anthropic.cjs.map +1 -1
- package/dist/tools/warp_grep/anthropic.js +4 -4
- package/dist/tools/warp_grep/client.cjs +16 -7
- package/dist/tools/warp_grep/client.cjs.map +1 -1
- package/dist/tools/warp_grep/client.js +3 -3
- package/dist/tools/warp_grep/gemini.cjs +16 -7
- package/dist/tools/warp_grep/gemini.cjs.map +1 -1
- package/dist/tools/warp_grep/gemini.js +3 -3
- package/dist/tools/warp_grep/harness.cjs +16 -7
- package/dist/tools/warp_grep/harness.cjs.map +1 -1
- package/dist/tools/warp_grep/harness.js +1 -1
- package/dist/tools/warp_grep/index.cjs +16 -7
- package/dist/tools/warp_grep/index.cjs.map +1 -1
- package/dist/tools/warp_grep/index.js +3 -3
- package/dist/tools/warp_grep/openai.cjs +16 -7
- package/dist/tools/warp_grep/openai.cjs.map +1 -1
- package/dist/tools/warp_grep/openai.js +4 -4
- package/dist/tools/warp_grep/vercel.cjs +16 -7
- package/dist/tools/warp_grep/vercel.cjs.map +1 -1
- package/dist/tools/warp_grep/vercel.js +4 -4
- package/package.json +1 -1
- package/dist/chunk-P2O5JKE5.js.map +0 -1
- /package/dist/{chunk-RL4JBZ3T.js.map → chunk-262WRPS5.js.map} +0 -0
- /package/dist/{chunk-HRK53IKL.js.map → chunk-D4EQYM6O.js.map} +0 -0
- /package/dist/{chunk-QOYI77CN.js.map → chunk-LF2X6YNP.js.map} +0 -0
- /package/dist/{chunk-LXG37353.js.map → chunk-LX2WNS3L.js.map} +0 -0
- /package/dist/{chunk-S27A4NQM.js.map → chunk-MJ7JODAY.js.map} +0 -0
- /package/dist/{chunk-HPR6BJA7.js.map → chunk-N3RNM4A4.js.map} +0 -0
|
@@ -2,14 +2,14 @@ import {
|
|
|
2
2
|
createWarpGrepTool,
|
|
3
3
|
execute,
|
|
4
4
|
warpGrepTool
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-262WRPS5.js";
|
|
6
6
|
import "../../chunk-KW7OEGZK.js";
|
|
7
7
|
import {
|
|
8
8
|
formatResult
|
|
9
|
-
} from "../../chunk-
|
|
10
|
-
import "../../chunk-
|
|
9
|
+
} from "../../chunk-D4EQYM6O.js";
|
|
10
|
+
import "../../chunk-LF2X6YNP.js";
|
|
11
11
|
import "../../chunk-PUGSTXLO.js";
|
|
12
|
-
import "../../chunk-
|
|
12
|
+
import "../../chunk-KRDIR7GG.js";
|
|
13
13
|
import "../../chunk-APP75CBN.js";
|
|
14
14
|
import "../../chunk-5QRN3JNB.js";
|
|
15
15
|
import {
|
|
@@ -648,14 +648,23 @@ async function toolRead(provider, args) {
|
|
|
648
648
|
|
|
649
649
|
// tools/warp_grep/agent/tools/list_directory.ts
|
|
650
650
|
async function toolListDirectory(provider, args) {
|
|
651
|
-
const
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
651
|
+
const maxResults = args.maxResults ?? AGENT_CONFIG.MAX_OUTPUT_LINES;
|
|
652
|
+
const initialDepth = args.maxDepth ?? AGENT_CONFIG.MAX_LIST_DEPTH;
|
|
653
|
+
async function getListRecursive(currentDepth) {
|
|
654
|
+
const entries = await provider.listDirectory({
|
|
655
|
+
path: args.path,
|
|
656
|
+
pattern: args.pattern ?? null,
|
|
657
|
+
maxResults,
|
|
658
|
+
maxDepth: currentDepth
|
|
659
|
+
});
|
|
660
|
+
if (entries.length >= maxResults && currentDepth > 0) {
|
|
661
|
+
return getListRecursive(currentDepth - 1);
|
|
662
|
+
}
|
|
663
|
+
return { entries };
|
|
664
|
+
}
|
|
665
|
+
const { entries: list } = await getListRecursive(initialDepth);
|
|
657
666
|
if (!list.length) return "empty";
|
|
658
|
-
if (list.length >=
|
|
667
|
+
if (list.length >= maxResults) {
|
|
659
668
|
return "query not specific enough, tool called tried to return too much context and failed";
|
|
660
669
|
}
|
|
661
670
|
return list.map((e) => {
|