Files
gemini-cli/packages/core/src/availability/modelAvailabilityService.ts

134 lines
3.4 KiB
TypeScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export type ModelId = string;
export type TerminalUnavailabilityReason = 'quota' | 'capacity';
export type TurnUnavailabilityReason = 'retry_once_per_turn';
export type UnavailabilityReason =
| TerminalUnavailabilityReason
| TurnUnavailabilityReason
| 'unknown';
export type ModelHealthStatus = 'terminal' | 'sticky_retry';
type HealthState =
| { status: 'terminal'; reason: TerminalUnavailabilityReason }
| {
status: 'sticky_retry';
reason: TurnUnavailabilityReason;
consumed: boolean;
};
export interface ModelAvailabilitySnapshot {
available: boolean;
reason?: UnavailabilityReason;
}
export interface ModelSelectionResult {
selectedModel: ModelId | null;
attempts?: number;
skipped: Array<{
model: ModelId;
reason: UnavailabilityReason;
}>;
}
export class ModelAvailabilityService {
private readonly health = new Map<ModelId, HealthState>();
markTerminal(model: ModelId, reason: TerminalUnavailabilityReason) {
this.setState(model, {
status: 'terminal',
reason,
});
}
markHealthy(model: ModelId) {
this.clearState(model);
}
markRetryOncePerTurn(model: ModelId) {
const currentState = this.health.get(model);
// Do not override a terminal failure with a transient one.
if (currentState?.status === 'terminal') {
return;
}
// Only reset consumption if we are not already in the sticky_retry state.
// This prevents infinite loops if the model fails repeatedly in the same turn.
let consumed = false;
if (currentState?.status === 'sticky_retry') {
consumed = currentState.consumed;
}
this.setState(model, {
status: 'sticky_retry',
reason: 'retry_once_per_turn',
consumed,
});
}
consumeStickyAttempt(model: ModelId) {
const state = this.health.get(model);
if (state?.status === 'sticky_retry') {
this.setState(model, { ...state, consumed: true });
}
}
snapshot(model: ModelId): ModelAvailabilitySnapshot {
const state = this.health.get(model);
if (!state) {
return { available: true };
}
if (state.status === 'terminal') {
return { available: false, reason: state.reason };
}
if (state.status === 'sticky_retry' && state.consumed) {
return { available: false, reason: state.reason };
}
return { available: true };
}
selectFirstAvailable(models: ModelId[]): ModelSelectionResult {
const skipped: ModelSelectionResult['skipped'] = [];
for (const model of models) {
const snapshot = this.snapshot(model);
if (snapshot.available) {
const state = this.health.get(model);
// A sticky model is being attempted, so note that.
const attempts = state?.status === 'sticky_retry' ? 1 : undefined;
return { selectedModel: model, skipped, attempts };
} else {
skipped.push({ model, reason: snapshot.reason ?? 'unknown' });
}
}
return { selectedModel: null, skipped };
}
resetTurn() {
for (const [model, state] of this.health.entries()) {
if (state.status === 'sticky_retry') {
this.setState(model, { ...state, consumed: false });
}
}
}
private setState(model: ModelId, nextState: HealthState) {
this.health.set(model, nextState);
}
private clearState(model: ModelId) {
this.health.delete(model);
}
}