(params: TurnInterruptParams)
| 201 | } |
| 202 | |
| 203 | async interruptTurn(params: TurnInterruptParams): Promise<TurnInterruptResponse> { |
| 204 | const response = await this.sendRequest('turn/interrupt', params, { |
| 205 | timeoutMs: 30_000 |
| 206 | }); |
| 207 | return response as TurnInterruptResponse; |
| 208 | } |
| 209 | |
| 210 | async compactThread( |
| 211 | params: ThreadCompactStartParams, |
no test coverage detected