(toolCallId: string)
| 401 | } |
| 402 | |
| 403 | export async function markAsyncToolDelivered(toolCallId: string) { |
| 404 | return markAsyncToolStatus(toolCallId, ASYNC_TOOL_STATUS.delivered, { |
| 405 | claimedBy: null, |
| 406 | claimedAt: null, |
| 407 | }) |
| 408 | } |
| 409 | |
| 410 | async function listAsyncToolCallsForRun(runId: string) { |
| 411 | return withDbSpan( |
no test coverage detected