@effect-agent/testing 0.1.0-beta.40 → 0.1.0-beta.42
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/docs-researcher.d.mts +10 -1
- package/dist/travel-planner.d.mts +11 -2
- package/package.json +9 -9
|
@@ -104,7 +104,16 @@ declare const delegateDocumentSummary: import("@effect-agent/capabilities").Suba
|
|
|
104
104
|
readonly failure: typeof DocumentUnavailable;
|
|
105
105
|
readonly failureMode: "error";
|
|
106
106
|
}, DocumentLibrary>;
|
|
107
|
-
}, typeof SummaryRequest, typeof SummaryFinding, typeof DocumentSummaryFailed, never, never, "error"
|
|
107
|
+
}, typeof SummaryRequest, typeof SummaryFinding, typeof DocumentSummaryFailed, never, never, "error"> & {
|
|
108
|
+
readonly target: import("@effect-agent/core").Definition<typeof SummaryBrief, typeof DocumentSummary, "Fetch the briefed document with fetch_document exactly once, then return only a JSON document summary. Never copy raw notes or secrets into the summary.", Toolkit.Toolkit<{
|
|
109
|
+
readonly fetch_document: Tool.Tool<"fetch_document", {
|
|
110
|
+
readonly parameters: typeof DocumentQuery;
|
|
111
|
+
readonly success: typeof ResearchDocument;
|
|
112
|
+
readonly failure: typeof DocumentUnavailable;
|
|
113
|
+
readonly failureMode: "error";
|
|
114
|
+
}, DocumentLibrary>;
|
|
115
|
+
}>, undefined, undefined>;
|
|
116
|
+
};
|
|
108
117
|
/** Total mapping from every expected child Run failure to the declared Tool failure (SUB-028). */
|
|
109
118
|
declare const mapSummaryChildFailure: (failure: {
|
|
110
119
|
readonly _tag: string;
|
|
@@ -1239,7 +1239,16 @@ declare const destinationResearchDelegation: import("@effect-agent/capabilities"
|
|
|
1239
1239
|
readonly failure: typeof DestinationGuideUnavailable;
|
|
1240
1240
|
readonly failureMode: "error";
|
|
1241
1241
|
}, DestinationGuide>;
|
|
1242
|
-
}, typeof DestinationResearchRequest, typeof DestinationResearchFindings, typeof DestinationResearchFailed, ResearchDispatchGate, never, "error"
|
|
1242
|
+
}, typeof DestinationResearchRequest, typeof DestinationResearchFindings, typeof DestinationResearchFailed, ResearchDispatchGate, never, "error"> & {
|
|
1243
|
+
readonly target: import("@effect-agent/core").Definition<typeof DestinationBrief, typeof DestinationReport, "Consult lookup_destination exactly once for the briefed airport, then return only a JSON destination report.", Toolkit.Toolkit<{
|
|
1244
|
+
readonly lookup_destination: Tool.Tool<"lookup_destination", {
|
|
1245
|
+
readonly parameters: typeof DestinationQuery;
|
|
1246
|
+
readonly success: typeof DestinationFacts;
|
|
1247
|
+
readonly failure: typeof DestinationGuideUnavailable;
|
|
1248
|
+
readonly failureMode: "error";
|
|
1249
|
+
}, DestinationGuide>;
|
|
1250
|
+
}>, undefined, undefined>;
|
|
1251
|
+
};
|
|
1243
1252
|
/** Total mapping from every expected child Run failure to the declared Tool failure (SUB-028). */
|
|
1244
1253
|
declare const mapResearchChildFailure: (failure: {
|
|
1245
1254
|
readonly _tag: string;
|
|
@@ -1687,7 +1696,7 @@ declare const s2CoordinatorSubmitAgent: {
|
|
|
1687
1696
|
* evidence in the S2 tests checks the ledger reservation rows and the
|
|
1688
1697
|
* canonical `SubagentJoined.finalAccounting` against exactly this value.
|
|
1689
1698
|
*/
|
|
1690
|
-
declare const durableResearchAllocation: import("@effect-agent/
|
|
1699
|
+
declare const durableResearchAllocation: import("@effect-agent/core").SubagentReservationAmounts;
|
|
1691
1700
|
/** The one scripted delegation Tool Call id of the durable coordinator Run. */
|
|
1692
1701
|
declare const durableResearchCallId = "research-lhr-1";
|
|
1693
1702
|
/** The child's own scripted guide-lookup Tool Call id. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-agent/testing",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.42",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.mts",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@effect-agent/capabilities": "0.1.0-beta.
|
|
32
|
-
"@effect-agent/core": "0.1.0-beta.
|
|
33
|
-
"@effect-agent/engine": "0.1.0-beta.
|
|
34
|
-
"@effect-agent/sandbox": "0.1.0-beta.
|
|
35
|
-
"@effect-agent/thread": "0.1.0-beta.
|
|
31
|
+
"@effect-agent/capabilities": "0.1.0-beta.42",
|
|
32
|
+
"@effect-agent/core": "0.1.0-beta.42",
|
|
33
|
+
"@effect-agent/engine": "0.1.0-beta.42",
|
|
34
|
+
"@effect-agent/sandbox": "0.1.0-beta.42",
|
|
35
|
+
"@effect-agent/thread": "0.1.0-beta.42"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"effect": "^4.0.0-rc.111"
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"test": "vp test --passWithNoTests"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@effect-agent/platform-node": "0.1.0-beta.
|
|
62
|
-
"@effect-agent/storage-memory": "0.1.0-beta.
|
|
63
|
-
"@effect-agent/storage-sqlite": "0.1.0-beta.
|
|
61
|
+
"@effect-agent/platform-node": "0.1.0-beta.40",
|
|
62
|
+
"@effect-agent/storage-memory": "0.1.0-beta.40",
|
|
63
|
+
"@effect-agent/storage-sqlite": "0.1.0-beta.40",
|
|
64
64
|
"@effect/platform-node": "4.0.0-rc.111",
|
|
65
65
|
"@effect/sql-sqlite-node": "4.0.0-rc.111",
|
|
66
66
|
"@effect/vitest": "4.0.0-rc.111",
|