diff --git a/src/libs/OpenAI/Generated/JsonConverters.CreateUploadRequestPurpose.g.cs b/src/libs/OpenAI/Generated/JsonConverters.CreateUploadRequestPurpose.g.cs
new file mode 100644
index 00000000..4880b338
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.CreateUploadRequestPurpose.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class CreateUploadRequestPurposeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.CreateUploadRequestPurpose Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.CreateUploadRequestPurposeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.CreateUploadRequestPurpose)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.CreateUploadRequestPurpose value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::OpenAI.CreateUploadRequestPurposeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonConverters.CreateUploadRequestPurposeNullable.g.cs b/src/libs/OpenAI/Generated/JsonConverters.CreateUploadRequestPurposeNullable.g.cs
new file mode 100644
index 00000000..819c7d28
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.CreateUploadRequestPurposeNullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class CreateUploadRequestPurposeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.CreateUploadRequestPurpose? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.CreateUploadRequestPurposeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.CreateUploadRequestPurpose)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.CreateUploadRequestPurpose? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::OpenAI.CreateUploadRequestPurposeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonConverters.UploadObject.g.cs b/src/libs/OpenAI/Generated/JsonConverters.UploadObject.g.cs
new file mode 100644
index 00000000..95f290b8
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.UploadObject.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class UploadObjectJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.UploadObject Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.UploadObjectExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.UploadObject)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.UploadObject value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::OpenAI.UploadObjectExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonConverters.UploadObjectNullable.g.cs b/src/libs/OpenAI/Generated/JsonConverters.UploadObjectNullable.g.cs
new file mode 100644
index 00000000..32c05176
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.UploadObjectNullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class UploadObjectNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.UploadObject? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.UploadObjectExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.UploadObject)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.UploadObject? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::OpenAI.UploadObjectExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonConverters.UploadPartObject.g.cs b/src/libs/OpenAI/Generated/JsonConverters.UploadPartObject.g.cs
new file mode 100644
index 00000000..3b77e73a
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.UploadPartObject.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class UploadPartObjectJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.UploadPartObject Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.UploadPartObjectExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.UploadPartObject)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.UploadPartObject value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::OpenAI.UploadPartObjectExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonConverters.UploadPartObjectNullable.g.cs b/src/libs/OpenAI/Generated/JsonConverters.UploadPartObjectNullable.g.cs
new file mode 100644
index 00000000..5f092d90
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.UploadPartObjectNullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class UploadPartObjectNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.UploadPartObject? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.UploadPartObjectExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.UploadPartObject)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.UploadPartObject? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::OpenAI.UploadPartObjectExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonConverters.UploadStatus.g.cs b/src/libs/OpenAI/Generated/JsonConverters.UploadStatus.g.cs
new file mode 100644
index 00000000..306e0749
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.UploadStatus.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class UploadStatusJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.UploadStatus Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.UploadStatusExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.UploadStatus)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.UploadStatus value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::OpenAI.UploadStatusExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonConverters.UploadStatusNullable.g.cs b/src/libs/OpenAI/Generated/JsonConverters.UploadStatusNullable.g.cs
new file mode 100644
index 00000000..20763f5f
--- /dev/null
+++ b/src/libs/OpenAI/Generated/JsonConverters.UploadStatusNullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class UploadStatusNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::OpenAI.UploadStatus? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::OpenAI.UploadStatusExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::OpenAI.UploadStatus)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::OpenAI.UploadStatus? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::OpenAI.UploadStatusExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/OpenAI/Generated/JsonSerializerContext.g.cs b/src/libs/OpenAI/Generated/JsonSerializerContext.g.cs
index d6a16e04..a91e9cf7 100644
--- a/src/libs/OpenAI/Generated/JsonSerializerContext.g.cs
+++ b/src/libs/OpenAI/Generated/JsonSerializerContext.g.cs
@@ -108,6 +108,8 @@ namespace OpenAI
typeof(global::OpenApiGenerator.JsonConverters.CreateFileRequestPurposeNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.DeleteFileResponseObjectJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.DeleteFileResponseObjectNullableJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.CreateUploadRequestPurposeJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.CreateUploadRequestPurposeNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.CreateFineTuningJobRequestHyperparametersBatchSizeJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.CreateFineTuningJobRequestHyperparametersBatchSizeNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.CreateFineTuningJobRequestHyperparametersLearningRateMultiplierJsonConverter),
@@ -150,6 +152,12 @@ namespace OpenAI
typeof(global::OpenApiGenerator.JsonConverters.OpenAIFilePurposeNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.OpenAIFileStatusJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.OpenAIFileStatusNullableJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.UploadStatusJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.UploadStatusNullableJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.UploadObjectJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.UploadObjectNullableJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.UploadPartObjectJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.UploadPartObjectNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.EmbeddingObjectJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.EmbeddingObjectNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.FineTuningJobHyperparametersNEpochsJsonConverter),
diff --git a/src/libs/OpenAI/Generated/JsonSerializerContextTypes.g.cs b/src/libs/OpenAI/Generated/JsonSerializerContextTypes.g.cs
index 4c75f224..f8e4862d 100644
--- a/src/libs/OpenAI/Generated/JsonSerializerContextTypes.g.cs
+++ b/src/libs/OpenAI/Generated/JsonSerializerContextTypes.g.cs
@@ -405,1286 +405,1322 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::System.AnyOf? Type98 { get; set; }
+ public global::OpenAI.CreateUploadRequestPurpose? Type98 { get; set; }
///
///
///
- public global::OpenAI.CreateFineTuningJobRequestHyperparameters? Type99 { get; set; }
+ public global::System.Collections.Generic.IList? Type99 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type100 { get; set; }
+ public global::System.AnyOf? Type100 { get; set; }
///
///
///
- public global::System.OneOf? Type101 { get; set; }
+ public global::OpenAI.CreateFineTuningJobRequestHyperparameters? Type101 { get; set; }
///
///
///
- public global::System.OneOf? Type102 { get; set; }
+ public global::System.Collections.Generic.IList? Type102 { get; set; }
///
///
///
- public global::System.OneOf? Type103 { get; set; }
+ public global::System.OneOf? Type103 { get; set; }
///
///
///
- public global::System.OneOf? Type104 { get; set; }
+ public global::System.OneOf? Type104 { get; set; }
///
///
///
- public global::OpenAI.CreateFineTuningJobRequestIntegrationsWandb? Type105 { get; set; }
+ public global::System.OneOf? Type105 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type106 { get; set; }
+ public global::System.OneOf? Type106 { get; set; }
///
///
///
- public global::OpenAI.ListFineTuningJobEventsResponseObject? Type107 { get; set; }
+ public global::OpenAI.CreateFineTuningJobRequestIntegrationsWandb? Type107 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type108 { get; set; }
+ public global::System.Collections.Generic.IList? Type108 { get; set; }
///
///
///
- public global::OpenAI.ListFineTuningJobCheckpointsResponseObject? Type109 { get; set; }
+ public global::OpenAI.ListFineTuningJobEventsResponseObject? Type109 { get; set; }
///
///
///
- public global::System.AnyOf? Type110 { get; set; }
+ public global::System.Collections.Generic.IList? Type110 { get; set; }
///
///
///
- public global::OpenAI.CreateEmbeddingRequestEncodingFormat? Type111 { get; set; }
+ public global::OpenAI.ListFineTuningJobCheckpointsResponseObject? Type111 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type112 { get; set; }
+ public global::System.AnyOf? Type112 { get; set; }
///
///
///
- public global::OpenAI.CreateEmbeddingResponseObject? Type113 { get; set; }
+ public global::OpenAI.CreateEmbeddingRequestEncodingFormat? Type113 { get; set; }
///
///
///
- public global::OpenAI.CreateEmbeddingResponseUsage? Type114 { get; set; }
+ public global::System.Collections.Generic.IList? Type114 { get; set; }
///
///
///
- public global::System.AnyOf? Type115 { get; set; }
+ public global::OpenAI.CreateEmbeddingResponseObject? Type115 { get; set; }
///
///
///
- public global::OpenAI.CreateTranscriptionRequestResponseFormat? Type116 { get; set; }
+ public global::OpenAI.CreateEmbeddingResponseUsage? Type116 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type117 { get; set; }
+ public global::System.AnyOf? Type117 { get; set; }
///
///
///
- public float? Type118 { get; set; }
+ public global::OpenAI.CreateTranscriptionRequestResponseFormat? Type118 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type119 { get; set; }
+ public global::System.Collections.Generic.IList? Type119 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type120 { get; set; }
+ public float? Type120 { get; set; }
///
///
///
- public global::System.AnyOf? Type121 { get; set; }
+ public global::System.Collections.Generic.IList? Type121 { get; set; }
///
///
///
- public global::System.AnyOf? Type122 { get; set; }
+ public global::System.Collections.Generic.IList? Type122 { get; set; }
///
///
///
- public global::OpenAI.CreateSpeechRequestVoice? Type123 { get; set; }
+ public global::System.AnyOf? Type123 { get; set; }
///
///
///
- public global::OpenAI.CreateSpeechRequestResponseFormat? Type124 { get; set; }
+ public global::System.AnyOf? Type124 { get; set; }
///
///
///
- public global::OpenAI.ModelObject? Type125 { get; set; }
+ public global::OpenAI.CreateSpeechRequestVoice? Type125 { get; set; }
///
///
///
- public global::OpenAI.OpenAIFileObject? Type126 { get; set; }
+ public global::OpenAI.CreateSpeechRequestResponseFormat? Type126 { get; set; }
///
///
///
- public global::OpenAI.OpenAIFilePurpose? Type127 { get; set; }
+ public global::OpenAI.ModelObject? Type127 { get; set; }
///
///
///
- public global::OpenAI.OpenAIFileStatus? Type128 { get; set; }
+ public global::OpenAI.OpenAIFileObject? Type128 { get; set; }
///
///
///
- public global::OpenAI.EmbeddingObject? Type129 { get; set; }
+ public global::OpenAI.OpenAIFilePurpose? Type129 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobError? Type130 { get; set; }
+ public global::OpenAI.OpenAIFileStatus? Type130 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobHyperparameters? Type131 { get; set; }
+ public global::OpenAI.UploadStatus? Type131 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobObject? Type132 { get; set; }
+ public global::OpenAI.UploadObject? Type132 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type133 { get; set; }
+ public global::OpenAI.UploadPartObject? Type133 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobStatus? Type134 { get; set; }
+ public global::OpenAI.EmbeddingObject? Type134 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>? Type135 { get; set; }
+ public global::OpenAI.FineTuningJobError? Type135 { get; set; }
///
///
///
- public global::System.OneOf? Type136 { get; set; }
+ public global::OpenAI.FineTuningJobHyperparameters? Type136 { get; set; }
///
///
///
- public global::OpenAI.FineTuningIntegrationType? Type137 { get; set; }
+ public global::OpenAI.FineTuningJobObject? Type137 { get; set; }
///
///
///
- public global::OpenAI.FineTuningIntegrationWandb? Type138 { get; set; }
+ public global::OpenAI.FineTuningJobStatus? Type138 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobEventLevel? Type139 { get; set; }
+ public global::System.Collections.Generic.IList?>? Type139 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobEventObject? Type140 { get; set; }
+ public global::System.OneOf? Type140 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobCheckpointMetrics? Type141 { get; set; }
+ public global::OpenAI.FineTuningIntegrationType? Type141 { get; set; }
///
///
///
- public global::OpenAI.FineTuningJobCheckpointObject? Type142 { get; set; }
+ public global::OpenAI.FineTuningIntegrationWandb? Type142 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>? Type143 { get; set; }
+ public global::OpenAI.FineTuningJobEventLevel? Type143 { get; set; }
///
///
///
- public global::OpenAI.AssistantsApiResponseFormatType? Type144 { get; set; }
+ public global::OpenAI.FineTuningJobEventObject? Type144 { get; set; }
///
///
///
- public global::OpenAI.AssistantObjectObject? Type145 { get; set; }
+ public global::OpenAI.FineTuningJobCheckpointMetrics? Type145 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type146 { get; set; }
+ public global::OpenAI.FineTuningJobCheckpointObject? Type146 { get; set; }
///
///
///
- public global::OpenAI.AssistantObjectToolResources? Type147 { get; set; }
+ public global::System.Collections.Generic.IList?>? Type147 { get; set; }
///
///
///
- public global::System.OneOf? Type148 { get; set; }
+ public global::OpenAI.AssistantsApiResponseFormatType? Type148 { get; set; }
///
///
///
- public global::OpenAI.AssistantObjectToolResourcesCodeInterpreter? Type149 { get; set; }
+ public global::OpenAI.AssistantObjectObject? Type149 { get; set; }
///
///
///
- public global::OpenAI.AssistantObjectToolResourcesFileSearch? Type150 { get; set; }
+ public global::System.Collections.Generic.IList>? Type150 { get; set; }
///
///
///
- public global::System.AnyOf? Type151 { get; set; }
+ public global::OpenAI.AssistantObjectToolResources? Type151 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>? Type152 { get; set; }
+ public global::System.OneOf? Type152 { get; set; }
///
///
///
- public global::OpenAI.CreateAssistantRequestToolResources? Type153 { get; set; }
+ public global::OpenAI.AssistantObjectToolResourcesCodeInterpreter? Type153 { get; set; }
///
///
///
- public global::System.OneOf? Type154 { get; set; }
+ public global::OpenAI.AssistantObjectToolResourcesFileSearch? Type154 { get; set; }
///
///
///
- public global::OpenAI.CreateAssistantRequestToolResourcesCodeInterpreter? Type155 { get; set; }
+ public global::System.AnyOf? Type155 { get; set; }
///
///
///
- public global::OpenAI.CreateAssistantRequestToolResourcesFileSearch? Type156 { get; set; }
+ public global::System.Collections.Generic.IList?>? Type156 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type157 { get; set; }
+ public global::OpenAI.CreateAssistantRequestToolResources? Type157 { get; set; }
///
///
///
- public global::OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoresChunkingStrategyType? Type158 { get; set; }
+ public global::System.OneOf? Type158 { get; set; }
///
///
///
- public global::System.AnyOf? Type159 { get; set; }
+ public global::OpenAI.CreateAssistantRequestToolResourcesCodeInterpreter? Type159 { get; set; }
///
///
///
- public global::OpenAI.ModifyAssistantRequestToolResources? Type160 { get; set; }
+ public global::OpenAI.CreateAssistantRequestToolResourcesFileSearch? Type160 { get; set; }
///
///
///
- public global::System.OneOf? Type161 { get; set; }
+ public global::System.Collections.Generic.IList? Type161 { get; set; }
///
///
///
- public global::OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type162 { get; set; }
+ public global::OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoresChunkingStrategyType? Type162 { get; set; }
///
///
///
- public global::OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type163 { get; set; }
+ public global::System.AnyOf? Type163 { get; set; }
///
///
///
- public global::OpenAI.DeleteAssistantResponseObject? Type164 { get; set; }
+ public global::OpenAI.ModifyAssistantRequestToolResources? Type164 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type165 { get; set; }
+ public global::System.OneOf? Type165 { get; set; }
///
///
///
- public global::OpenAI.AssistantToolsCodeType? Type166 { get; set; }
+ public global::OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type166 { get; set; }
///
///
///
- public global::OpenAI.AssistantToolsFileSearchType? Type167 { get; set; }
+ public global::OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type167 { get; set; }
///
///
///
- public global::OpenAI.AssistantToolsFileSearchFileSearch? Type168 { get; set; }
+ public global::OpenAI.DeleteAssistantResponseObject? Type168 { get; set; }
///
///
///
- public global::OpenAI.AssistantToolsFileSearchTypeOnlyType? Type169 { get; set; }
+ public global::System.Collections.Generic.IList? Type169 { get; set; }
///
///
///
- public global::OpenAI.AssistantToolsFunctionType? Type170 { get; set; }
+ public global::OpenAI.AssistantToolsCodeType? Type170 { get; set; }
///
///
///
- public global::OpenAI.TruncationObjectType? Type171 { get; set; }
+ public global::OpenAI.AssistantToolsFileSearchType? Type171 { get; set; }
///
///
///
- public global::OpenAI.AssistantsNamedToolChoiceType? Type172 { get; set; }
+ public global::OpenAI.AssistantToolsFileSearchFileSearch? Type172 { get; set; }
///
///
///
- public global::OpenAI.AssistantsNamedToolChoiceFunction? Type173 { get; set; }
+ public global::OpenAI.AssistantToolsFileSearchTypeOnlyType? Type173 { get; set; }
///
///
///
- public global::OpenAI.RunObjectObject? Type174 { get; set; }
+ public global::OpenAI.AssistantToolsFunctionType? Type174 { get; set; }
///
///
///
- public global::OpenAI.RunObjectStatus? Type175 { get; set; }
+ public global::OpenAI.TruncationObjectType? Type175 { get; set; }
///
///
///
- public global::OpenAI.RunObjectRequiredAction? Type176 { get; set; }
+ public global::OpenAI.AssistantsNamedToolChoiceType? Type176 { get; set; }
///
///
///
- public global::OpenAI.RunObjectLastError? Type177 { get; set; }
+ public global::OpenAI.AssistantsNamedToolChoiceFunction? Type177 { get; set; }
///
///
///
- public global::OpenAI.RunObjectIncompleteDetails? Type178 { get; set; }
+ public global::OpenAI.RunObjectObject? Type178 { get; set; }
///
///
///
- public global::OpenAI.RunCompletionUsage? Type179 { get; set; }
+ public global::OpenAI.RunObjectStatus? Type179 { get; set; }
///
///
///
- public global::OpenAI.TruncationObject? Type180 { get; set; }
+ public global::OpenAI.RunObjectRequiredAction? Type180 { get; set; }
///
///
///
- public global::System.OneOf? Type181 { get; set; }
+ public global::OpenAI.RunObjectLastError? Type181 { get; set; }
///
///
///
- public global::System.OneOf? Type182 { get; set; }
+ public global::OpenAI.RunObjectIncompleteDetails? Type182 { get; set; }
///
///
///
- public global::OpenAI.RunObjectRequiredActionType? Type183 { get; set; }
+ public global::OpenAI.RunCompletionUsage? Type183 { get; set; }
///
///
///
- public global::OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type184 { get; set; }
+ public global::OpenAI.TruncationObject? Type184 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type185 { get; set; }
+ public global::System.OneOf? Type185 { get; set; }
///
///
///
- public global::OpenAI.RunObjectLastErrorCode? Type186 { get; set; }
+ public global::System.OneOf? Type186 { get; set; }
///
///
///
- public global::OpenAI.RunObjectIncompleteDetailsReason? Type187 { get; set; }
+ public global::OpenAI.RunObjectRequiredActionType? Type187 { get; set; }
///
///
///
- public global::System.AnyOf? Type188 { get; set; }
+ public global::OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type188 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type189 { get; set; }
+ public global::System.Collections.Generic.IList? Type189 { get; set; }
///
///
///
- public global::System.OneOf? Type190 { get; set; }
+ public global::OpenAI.RunObjectLastErrorCode? Type190 { get; set; }
///
///
///
- public global::System.OneOf? Type191 { get; set; }
+ public global::OpenAI.RunObjectIncompleteDetailsReason? Type191 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type192 { get; set; }
+ public global::System.AnyOf? Type192 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type193 { get; set; }
+ public global::System.Collections.Generic.IList? Type193 { get; set; }
///
///
///
- public global::OpenAI.RunToolCallObjectType? Type194 { get; set; }
+ public global::System.OneOf? Type194 { get; set; }
///
///
///
- public global::OpenAI.RunToolCallObjectFunction? Type195 { get; set; }
+ public global::System.OneOf? Type195 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadRequest? Type196 { get; set; }
+ public global::System.Collections.Generic.IList? Type196 { get; set; }
///
///
///
- public global::System.AnyOf? Type197 { get; set; }
+ public global::System.Collections.Generic.IList? Type197 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadAndRunRequestToolResources? Type198 { get; set; }
+ public global::OpenAI.RunToolCallObjectType? Type198 { get; set; }
///
///
///
- public global::System.OneOf? Type199 { get; set; }
+ public global::OpenAI.RunToolCallObjectFunction? Type199 { get; set; }
///
///
///
- public global::System.OneOf? Type200 { get; set; }
+ public global::OpenAI.CreateThreadRequest? Type200 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadAndRunRequestToolResourcesCodeInterpreter? Type201 { get; set; }
+ public global::System.AnyOf? Type201 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadAndRunRequestToolResourcesFileSearch? Type202 { get; set; }
+ public global::OpenAI.CreateThreadAndRunRequestToolResources? Type202 { get; set; }
///
///
///
- public global::OpenAI.ThreadObjectObject? Type203 { get; set; }
+ public global::System.OneOf? Type203 { get; set; }
///
///
///
- public global::OpenAI.ThreadObjectToolResources? Type204 { get; set; }
+ public global::System.OneOf? Type204 { get; set; }
///
///
///
- public global::OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type205 { get; set; }
+ public global::OpenAI.CreateThreadAndRunRequestToolResourcesCodeInterpreter? Type205 { get; set; }
///
///
///
- public global::OpenAI.ThreadObjectToolResourcesFileSearch? Type206 { get; set; }
+ public global::OpenAI.CreateThreadAndRunRequestToolResourcesFileSearch? Type206 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadRequestToolResources? Type207 { get; set; }
+ public global::OpenAI.ThreadObjectObject? Type207 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadRequestToolResourcesCodeInterpreter? Type208 { get; set; }
+ public global::OpenAI.ThreadObjectToolResources? Type208 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadRequestToolResourcesFileSearch? Type209 { get; set; }
+ public global::OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type209 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type210 { get; set; }
+ public global::OpenAI.ThreadObjectToolResourcesFileSearch? Type210 { get; set; }
///
///
///
- public global::OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoresChunkingStrategyType? Type211 { get; set; }
+ public global::OpenAI.CreateThreadRequestToolResources? Type211 { get; set; }
///
///
///
- public global::OpenAI.ModifyThreadRequestToolResources? Type212 { get; set; }
+ public global::OpenAI.CreateThreadRequestToolResourcesCodeInterpreter? Type212 { get; set; }
///
///
///
- public global::OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type213 { get; set; }
+ public global::OpenAI.CreateThreadRequestToolResourcesFileSearch? Type213 { get; set; }
///
///
///
- public global::OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type214 { get; set; }
+ public global::System.Collections.Generic.IList? Type214 { get; set; }
///
///
///
- public global::OpenAI.DeleteThreadResponseObject? Type215 { get; set; }
+ public global::OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoresChunkingStrategyType? Type215 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type216 { get; set; }
+ public global::OpenAI.ModifyThreadRequestToolResources? Type216 { get; set; }
///
///
///
- public global::OpenAI.MessageObjectObject? Type217 { get; set; }
+ public global::OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type217 { get; set; }
///
///
///
- public global::OpenAI.MessageObjectStatus? Type218 { get; set; }
+ public global::OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type218 { get; set; }
///
///
///
- public global::OpenAI.MessageObjectIncompleteDetails? Type219 { get; set; }
+ public global::OpenAI.DeleteThreadResponseObject? Type219 { get; set; }
///
///
///
- public global::OpenAI.MessageObjectRole? Type220 { get; set; }
+ public global::System.Collections.Generic.IList? Type220 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type221 { get; set; }
+ public global::OpenAI.MessageObjectObject? Type221 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type222 { get; set; }
+ public global::OpenAI.MessageObjectStatus? Type222 { get; set; }
///
///
///
- public global::OpenAI.MessageObjectIncompleteDetailsReason? Type223 { get; set; }
+ public global::OpenAI.MessageObjectIncompleteDetails? Type223 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>? Type224 { get; set; }
+ public global::OpenAI.MessageObjectRole? Type224 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaObjectObject? Type225 { get; set; }
+ public global::System.Collections.Generic.IList>? Type225 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaObjectDelta? Type226 { get; set; }
+ public global::System.Collections.Generic.IList? Type226 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaObjectDeltaRole? Type227 { get; set; }
+ public global::OpenAI.MessageObjectIncompleteDetailsReason? Type227 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>? Type228 { get; set; }
+ public global::System.Collections.Generic.IList?>? Type228 { get; set; }
///
///
///
- public global::OpenAI.CreateMessageRequestRole? Type229 { get; set; }
+ public global::OpenAI.MessageDeltaObjectObject? Type229 { get; set; }
///
///
///
- public global::System.OneOf>>? Type230 { get; set; }
+ public global::OpenAI.MessageDeltaObjectDelta? Type230 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type231 { get; set; }
+ public global::OpenAI.MessageDeltaObjectDeltaRole? Type231 { get; set; }
///
///
///
- public global::OpenAI.DeleteMessageResponseObject? Type232 { get; set; }
+ public global::System.Collections.Generic.IList?>? Type232 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type233 { get; set; }
+ public global::OpenAI.CreateMessageRequestRole? Type233 { get; set; }
///
///
///
- public global::OpenAI.MessageContentImageFileObjectType? Type234 { get; set; }
+ public global::System.OneOf>>? Type234 { get; set; }
///
///
///
- public global::OpenAI.MessageContentImageFileObjectImageFile? Type235 { get; set; }
+ public global::System.Collections.Generic.IList? Type235 { get; set; }
///
///
///
- public global::OpenAI.MessageContentImageFileObjectImageFileDetail? Type236 { get; set; }
+ public global::OpenAI.DeleteMessageResponseObject? Type236 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentImageFileObjectType? Type237 { get; set; }
+ public global::System.Collections.Generic.IList? Type237 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentImageFileObjectImageFile? Type238 { get; set; }
+ public global::OpenAI.MessageContentImageFileObjectType? Type238 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentImageFileObjectImageFileDetail? Type239 { get; set; }
+ public global::OpenAI.MessageContentImageFileObjectImageFile? Type239 { get; set; }
///
///
///
- public global::OpenAI.MessageContentImageUrlObjectType? Type240 { get; set; }
+ public global::OpenAI.MessageContentImageFileObjectImageFileDetail? Type240 { get; set; }
///
///
///
- public global::OpenAI.MessageContentImageUrlObjectImageUrl? Type241 { get; set; }
+ public global::OpenAI.MessageDeltaContentImageFileObjectType? Type241 { get; set; }
///
///
///
- public global::OpenAI.MessageContentImageUrlObjectImageUrlDetail? Type242 { get; set; }
+ public global::OpenAI.MessageDeltaContentImageFileObjectImageFile? Type242 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentImageUrlObjectType? Type243 { get; set; }
+ public global::OpenAI.MessageDeltaContentImageFileObjectImageFileDetail? Type243 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentImageUrlObjectImageUrl? Type244 { get; set; }
+ public global::OpenAI.MessageContentImageUrlObjectType? Type244 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentImageUrlObjectImageUrlDetail? Type245 { get; set; }
+ public global::OpenAI.MessageContentImageUrlObjectImageUrl? Type245 { get; set; }
///
///
///
- public global::OpenAI.MessageContentTextObjectType? Type246 { get; set; }
+ public global::OpenAI.MessageContentImageUrlObjectImageUrlDetail? Type246 { get; set; }
///
///
///
- public global::OpenAI.MessageContentTextObjectText? Type247 { get; set; }
+ public global::OpenAI.MessageDeltaContentImageUrlObjectType? Type247 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type248 { get; set; }
+ public global::OpenAI.MessageDeltaContentImageUrlObjectImageUrl? Type248 { get; set; }
///
///
///
- public global::OpenAI.MessageRequestContentTextObjectType? Type249 { get; set; }
+ public global::OpenAI.MessageDeltaContentImageUrlObjectImageUrlDetail? Type249 { get; set; }
///
///
///
- public global::OpenAI.MessageContentTextAnnotationsFileCitationObjectType? Type250 { get; set; }
+ public global::OpenAI.MessageContentTextObjectType? Type250 { get; set; }
///
///
///
- public global::OpenAI.MessageContentTextAnnotationsFileCitationObjectFileCitation? Type251 { get; set; }
+ public global::OpenAI.MessageContentTextObjectText? Type251 { get; set; }
///
///
///
- public global::OpenAI.MessageContentTextAnnotationsFilePathObjectType? Type252 { get; set; }
+ public global::System.Collections.Generic.IList>? Type252 { get; set; }
///
///
///
- public global::OpenAI.MessageContentTextAnnotationsFilePathObjectFilePath? Type253 { get; set; }
+ public global::OpenAI.MessageRequestContentTextObjectType? Type253 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentTextObjectType? Type254 { get; set; }
+ public global::OpenAI.MessageContentTextAnnotationsFileCitationObjectType? Type254 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentTextObjectText? Type255 { get; set; }
+ public global::OpenAI.MessageContentTextAnnotationsFileCitationObjectFileCitation? Type255 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>? Type256 { get; set; }
+ public global::OpenAI.MessageContentTextAnnotationsFilePathObjectType? Type256 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectType? Type257 { get; set; }
+ public global::OpenAI.MessageContentTextAnnotationsFilePathObjectFilePath? Type257 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation? Type258 { get; set; }
+ public global::OpenAI.MessageDeltaContentTextObjectType? Type258 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectType? Type259 { get; set; }
+ public global::OpenAI.MessageDeltaContentTextObjectText? Type259 { get; set; }
///
///
///
- public global::OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectFilePath? Type260 { get; set; }
+ public global::System.Collections.Generic.IList?>? Type260 { get; set; }
///
///
///
- public global::OpenAI.RunStepObjectObject? Type261 { get; set; }
+ public global::OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectType? Type261 { get; set; }
///
///
///
- public global::OpenAI.RunStepObjectType? Type262 { get; set; }
+ public global::OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation? Type262 { get; set; }
///
///
///
- public global::OpenAI.RunStepObjectStatus? Type263 { get; set; }
+ public global::OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectType? Type263 { get; set; }
///
///
///
- public global::OpenAI.RunStepObjectLastError? Type264 { get; set; }
+ public global::OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectFilePath? Type264 { get; set; }
///
///
///
- public global::OpenAI.RunStepCompletionUsage? Type265 { get; set; }
+ public global::OpenAI.RunStepObjectObject? Type265 { get; set; }
///
///
///
- public global::OpenAI.RunStepObjectLastErrorCode? Type266 { get; set; }
+ public global::OpenAI.RunStepObjectType? Type266 { get; set; }
///
///
///
- public global::OpenAI.RunStepDeltaObjectObject? Type267 { get; set; }
+ public global::OpenAI.RunStepObjectStatus? Type267 { get; set; }
///
///
///
- public global::OpenAI.RunStepDeltaObjectDelta? Type268 { get; set; }
+ public global::OpenAI.RunStepObjectLastError? Type268 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type269 { get; set; }
+ public global::OpenAI.RunStepCompletionUsage? Type269 { get; set; }
///
///
///
- public global::OpenAI.RunStepDetailsMessageCreationObjectType? Type270 { get; set; }
+ public global::OpenAI.RunStepObjectLastErrorCode? Type270 { get; set; }
///
///
///
- public global::OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type271 { get; set; }
+ public global::OpenAI.RunStepDeltaObjectObject? Type271 { get; set; }
///
///
///
- public global::OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type272 { get; set; }
+ public global::OpenAI.RunStepDeltaObjectDelta? Type272 { get; set; }
///
///
///
- public global::OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type273 { get; set; }
+ public global::System.Collections.Generic.IList? Type273 { get; set; }
///
///
///
- public global::OpenAI.RunStepDetailsToolCallsObjectType? Type274 { get; set; }
+ public global::OpenAI.RunStepDetailsMessageCreationObjectType? Type274 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type275 { get; set; }
+ public global::OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type275 { get; set; }
///
///
///
- public global::OpenAI.RunStepDeltaStepDetailsToolCallsObjectType? Type276 { get; set; }
+ public global::OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type276 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList?>? Type277 { get; set; }
+ public global::OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type277 { get; set; }
///
///
///
- public global::OpenAI.RunStepDetailsToolCallsCodeObjectType? Type278 { get; set; }
+ public global::OpenAI.RunStepDetailsToolCallsObjectType? Type278 { get; set; }
///
///
///
- public global::OpenAI.RunStepDetailsToolCallsCodeObjectCodeInterpreter? Type279 { get; set; }
+ public global::System.Collections.Generic.IList>? Type279 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList