fix: restore status idle set in processor error handler to fix unit tests

This commit is contained in:
Ryan Vogel
2026-04-17 22:44:51 +00:00
parent 4cfe8a8bf8
commit b0190116a7

View File

@@ -533,6 +533,7 @@ export const layer: Layer.Layer<
sessionID: ctx.assistantMessage.sessionID,
error: ctx.assistantMessage.error,
})
yield* status.set(ctx.sessionID, { type: "idle" })
})
const process = Effect.fn("SessionProcessor.process")(function* (streamInput: LLM.StreamInput) {