Skip to content

Commit 6f83a05

Browse files
Annhiluccopybara-github
authored andcommitted
feat: Add new Gemini Deep Research agent models
PiperOrigin-RevId: 903258583
1 parent 6aa848e commit 6f83a05

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/interactions/resources/interactions.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,11 @@ export interface Interaction {
13421342
/**
13431343
* The name of the `Agent` used for generating the interaction.
13441344
*/
1345-
agent?: (string & {}) | 'deep-research-pro-preview-12-2025';
1345+
agent?:
1346+
| 'deep-research-pro-preview-12-2025'
1347+
| 'deep-research-preview-04-2026'
1348+
| 'deep-research-max-preview-04-2026'
1349+
| (string & {});
13461350

13471351
/**
13481352
* Configuration parameters for the agent interaction.
@@ -2281,7 +2285,11 @@ export interface BaseCreateAgentInteractionParams {
22812285
/**
22822286
* Body param: The name of the `Agent` used for generating the interaction.
22832287
*/
2284-
agent: (string & {}) | 'deep-research-pro-preview-12-2025';
2288+
agent:
2289+
| 'deep-research-pro-preview-12-2025'
2290+
| 'deep-research-preview-04-2026'
2291+
| 'deep-research-max-preview-04-2026'
2292+
| (string & {});
22852293

22862294
/**
22872295
* Body param: The input for the interaction.

0 commit comments

Comments
 (0)