Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ public sealed partial class ResponseVariant3
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("created_at")]
[global::System.Text.Json.Serialization.JsonRequired]
public required int CreatedAt { get; set; }
public required double CreatedAt { get; set; }

/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("completed_at")]
public int? CompletedAt { get; set; }
public double? CompletedAt { get; set; }

/// <summary>
///
Expand Down Expand Up @@ -158,12 +158,12 @@ public sealed partial class ResponseVariant3
#endif
public ResponseVariant3(
string id,
int createdAt,
double createdAt,
global::System.Collections.Generic.IList<global::tryAGI.OpenAI.OutputItem> output,
bool parallelToolCalls,
global::tryAGI.OpenAI.ResponseVariant3Object @object,
global::tryAGI.OpenAI.ResponseVariant3Status? status,
int? completedAt,
double? completedAt,
global::tryAGI.OpenAI.ResponseErrorVariant1? error,
global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails2? incompleteDetails,
global::tryAGI.OpenAI.OneOf<string, global::System.Collections.Generic.IList<global::tryAGI.OpenAI.InputItem>>? instructions,
Expand Down
Loading