File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 2828openApiDocument . Components . Schemas [ "MessageObject" ] ! . Required . Remove ( "completed_at" ) ;
2929openApiDocument . Components . Schemas [ "MessageObject" ] ! . Required . Remove ( "incomplete_at" ) ;
3030
31+ openApiDocument . Components . Schemas [ "RunStepObject" ] ! . Required . Remove ( "expired_at" ) ;
32+ openApiDocument . Components . Schemas [ "RunStepObject" ] ! . Required . Remove ( "metadata" ) ;
33+
3134openApiDocument . Paths [ "/files/{file_id}/content" ] ! . Operations [ OperationType . Get ] . Responses [ "200" ] ! . Content . Remove ( "application/json" ) ;
3235openApiDocument . Paths [ "/files/{file_id}/content" ] ! . Operations [ OperationType . Get ] . Responses [ "200" ] ! . Content . Add (
3336 "application/octet-stream" ,
Original file line number Diff line number Diff line change @@ -89,8 +89,7 @@ public sealed partial class RunStepObject
8989 /// </summary>
9090 [ global ::System . Text . Json . Serialization . JsonPropertyName ( "expired_at" ) ]
9191 [ global ::System . Text . Json . Serialization . JsonConverter ( typeof ( global ::OpenApiGenerator . JsonConverters . UnixTimestampJsonConverter ) ) ]
92- [ global ::System . Text . Json . Serialization . JsonRequired ]
93- public required global ::System . DateTimeOffset ? ExpiredAt { get ; set ; }
92+ public global ::System . DateTimeOffset ? ExpiredAt { get ; set ; }
9493
9594 /// <summary>
9695 /// The Unix timestamp (in seconds) for when the run step was cancelled.
@@ -120,8 +119,7 @@ public sealed partial class RunStepObject
120119 /// Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long.
121120 /// </summary>
122121 [ global ::System . Text . Json . Serialization . JsonPropertyName ( "metadata" ) ]
123- [ global ::System . Text . Json . Serialization . JsonRequired ]
124- public required global ::OpenAI . RunStepObjectMetadata ? Metadata { get ; set ; }
122+ public global ::OpenAI . RunStepObjectMetadata ? Metadata { get ; set ; }
125123
126124 /// <summary>
127125 /// Usage statistics related to the run step. This value will be `null` while the run step's status is `in_progress`.
Original file line number Diff line number Diff line change @@ -8299,11 +8299,9 @@ components:
82998299 - status
83008300 - step_details
83018301 - last_error
8302- - expired_at
83038302 - cancelled_at
83048303 - failed_at
83058304 - completed_at
8306- - metadata
83078305 - usage
83088306 type: object
83098307 properties:
You can’t perform that action at this time.
0 commit comments