Check response does NOT contain a specific key */
| 933 | |
| 934 | /* Check response does NOT contain a specific key */ |
| 935 | static int resp_lacks_key(const char *resp, const char *key) { |
| 936 | return !resp_has_key(resp, key); |
| 937 | } |
| 938 | |
| 939 | /* Helper: assert tool call succeeds, warn if slow */ |
| 940 | #define TOOL_OK(resp, ms) \ |
no test coverage detected