(client, threadId, cwd, options = {})
| 748 | } |
| 749 | |
| 750 | async function resumeThread(client, threadId, cwd, options = {}) { |
| 751 | return client.request("thread/resume", buildResumeParams(threadId, cwd, options)); |
| 752 | } |
| 753 | |
| 754 | function buildResultStatus(turnState) { |
| 755 | return turnState.finalTurn?.status === "completed" ? 0 : 1; |
no test coverage detected