(toolCallId: string, claimedBy: string)
| 368 | } |
| 369 | |
| 370 | export async function markAsyncToolRunning(toolCallId: string, claimedBy: string) { |
| 371 | return markAsyncToolStatus(toolCallId, 'running', { claimedBy }) |
| 372 | } |
| 373 | |
| 374 | export async function completeAsyncToolCall(input: { |
| 375 | toolCallId: string |
no test coverage detected