/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * A server-side patch applied to the system prompt after model routing. */ export type ModelPromptPatch = { action: 'edit_system_prompt'; content: string; }; /** * Model routing key to the ordered prompt patches for that route. * * Route keys are opaque to the SDK and are forwarded without interpretation. */ export type ModelPromptPatches = Record;