LLM · Error
E_OPENROUTER_RATE_LIMIT
OpenRouter rate limit reached.
— · Resolution
How to recover
Back off. Some providers have separate per-provider limits.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_OPENROUTER_RATE_LIMIT',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Back off. Some providers have separate per-provider limits.',
docs: 'https://openagentry.dev/errors/E_OPENROUTER_RATE_LIMIT',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also