(r: FixtureResponse)
| 478 | } |
| 479 | |
| 480 | export function isJSONResponse(r: FixtureResponse): r is RawJSONResponse { |
| 481 | return "json" in r && (r as RawJSONResponse).json !== undefined; |
| 482 | } |
| 483 | |
| 484 | export function extractOverrides( |
| 485 | response: TextResponse | ToolCallResponse | ContentWithToolCallsResponse, |
no outgoing calls
no test coverage detected
searching dependent graphs…