| 256 | } |
| 257 | |
| 258 | std::string AnthropicResponseBuilder::buildRateLimitResponse() { |
| 259 | return buildErrorResponse(429, "rate_limit_error", "Rate limit exceeded"); |
| 260 | } |
| 261 | |
| 262 | std::string AnthropicResponseBuilder::buildAuthErrorResponse() { |
| 263 | return buildErrorResponse(401, "authentication_error", "Invalid API key"); |
nothing calls this directly
no outgoing calls
no test coverage detected