Files
OmniRoute/src/types/provider.ts
Chirag Singhal 07eb2ecdd9 fix(providers): enrich model_cooldown 429 body with retry_after ISO + credential count (#6460) (#6523)
fix(providers): enrich model_cooldown 429 body with retry_after ISO + credential count (#6460). Integrated into release/v3.8.47. (thanks @chirag127)
2026-07-07 19:49:57 -03:00

12 lines
249 B
TypeScript

export interface ModelCooldownErrorPayload {
error: {
message: string;
type: "rate_limit_error";
code: "model_cooldown";
model?: string;
reset_seconds: number;
retry_after?: string;
credentials_cooling?: number;
};
}