(req: ChatCompletionRequest, expectations: ToolResultExpectation[])
| 21 | } |
| 22 | |
| 23 | export function toolResultsContain(req: ChatCompletionRequest, expectations: ToolResultExpectation[]) { |
| 24 | return expectations.every(({ toolCallId, expected }) => toolResultContains(req, toolCallId, expected)) |
| 25 | } |
no test coverage detected