File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
src/interactions/resources Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments