@effect-agent/testing 0.0.1-beta.6 → 0.1.0-beta.8
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/index.d.mts +113 -83
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -18
- package/src/certification.ts +5 -0
- package/src/fixtures/travel-planner/phase6.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-agent/testing",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0-beta.8",
|
|
4
|
+
"exports": {
|
|
5
|
+
".": {
|
|
6
|
+
"types": "./dist/index.d.mts",
|
|
7
|
+
"default": "./dist/index.mjs"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@effect-agent/capabilities": "0.1.0-beta.8",
|
|
12
|
+
"@effect-agent/core": "0.1.0-beta.8",
|
|
13
|
+
"@effect-agent/engine": "0.1.0-beta.8",
|
|
14
|
+
"@effect-agent/platform-node": "0.1.0-beta.8",
|
|
15
|
+
"@effect-agent/sandbox": "0.1.0-beta.8",
|
|
16
|
+
"@effect-agent/session": "0.1.0-beta.8",
|
|
17
|
+
"@effect-agent/storage-memory": "0.1.0-beta.8",
|
|
18
|
+
"@effect-agent/storage-sqlite": "0.1.0-beta.8",
|
|
19
|
+
"effect": "4.0.0-beta.107"
|
|
20
|
+
},
|
|
4
21
|
"description": "Scripted models, deterministic fixtures, and adapter conformance kits for testing Effect Agent applications.",
|
|
5
22
|
"license": "MIT",
|
|
6
23
|
"repository": {
|
|
@@ -13,12 +30,6 @@
|
|
|
13
30
|
"src"
|
|
14
31
|
],
|
|
15
32
|
"type": "module",
|
|
16
|
-
"exports": {
|
|
17
|
-
".": {
|
|
18
|
-
"types": "./dist/index.d.mts",
|
|
19
|
-
"default": "./dist/index.mjs"
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
33
|
"publishConfig": {
|
|
23
34
|
"access": "public"
|
|
24
35
|
},
|
|
@@ -27,17 +38,6 @@
|
|
|
27
38
|
"check": "tsc --noEmit -p tsconfig.json",
|
|
28
39
|
"test": "vp test --passWithNoTests"
|
|
29
40
|
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@effect-agent/capabilities": "0.0.1-beta.6",
|
|
32
|
-
"@effect-agent/core": "0.0.1-beta.6",
|
|
33
|
-
"@effect-agent/engine": "0.0.1-beta.6",
|
|
34
|
-
"@effect-agent/platform-node": "0.0.1-beta.6",
|
|
35
|
-
"@effect-agent/sandbox": "0.0.1-beta.5",
|
|
36
|
-
"@effect-agent/session": "0.0.1-beta.6",
|
|
37
|
-
"@effect-agent/storage-memory": "0.0.1-beta.6",
|
|
38
|
-
"@effect-agent/storage-sqlite": "0.0.1-beta.6",
|
|
39
|
-
"effect": "4.0.0-beta.107"
|
|
40
|
-
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@effect/platform-node": "4.0.0-beta.107",
|
|
43
43
|
"@effect/sql-sqlite-node": "4.0.0-beta.107",
|
package/src/certification.ts
CHANGED
|
@@ -166,6 +166,11 @@ export const CERTIFICATION_SCENARIOS: ReadonlyArray<CertificationScenario> = [
|
|
|
166
166
|
*/
|
|
167
167
|
export const TIER2_UNREACHED_LOCATIONS: ReadonlyArray<DurableRuntimeFailpointLocation> = [
|
|
168
168
|
"abort:after-intent",
|
|
169
|
+
// Compaction requires a `contextTokenLimit` policy plus prior-Run history
|
|
170
|
+
// none of the six scenario shapes carries; pinned in-process by the
|
|
171
|
+
// RUN-026 rows in `packages/testing/test/durable-runtime.test.ts`
|
|
172
|
+
// (compaction failpoint idempotence across re-drive).
|
|
173
|
+
"compaction:after-canonical-append",
|
|
169
174
|
"resolve:after-intent",
|
|
170
175
|
"subagent:after-child-abort-intent",
|
|
171
176
|
];
|
|
@@ -717,6 +717,8 @@ export const phase6TravelPlannerGoldenEvidence: Schema.Json = [
|
|
|
717
717
|
runId: "run:{submissionId}",
|
|
718
718
|
turnId: "turn:run:{submissionId}:1",
|
|
719
719
|
turn: 1,
|
|
720
|
+
inputTokens: 128,
|
|
721
|
+
outputTokens: 96,
|
|
720
722
|
messages: {
|
|
721
723
|
content: [
|
|
722
724
|
{
|
|
@@ -864,6 +866,8 @@ export const phase6TravelPlannerGoldenEvidence: Schema.Json = [
|
|
|
864
866
|
runId: "run:{submissionId}",
|
|
865
867
|
turnId: "turn:run:{submissionId}:2",
|
|
866
868
|
turn: 2,
|
|
869
|
+
inputTokens: 128,
|
|
870
|
+
outputTokens: 96,
|
|
867
871
|
messages: {
|
|
868
872
|
content: [
|
|
869
873
|
{
|