(state: MakaPiTranscriptState, text: string)
| 233 | } |
| 234 | |
| 235 | export function appendUserPrompt(state: MakaPiTranscriptState, text: string): void { |
| 236 | state.entries.push({ kind: 'user', text }); |
| 237 | } |
| 238 | |
| 239 | export function appendTurnFailureToTranscript(state: MakaPiTranscriptState, error: unknown): void { |
| 240 | clearPendingInteractions(state); |
no test coverage detected