From e728fad9599af298f515329fcb92f5f122e110cf Mon Sep 17 00:00:00 2001 From: Annie Luc Date: Mon, 3 Aug 2026 11:07:21 -0700 Subject: [PATCH] chore: Cleanup deprecated field response_modalities PiperOrigin-RevId: 958473173 --- src/gaos/models/interactions/create-agent-interaction.ts | 2 ++ src/gaos/models/interactions/create-model-interaction.ts | 2 ++ src/gaos/models/interactions/interaction.ts | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/gaos/models/interactions/create-agent-interaction.ts b/src/gaos/models/interactions/create-agent-interaction.ts index 35da34d85d..5114d1e0de 100644 --- a/src/gaos/models/interactions/create-agent-interaction.ts +++ b/src/gaos/models/interactions/create-agent-interaction.ts @@ -75,6 +75,8 @@ export type CreateAgentInteraction = { tools?: Array | undefined; /** * The requested modalities of the response (TEXT, IMAGE, AUDIO). + * + * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ response_modalities?: Array | undefined; /** diff --git a/src/gaos/models/interactions/create-model-interaction.ts b/src/gaos/models/interactions/create-model-interaction.ts index affe3e61ca..f6ef837340 100644 --- a/src/gaos/models/interactions/create-model-interaction.ts +++ b/src/gaos/models/interactions/create-model-interaction.ts @@ -63,6 +63,8 @@ export type CreateModelInteraction = { tools?: Array | undefined; /** * The requested modalities of the response (TEXT, IMAGE, AUDIO). + * + * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ response_modalities?: Array | undefined; /** diff --git a/src/gaos/models/interactions/interaction.ts b/src/gaos/models/interactions/interaction.ts index 12ca8c68ff..592e073156 100644 --- a/src/gaos/models/interactions/interaction.ts +++ b/src/gaos/models/interactions/interaction.ts @@ -112,6 +112,8 @@ export type Interaction = { usage?: Usage | undefined; /** * The requested modalities of the response (TEXT, IMAGE, AUDIO). + * + * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ response_modalities?: Array | undefined; /**