Fix prediction persistence crash after successful LLM ideas #53
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Observed problem
Live validation of the LiteLLM timeout fix generated five valid ideas, then the sweep failed while persisting predictions with
Cannot access stableId before initialization.IntelligenceStore._recordPredictionsdeclaresconst stableId = stableId(...), shadowing the module helper and triggering the temporal dead zone whenever LLM ideas are present.Acceptance criteria
ideasSource=llmwithoutlastSweepError.Fix is in PR #54: #54. The live LLM call already produced five valid ideas; this PR fixes the subsequent persistence failure.