queuedPrompt is a prompt the user committed while a turn was running, held until the turn ends and then auto-submitted. send is the chip-expanded text for the LLM; echo is the collapsed, trimmed form shown in the queued box and the scrollback echo. Chip state is not preserved: an unqueued or recalle
| 85 | // paste reappears expanded (matching disk-loaded history), never as a chip, but |
| 86 | // its content is always intact. |
| 87 | type queuedPrompt struct { |
| 88 | send string |
| 89 | echo string |
| 90 | } |
| 91 | |
| 92 | type Model struct { |
| 93 | Version string |
nothing calls this directly
no outgoing calls
no test coverage detected