We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be47f7 commit 836b8c6Copy full SHA for 836b8c6
src/utils/providers/anthropic.ts
@@ -113,9 +113,7 @@ Respond with JSON in this format:
113
};
114
} catch (error) {
115
// Re-throw specific error types
116
- const { ClaudeRateLimitError, ClaudeValidationError } = await lazy(
117
- () => import('../../types/ai.js')
118
- );
+ const { ClaudeRateLimitError, ClaudeValidationError } = await lazy(() => import('../../types/ai.js'));
119
if (error instanceof ClaudeRateLimitError || error instanceof ClaudeValidationError) {
120
throw error;
121
}
0 commit comments