@probelabs/probe 0.6.0-rc271 → 0.6.0-rc272
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/bin/binaries/probe-v0.6.0-rc272-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/{probe-v0.6.0-rc271-aarch64-unknown-linux-musl.tar.gz → probe-v0.6.0-rc272-aarch64-unknown-linux-musl.tar.gz} +0 -0
- package/bin/binaries/probe-v0.6.0-rc272-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc272-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc272-x86_64-unknown-linux-musl.tar.gz +0 -0
- package/build/agent/index.js +1 -1
- package/build/tools/vercel.js +1 -1
- package/cjs/agent/ProbeAgent.cjs +18 -26
- package/cjs/index.cjs +18 -26
- package/package.json +1 -1
- package/src/tools/vercel.js +1 -1
- package/bin/binaries/probe-v0.6.0-rc271-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc271-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc271-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc271-x86_64-unknown-linux-musl.tar.gz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/build/agent/index.js
CHANGED
|
@@ -9147,7 +9147,7 @@ function buildSearchDelegateTask({ searchQuery, searchPath, exact, language, all
|
|
|
9147
9147
|
"",
|
|
9148
9148
|
"Strategy for complex queries:",
|
|
9149
9149
|
"1. Analyze the query - identify key concepts, entities, and relationships",
|
|
9150
|
-
'2. Run focused searches for each concept (e.g., "
|
|
9150
|
+
'2. Run focused searches for each independent concept (e.g., for "how do payments work and how are emails sent", search "payments" and "emails" separately since they are unrelated)',
|
|
9151
9151
|
"3. Use extract to verify relevance of promising results",
|
|
9152
9152
|
"4. Combine all relevant targets in your final response",
|
|
9153
9153
|
"",
|
package/build/tools/vercel.js
CHANGED
|
@@ -145,7 +145,7 @@ function buildSearchDelegateTask({ searchQuery, searchPath, exact, language, all
|
|
|
145
145
|
'',
|
|
146
146
|
'Strategy for complex queries:',
|
|
147
147
|
'1. Analyze the query - identify key concepts, entities, and relationships',
|
|
148
|
-
'2. Run focused searches for each concept (e.g., "
|
|
148
|
+
'2. Run focused searches for each independent concept (e.g., for "how do payments work and how are emails sent", search "payments" and "emails" separately since they are unrelated)',
|
|
149
149
|
'3. Use extract to verify relevance of promising results',
|
|
150
150
|
'4. Combine all relevant targets in your final response',
|
|
151
151
|
'',
|
package/cjs/agent/ProbeAgent.cjs
CHANGED
|
@@ -11508,22 +11508,16 @@ var init_JsonShapeDeserializer = __esm({
|
|
|
11508
11508
|
if (Array.isArray(value) && ns.isListSchema()) {
|
|
11509
11509
|
const listMember = ns.getValueSchema();
|
|
11510
11510
|
const out = [];
|
|
11511
|
-
const sparse = !!ns.getMergedTraits().sparse;
|
|
11512
11511
|
for (const item of value) {
|
|
11513
|
-
|
|
11514
|
-
out.push(this._read(listMember, item));
|
|
11515
|
-
}
|
|
11512
|
+
out.push(this._read(listMember, item));
|
|
11516
11513
|
}
|
|
11517
11514
|
return out;
|
|
11518
11515
|
}
|
|
11519
11516
|
if (ns.isMapSchema()) {
|
|
11520
11517
|
const mapMember = ns.getValueSchema();
|
|
11521
11518
|
const out = {};
|
|
11522
|
-
const sparse = !!ns.getMergedTraits().sparse;
|
|
11523
11519
|
for (const [_k, _v] of Object.entries(value)) {
|
|
11524
|
-
|
|
11525
|
-
out[_k] = this._read(mapMember, _v);
|
|
11526
|
-
}
|
|
11520
|
+
out[_k] = this._read(mapMember, _v);
|
|
11527
11521
|
}
|
|
11528
11522
|
return out;
|
|
11529
11523
|
}
|
|
@@ -13172,18 +13166,18 @@ var init_XmlShapeDeserializer = __esm({
|
|
|
13172
13166
|
return value;
|
|
13173
13167
|
}
|
|
13174
13168
|
if (typeof value === "object") {
|
|
13175
|
-
const sparse = !!traits.sparse;
|
|
13176
13169
|
const flat = !!traits.xmlFlattened;
|
|
13177
13170
|
if (ns.isListSchema()) {
|
|
13178
13171
|
const listValue = ns.getValueSchema();
|
|
13179
13172
|
const buffer2 = [];
|
|
13180
13173
|
const sourceKey = listValue.getMergedTraits().xmlName ?? "member";
|
|
13181
13174
|
const source = flat ? value : (value[0] ?? value)[sourceKey];
|
|
13175
|
+
if (source == null) {
|
|
13176
|
+
return buffer2;
|
|
13177
|
+
}
|
|
13182
13178
|
const sourceArray = Array.isArray(source) ? source : [source];
|
|
13183
13179
|
for (const v5 of sourceArray) {
|
|
13184
|
-
|
|
13185
|
-
buffer2.push(this.readSchema(listValue, v5));
|
|
13186
|
-
}
|
|
13180
|
+
buffer2.push(this.readSchema(listValue, v5));
|
|
13187
13181
|
}
|
|
13188
13182
|
return buffer2;
|
|
13189
13183
|
}
|
|
@@ -13202,9 +13196,7 @@ var init_XmlShapeDeserializer = __esm({
|
|
|
13202
13196
|
for (const entry of entries) {
|
|
13203
13197
|
const key = entry[keyProperty];
|
|
13204
13198
|
const value2 = entry[valueProperty];
|
|
13205
|
-
|
|
13206
|
-
buffer[key] = this.readSchema(memberNs, value2);
|
|
13207
|
-
}
|
|
13199
|
+
buffer[key] = this.readSchema(memberNs, value2);
|
|
13208
13200
|
}
|
|
13209
13201
|
return buffer;
|
|
13210
13202
|
}
|
|
@@ -17546,7 +17538,7 @@ var require_package2 = __commonJS({
|
|
|
17546
17538
|
module2.exports = {
|
|
17547
17539
|
name: "@aws-sdk/client-bedrock-runtime",
|
|
17548
17540
|
description: "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
|
|
17549
|
-
version: "3.
|
|
17541
|
+
version: "3.1002.0",
|
|
17550
17542
|
scripts: {
|
|
17551
17543
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
17552
17544
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",
|
|
@@ -17570,21 +17562,21 @@ var require_package2 = __commonJS({
|
|
|
17570
17562
|
dependencies: {
|
|
17571
17563
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
17572
17564
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
17573
|
-
"@aws-sdk/core": "^3.973.
|
|
17574
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
17565
|
+
"@aws-sdk/core": "^3.973.17",
|
|
17566
|
+
"@aws-sdk/credential-provider-node": "^3.972.16",
|
|
17575
17567
|
"@aws-sdk/eventstream-handler-node": "^3.972.9",
|
|
17576
17568
|
"@aws-sdk/middleware-eventstream": "^3.972.6",
|
|
17577
17569
|
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
17578
17570
|
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
17579
17571
|
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
17580
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
17572
|
+
"@aws-sdk/middleware-user-agent": "^3.972.17",
|
|
17581
17573
|
"@aws-sdk/middleware-websocket": "^3.972.11",
|
|
17582
17574
|
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
17583
|
-
"@aws-sdk/token-providers": "3.
|
|
17575
|
+
"@aws-sdk/token-providers": "3.1002.0",
|
|
17584
17576
|
"@aws-sdk/types": "^3.973.4",
|
|
17585
17577
|
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
17586
17578
|
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
17587
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
17579
|
+
"@aws-sdk/util-user-agent-node": "^3.973.2",
|
|
17588
17580
|
"@smithy/config-resolver": "^4.4.9",
|
|
17589
17581
|
"@smithy/core": "^3.23.7",
|
|
17590
17582
|
"@smithy/eventstream-serde-browser": "^4.2.10",
|
|
@@ -18333,7 +18325,7 @@ var init_package = __esm({
|
|
|
18333
18325
|
"node_modules/@aws-sdk/nested-clients/package.json"() {
|
|
18334
18326
|
package_default = {
|
|
18335
18327
|
name: "@aws-sdk/nested-clients",
|
|
18336
|
-
version: "3.996.
|
|
18328
|
+
version: "3.996.5",
|
|
18337
18329
|
description: "Nested clients for AWS SDK packages.",
|
|
18338
18330
|
main: "./dist-cjs/index.js",
|
|
18339
18331
|
module: "./dist-es/index.js",
|
|
@@ -18362,16 +18354,16 @@ var init_package = __esm({
|
|
|
18362
18354
|
dependencies: {
|
|
18363
18355
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
18364
18356
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
18365
|
-
"@aws-sdk/core": "^3.973.
|
|
18357
|
+
"@aws-sdk/core": "^3.973.17",
|
|
18366
18358
|
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
18367
18359
|
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
18368
18360
|
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
18369
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
18361
|
+
"@aws-sdk/middleware-user-agent": "^3.972.17",
|
|
18370
18362
|
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
18371
18363
|
"@aws-sdk/types": "^3.973.4",
|
|
18372
18364
|
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
18373
18365
|
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
18374
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
18366
|
+
"@aws-sdk/util-user-agent-node": "^3.973.2",
|
|
18375
18367
|
"@smithy/config-resolver": "^4.4.9",
|
|
18376
18368
|
"@smithy/core": "^3.23.7",
|
|
18377
18369
|
"@smithy/fetch-http-handler": "^5.3.12",
|
|
@@ -36527,7 +36519,7 @@ function buildSearchDelegateTask({ searchQuery, searchPath, exact, language, all
|
|
|
36527
36519
|
"",
|
|
36528
36520
|
"Strategy for complex queries:",
|
|
36529
36521
|
"1. Analyze the query - identify key concepts, entities, and relationships",
|
|
36530
|
-
'2. Run focused searches for each concept (e.g., "
|
|
36522
|
+
'2. Run focused searches for each independent concept (e.g., for "how do payments work and how are emails sent", search "payments" and "emails" separately since they are unrelated)',
|
|
36531
36523
|
"3. Use extract to verify relevance of promising results",
|
|
36532
36524
|
"4. Combine all relevant targets in your final response",
|
|
36533
36525
|
"",
|
package/cjs/index.cjs
CHANGED
|
@@ -13365,22 +13365,16 @@ var init_JsonShapeDeserializer = __esm({
|
|
|
13365
13365
|
if (Array.isArray(value) && ns.isListSchema()) {
|
|
13366
13366
|
const listMember = ns.getValueSchema();
|
|
13367
13367
|
const out = [];
|
|
13368
|
-
const sparse = !!ns.getMergedTraits().sparse;
|
|
13369
13368
|
for (const item of value) {
|
|
13370
|
-
|
|
13371
|
-
out.push(this._read(listMember, item));
|
|
13372
|
-
}
|
|
13369
|
+
out.push(this._read(listMember, item));
|
|
13373
13370
|
}
|
|
13374
13371
|
return out;
|
|
13375
13372
|
}
|
|
13376
13373
|
if (ns.isMapSchema()) {
|
|
13377
13374
|
const mapMember = ns.getValueSchema();
|
|
13378
13375
|
const out = {};
|
|
13379
|
-
const sparse = !!ns.getMergedTraits().sparse;
|
|
13380
13376
|
for (const [_k, _v] of Object.entries(value)) {
|
|
13381
|
-
|
|
13382
|
-
out[_k] = this._read(mapMember, _v);
|
|
13383
|
-
}
|
|
13377
|
+
out[_k] = this._read(mapMember, _v);
|
|
13384
13378
|
}
|
|
13385
13379
|
return out;
|
|
13386
13380
|
}
|
|
@@ -15029,18 +15023,18 @@ var init_XmlShapeDeserializer = __esm({
|
|
|
15029
15023
|
return value;
|
|
15030
15024
|
}
|
|
15031
15025
|
if (typeof value === "object") {
|
|
15032
|
-
const sparse = !!traits.sparse;
|
|
15033
15026
|
const flat = !!traits.xmlFlattened;
|
|
15034
15027
|
if (ns.isListSchema()) {
|
|
15035
15028
|
const listValue = ns.getValueSchema();
|
|
15036
15029
|
const buffer2 = [];
|
|
15037
15030
|
const sourceKey = listValue.getMergedTraits().xmlName ?? "member";
|
|
15038
15031
|
const source = flat ? value : (value[0] ?? value)[sourceKey];
|
|
15032
|
+
if (source == null) {
|
|
15033
|
+
return buffer2;
|
|
15034
|
+
}
|
|
15039
15035
|
const sourceArray = Array.isArray(source) ? source : [source];
|
|
15040
15036
|
for (const v5 of sourceArray) {
|
|
15041
|
-
|
|
15042
|
-
buffer2.push(this.readSchema(listValue, v5));
|
|
15043
|
-
}
|
|
15037
|
+
buffer2.push(this.readSchema(listValue, v5));
|
|
15044
15038
|
}
|
|
15045
15039
|
return buffer2;
|
|
15046
15040
|
}
|
|
@@ -15059,9 +15053,7 @@ var init_XmlShapeDeserializer = __esm({
|
|
|
15059
15053
|
for (const entry of entries) {
|
|
15060
15054
|
const key = entry[keyProperty];
|
|
15061
15055
|
const value2 = entry[valueProperty];
|
|
15062
|
-
|
|
15063
|
-
buffer[key] = this.readSchema(memberNs, value2);
|
|
15064
|
-
}
|
|
15056
|
+
buffer[key] = this.readSchema(memberNs, value2);
|
|
15065
15057
|
}
|
|
15066
15058
|
return buffer;
|
|
15067
15059
|
}
|
|
@@ -19403,7 +19395,7 @@ var require_package2 = __commonJS({
|
|
|
19403
19395
|
module2.exports = {
|
|
19404
19396
|
name: "@aws-sdk/client-bedrock-runtime",
|
|
19405
19397
|
description: "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
|
|
19406
|
-
version: "3.
|
|
19398
|
+
version: "3.1002.0",
|
|
19407
19399
|
scripts: {
|
|
19408
19400
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
19409
19401
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",
|
|
@@ -19427,21 +19419,21 @@ var require_package2 = __commonJS({
|
|
|
19427
19419
|
dependencies: {
|
|
19428
19420
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
19429
19421
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
19430
|
-
"@aws-sdk/core": "^3.973.
|
|
19431
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
19422
|
+
"@aws-sdk/core": "^3.973.17",
|
|
19423
|
+
"@aws-sdk/credential-provider-node": "^3.972.16",
|
|
19432
19424
|
"@aws-sdk/eventstream-handler-node": "^3.972.9",
|
|
19433
19425
|
"@aws-sdk/middleware-eventstream": "^3.972.6",
|
|
19434
19426
|
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
19435
19427
|
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
19436
19428
|
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
19437
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
19429
|
+
"@aws-sdk/middleware-user-agent": "^3.972.17",
|
|
19438
19430
|
"@aws-sdk/middleware-websocket": "^3.972.11",
|
|
19439
19431
|
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
19440
|
-
"@aws-sdk/token-providers": "3.
|
|
19432
|
+
"@aws-sdk/token-providers": "3.1002.0",
|
|
19441
19433
|
"@aws-sdk/types": "^3.973.4",
|
|
19442
19434
|
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
19443
19435
|
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
19444
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
19436
|
+
"@aws-sdk/util-user-agent-node": "^3.973.2",
|
|
19445
19437
|
"@smithy/config-resolver": "^4.4.9",
|
|
19446
19438
|
"@smithy/core": "^3.23.7",
|
|
19447
19439
|
"@smithy/eventstream-serde-browser": "^4.2.10",
|
|
@@ -20190,7 +20182,7 @@ var init_package = __esm({
|
|
|
20190
20182
|
"node_modules/@aws-sdk/nested-clients/package.json"() {
|
|
20191
20183
|
package_default = {
|
|
20192
20184
|
name: "@aws-sdk/nested-clients",
|
|
20193
|
-
version: "3.996.
|
|
20185
|
+
version: "3.996.5",
|
|
20194
20186
|
description: "Nested clients for AWS SDK packages.",
|
|
20195
20187
|
main: "./dist-cjs/index.js",
|
|
20196
20188
|
module: "./dist-es/index.js",
|
|
@@ -20219,16 +20211,16 @@ var init_package = __esm({
|
|
|
20219
20211
|
dependencies: {
|
|
20220
20212
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
20221
20213
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
20222
|
-
"@aws-sdk/core": "^3.973.
|
|
20214
|
+
"@aws-sdk/core": "^3.973.17",
|
|
20223
20215
|
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
20224
20216
|
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
20225
20217
|
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
20226
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
20218
|
+
"@aws-sdk/middleware-user-agent": "^3.972.17",
|
|
20227
20219
|
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
20228
20220
|
"@aws-sdk/types": "^3.973.4",
|
|
20229
20221
|
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
20230
20222
|
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
20231
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
20223
|
+
"@aws-sdk/util-user-agent-node": "^3.973.2",
|
|
20232
20224
|
"@smithy/config-resolver": "^4.4.9",
|
|
20233
20225
|
"@smithy/core": "^3.23.7",
|
|
20234
20226
|
"@smithy/fetch-http-handler": "^5.3.12",
|
|
@@ -110655,7 +110647,7 @@ function buildSearchDelegateTask({ searchQuery, searchPath, exact, language, all
|
|
|
110655
110647
|
"",
|
|
110656
110648
|
"Strategy for complex queries:",
|
|
110657
110649
|
"1. Analyze the query - identify key concepts, entities, and relationships",
|
|
110658
|
-
'2. Run focused searches for each concept (e.g., "
|
|
110650
|
+
'2. Run focused searches for each independent concept (e.g., for "how do payments work and how are emails sent", search "payments" and "emails" separately since they are unrelated)',
|
|
110659
110651
|
"3. Use extract to verify relevance of promising results",
|
|
110660
110652
|
"4. Combine all relevant targets in your final response",
|
|
110661
110653
|
"",
|
package/package.json
CHANGED
package/src/tools/vercel.js
CHANGED
|
@@ -145,7 +145,7 @@ function buildSearchDelegateTask({ searchQuery, searchPath, exact, language, all
|
|
|
145
145
|
'',
|
|
146
146
|
'Strategy for complex queries:',
|
|
147
147
|
'1. Analyze the query - identify key concepts, entities, and relationships',
|
|
148
|
-
'2. Run focused searches for each concept (e.g., "
|
|
148
|
+
'2. Run focused searches for each independent concept (e.g., for "how do payments work and how are emails sent", search "payments" and "emails" separately since they are unrelated)',
|
|
149
149
|
'3. Use extract to verify relevance of promising results',
|
|
150
150
|
'4. Combine all relevant targets in your final response',
|
|
151
151
|
'',
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|