@effect-agent/testing 0.0.1-beta.5 → 0.1.0-beta.6
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 +120 -73
- package/dist/index.mjs +563 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -8
- package/src/code-executor-conformance.d.ts +30 -0
- package/src/code-executor-conformance.ts +500 -0
- package/src/code-executor-substitute.ts +488 -0
- package/src/fixtures/warehouse/index.ts +412 -0
- package/src/index.ts +6 -0
package/dist/index.d.mts
CHANGED
|
@@ -4,6 +4,7 @@ import { DurableStep, DurableStepError, RuntimeBinding } from "@effect-agent/eng
|
|
|
4
4
|
import { CanonicalBatch, CanonicalRecordEnvelope, CertificationCaseResult, CertificationReport, CertificationScenario, CertificationSweepResult, CertificationTierThreeReport, ConversationCheckpoint, ConversationProjection, ConversationStore, DefinitionDigests, DurableAgentRuntime, DurableRuntimeConfig, DurableRuntimeFailpointLocation, DurableRuntimeFailpointTestControl, DurableSubmitOptions, IdempotencyKey, ProducerId, Receipt, ResolvedBinding, SubmissionLedger, ToolReconciler, WakeScheduler } from "@effect-agent/session";
|
|
5
5
|
import { Cause, Context, Crypto, Duration, Effect, Layer, Option, Schema } from "effect";
|
|
6
6
|
import { AiError, LanguageModel, Model, Response, Tool, Toolkit } from "effect/unstable/ai";
|
|
7
|
+
import { CodeExecutor, SandboxImplementation } from "@effect-agent/sandbox";
|
|
7
8
|
//#region src/certification.d.ts
|
|
8
9
|
/**
|
|
9
10
|
* P7 WP2 — `certifyDurableAdapters` (plan §1): the one certification entry point a durable
|
|
@@ -220,6 +221,50 @@ interface ChaosRunOptions {
|
|
|
220
221
|
*/
|
|
221
222
|
declare const runChaosPlan: (plan: ChaosPlan, options?: ChaosRunOptions | undefined) => Effect.Effect<ChaosPlanReport, ChaosConvergenceFailure, ConversationStore | import("effect/Crypto").Crypto | DurableAgentRuntime | DurableRuntimeConfig | DurableRuntimeFailpointTestControl | SubmissionLedger>;
|
|
222
223
|
//#endregion
|
|
224
|
+
//#region src/code-executor-conformance.d.ts
|
|
225
|
+
declare const CodeExecutorConformanceViolation_base: Schema.Class<CodeExecutorConformanceViolation, Schema.TaggedStruct<"CodeExecutorConformanceViolation", {
|
|
226
|
+
readonly caseName: Schema.String;
|
|
227
|
+
readonly message: Schema.String;
|
|
228
|
+
}>, import("effect/Cause").YieldableError>;
|
|
229
|
+
/**
|
|
230
|
+
* Shared `CodeExecutor` conformance (TEST-015). Every adapter — the
|
|
231
|
+
* deterministic `unisolated` substitute and each isolated adapter — runs
|
|
232
|
+
* `codeExecutorConformanceCases` verbatim. Enforcement cases that only genuine
|
|
233
|
+
* isolation can prove (ambient network denial, synchronous CPU runaway
|
|
234
|
+
* termination) are NOT here; they belong to isolated adapters only
|
|
235
|
+
* (testing spec §8.1).
|
|
236
|
+
*
|
|
237
|
+
* Cases assume the live `Clock` (the wall-clock case uses a short real
|
|
238
|
+
* deadline) and take one fresh executor pass per case, so a suite may share
|
|
239
|
+
* one executor Layer across cases.
|
|
240
|
+
*/
|
|
241
|
+
declare class CodeExecutorConformanceViolation extends CodeExecutorConformanceViolation_base {}
|
|
242
|
+
interface CodeExecutorConformanceCase {
|
|
243
|
+
readonly name: string;
|
|
244
|
+
readonly run: Effect.Effect<void, CodeExecutorConformanceViolation, CodeExecutor>;
|
|
245
|
+
}
|
|
246
|
+
interface CodeExecutorConformanceOptions {
|
|
247
|
+
/** The posture the adapter under test must stamp on results and errors. */
|
|
248
|
+
readonly implementation: SandboxImplementation;
|
|
249
|
+
}
|
|
250
|
+
declare const codeExecutorConformanceCases: (options: CodeExecutorConformanceOptions) => ReadonlyArray<CodeExecutorConformanceCase>;
|
|
251
|
+
//#endregion
|
|
252
|
+
//#region src/code-executor-substitute.d.ts
|
|
253
|
+
/**
|
|
254
|
+
* The deterministic in-process executor substitute (C1 of ADR-0017). It runs
|
|
255
|
+
* the generated program on the host JavaScript engine with best-effort global
|
|
256
|
+
* shadowing only, so it self-identifies as `unisolated` and is never a
|
|
257
|
+
* security boundary (CAP-010, CAP-015). It exists to prove the public
|
|
258
|
+
* `CodeExecutor` contract and to drive deterministic capability tests.
|
|
259
|
+
*/
|
|
260
|
+
declare const inProcessCodeExecutorImplementation: SandboxImplementation;
|
|
261
|
+
/**
|
|
262
|
+
* Layer providing the unisolated in-process `CodeExecutor` substitute. The
|
|
263
|
+
* per-pass `CodeExecutionHost` stays in the caller's requirement channel, the
|
|
264
|
+
* same as every real adapter.
|
|
265
|
+
*/
|
|
266
|
+
declare const inProcessCodeExecutorLayer: Layer.Layer<CodeExecutor>;
|
|
267
|
+
//#endregion
|
|
223
268
|
//#region src/fixtures/docs-researcher/definition.d.ts
|
|
224
269
|
declare const ResearchDocumentId: Schema.brand<Schema.NonEmptyString, "@effect-agent/testing/docs-researcher/ResearchDocumentId">;
|
|
225
270
|
type ResearchDocumentId = typeof ResearchDocumentId.Type;
|
|
@@ -938,6 +983,42 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
938
983
|
readonly createdAt: string;
|
|
939
984
|
readonly deploymentId: string;
|
|
940
985
|
readonly payload: {
|
|
986
|
+
readonly _tag: "AbortRequested";
|
|
987
|
+
readonly submissionId: string;
|
|
988
|
+
readonly author: string;
|
|
989
|
+
readonly reason: string;
|
|
990
|
+
} | {
|
|
991
|
+
readonly _tag: "ToolCallResolved";
|
|
992
|
+
readonly runId: string;
|
|
993
|
+
readonly toolCallId: string;
|
|
994
|
+
readonly resolution: "completed-with-result" | "failed-with-error" | "never-started" | "safe-retry";
|
|
995
|
+
readonly author: string;
|
|
996
|
+
readonly reason: string;
|
|
997
|
+
} | {
|
|
998
|
+
readonly _tag: "ToolCallPrepared";
|
|
999
|
+
readonly runId: string;
|
|
1000
|
+
readonly turnId: string;
|
|
1001
|
+
readonly turn: number;
|
|
1002
|
+
readonly toolCallId: string;
|
|
1003
|
+
readonly toolName: string;
|
|
1004
|
+
readonly parameters: Schema.Json;
|
|
1005
|
+
readonly parametersDigest: string;
|
|
1006
|
+
} | {
|
|
1007
|
+
readonly _tag: "ToolCallUnknown";
|
|
1008
|
+
readonly runId: string;
|
|
1009
|
+
readonly turn: number;
|
|
1010
|
+
readonly toolCallId: string;
|
|
1011
|
+
readonly toolName: string;
|
|
1012
|
+
readonly reason: string;
|
|
1013
|
+
} | {
|
|
1014
|
+
readonly _tag: "ToolApprovalDecided";
|
|
1015
|
+
readonly runId: string;
|
|
1016
|
+
readonly turn: number;
|
|
1017
|
+
readonly toolCallId: string;
|
|
1018
|
+
readonly decision: "approved" | "denied";
|
|
1019
|
+
readonly resolver: string;
|
|
1020
|
+
readonly reason: string;
|
|
1021
|
+
} | {
|
|
941
1022
|
readonly _tag: "ConversationCreated";
|
|
942
1023
|
readonly agentId: string;
|
|
943
1024
|
readonly definitions: {
|
|
@@ -962,15 +1043,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
962
1043
|
readonly turn: number;
|
|
963
1044
|
readonly messages: Schema.Json;
|
|
964
1045
|
readonly messagesDigest: string;
|
|
965
|
-
} | {
|
|
966
|
-
readonly _tag: "ToolCallPrepared";
|
|
967
|
-
readonly runId: string;
|
|
968
|
-
readonly turnId: string;
|
|
969
|
-
readonly turn: number;
|
|
970
|
-
readonly toolCallId: string;
|
|
971
|
-
readonly toolName: string;
|
|
972
|
-
readonly parameters: Schema.Json;
|
|
973
|
-
readonly parametersDigest: string;
|
|
974
1046
|
} | {
|
|
975
1047
|
readonly _tag: "ToolCallSettled";
|
|
976
1048
|
readonly runId: string;
|
|
@@ -978,20 +1050,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
978
1050
|
readonly toolName: string;
|
|
979
1051
|
readonly result: Schema.Json;
|
|
980
1052
|
readonly isFailure: boolean;
|
|
981
|
-
} | {
|
|
982
|
-
readonly _tag: "ToolCallUnknown";
|
|
983
|
-
readonly runId: string;
|
|
984
|
-
readonly turn: number;
|
|
985
|
-
readonly toolCallId: string;
|
|
986
|
-
readonly toolName: string;
|
|
987
|
-
readonly reason: string;
|
|
988
|
-
} | {
|
|
989
|
-
readonly _tag: "ToolCallResolved";
|
|
990
|
-
readonly runId: string;
|
|
991
|
-
readonly toolCallId: string;
|
|
992
|
-
readonly resolution: "completed-with-result" | "failed-with-error" | "never-started" | "safe-retry";
|
|
993
|
-
readonly author: string;
|
|
994
|
-
readonly reason: string;
|
|
995
1053
|
} | {
|
|
996
1054
|
readonly _tag: "ToolStepSettled";
|
|
997
1055
|
readonly runId: string;
|
|
@@ -1007,14 +1065,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1007
1065
|
readonly toolCallId: string;
|
|
1008
1066
|
readonly toolName: string;
|
|
1009
1067
|
readonly parametersDigest: string;
|
|
1010
|
-
} | {
|
|
1011
|
-
readonly _tag: "ToolApprovalDecided";
|
|
1012
|
-
readonly runId: string;
|
|
1013
|
-
readonly turn: number;
|
|
1014
|
-
readonly toolCallId: string;
|
|
1015
|
-
readonly decision: "approved" | "denied";
|
|
1016
|
-
readonly resolver: string;
|
|
1017
|
-
readonly reason: string;
|
|
1018
1068
|
} | {
|
|
1019
1069
|
readonly _tag: "ModelResponseInterrupted";
|
|
1020
1070
|
readonly runId: string;
|
|
@@ -1034,11 +1084,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1034
1084
|
readonly _tag: "RunCompleted";
|
|
1035
1085
|
readonly runId: string;
|
|
1036
1086
|
readonly output: Schema.Json;
|
|
1037
|
-
} | {
|
|
1038
|
-
readonly _tag: "AbortRequested";
|
|
1039
|
-
readonly submissionId: string;
|
|
1040
|
-
readonly author: string;
|
|
1041
|
-
readonly reason: string;
|
|
1042
1087
|
} | {
|
|
1043
1088
|
readonly _tag: "SubmissionSettled";
|
|
1044
1089
|
readonly submissionId: string;
|
|
@@ -1047,6 +1092,7 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1047
1092
|
readonly outcome: "aborted" | "completed" | "failed";
|
|
1048
1093
|
readonly runId?: string | undefined;
|
|
1049
1094
|
readonly result?: Schema.Json | undefined;
|
|
1095
|
+
readonly finishReason?: "budget-exhausted" | undefined;
|
|
1050
1096
|
} | {
|
|
1051
1097
|
readonly _tag: "SubagentRequested";
|
|
1052
1098
|
readonly runId: string;
|
|
@@ -1118,6 +1164,42 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1118
1164
|
readonly createdAt: string;
|
|
1119
1165
|
readonly deploymentId: string;
|
|
1120
1166
|
readonly payload: {
|
|
1167
|
+
readonly _tag: "AbortRequested";
|
|
1168
|
+
readonly submissionId: string;
|
|
1169
|
+
readonly author: string;
|
|
1170
|
+
readonly reason: string;
|
|
1171
|
+
} | {
|
|
1172
|
+
readonly _tag: "ToolCallResolved";
|
|
1173
|
+
readonly runId: string;
|
|
1174
|
+
readonly toolCallId: string;
|
|
1175
|
+
readonly resolution: "completed-with-result" | "failed-with-error" | "never-started" | "safe-retry";
|
|
1176
|
+
readonly author: string;
|
|
1177
|
+
readonly reason: string;
|
|
1178
|
+
} | {
|
|
1179
|
+
readonly _tag: "ToolCallPrepared";
|
|
1180
|
+
readonly runId: string;
|
|
1181
|
+
readonly turnId: string;
|
|
1182
|
+
readonly turn: number;
|
|
1183
|
+
readonly toolCallId: string;
|
|
1184
|
+
readonly toolName: string;
|
|
1185
|
+
readonly parameters: Schema.Json;
|
|
1186
|
+
readonly parametersDigest: string;
|
|
1187
|
+
} | {
|
|
1188
|
+
readonly _tag: "ToolCallUnknown";
|
|
1189
|
+
readonly runId: string;
|
|
1190
|
+
readonly turn: number;
|
|
1191
|
+
readonly toolCallId: string;
|
|
1192
|
+
readonly toolName: string;
|
|
1193
|
+
readonly reason: string;
|
|
1194
|
+
} | {
|
|
1195
|
+
readonly _tag: "ToolApprovalDecided";
|
|
1196
|
+
readonly runId: string;
|
|
1197
|
+
readonly turn: number;
|
|
1198
|
+
readonly toolCallId: string;
|
|
1199
|
+
readonly decision: "approved" | "denied";
|
|
1200
|
+
readonly resolver: string;
|
|
1201
|
+
readonly reason: string;
|
|
1202
|
+
} | {
|
|
1121
1203
|
readonly _tag: "ConversationCreated";
|
|
1122
1204
|
readonly agentId: string;
|
|
1123
1205
|
readonly definitions: {
|
|
@@ -1142,15 +1224,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1142
1224
|
readonly turn: number;
|
|
1143
1225
|
readonly messages: Schema.Json;
|
|
1144
1226
|
readonly messagesDigest: string;
|
|
1145
|
-
} | {
|
|
1146
|
-
readonly _tag: "ToolCallPrepared";
|
|
1147
|
-
readonly runId: string;
|
|
1148
|
-
readonly turnId: string;
|
|
1149
|
-
readonly turn: number;
|
|
1150
|
-
readonly toolCallId: string;
|
|
1151
|
-
readonly toolName: string;
|
|
1152
|
-
readonly parameters: Schema.Json;
|
|
1153
|
-
readonly parametersDigest: string;
|
|
1154
1227
|
} | {
|
|
1155
1228
|
readonly _tag: "ToolCallSettled";
|
|
1156
1229
|
readonly runId: string;
|
|
@@ -1158,20 +1231,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1158
1231
|
readonly toolName: string;
|
|
1159
1232
|
readonly result: Schema.Json;
|
|
1160
1233
|
readonly isFailure: boolean;
|
|
1161
|
-
} | {
|
|
1162
|
-
readonly _tag: "ToolCallUnknown";
|
|
1163
|
-
readonly runId: string;
|
|
1164
|
-
readonly turn: number;
|
|
1165
|
-
readonly toolCallId: string;
|
|
1166
|
-
readonly toolName: string;
|
|
1167
|
-
readonly reason: string;
|
|
1168
|
-
} | {
|
|
1169
|
-
readonly _tag: "ToolCallResolved";
|
|
1170
|
-
readonly runId: string;
|
|
1171
|
-
readonly toolCallId: string;
|
|
1172
|
-
readonly resolution: "completed-with-result" | "failed-with-error" | "never-started" | "safe-retry";
|
|
1173
|
-
readonly author: string;
|
|
1174
|
-
readonly reason: string;
|
|
1175
1234
|
} | {
|
|
1176
1235
|
readonly _tag: "ToolStepSettled";
|
|
1177
1236
|
readonly runId: string;
|
|
@@ -1187,14 +1246,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1187
1246
|
readonly toolCallId: string;
|
|
1188
1247
|
readonly toolName: string;
|
|
1189
1248
|
readonly parametersDigest: string;
|
|
1190
|
-
} | {
|
|
1191
|
-
readonly _tag: "ToolApprovalDecided";
|
|
1192
|
-
readonly runId: string;
|
|
1193
|
-
readonly turn: number;
|
|
1194
|
-
readonly toolCallId: string;
|
|
1195
|
-
readonly decision: "approved" | "denied";
|
|
1196
|
-
readonly resolver: string;
|
|
1197
|
-
readonly reason: string;
|
|
1198
1249
|
} | {
|
|
1199
1250
|
readonly _tag: "ModelResponseInterrupted";
|
|
1200
1251
|
readonly runId: string;
|
|
@@ -1214,11 +1265,6 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1214
1265
|
readonly _tag: "RunCompleted";
|
|
1215
1266
|
readonly runId: string;
|
|
1216
1267
|
readonly output: Schema.Json;
|
|
1217
|
-
} | {
|
|
1218
|
-
readonly _tag: "AbortRequested";
|
|
1219
|
-
readonly submissionId: string;
|
|
1220
|
-
readonly author: string;
|
|
1221
|
-
readonly reason: string;
|
|
1222
1268
|
} | {
|
|
1223
1269
|
readonly _tag: "SubmissionSettled";
|
|
1224
1270
|
readonly submissionId: string;
|
|
@@ -1227,6 +1273,7 @@ declare const phase3TravelPlannerEncodedFixture: readonly {
|
|
|
1227
1273
|
readonly outcome: "aborted" | "completed" | "failed";
|
|
1228
1274
|
readonly runId?: string | undefined;
|
|
1229
1275
|
readonly result?: Schema.Json | undefined;
|
|
1276
|
+
readonly finishReason?: "budget-exhausted" | undefined;
|
|
1230
1277
|
} | {
|
|
1231
1278
|
readonly _tag: "SubagentRequested";
|
|
1232
1279
|
readonly runId: string;
|
|
@@ -3327,5 +3374,5 @@ interface DurableResearchHarness {
|
|
|
3327
3374
|
*/
|
|
3328
3375
|
declare const makeDurableResearchHarness: (options?: DurableResearchHarnessOptions) => Effect.Effect<DurableResearchHarness, never, never>;
|
|
3329
3376
|
//#endregion
|
|
3330
|
-
export { ActivityCatalog, ActivityCatalogLayer, ActivityQuery, ActivitySearchResult, ActivityUnavailable, AirportCode, BookFlight, BookItinerary, BookingRef, BoundedSummary, CERTIFICATION_SCENARIOS, CancelBooking, CancelBookingRequest, CancellationConfirmation, CatalogLifecycle, CatalogLifecycleCounts, CertificationCrashLever, CertifyDurableAdaptersOptions, ChaosAdapterFailpoints, ChaosApprovalDecision, ChaosConvergenceFailure, ChaosGeneratorOptions, ChaosLaneReport, ChaosPlan, ChaosPlanReport, ChaosResolutionKind, ChaosRunOptions, ChaosScenarioKind, ChaosSubmissionSpec, CrossPlatformEvidenceIdentity, DEFAULT_CHAOS_SEED, DestinationBrief, DestinationFacts, DestinationGuide, DestinationGuideLayer, DestinationGuideUnavailable, DestinationQuery, DestinationRecommendation, DestinationReport, DestinationResearchCall, DestinationResearchFailed, DestinationResearchFindings, DestinationResearchRequest, DestinationResearchSupportLayer, DestinationResearcher, DestinationResearcherControls, DestinationResearcherToolkit, DestinationResearcherToolkitLayer, DestinationShortlist, DeterministicIdGeneratorLayer, DocContentToolkit, DocSummarizer, DocsMcpDiscoveryEvidence, DocsResearcher, DocsResearcherHarness, DocsResearcherHarnessOptions, DocsResearcherHarnessRequirements, DocsResearcherToolkit, DocumentLibrary, DocumentQuery, DocumentSummary, DocumentSummaryFailed, DocumentUnavailable, DurableResearchHarness, DurableResearchHarnessOptions, DurableSearchActivities, DurableSearchFlights, DurableSearchLodging, FetchDocument, FlightBookingRequest, FlightCatalog, FlightCatalogLayer, FlightOption, FlightQuery, FlightUnavailable, GuidanceFailure, HoldItinerary, Itinerary, ItineraryBookingRequest, ItineraryConfirmation, ItineraryHold, ItineraryHoldGateway, ItineraryHoldRequest, ItineraryHoldUnavailable, LodgingCatalog, LodgingCatalogLayer, LodgingOption, LodgingQuery, LodgingUnavailable, LookupDestination, PHASE7_LIVE_CREDENTIAL_ENV, PHASE7_LIVE_GATE_ENV, Phase7LiveGateEnvironment, QuoteId, ResearchDigest, ResearchDispatchGate, ResearchDocument, ResearchDocumentId, ResearchMission, ResearchRequest, ReverseCompletionToolkitLayer, ScriptedGeneratePart, ScriptedGenerateTurn, ScriptedModel, ScriptedRequest, ScriptedRequestKind, ScriptedStreamPart, ScriptedStreamTermination, ScriptedStreamTurn, ScriptedTurn, ScriptedTurnHooks, ScriptedTurnInput, SearchActivities, SearchFlights, SearchLodging, SummaryBrief, SummaryFinding, SummaryRequest, SupplierBookRequest, SupplierBookingConfirmation, SupplierBookingDesk, SupplierBookingRecord, SupplierHoldControls, SupplierOperation, SupplierUnavailable, TIER2_UNREACHED_LOCATIONS, TravelBookingReport, TravelCoordinator, TravelCoordinatorToolkit, TravelGuidance, TravelGuidanceLayer, TravelPlan, TravelPlanner, TravelPlannerBookingEvidenceError, TravelPlannerBookingProfile, TravelPlannerCloudflareProfile, TravelPlannerCompletionControls, TravelPlannerDurabilityProfile, TravelPlannerDurableEvidenceError, TravelPlannerPersistenceProfile, TravelPlannerPhase2, TravelPlannerPhase2Toolkit, TravelPlannerPhase2ToolkitLayer, TravelPlannerPhase4, TravelPlannerPhase4Toolkit, TravelPlannerPhase4ToolkitLayer, TravelPlannerPhase5, TravelPlannerPhase5Toolkit, TravelPlannerPhase5ToolkitLayer, TravelPlannerPhase7Profile, TravelPlannerProjectionError, TravelPlannerRuntimeLayer, TravelPlannerSubagentDurabilityProfile, TravelPlannerToolkit, TravelPlannerToolkitLayer, TravelSupplierReconcilerLayer, TravelerRef, TripRequest, assertDiscoveryMatchesAuthoredToolkit, assertSettledBookingsExistAtSupplier, bookFlightIdempotencyKey, cancelBookingIdempotencyKey, certifyDurableAdapters, chaosSeedFromEnv, coordinatorConfidentialMarker, coordinatorResearchTurn, coordinatorShortlistTurn, delegateDocumentSummary, destinationLookup, destinationReportFor, destinationResearchDelegation, destinationResearchHandlersLayer, destinationResearchPolicy, docContentToolkitLayer, docsCoordinatorConfidentialMarker, docsCoordinatorDigests, docsDocumentBodySecret, docsMcpConnectorLayer, docsMcpIdentity, docsMcpMismatchedConnectorLayer, docsMcpOversizedConnectorLayer, docsMcpRequest, docsMissionConfidentialMarker, docsResearcherDeploymentId, docsResearcherPrincipal, docsResearcherProducerId, docsResearcherSubmitAgent, docsResearcherSubmitOptions, docsSummarizerDigestStrings, docsSummarizerDigests, docsSummaryHandlersLayer, documentBodyPhrase, documentSummaryFor, documentSummaryPolicy, durableChildLookupCallId, durableDestinationResearchHandlersLayer, durableResearchAllocation, durableResearchCallId, durableResearchFinding, durableResearchShortlist, encodedDestinationFacts, encodedDestinationReport, encodedDocumentSummary, expectedDestinationShortlist, expectedResearchDigest, expectedTravelPlan, fetchCallId, generateChaosPlans, itineraryStepIdempotencyKey, makeDestinationResearcherModel, makeDocsResearcherHarness, makeDurableResearchHarness, makeInvocationCountingModel, makePhase3TravelPlannerCheckpoint, makePhase4TravelPlannerAgent, makePhase6TravelPlannerBindings, mapResearchChildFailure, mapSummaryChildFailure, missionConfidentialMarker, normalizeCrossPlatformTravelPlannerEvidence, normalizeDurableTravelPlannerEvidence, phase0HappyPathTurns, phase0Trip, phase1HappyPathTurns, phase1Trip, phase3TravelPlannerBatches, phase3TravelPlannerCompletionBatch, phase3TravelPlannerConversationId, phase3TravelPlannerDefinitionDigests, phase3TravelPlannerEncodedFixture, phase3TravelPlannerInitialBatch, phase3TravelPlannerProducerId, phase3TravelPlannerProfile, phase3TravelPlannerRunId, phase4TravelPlannerDefinitionDigests, phase4TravelPlannerDeploymentId, phase4TravelPlannerPrincipal, phase4TravelPlannerProducerId, phase4TravelPlannerProfile, phase4TravelPlannerSubmitOptions, phase4TravelPlannerWorkerLayer, phase5TravelPlannerDefinitionDigests, phase5TravelPlannerDeploymentId, phase5TravelPlannerPrincipal, phase5TravelPlannerProducerId, phase5TravelPlannerProfile, phase5TravelPlannerSubmitOptions, phase5TravelPlannerWorkerLayer, phase6ActivityCallId, phase6BookingModel, phase6BookingRef, phase6BookingToolCallId, phase6BookingTrip, phase6ChildLookupCallId, phase6CoordinatorModel, phase6FlightCallId, phase6GatedPlannerDefinitionDigests, phase6GatedPlannerModel, phase6GatedTrip, phase6GuideInvocationCount, phase6LodgingCallId, phase6PlannerModel, phase6ResearchDestination, phase6ResearchMission, phase6ResearcherModel, phase6SupplierDesk, phase6SupplierDeskLayer, phase6SupplierReconcilerLayer, phase6TravelPlannerDeploymentId, phase6TravelPlannerGoldenEvidence, phase6TravelPlannerProducerId, phase6TravelPlannerProducerPrefix, phase6TravelPlannerProfile, phase7LiveProfileEnabled, phase7TravelPlannerProfile, redactedDocumentPreview, releasePhase6PlannerGate, releasePhase6ResearcherGate, researchCorpusDocumentIds, researchDocumentFor, researchDocumentLookup, researchMission, researchMissionRequest, researcherHappyPathTurns, resetPhase6PlannerGate, resetPhase6ResearcherGate, resolveTierThree, runChaosPlan, s2CoordinatorDigests, s2CoordinatorSubmitAgent, s2ResearcherDigestStrings, s2ResearcherDigests, s2TravelPlannerDeploymentId, s2TravelPlannerPrincipal, s2TravelPlannerProducerId, s2TravelPlannerProfile, s2TravelPlannerSubmitOptions, summarizeCallId, supplierBookingRefFor, tier2NeverFiredLocations, travelPlanFromDurableSettlement, travelPlanFromProjection };
|
|
3377
|
+
export { ActivityCatalog, ActivityCatalogLayer, ActivityQuery, ActivitySearchResult, ActivityUnavailable, AirportCode, BookFlight, BookItinerary, BookingRef, BoundedSummary, CERTIFICATION_SCENARIOS, CancelBooking, CancelBookingRequest, CancellationConfirmation, CatalogLifecycle, CatalogLifecycleCounts, CertificationCrashLever, CertifyDurableAdaptersOptions, ChaosAdapterFailpoints, ChaosApprovalDecision, ChaosConvergenceFailure, ChaosGeneratorOptions, ChaosLaneReport, ChaosPlan, ChaosPlanReport, ChaosResolutionKind, ChaosRunOptions, ChaosScenarioKind, ChaosSubmissionSpec, CodeExecutorConformanceCase, CodeExecutorConformanceOptions, CodeExecutorConformanceViolation, CrossPlatformEvidenceIdentity, DEFAULT_CHAOS_SEED, DestinationBrief, DestinationFacts, DestinationGuide, DestinationGuideLayer, DestinationGuideUnavailable, DestinationQuery, DestinationRecommendation, DestinationReport, DestinationResearchCall, DestinationResearchFailed, DestinationResearchFindings, DestinationResearchRequest, DestinationResearchSupportLayer, DestinationResearcher, DestinationResearcherControls, DestinationResearcherToolkit, DestinationResearcherToolkitLayer, DestinationShortlist, DeterministicIdGeneratorLayer, DocContentToolkit, DocSummarizer, DocsMcpDiscoveryEvidence, DocsResearcher, DocsResearcherHarness, DocsResearcherHarnessOptions, DocsResearcherHarnessRequirements, DocsResearcherToolkit, DocumentLibrary, DocumentQuery, DocumentSummary, DocumentSummaryFailed, DocumentUnavailable, DurableResearchHarness, DurableResearchHarnessOptions, DurableSearchActivities, DurableSearchFlights, DurableSearchLodging, FetchDocument, FlightBookingRequest, FlightCatalog, FlightCatalogLayer, FlightOption, FlightQuery, FlightUnavailable, GuidanceFailure, HoldItinerary, Itinerary, ItineraryBookingRequest, ItineraryConfirmation, ItineraryHold, ItineraryHoldGateway, ItineraryHoldRequest, ItineraryHoldUnavailable, LodgingCatalog, LodgingCatalogLayer, LodgingOption, LodgingQuery, LodgingUnavailable, LookupDestination, PHASE7_LIVE_CREDENTIAL_ENV, PHASE7_LIVE_GATE_ENV, Phase7LiveGateEnvironment, QuoteId, ResearchDigest, ResearchDispatchGate, ResearchDocument, ResearchDocumentId, ResearchMission, ResearchRequest, ReverseCompletionToolkitLayer, ScriptedGeneratePart, ScriptedGenerateTurn, ScriptedModel, ScriptedRequest, ScriptedRequestKind, ScriptedStreamPart, ScriptedStreamTermination, ScriptedStreamTurn, ScriptedTurn, ScriptedTurnHooks, ScriptedTurnInput, SearchActivities, SearchFlights, SearchLodging, SummaryBrief, SummaryFinding, SummaryRequest, SupplierBookRequest, SupplierBookingConfirmation, SupplierBookingDesk, SupplierBookingRecord, SupplierHoldControls, SupplierOperation, SupplierUnavailable, TIER2_UNREACHED_LOCATIONS, TravelBookingReport, TravelCoordinator, TravelCoordinatorToolkit, TravelGuidance, TravelGuidanceLayer, TravelPlan, TravelPlanner, TravelPlannerBookingEvidenceError, TravelPlannerBookingProfile, TravelPlannerCloudflareProfile, TravelPlannerCompletionControls, TravelPlannerDurabilityProfile, TravelPlannerDurableEvidenceError, TravelPlannerPersistenceProfile, TravelPlannerPhase2, TravelPlannerPhase2Toolkit, TravelPlannerPhase2ToolkitLayer, TravelPlannerPhase4, TravelPlannerPhase4Toolkit, TravelPlannerPhase4ToolkitLayer, TravelPlannerPhase5, TravelPlannerPhase5Toolkit, TravelPlannerPhase5ToolkitLayer, TravelPlannerPhase7Profile, TravelPlannerProjectionError, TravelPlannerRuntimeLayer, TravelPlannerSubagentDurabilityProfile, TravelPlannerToolkit, TravelPlannerToolkitLayer, TravelSupplierReconcilerLayer, TravelerRef, TripRequest, assertDiscoveryMatchesAuthoredToolkit, assertSettledBookingsExistAtSupplier, bookFlightIdempotencyKey, cancelBookingIdempotencyKey, certifyDurableAdapters, chaosSeedFromEnv, codeExecutorConformanceCases, coordinatorConfidentialMarker, coordinatorResearchTurn, coordinatorShortlistTurn, delegateDocumentSummary, destinationLookup, destinationReportFor, destinationResearchDelegation, destinationResearchHandlersLayer, destinationResearchPolicy, docContentToolkitLayer, docsCoordinatorConfidentialMarker, docsCoordinatorDigests, docsDocumentBodySecret, docsMcpConnectorLayer, docsMcpIdentity, docsMcpMismatchedConnectorLayer, docsMcpOversizedConnectorLayer, docsMcpRequest, docsMissionConfidentialMarker, docsResearcherDeploymentId, docsResearcherPrincipal, docsResearcherProducerId, docsResearcherSubmitAgent, docsResearcherSubmitOptions, docsSummarizerDigestStrings, docsSummarizerDigests, docsSummaryHandlersLayer, documentBodyPhrase, documentSummaryFor, documentSummaryPolicy, durableChildLookupCallId, durableDestinationResearchHandlersLayer, durableResearchAllocation, durableResearchCallId, durableResearchFinding, durableResearchShortlist, encodedDestinationFacts, encodedDestinationReport, encodedDocumentSummary, expectedDestinationShortlist, expectedResearchDigest, expectedTravelPlan, fetchCallId, generateChaosPlans, inProcessCodeExecutorImplementation, inProcessCodeExecutorLayer, itineraryStepIdempotencyKey, makeDestinationResearcherModel, makeDocsResearcherHarness, makeDurableResearchHarness, makeInvocationCountingModel, makePhase3TravelPlannerCheckpoint, makePhase4TravelPlannerAgent, makePhase6TravelPlannerBindings, mapResearchChildFailure, mapSummaryChildFailure, missionConfidentialMarker, normalizeCrossPlatformTravelPlannerEvidence, normalizeDurableTravelPlannerEvidence, phase0HappyPathTurns, phase0Trip, phase1HappyPathTurns, phase1Trip, phase3TravelPlannerBatches, phase3TravelPlannerCompletionBatch, phase3TravelPlannerConversationId, phase3TravelPlannerDefinitionDigests, phase3TravelPlannerEncodedFixture, phase3TravelPlannerInitialBatch, phase3TravelPlannerProducerId, phase3TravelPlannerProfile, phase3TravelPlannerRunId, phase4TravelPlannerDefinitionDigests, phase4TravelPlannerDeploymentId, phase4TravelPlannerPrincipal, phase4TravelPlannerProducerId, phase4TravelPlannerProfile, phase4TravelPlannerSubmitOptions, phase4TravelPlannerWorkerLayer, phase5TravelPlannerDefinitionDigests, phase5TravelPlannerDeploymentId, phase5TravelPlannerPrincipal, phase5TravelPlannerProducerId, phase5TravelPlannerProfile, phase5TravelPlannerSubmitOptions, phase5TravelPlannerWorkerLayer, phase6ActivityCallId, phase6BookingModel, phase6BookingRef, phase6BookingToolCallId, phase6BookingTrip, phase6ChildLookupCallId, phase6CoordinatorModel, phase6FlightCallId, phase6GatedPlannerDefinitionDigests, phase6GatedPlannerModel, phase6GatedTrip, phase6GuideInvocationCount, phase6LodgingCallId, phase6PlannerModel, phase6ResearchDestination, phase6ResearchMission, phase6ResearcherModel, phase6SupplierDesk, phase6SupplierDeskLayer, phase6SupplierReconcilerLayer, phase6TravelPlannerDeploymentId, phase6TravelPlannerGoldenEvidence, phase6TravelPlannerProducerId, phase6TravelPlannerProducerPrefix, phase6TravelPlannerProfile, phase7LiveProfileEnabled, phase7TravelPlannerProfile, redactedDocumentPreview, releasePhase6PlannerGate, releasePhase6ResearcherGate, researchCorpusDocumentIds, researchDocumentFor, researchDocumentLookup, researchMission, researchMissionRequest, researcherHappyPathTurns, resetPhase6PlannerGate, resetPhase6ResearcherGate, resolveTierThree, runChaosPlan, s2CoordinatorDigests, s2CoordinatorSubmitAgent, s2ResearcherDigestStrings, s2ResearcherDigests, s2TravelPlannerDeploymentId, s2TravelPlannerPrincipal, s2TravelPlannerProducerId, s2TravelPlannerProfile, s2TravelPlannerSubmitOptions, summarizeCallId, supplierBookingRefFor, tier2NeverFiredLocations, travelPlanFromDurableSettlement, travelPlanFromProjection };
|
|
3331
3378
|
//# sourceMappingURL=index.d.mts.map
|