@effect-agent/testing 0.1.0-beta.11 → 0.1.0-beta.13
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 +4 -0
- package/package.json +9 -9
package/dist/index.d.mts
CHANGED
|
@@ -1108,6 +1108,8 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1108
1108
|
readonly runId?: string | undefined;
|
|
1109
1109
|
readonly result?: Schema.Json | undefined;
|
|
1110
1110
|
readonly finishReason?: "budget-exhausted" | undefined;
|
|
1111
|
+
readonly exhausted?: "tokens" | "tool-calls" | "turns" | undefined;
|
|
1112
|
+
readonly policyLimit?: "cost" | "duration" | "repeated-failures" | "tokens" | "tool-calls" | "turns" | "usage" | undefined;
|
|
1111
1113
|
} | {
|
|
1112
1114
|
readonly _tag: "SubagentRequested";
|
|
1113
1115
|
readonly runId: string;
|
|
@@ -1294,6 +1296,8 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1294
1296
|
readonly runId?: string | undefined;
|
|
1295
1297
|
readonly result?: Schema.Json | undefined;
|
|
1296
1298
|
readonly finishReason?: "budget-exhausted" | undefined;
|
|
1299
|
+
readonly exhausted?: "tokens" | "tool-calls" | "turns" | undefined;
|
|
1300
|
+
readonly policyLimit?: "cost" | "duration" | "repeated-failures" | "tokens" | "tool-calls" | "turns" | "usage" | undefined;
|
|
1297
1301
|
} | {
|
|
1298
1302
|
readonly _tag: "SubagentRequested";
|
|
1299
1303
|
readonly runId: string;
|
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.13",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.mts",
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
}
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@effect-agent/capabilities": "0.1.0-beta.
|
|
12
|
-
"@effect-agent/core": "0.1.0-beta.
|
|
13
|
-
"@effect-agent/engine": "0.1.0-beta.
|
|
14
|
-
"@effect-agent/platform-node": "0.1.0-beta.
|
|
15
|
-
"@effect-agent/sandbox": "0.1.0-beta.
|
|
16
|
-
"@effect-agent/session": "0.1.0-beta.
|
|
17
|
-
"@effect-agent/storage-memory": "0.1.0-beta.
|
|
18
|
-
"@effect-agent/storage-sqlite": "0.1.0-beta.
|
|
11
|
+
"@effect-agent/capabilities": "0.1.0-beta.13",
|
|
12
|
+
"@effect-agent/core": "0.1.0-beta.13",
|
|
13
|
+
"@effect-agent/engine": "0.1.0-beta.13",
|
|
14
|
+
"@effect-agent/platform-node": "0.1.0-beta.13",
|
|
15
|
+
"@effect-agent/sandbox": "0.1.0-beta.13",
|
|
16
|
+
"@effect-agent/session": "0.1.0-beta.13",
|
|
17
|
+
"@effect-agent/storage-memory": "0.1.0-beta.13",
|
|
18
|
+
"@effect-agent/storage-sqlite": "0.1.0-beta.13",
|
|
19
19
|
"effect": "4.0.0-beta.107"
|
|
20
20
|
},
|
|
21
21
|
"description": "Scripted models, deterministic fixtures, and adapter conformance kits for testing Effect Agent applications.",
|