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; /**