You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🤖 Change interrupt sentinel from [INTERRUPTED] to [CONTINUE] (#170)
## Problem
When users interrupt a stream and then resume, we inject a synthetic
`[INTERRUPTED]` message to give the model context. However, this wording
can confuse models into thinking there was an error or that they should
stop.
## Solution
Change the sentinel text from `[INTERRUPTED]` to `[CONTINUE]` to make it
clearer that the model should continue its previous work.
This is a quick UX improvement while we work on more comprehensive
handling of interrupted messages with thinking (see
#investigate-thinking-error branch).
## Changes
- Updated sentinel text: `[INTERRUPTED]` → `[CONTINUE]`
- Updated all comments and tests to reflect the new wording
- All 297 unit tests pass ✅
## Testing
- ✅ Unit tests updated and passing
- Verified with `make test`
_Generated with `cmux`_
0 commit comments