@@ -2018,6 +2018,11 @@ export interface ResponseInputFile {
2018
2018
*/
2019
2019
file_id ?: string | null ;
2020
2020
2021
+ /**
2022
+ * The URL of the file to be sent to the model.
2023
+ */
2024
+ file_url ?: string ;
2025
+
2021
2026
/**
2022
2027
* The name of the file to be sent to the model.
2023
2028
*/
@@ -2864,9 +2869,9 @@ export interface ResponseMcpCallArgumentsDeltaEvent {
2864
2869
sequence_number : number ;
2865
2870
2866
2871
/**
2867
- * The type of the event. Always 'response.mcp_call.arguments_delta '.
2872
+ * The type of the event. Always 'response.mcp_call_arguments.delta '.
2868
2873
*/
2869
- type : 'response.mcp_call.arguments_delta ' ;
2874
+ type : 'response.mcp_call_arguments.delta ' ;
2870
2875
}
2871
2876
2872
2877
/**
@@ -2894,9 +2899,9 @@ export interface ResponseMcpCallArgumentsDoneEvent {
2894
2899
sequence_number : number ;
2895
2900
2896
2901
/**
2897
- * The type of the event. Always 'response.mcp_call.arguments_done '.
2902
+ * The type of the event. Always 'response.mcp_call_arguments.done '.
2898
2903
*/
2899
- type : 'response.mcp_call.arguments_done ' ;
2904
+ type : 'response.mcp_call_arguments.done ' ;
2900
2905
}
2901
2906
2902
2907
/**
@@ -3554,9 +3559,9 @@ export interface ResponseOutputTextAnnotationAddedEvent {
3554
3559
sequence_number : number ;
3555
3560
3556
3561
/**
3557
- * The type of the event. Always 'response.output_text_annotation .added'.
3562
+ * The type of the event. Always 'response.output_text.annotation .added'.
3558
3563
*/
3559
- type : 'response.output_text_annotation .added' ;
3564
+ type : 'response.output_text.annotation .added' ;
3560
3565
}
3561
3566
3562
3567
/**
@@ -4375,6 +4380,11 @@ export namespace Tool {
4375
4380
* Specify which of the MCP server's tools require approval.
4376
4381
*/
4377
4382
require_approval ?: Mcp . McpToolApprovalFilter | 'always' | 'never' | null ;
4383
+
4384
+ /**
4385
+ * Optional description of the MCP server, used to provide more context.
4386
+ */
4387
+ server_description ?: string ;
4378
4388
}
4379
4389
4380
4390
export namespace Mcp {
0 commit comments