()
| 1178 | Effect.gen(function* () { |
| 1179 | const session = yield* setupOverflowRecovery |
| 1180 | const overflow = () => [ |
| 1181 | LLMEvent.stepStart({ index: 0 }), |
| 1182 | LLMEvent.providerError({ message: "prompt too long", classification: "context-overflow" }), |
| 1183 | ] |
| 1184 | responses = [ |
| 1185 | overflow(), |
| 1186 | fragmentFixture("text", "text-summary", ["## Goal\n- Recover once"]).completeEvents, |
no outgoing calls
no test coverage detected