diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI..JsonSerializerContext.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI..JsonSerializerContext.g.cs index 4e1af1b9..87783e92 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI..JsonSerializerContext.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI..JsonSerializerContext.g.cs @@ -375,6 +375,8 @@ namespace tryAGI.OpenAI typeof(global::tryAGI.OpenAI.JsonConverters.OutputTextContentTypeNullableJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.RefusalContentTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.RefusalContentTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningTextContentTypeJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningTextContentTypeNullableJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ConversationResourceObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ConversationResourceObjectNullableJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.TextContentTypeJsonConverter), @@ -415,12 +417,10 @@ namespace tryAGI.OpenAI typeof(global::tryAGI.OpenAI.JsonConverters.ImageGenToolCallStatusNullableJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ImageGenToolCallTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ImageGenToolCallTypeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemTypeJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemTypeNullableJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemStatusJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemStatusNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemTypeJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.SummaryTypeJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.SummaryTypeNullableJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemTypeNullableJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.LocalShellExecActionTypeJsonConverter), @@ -1913,6 +1913,7 @@ namespace tryAGI.OpenAI typeof(global::tryAGI.OpenAI.JsonConverters.Format2JsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.InputItemJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ItemJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OutputMessageContentJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.InputMessagesJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.SourceJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateEvalItemJsonConverter), diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ContentItem.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ContentItem.g.cs index db0f2e5a..866426dc 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ContentItem.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ContentItem.g.cs @@ -64,6 +64,18 @@ public class ContentItemJsonConverter : global::System.Text.Json.Serialization.J { } + readerCopy = reader; + global::tryAGI.OpenAI.ReasoningTextContent? reasoningText = default; + try + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.ReasoningTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.ReasoningTextContent).Name}"); + reasoningText = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + readerCopy = reader; global::tryAGI.OpenAI.RefusalContent? refusal = default; try @@ -117,6 +129,7 @@ public class ContentItemJsonConverter : global::System.Text.Json.Serialization.J outputText, text, summaryText, + reasoningText, refusal, inputImage, computerScreenshot, @@ -147,6 +160,12 @@ public class ContentItemJsonConverter : global::System.Text.Json.Serialization.J throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.SummaryTextContent).Name}"); _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); } + else if (reasoningText != null) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.ReasoningTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.ReasoningTextContent).Name}"); + _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); + } else if (refusal != null) { var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.RefusalContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? @@ -208,6 +227,12 @@ public override void Write( throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.SummaryTextContent).Name}"); global::System.Text.Json.JsonSerializer.Serialize(writer, value.SummaryText, typeInfo); } + else if (value.IsReasoningText) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.ReasoningTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.ReasoningTextContent).Name}"); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.ReasoningText, typeInfo); + } else if (value.IsRefusal) { var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.RefusalContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.OutputContent.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.OutputContent.g.cs index b74af7bd..cc8e1848 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.OutputContent.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.OutputContent.g.cs @@ -40,9 +40,22 @@ public class OutputContentJsonConverter : global::System.Text.Json.Serialization { } + readerCopy = reader; + global::tryAGI.OpenAI.ReasoningTextContent? reasoningText = default; + try + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.ReasoningTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.ReasoningTextContent).Name}"); + reasoningText = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + var result = new global::tryAGI.OpenAI.OutputContent( text, - refusal + refusal, + reasoningText ); if (text != null) @@ -57,6 +70,12 @@ public class OutputContentJsonConverter : global::System.Text.Json.Serialization throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.RefusalContent).Name}"); _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); } + else if (reasoningText != null) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.ReasoningTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.ReasoningTextContent).Name}"); + _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); + } return result; } @@ -82,6 +101,12 @@ public override void Write( throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.RefusalContent).Name}"); global::System.Text.Json.JsonSerializer.Serialize(writer, value.Refusal, typeInfo); } + else if (value.IsReasoningText) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.ReasoningTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.ReasoningTextContent).Name}"); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.ReasoningText, typeInfo); + } } } } \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.OutputMessageContent.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.OutputMessageContent.g.cs new file mode 100644 index 00000000..30b40db1 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.OutputMessageContent.g.cs @@ -0,0 +1,87 @@ +#nullable enable +#pragma warning disable CS0618 // Type or member is obsolete + +namespace tryAGI.OpenAI.JsonConverters +{ + /// + public class OutputMessageContentJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::tryAGI.OpenAI.OutputMessageContent Read( + ref global::System.Text.Json.Utf8JsonReader reader, + global::System.Type typeToConvert, + global::System.Text.Json.JsonSerializerOptions options) + { + options = options ?? throw new global::System.ArgumentNullException(nameof(options)); + var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); + + var + readerCopy = reader; + global::tryAGI.OpenAI.OutputTextContent? text = default; + try + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.OutputTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.OutputTextContent).Name}"); + text = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + + readerCopy = reader; + global::tryAGI.OpenAI.RefusalContent? refusal = default; + try + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.RefusalContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.RefusalContent).Name}"); + refusal = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo); + } + catch (global::System.Text.Json.JsonException) + { + } + + var result = new global::tryAGI.OpenAI.OutputMessageContent( + text, + refusal + ); + + if (text != null) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.OutputTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.OutputTextContent).Name}"); + _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); + } + else if (refusal != null) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.RefusalContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.RefusalContent).Name}"); + _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo); + } + + return result; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::tryAGI.OpenAI.OutputMessageContent value, + global::System.Text.Json.JsonSerializerOptions options) + { + options = options ?? throw new global::System.ArgumentNullException(nameof(options)); + var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); + + if (value.IsText) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.OutputTextContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.OutputTextContent).Name}"); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Text, typeInfo); + } + else if (value.IsRefusal) + { + var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::tryAGI.OpenAI.RefusalContent), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? + throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::tryAGI.OpenAI.RefusalContent).Name}"); + global::System.Text.Json.JsonSerializer.Serialize(writer, value.Refusal, typeInfo); + } + } + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemType.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningTextContentType.g.cs similarity index 71% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemType.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningTextContentType.g.cs index 7b9b7e1b..4af99c0a 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemType.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningTextContentType.g.cs @@ -3,10 +3,10 @@ namespace tryAGI.OpenAI.JsonConverters { /// - public sealed class ReasoningItemContentItemTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ReasoningTextContentTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::tryAGI.OpenAI.ReasoningItemContentItemType Read( + public override global::tryAGI.OpenAI.ReasoningTextContentType Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -18,7 +18,7 @@ public sealed class ReasoningItemContentItemTypeJsonConverter : global::System.T var stringValue = reader.GetString(); if (stringValue != null) { - return global::tryAGI.OpenAI.ReasoningItemContentItemTypeExtensions.ToEnum(stringValue) ?? default; + return global::tryAGI.OpenAI.ReasoningTextContentTypeExtensions.ToEnum(stringValue) ?? default; } break; @@ -26,11 +26,11 @@ public sealed class ReasoningItemContentItemTypeJsonConverter : global::System.T case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::tryAGI.OpenAI.ReasoningItemContentItemType)numValue; + return (global::tryAGI.OpenAI.ReasoningTextContentType)numValue; } case global::System.Text.Json.JsonTokenType.Null: { - return default(global::tryAGI.OpenAI.ReasoningItemContentItemType); + return default(global::tryAGI.OpenAI.ReasoningTextContentType); } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -42,12 +42,12 @@ public sealed class ReasoningItemContentItemTypeJsonConverter : global::System.T /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::tryAGI.OpenAI.ReasoningItemContentItemType value, + global::tryAGI.OpenAI.ReasoningTextContentType value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::tryAGI.OpenAI.ReasoningItemContentItemTypeExtensions.ToValueString(value)); + writer.WriteStringValue(global::tryAGI.OpenAI.ReasoningTextContentTypeExtensions.ToValueString(value)); } } } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemTypeNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningTextContentTypeNullable.g.cs similarity index 72% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemTypeNullable.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningTextContentTypeNullable.g.cs index 4ba4b9fe..6c015b28 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemTypeNullable.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningTextContentTypeNullable.g.cs @@ -3,10 +3,10 @@ namespace tryAGI.OpenAI.JsonConverters { /// - public sealed class ReasoningItemContentItemTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class ReasoningTextContentTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::tryAGI.OpenAI.ReasoningItemContentItemType? Read( + public override global::tryAGI.OpenAI.ReasoningTextContentType? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -18,7 +18,7 @@ public sealed class ReasoningItemContentItemTypeNullableJsonConverter : global:: var stringValue = reader.GetString(); if (stringValue != null) { - return global::tryAGI.OpenAI.ReasoningItemContentItemTypeExtensions.ToEnum(stringValue); + return global::tryAGI.OpenAI.ReasoningTextContentTypeExtensions.ToEnum(stringValue); } break; @@ -26,11 +26,11 @@ public sealed class ReasoningItemContentItemTypeNullableJsonConverter : global:: case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::tryAGI.OpenAI.ReasoningItemContentItemType)numValue; + return (global::tryAGI.OpenAI.ReasoningTextContentType)numValue; } case global::System.Text.Json.JsonTokenType.Null: { - return default(global::tryAGI.OpenAI.ReasoningItemContentItemType?); + return default(global::tryAGI.OpenAI.ReasoningTextContentType?); } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -42,7 +42,7 @@ public sealed class ReasoningItemContentItemTypeNullableJsonConverter : global:: /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::tryAGI.OpenAI.ReasoningItemContentItemType? value, + global::tryAGI.OpenAI.ReasoningTextContentType? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -53,7 +53,7 @@ public override void Write( } else { - writer.WriteStringValue(global::tryAGI.OpenAI.ReasoningItemContentItemTypeExtensions.ToValueString(value.Value)); + writer.WriteStringValue(global::tryAGI.OpenAI.ReasoningTextContentTypeExtensions.ToValueString(value.Value)); } } } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemType.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.SummaryType.g.cs similarity index 65% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemType.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.SummaryType.g.cs index 2bedd36b..49974079 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemType.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.SummaryType.g.cs @@ -3,10 +3,10 @@ namespace tryAGI.OpenAI.JsonConverters { /// - public sealed class ReasoningItemSummaryItemTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class SummaryTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::tryAGI.OpenAI.ReasoningItemSummaryItemType Read( + public override global::tryAGI.OpenAI.SummaryType Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -18,7 +18,7 @@ public sealed class ReasoningItemSummaryItemTypeJsonConverter : global::System.T var stringValue = reader.GetString(); if (stringValue != null) { - return global::tryAGI.OpenAI.ReasoningItemSummaryItemTypeExtensions.ToEnum(stringValue) ?? default; + return global::tryAGI.OpenAI.SummaryTypeExtensions.ToEnum(stringValue) ?? default; } break; @@ -26,11 +26,11 @@ public sealed class ReasoningItemSummaryItemTypeJsonConverter : global::System.T case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::tryAGI.OpenAI.ReasoningItemSummaryItemType)numValue; + return (global::tryAGI.OpenAI.SummaryType)numValue; } case global::System.Text.Json.JsonTokenType.Null: { - return default(global::tryAGI.OpenAI.ReasoningItemSummaryItemType); + return default(global::tryAGI.OpenAI.SummaryType); } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -42,12 +42,12 @@ public sealed class ReasoningItemSummaryItemTypeJsonConverter : global::System.T /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::tryAGI.OpenAI.ReasoningItemSummaryItemType value, + global::tryAGI.OpenAI.SummaryType value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - writer.WriteStringValue(global::tryAGI.OpenAI.ReasoningItemSummaryItemTypeExtensions.ToValueString(value)); + writer.WriteStringValue(global::tryAGI.OpenAI.SummaryTypeExtensions.ToValueString(value)); } } } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemTypeNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.SummaryTypeNullable.g.cs similarity index 67% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemTypeNullable.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.SummaryTypeNullable.g.cs index 04542e42..f5263b33 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemTypeNullable.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.SummaryTypeNullable.g.cs @@ -3,10 +3,10 @@ namespace tryAGI.OpenAI.JsonConverters { /// - public sealed class ReasoningItemSummaryItemTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + public sealed class SummaryTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter { /// - public override global::tryAGI.OpenAI.ReasoningItemSummaryItemType? Read( + public override global::tryAGI.OpenAI.SummaryType? Read( ref global::System.Text.Json.Utf8JsonReader reader, global::System.Type typeToConvert, global::System.Text.Json.JsonSerializerOptions options) @@ -18,7 +18,7 @@ public sealed class ReasoningItemSummaryItemTypeNullableJsonConverter : global:: var stringValue = reader.GetString(); if (stringValue != null) { - return global::tryAGI.OpenAI.ReasoningItemSummaryItemTypeExtensions.ToEnum(stringValue); + return global::tryAGI.OpenAI.SummaryTypeExtensions.ToEnum(stringValue); } break; @@ -26,11 +26,11 @@ public sealed class ReasoningItemSummaryItemTypeNullableJsonConverter : global:: case global::System.Text.Json.JsonTokenType.Number: { var numValue = reader.GetInt32(); - return (global::tryAGI.OpenAI.ReasoningItemSummaryItemType)numValue; + return (global::tryAGI.OpenAI.SummaryType)numValue; } case global::System.Text.Json.JsonTokenType.Null: { - return default(global::tryAGI.OpenAI.ReasoningItemSummaryItemType?); + return default(global::tryAGI.OpenAI.SummaryType?); } default: throw new global::System.ArgumentOutOfRangeException(nameof(reader)); @@ -42,7 +42,7 @@ public sealed class ReasoningItemSummaryItemTypeNullableJsonConverter : global:: /// public override void Write( global::System.Text.Json.Utf8JsonWriter writer, - global::tryAGI.OpenAI.ReasoningItemSummaryItemType? value, + global::tryAGI.OpenAI.SummaryType? value, global::System.Text.Json.JsonSerializerOptions options) { writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); @@ -53,7 +53,7 @@ public override void Write( } else { - writer.WriteStringValue(global::tryAGI.OpenAI.ReasoningItemSummaryItemTypeExtensions.ToValueString(value.Value)); + writer.WriteStringValue(global::tryAGI.OpenAI.SummaryTypeExtensions.ToValueString(value.Value)); } } } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs index 926e9c18..c679d94e 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs @@ -2378,219 +2378,219 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::tryAGI.OpenAI.OutputContentDiscriminator? Type588 { get; set; } + public global::tryAGI.OpenAI.ReasoningTextContent? Type588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Conversation? Type589 { get; set; } + public global::tryAGI.OpenAI.ReasoningTextContentType? Type589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ConversationResource? Type590 { get; set; } + public global::tryAGI.OpenAI.OutputContentDiscriminator? Type590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ConversationResourceObject? Type591 { get; set; } + public global::tryAGI.OpenAI.Conversation? Type591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Conversation2? Type592 { get; set; } + public global::tryAGI.OpenAI.ConversationResource? Type592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ConversationItem? Type593 { get; set; } + public global::tryAGI.OpenAI.ConversationResourceObject? Type593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Message? Type594 { get; set; } + public global::tryAGI.OpenAI.Conversation2? Type594 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type595 { get; set; } + public global::tryAGI.OpenAI.ConversationItem? Type595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem? Type596 { get; set; } + public global::tryAGI.OpenAI.Message? Type596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextContent? Type597 { get; set; } + public global::System.Collections.Generic.IList? Type597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextContentType? Type598 { get; set; } + public global::tryAGI.OpenAI.ContentItem? Type598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SummaryTextContent? Type599 { get; set; } + public global::tryAGI.OpenAI.TextContent? Type599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SummaryTextContentType? Type600 { get; set; } + public global::tryAGI.OpenAI.TextContentType? Type600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type601 { get; set; } + public global::tryAGI.OpenAI.SummaryTextContent? Type601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRole? Type602 { get; set; } + public global::tryAGI.OpenAI.SummaryTextContentType? Type602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStatus? Type603 { get; set; } + public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageType? Type604 { get; set; } + public global::tryAGI.OpenAI.MessageRole? Type604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallResource? Type605 { get; set; } + public global::tryAGI.OpenAI.MessageStatus? Type605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCall? Type606 { get; set; } + public global::tryAGI.OpenAI.MessageType? Type606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallStatus? Type607 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallResource? Type607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallType? Type608 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCall? Type608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type609 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallStatus? Type609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputResource? Type610 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallType? Type610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutput? Type611 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type612 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputResource? Type612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type613 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutput? Type613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type614 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCall? Type615 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type615 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type616 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallResult? Type617 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCall? Type617 { get; set; } /// /// /// - public float? Type618 { get; set; } + public global::System.Collections.Generic.IList? Type618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type619 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallResult? Type619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallType? Type620 { get; set; } + public float? Type620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCall? Type621 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallAction? Type622 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallType? Type622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearch? Type623 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCall? Type623 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type624 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallAction? Type624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type625 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearch? Type625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type626 { get; set; } + public global::System.Collections.Generic.IList? Type626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchType? Type627 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type627 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type628 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type629 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchType? Type629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionFind? Type630 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionFindType? Type631 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type632 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionFind? Type632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type633 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionFindType? Type633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallType? Type634 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolCall? Type635 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type636 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallType? Type636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolCallType? Type637 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolCall? Type637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItem? Type638 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type638 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type639 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolCallType? Type639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemContentItem? Type640 { get; set; } + public global::tryAGI.OpenAI.ReasoningItem? Type640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemContentItemType? Type641 { get; set; } + public global::System.Collections.Generic.IList? Type641 { get; set; } /// /// /// @@ -2598,15 +2598,15 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.IList? Type643 { get; set; } + public global::System.Collections.Generic.IList? Type643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemSummaryItem? Type644 { get; set; } + public global::tryAGI.OpenAI.Summary? Type644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemSummaryItemType? Type645 { get; set; } + public global::tryAGI.OpenAI.SummaryType? Type645 { get; set; } /// /// /// @@ -3118,6526 +3118,6534 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.IList? Type773 { get; set; } + public global::System.Collections.Generic.IList? Type773 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageRole? Type774 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContent? Type774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageStatus? Type775 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContentDiscriminator? Type775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageType? Type776 { get; set; } + public global::tryAGI.OpenAI.OutputMessageRole? Type776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type777 { get; set; } + public global::tryAGI.OpenAI.OutputMessageStatus? Type777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type778 { get; set; } + public global::tryAGI.OpenAI.OutputMessageType? Type778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponse? Type779 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponseType? Type780 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemDiscriminator? Type781 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponse? Type781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemReferenceParam? Type782 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponseType? Type782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemReferenceParamType? Type783 { get; set; } + public global::tryAGI.OpenAI.ItemDiscriminator? Type783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputItemDiscriminator? Type784 { get; set; } + public global::tryAGI.OpenAI.ItemReferenceParam? Type784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingRequest? Type785 { get; set; } + public global::tryAGI.OpenAI.ItemReferenceParamType? Type785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingRequestEncodingFormat? Type786 { get; set; } + public global::tryAGI.OpenAI.InputItemDiscriminator? Type786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type787 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingRequest? Type787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingRequestModel? Type788 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingRequestEncodingFormat? Type788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingResponse? Type789 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type789 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type790 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingRequestModel? Type790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Embedding? Type791 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingResponse? Type791 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type792 { get; set; } + public global::System.Collections.Generic.IList? Type792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EmbeddingObject? Type793 { get; set; } + public global::tryAGI.OpenAI.Embedding? Type793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingResponseObject? Type794 { get; set; } + public global::System.Collections.Generic.IList? Type794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingResponseUsage? Type795 { get; set; } + public global::tryAGI.OpenAI.EmbeddingObject? Type795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSource? Type796 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingResponseObject? Type796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessages? Type797 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingResponseUsage? Type797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant1? Type798 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSource? Type798 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type799 { get; set; } + public global::tryAGI.OpenAI.InputMessages? Type799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type800 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant1? Type800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItem? Type801 { get; set; } + public global::System.Collections.Generic.IList>? Type801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type802 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentVariant3? Type803 { get; set; } + public global::tryAGI.OpenAI.EvalItem? Type803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentVariant3Type? Type804 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentVariant4? Type805 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentVariant3? Type805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentVariant4Type? Type806 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentVariant3Type? Type806 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemRole? Type807 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentVariant4? Type807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemType? Type808 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentVariant4Type? Type808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant1Type? Type809 { get; set; } + public global::tryAGI.OpenAI.EvalItemRole? Type809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant2? Type810 { get; set; } + public global::tryAGI.OpenAI.EvalItemType? Type810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant2Type? Type811 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant1Type? Type811 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesDiscriminator? Type812 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant2? Type812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSamplingParams? Type813 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesVariant2Type? Type813 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type814 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesDiscriminator? Type814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Source? Type815 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSamplingParams? Type815 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSource? Type816 { get; set; } + public global::System.Collections.Generic.IList? Type816 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type817 { get; set; } + public global::tryAGI.OpenAI.Source? Type817 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type818 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSource? Type818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type819 { get; set; } + public global::System.Collections.Generic.IList? Type819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileIdSource? Type820 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type820 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type821 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type821 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsSource? Type822 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileIdSource? Type822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type823 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSourceDiscriminator? Type824 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsSource? Type824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceType? Type825 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfig? Type826 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSourceDiscriminator? Type826 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfigType? Type827 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceType? Type827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalItem? Type828 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfig? Type828 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalItemVariant1? Type829 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfigType? Type829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSource? Type830 { get; set; } + public global::tryAGI.OpenAI.CreateEvalItem? Type830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Source2? Type831 { get; set; } + public global::tryAGI.OpenAI.CreateEvalItemVariant1? Type831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceSourceDiscriminator? Type832 { get; set; } + public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSource? Type832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceType? Type833 { get; set; } + public global::tryAGI.OpenAI.Source2? Type833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLabelModelGrader? Type834 { get; set; } + public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceSourceDiscriminator? Type834 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type835 { get; set; } + public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceType? Type835 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLabelModelGraderType? Type836 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLabelModelGrader? Type836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfig? Type837 { get; set; } + public global::System.Collections.Generic.IList? Type837 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfigType? Type838 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLabelModelGraderType? Type838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalRequest? Type839 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfig? Type839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalRequestDataSourceConfig? Type840 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfigType? Type840 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfig? Type841 { get; set; } + public global::tryAGI.OpenAI.CreateEvalRequest? Type841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfigType? Type842 { get; set; } + public global::tryAGI.OpenAI.CreateEvalRequestDataSourceConfig? Type842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalRequestDataSourceConfigDiscriminator? Type843 { get; set; } + public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfig? Type843 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type844 { get; set; } + public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfigType? Type844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TestingCriteriaItem? Type845 { get; set; } + public global::tryAGI.OpenAI.CreateEvalRequestDataSourceConfigDiscriminator? Type845 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderStringCheck? Type846 { get; set; } + public global::System.Collections.Generic.IList? Type846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheck? Type847 { get; set; } + public global::tryAGI.OpenAI.TestingCriteriaItem? Type847 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheckOperation? Type848 { get; set; } + public global::tryAGI.OpenAI.EvalGraderStringCheck? Type848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheckType? Type849 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheck? Type849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderTextSimilarity? Type850 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheckOperation? Type850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarity? Type851 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheckType? Type851 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type852 { get; set; } + public global::tryAGI.OpenAI.EvalGraderTextSimilarity? Type852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarityType? Type853 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarity? Type853 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type854 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type854 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderPython? Type855 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarityType? Type855 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderPython? Type856 { get; set; } + public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderPythonType? Type857 { get; set; } + public global::tryAGI.OpenAI.EvalGraderPython? Type857 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type858 { get; set; } + public global::tryAGI.OpenAI.GraderPython? Type858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderScoreModel? Type859 { get; set; } + public global::tryAGI.OpenAI.GraderPythonType? Type859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModel? Type860 { get; set; } + public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type860 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type861 { get; set; } + public global::tryAGI.OpenAI.EvalGraderScoreModel? Type861 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type862 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModel? Type862 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModelType? Type863 { get; set; } + public global::System.Collections.Generic.IList? Type863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type864 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalRequestTestingCriteriaItemDiscriminator? Type865 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModelType? Type865 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSource? Type866 { get; set; } + public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessages2? Type867 { get; set; } + public global::tryAGI.OpenAI.CreateEvalRequestTestingCriteriaItemDiscriminator? Type867 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant1? Type868 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSource? Type868 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type869 { get; set; } + public global::tryAGI.OpenAI.InputMessages2? Type869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type870 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant1? Type870 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant1TemplateItem? Type871 { get; set; } + public global::System.Collections.Generic.IList>? Type871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant1Type? Type872 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type872 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant2? Type873 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant1TemplateItem? Type873 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant2Type? Type874 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant1Type? Type874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesDiscriminator? Type875 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant2? Type875 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParams? Type876 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesVariant2Type? Type876 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParamsText? Type877 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesDiscriminator? Type877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatConfiguration? Type878 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParams? Type878 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type879 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParamsText? Type879 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type880 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatConfiguration? Type880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatConfigurationDiscriminator? Type881 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type881 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type882 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type882 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Tool? Type883 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatConfigurationDiscriminator? Type883 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionTool? Type884 { get; set; } + public global::System.Collections.Generic.IList? Type884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolType? Type885 { get; set; } + public global::tryAGI.OpenAI.Tool? Type885 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchTool? Type886 { get; set; } + public global::tryAGI.OpenAI.FunctionTool? Type886 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RankingOptions? Type887 { get; set; } + public global::tryAGI.OpenAI.FunctionToolType? Type887 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RankerVersionType? Type888 { get; set; } + public global::tryAGI.OpenAI.FileSearchTool? Type888 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolType? Type889 { get; set; } + public global::tryAGI.OpenAI.RankingOptions? Type889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchTool? Type890 { get; set; } + public global::tryAGI.OpenAI.RankerVersionType? Type890 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolFilters? Type891 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolType? Type891 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type892 { get; set; } + public global::tryAGI.OpenAI.WebSearchTool? Type892 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolType? Type893 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolFilters? Type893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchApproximateLocation? Type894 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type894 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchApproximateLocationType? Type895 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolType? Type895 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPTool? Type896 { get; set; } + public global::tryAGI.OpenAI.WebSearchApproximateLocation? Type896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolConnectorId? Type897 { get; set; } + public global::tryAGI.OpenAI.WebSearchApproximateLocationType? Type897 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolType? Type898 { get; set; } + public global::tryAGI.OpenAI.MCPTool? Type898 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenTool? Type899 { get; set; } + public global::tryAGI.OpenAI.MCPToolConnectorId? Type899 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolBackground? Type900 { get; set; } + public global::tryAGI.OpenAI.MCPToolType? Type900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageInputFidelity? Type901 { get; set; } + public global::tryAGI.OpenAI.ImageGenTool? Type901 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type902 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolBackground? Type902 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolModel? Type903 { get; set; } + public global::tryAGI.OpenAI.ImageInputFidelity? Type903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolModeration? Type904 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type905 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolModel? Type905 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolQuality? Type906 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolModeration? Type906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolSize? Type907 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolType? Type908 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolQuality? Type908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellTool? Type909 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolSize? Type909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolType? Type910 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolType? Type910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomTool? Type911 { get; set; } + public global::tryAGI.OpenAI.LocalShellTool? Type911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Format? Type912 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolType? Type912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolFormatVariant1? Type913 { get; set; } + public global::tryAGI.OpenAI.CustomTool? Type913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolFormatVariant1Type? Type914 { get; set; } + public global::tryAGI.OpenAI.Format? Type914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolFormatVariant2? Type915 { get; set; } + public global::tryAGI.OpenAI.CustomToolFormatVariant1? Type915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolFormatVariant2Syntax? Type916 { get; set; } + public global::tryAGI.OpenAI.CustomToolFormatVariant1Type? Type916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolFormatVariant2Type? Type917 { get; set; } + public global::tryAGI.OpenAI.CustomToolFormatVariant2? Type917 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolFormatDiscriminator? Type918 { get; set; } + public global::tryAGI.OpenAI.CustomToolFormatVariant2Syntax? Type918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolType? Type919 { get; set; } + public global::tryAGI.OpenAI.CustomToolFormatVariant2Type? Type919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchPreviewTool? Type920 { get; set; } + public global::tryAGI.OpenAI.CustomToolFormatDiscriminator? Type920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SearchContextSize? Type921 { get; set; } + public global::tryAGI.OpenAI.CustomToolType? Type921 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type922 { get; set; } + public global::tryAGI.OpenAI.WebSearchPreviewTool? Type922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolDiscriminator? Type923 { get; set; } + public global::tryAGI.OpenAI.SearchContextSize? Type923 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Source3? Type924 { get; set; } + public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalResponsesSource? Type925 { get; set; } + public global::tryAGI.OpenAI.ToolDiscriminator? Type925 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalResponsesSourceType? Type926 { get; set; } + public global::tryAGI.OpenAI.Source3? Type926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSourceDiscriminator? Type927 { get; set; } + public global::tryAGI.OpenAI.EvalResponsesSource? Type927 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceType? Type928 { get; set; } + public global::tryAGI.OpenAI.EvalResponsesSourceType? Type928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalRunRequest? Type929 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSourceDiscriminator? Type929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type930 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceType? Type930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFileRequest? Type931 { get; set; } + public global::tryAGI.OpenAI.CreateEvalRunRequest? Type931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileExpirationAfter? Type932 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type933 { get; set; } + public global::tryAGI.OpenAI.CreateFileRequest? Type933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FilePurpose? Type934 { get; set; } + public global::tryAGI.OpenAI.FileExpirationAfter? Type934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningCheckpointPermissionRequest? Type935 { get; set; } + public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequest? Type936 { get; set; } + public global::tryAGI.OpenAI.FilePurpose? Type936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparameters? Type937 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningCheckpointPermissionRequest? Type937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type938 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequest? Type938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersBatchSize? Type939 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparameters? Type939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type940 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier? Type941 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersBatchSize? Type941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type942 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersNEpochs? Type943 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier? Type943 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type944 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegration? Type945 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersNEpochs? Type945 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationType? Type946 { get; set; } + public global::System.Collections.Generic.IList? Type946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationWandb? Type947 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegration? Type947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneMethod? Type948 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationType? Type948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOMethod? Type949 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationWandb? Type949 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type950 { get; set; } + public global::tryAGI.OpenAI.FineTuneMethod? Type950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type951 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOMethod? Type951 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type952 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type953 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type954 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type955 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type956 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type957 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type958 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type958 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type959 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type960 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderMulti? Type961 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type961 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type962 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderLabelModel? Type963 { get; set; } + public global::tryAGI.OpenAI.GraderMulti? Type963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderLabelModelType? Type964 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderMultiType? Type965 { get; set; } + public global::tryAGI.OpenAI.GraderLabelModel? Type965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type966 { get; set; } + public global::tryAGI.OpenAI.GraderLabelModelType? Type966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type967 { get; set; } + public global::tryAGI.OpenAI.GraderMultiType? Type967 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type968 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type969 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type969 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type970 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type971 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type971 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type972 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type973 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type974 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type975 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type976 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type977 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type978 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type979 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type979 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type980 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type981 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type981 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type982 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type982 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type983 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type984 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type985 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type986 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type987 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type987 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneMethodType? Type988 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type989 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestModel? Type990 { get; set; } + public global::tryAGI.OpenAI.FineTuneMethodType? Type990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequest? Type991 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestBackground? Type992 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestModel? Type992 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf>? Type993 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequest? Type993 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type994 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestBackground? Type994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type995 { get; set; } + public global::tryAGI.OpenAI.AnyOf>? Type995 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestModel? Type996 { get; set; } + public global::System.Collections.Generic.IList? Type996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? Type997 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestQuality? Type998 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestModel? Type998 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? Type999 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? Type999 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestSize? Type1000 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestQuality? Type1000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequest? Type1001 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? Type1001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestBackground? Type1002 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestSize? Type1002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1003 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequest? Type1003 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestModel? Type1004 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestBackground? Type1004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestModeration? Type1005 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestOutputFormat? Type1006 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestModel? Type1006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestQuality? Type1007 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestModeration? Type1007 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestResponseFormat? Type1008 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestOutputFormat? Type1008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestSize? Type1009 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestQuality? Type1009 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestStyle? Type1010 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestResponseFormat? Type1010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequest? Type1011 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestSize? Type1011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1012 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestStyle? Type1012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequestModel? Type1013 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequest? Type1013 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequestResponseFormat? Type1014 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequestSize? Type1015 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequestModel? Type1015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequest? Type1016 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequestResponseFormat? Type1016 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1017 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequestSize? Type1017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequestAttachment? Type1018 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequest? Type1018 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1019 { get; set; } + public global::System.Collections.Generic.IList? Type1019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolsItem2? Type1020 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequestAttachment? Type1020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequestAttachmentToolDiscriminator? Type1021 { get; set; } + public global::System.Collections.Generic.IList? Type1021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf>? Type1022 { get; set; } + public global::tryAGI.OpenAI.ToolsItem2? Type1022 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1023 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequestAttachmentToolDiscriminator? Type1023 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentVariant2Item? Type1024 { get; set; } + public global::tryAGI.OpenAI.AnyOf>? Type1024 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRequestContentTextObject? Type1025 { get; set; } + public global::System.Collections.Generic.IList? Type1025 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1026 { get; set; } + public global::tryAGI.OpenAI.ContentVariant2Item? Type1026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequestContentVariant2ItemDiscriminator? Type1027 { get; set; } + public global::tryAGI.OpenAI.MessageRequestContentTextObject? Type1027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequestRole? Type1028 { get; set; } + public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequest? Type1029 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequestContentVariant2ItemDiscriminator? Type1029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf, global::System.Collections.Generic.IList>? Type1030 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequestRole? Type1030 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1031 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequest? Type1031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputVariant3Item? Type1032 { get; set; } + public global::tryAGI.OpenAI.AnyOf, global::System.Collections.Generic.IList>? Type1032 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationImageURLInput? Type1033 { get; set; } + public global::System.Collections.Generic.IList? Type1033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationImageURLInputImageUrl? Type1034 { get; set; } + public global::tryAGI.OpenAI.InputVariant3Item? Type1034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationImageURLInputType? Type1035 { get; set; } + public global::tryAGI.OpenAI.ModerationImageURLInput? Type1035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationTextInput? Type1036 { get; set; } + public global::tryAGI.OpenAI.ModerationImageURLInputImageUrl? Type1036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationTextInputType? Type1037 { get; set; } + public global::tryAGI.OpenAI.ModerationImageURLInputType? Type1037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemDiscriminator? Type1038 { get; set; } + public global::tryAGI.OpenAI.ModerationTextInput? Type1038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1039 { get; set; } + public global::tryAGI.OpenAI.ModerationTextInputType? Type1039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestModel? Type1040 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemDiscriminator? Type1040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponse? Type1041 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1041 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1042 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestModel? Type1042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResult? Type1043 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponse? Type1043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategories? Type1044 { get; set; } + public global::System.Collections.Generic.IList? Type1044 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypes? Type1045 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResult? Type1045 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1046 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategories? Type1046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentItem? Type1047 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypes? Type1047 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1048 { get; set; } + public global::System.Collections.Generic.IList? Type1048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentThreateningItem? Type1049 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentItem? Type1049 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1050 { get; set; } + public global::System.Collections.Generic.IList? Type1050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateItem? Type1051 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentThreateningItem? Type1051 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1052 { get; set; } + public global::System.Collections.Generic.IList? Type1052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateThreateningItem? Type1053 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateItem? Type1053 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1054 { get; set; } + public global::System.Collections.Generic.IList? Type1054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitItem? Type1055 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateThreateningItem? Type1055 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1056 { get; set; } + public global::System.Collections.Generic.IList? Type1056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitViolentItem? Type1057 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitItem? Type1057 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1058 { get; set; } + public global::System.Collections.Generic.IList? Type1058 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmItem? Type1059 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitViolentItem? Type1059 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1060 { get; set; } + public global::System.Collections.Generic.IList? Type1060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction? Type1061 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmItem? Type1061 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1062 { get; set; } + public global::System.Collections.Generic.IList? Type1062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntentItem? Type1063 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction? Type1063 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1064 { get; set; } + public global::System.Collections.Generic.IList? Type1064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualItem? Type1065 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntentItem? Type1065 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1066 { get; set; } + public global::System.Collections.Generic.IList? Type1066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualMinor? Type1067 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualItem? Type1067 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1068 { get; set; } + public global::System.Collections.Generic.IList? Type1068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceItem? Type1069 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualMinor? Type1069 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1070 { get; set; } + public global::System.Collections.Generic.IList? Type1070 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphicItem? Type1071 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceItem? Type1071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryScores? Type1072 { get; set; } + public global::System.Collections.Generic.IList? Type1072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateResponse? Type1073 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphicItem? Type1073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseProperties? Type1074 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryScores? Type1074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsResponses? Type1075 { get; set; } + public global::tryAGI.OpenAI.CreateResponse? Type1075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1076 { get; set; } + public global::tryAGI.OpenAI.ResponseProperties? Type1076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Prompt2? Type1077 { get; set; } + public global::tryAGI.OpenAI.ModelIdsResponses? Type1077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1078 { get; set; } + public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsePropertiesText? Type1079 { get; set; } + public global::tryAGI.OpenAI.Prompt2? Type1079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoice5? Type1080 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceOptions? Type1081 { get; set; } + public global::tryAGI.OpenAI.ResponsePropertiesText? Type1081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowed? Type1082 { get; set; } + public global::tryAGI.OpenAI.ToolChoice5? Type1082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type1083 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceOptions? Type1083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type1084 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowed? Type1084 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceTypes? Type1085 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type1085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceTypesType? Type1086 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type1086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceFunction? Type1087 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceTypes? Type1087 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type1088 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceTypesType? Type1088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceMCP? Type1089 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceFunction? Type1089 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceMCPType? Type1090 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type1090 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceCustom? Type1091 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceMCP? Type1091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceCustomType? Type1092 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceMCPType? Type1092 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsePropertiesToolChoiceDiscriminator? Type1093 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceCustom? Type1093 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsePropertiesTruncation? Type1094 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceCustomType? Type1094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateResponseVariant3? Type1095 { get; set; } + public global::tryAGI.OpenAI.ResponsePropertiesToolChoiceDiscriminator? Type1095 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1096 { get; set; } + public global::tryAGI.OpenAI.ResponsePropertiesTruncation? Type1096 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Includable? Type1097 { get; set; } + public global::tryAGI.OpenAI.CreateResponseVariant3? Type1097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf>? Type1098 { get; set; } + public global::System.Collections.Generic.IList? Type1098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamOptions? Type1099 { get; set; } + public global::tryAGI.OpenAI.Includable? Type1099 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateRunRequest? Type1100 { get; set; } + public global::tryAGI.OpenAI.AnyOf>? Type1100 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1101 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamOptions? Type1101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateRunRequestWithoutStream? Type1102 { get; set; } + public global::tryAGI.OpenAI.CreateRunRequest? Type1102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequest? Type1103 { get; set; } + public global::System.Collections.Generic.IList? Type1103 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1104 { get; set; } + public global::tryAGI.OpenAI.CreateRunRequestWithoutStream? Type1104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequestModel? Type1105 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequest? Type1105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequestResponseFormat? Type1106 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequestStreamFormat? Type1107 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequestModel? Type1107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechResponseStreamEvent? Type1108 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequestResponseFormat? Type1108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDeltaEvent? Type1109 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequestStreamFormat? Type1109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type1110 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechResponseStreamEvent? Type1110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEvent? Type1111 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDeltaEvent? Type1111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type1112 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type1112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type1113 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEvent? Type1113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechResponseStreamEventDiscriminator? Type1114 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type1114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequest? Type1115 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type1115 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1116 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechResponseStreamEventDiscriminator? Type1116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestModel? Type1117 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequest? Type1117 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequest? Type1118 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResources? Type1119 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestModel? Type1119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesCodeInterpreter? Type1120 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequest? Type1120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearch? Type1121 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResources? Type1121 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1122 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesCodeInterpreter? Type1122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStore? Type1123 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearch? Type1123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategy? Type1124 { get; set; } + public global::System.Collections.Generic.IList? Type1124 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant1? Type1125 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStore? Type1125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant1Type? Type1126 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategy? Type1126 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant2? Type1127 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant1? Type1127 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant2Static? Type1128 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant1Type? Type1128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant2Type? Type1129 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant2? Type1129 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyDiscriminator? Type1130 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant2Static? Type1130 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResources? Type1131 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyVariant2Type? Type1131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesCodeInterpreter? Type1132 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyDiscriminator? Type1132 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesFileSearch? Type1133 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResources? Type1133 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStream? Type1134 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesCodeInterpreter? Type1134 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1135 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesFileSearch? Type1135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamModel? Type1136 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStream? Type1136 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamToolResources? Type1137 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter? Type1138 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamModel? Type1138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamToolResourcesFileSearch? Type1139 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamToolResources? Type1139 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionRequest? Type1140 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter? Type1140 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1141 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestWithoutStreamToolResourcesFileSearch? Type1141 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionInclude? Type1142 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionRequest? Type1142 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1143 { get; set; } + public global::System.Collections.Generic.IList? Type1143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionRequestModel? Type1144 { get; set; } + public global::tryAGI.OpenAI.TranscriptionInclude? Type1144 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1145 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1145 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionRequestTimestampGranularitie? Type1146 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionRequestModel? Type1146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseJson? Type1147 { get; set; } + public global::System.Collections.Generic.IList? Type1147 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1148 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionRequestTimestampGranularitie? Type1148 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonLogprob? Type1149 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseJson? Type1149 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonUsage? Type1150 { get; set; } + public global::System.Collections.Generic.IList? Type1150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokens? Type1151 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonLogprob? Type1151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type1152 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonUsage? Type1152 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type1153 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokens? Type1153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageDuration? Type1154 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type1154 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type1155 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type1155 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonUsageDiscriminator? Type1156 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageDuration? Type1156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEvent? Type1157 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type1157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEvent? Type1158 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonUsageDiscriminator? Type1158 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1159 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEvent? Type1159 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type1160 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEvent? Type1160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type1161 { get; set; } + public global::System.Collections.Generic.IList? Type1161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEvent? Type1162 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type1162 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1163 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type1163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type1164 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEvent? Type1164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type1165 { get; set; } + public global::System.Collections.Generic.IList? Type1165 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminator? Type1166 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type1166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseVerboseJson? Type1167 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type1167 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1168 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminator? Type1168 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionSegment? Type1169 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseVerboseJson? Type1169 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1170 { get; set; } + public global::System.Collections.Generic.IList? Type1170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionWord? Type1171 { get; set; } + public global::tryAGI.OpenAI.TranscriptionSegment? Type1171 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequest? Type1172 { get; set; } + public global::System.Collections.Generic.IList? Type1172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1173 { get; set; } + public global::tryAGI.OpenAI.TranscriptionWord? Type1173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequestModel? Type1174 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequest? Type1174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequestResponseFormat? Type1175 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationResponseJson? Type1176 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequestModel? Type1176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationResponseVerboseJson? Type1177 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequestResponseFormat? Type1177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateUploadRequest? Type1178 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationResponseJson? Type1178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateUploadRequestPurpose? Type1179 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationResponseVerboseJson? Type1179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreFileBatchRequest? Type1180 { get; set; } + public global::tryAGI.OpenAI.CreateUploadRequest? Type1180 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreFileRequest? Type1181 { get; set; } + public global::tryAGI.OpenAI.CreateUploadRequestPurpose? Type1181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreRequest? Type1182 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreFileBatchRequest? Type1182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreExpirationAfter? Type1183 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreFileRequest? Type1183 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type1184 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreRequest? Type1184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteAssistantResponse? Type1185 { get; set; } + public global::tryAGI.OpenAI.VectorStoreExpirationAfter? Type1185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteAssistantResponseObject? Type1186 { get; set; } + public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type1186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteCertificateResponse? Type1187 { get; set; } + public global::tryAGI.OpenAI.DeleteAssistantResponse? Type1187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteCertificateResponseObject? Type1188 { get; set; } + public global::tryAGI.OpenAI.DeleteAssistantResponseObject? Type1188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFileResponse? Type1189 { get; set; } + public global::tryAGI.OpenAI.DeleteCertificateResponse? Type1189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFileResponseObject? Type1190 { get; set; } + public global::tryAGI.OpenAI.DeleteCertificateResponseObject? Type1190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponse? Type1191 { get; set; } + public global::tryAGI.OpenAI.DeleteFileResponse? Type1191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponseObject? Type1192 { get; set; } + public global::tryAGI.OpenAI.DeleteFileResponseObject? Type1192 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteMessageResponse? Type1193 { get; set; } + public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponse? Type1193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteMessageResponseObject? Type1194 { get; set; } + public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponseObject? Type1194 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteModelResponse? Type1195 { get; set; } + public global::tryAGI.OpenAI.DeleteMessageResponse? Type1195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteThreadResponse? Type1196 { get; set; } + public global::tryAGI.OpenAI.DeleteMessageResponseObject? Type1196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteThreadResponseObject? Type1197 { get; set; } + public global::tryAGI.OpenAI.DeleteModelResponse? Type1197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreFileResponse? Type1198 { get; set; } + public global::tryAGI.OpenAI.DeleteThreadResponse? Type1198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreFileResponseObject? Type1199 { get; set; } + public global::tryAGI.OpenAI.DeleteThreadResponseObject? Type1199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreResponse? Type1200 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreFileResponse? Type1200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreResponseObject? Type1201 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreFileResponseObject? Type1201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversation? Type1202 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreResponse? Type1202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversationResource? Type1203 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreResponseObject? Type1203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type1204 { get; set; } + public global::tryAGI.OpenAI.DeletedConversation? Type1204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DetailEnum? Type1205 { get; set; } + public global::tryAGI.OpenAI.DeletedConversationResource? Type1205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoneEvent? Type1206 { get; set; } + public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type1206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoneEventData? Type1207 { get; set; } + public global::tryAGI.OpenAI.DetailEnum? Type1207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoneEventEvent? Type1208 { get; set; } + public global::tryAGI.OpenAI.DoneEvent? Type1208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ErrorResponse? Type1209 { get; set; } + public global::tryAGI.OpenAI.DoneEventData? Type1209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Eval? Type1210 { get; set; } + public global::tryAGI.OpenAI.DoneEventEvent? Type1210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalDataSourceConfig? Type1211 { get; set; } + public global::tryAGI.OpenAI.ErrorResponse? Type1211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalCustomDataSourceConfig? Type1212 { get; set; } + public global::tryAGI.OpenAI.Eval? Type1212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalCustomDataSourceConfigType? Type1213 { get; set; } + public global::tryAGI.OpenAI.EvalDataSourceConfig? Type1213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalLogsDataSourceConfig? Type1214 { get; set; } + public global::tryAGI.OpenAI.EvalCustomDataSourceConfig? Type1214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalLogsDataSourceConfigType? Type1215 { get; set; } + public global::tryAGI.OpenAI.EvalCustomDataSourceConfigType? Type1215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfig? Type1216 { get; set; } + public global::tryAGI.OpenAI.EvalLogsDataSourceConfig? Type1216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfigType? Type1217 { get; set; } + public global::tryAGI.OpenAI.EvalLogsDataSourceConfigType? Type1217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalDataSourceConfigDiscriminator? Type1218 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfig? Type1218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalObject? Type1219 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfigType? Type1219 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1220 { get; set; } + public global::tryAGI.OpenAI.EvalDataSourceConfigDiscriminator? Type1220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1221 { get; set; } + public global::tryAGI.OpenAI.EvalObject? Type1221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderLabelModel? Type1222 { get; set; } + public global::System.Collections.Generic.IList>? Type1222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalApiError? Type1223 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalList? Type1224 { get; set; } + public global::tryAGI.OpenAI.EvalGraderLabelModel? Type1224 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1225 { get; set; } + public global::tryAGI.OpenAI.EvalApiError? Type1225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalListObject? Type1226 { get; set; } + public global::tryAGI.OpenAI.EvalList? Type1226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRun? Type1227 { get; set; } + public global::System.Collections.Generic.IList? Type1227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunDataSource? Type1228 { get; set; } + public global::tryAGI.OpenAI.EvalListObject? Type1228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunDataSourceDiscriminator? Type1229 { get; set; } + public global::tryAGI.OpenAI.EvalRun? Type1229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunObject? Type1230 { get; set; } + public global::tryAGI.OpenAI.EvalRunDataSource? Type1230 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1231 { get; set; } + public global::tryAGI.OpenAI.EvalRunDataSourceDiscriminator? Type1231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunPerModelUsageItem? Type1232 { get; set; } + public global::tryAGI.OpenAI.EvalRunObject? Type1232 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1233 { get; set; } + public global::System.Collections.Generic.IList? Type1233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunPerTestingCriteriaResult? Type1234 { get; set; } + public global::tryAGI.OpenAI.EvalRunPerModelUsageItem? Type1234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunResultCounts? Type1235 { get; set; } + public global::System.Collections.Generic.IList? Type1235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunList? Type1236 { get; set; } + public global::tryAGI.OpenAI.EvalRunPerTestingCriteriaResult? Type1236 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1237 { get; set; } + public global::tryAGI.OpenAI.EvalRunResultCounts? Type1237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunListObject? Type1238 { get; set; } + public global::tryAGI.OpenAI.EvalRunList? Type1238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItem? Type1239 { get; set; } + public global::System.Collections.Generic.IList? Type1239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemObject? Type1240 { get; set; } + public global::tryAGI.OpenAI.EvalRunListObject? Type1240 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1241 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItem? Type1241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemResult? Type1242 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemObject? Type1242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSample? Type1243 { get; set; } + public global::System.Collections.Generic.IList? Type1243 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1244 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemResult? Type1244 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleInputItem? Type1245 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSample? Type1245 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1246 { get; set; } + public global::System.Collections.Generic.IList? Type1246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleOutputItem? Type1247 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleInputItem? Type1247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleUsage? Type1248 { get; set; } + public global::System.Collections.Generic.IList? Type1248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemList? Type1249 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleOutputItem? Type1249 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1250 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleUsage? Type1250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemListObject? Type1251 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemList? Type1251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Filters? Type1252 { get; set; } + public global::System.Collections.Generic.IList? Type1252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessage? Type1253 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemListObject? Type1253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessageVariant1? Type1254 { get; set; } + public global::tryAGI.OpenAI.Filters? Type1254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneChatRequestInput? Type1255 { get; set; } + public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessage? Type1255 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1256 { get; set; } + public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessageVariant1? Type1256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1257 { get; set; } + public global::tryAGI.OpenAI.FineTuneChatRequestInput? Type1257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTunePreferenceRequestInput? Type1258 { get; set; } + public global::System.Collections.Generic.IList>? Type1258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTunePreferenceRequestInputInput? Type1259 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1259 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1260 { get; set; } + public global::tryAGI.OpenAI.FineTunePreferenceRequestInput? Type1260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1261 { get; set; } + public global::tryAGI.OpenAI.FineTunePreferenceRequestInputInput? Type1261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementRequestInput? Type1262 { get; set; } + public global::System.Collections.Generic.IList>? Type1262 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1263 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1264 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementRequestInput? Type1264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningCheckpointPermission? Type1265 { get; set; } + public global::System.Collections.Generic.IList>? Type1265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningCheckpointPermissionObject? Type1266 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegration? Type1267 { get; set; } + public global::tryAGI.OpenAI.FineTuningCheckpointPermission? Type1267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegrationType? Type1268 { get; set; } + public global::tryAGI.OpenAI.FineTuningCheckpointPermissionObject? Type1268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegrationWandb? Type1269 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegration? Type1269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJob? Type1270 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegrationType? Type1270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobError? Type1271 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegrationWandb? Type1271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparameters? Type1272 { get; set; } + public global::tryAGI.OpenAI.FineTuningJob? Type1272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1273 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobError? Type1273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersLearningRateMultiplier? Type1274 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparameters? Type1274 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1275 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersNEpochs? Type1276 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersLearningRateMultiplier? Type1276 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1277 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.IntegrationsItem? Type1278 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersNEpochs? Type1278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobIntegrationDiscriminator? Type1279 { get; set; } + public global::System.Collections.Generic.IList? Type1279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobObject? Type1280 { get; set; } + public global::tryAGI.OpenAI.IntegrationsItem? Type1280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobStatus? Type1281 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobIntegrationDiscriminator? Type1281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpoint? Type1282 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobObject? Type1282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpointMetrics? Type1283 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobStatus? Type1283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpointObject? Type1284 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpoint? Type1284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEvent? Type1285 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpointMetrics? Type1285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventLevel? Type1286 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpointObject? Type1286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventObject? Type1287 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEvent? Type1287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventType? Type1288 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventLevel? Type1288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallItemStatus? Type1289 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventObject? Type1289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Image2? Type1290 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventType? Type1290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEvent? Type1291 { get; set; } + public global::tryAGI.OpenAI.FunctionCallItemStatus? Type1291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventBackground? Type1292 { get; set; } + public global::tryAGI.OpenAI.Image2? Type1292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventOutputFormat? Type1293 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEvent? Type1293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventQuality? Type1294 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventBackground? Type1294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventSize? Type1295 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventOutputFormat? Type1295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventType? Type1296 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventQuality? Type1296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesUsage? Type1297 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventSize? Type1297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesUsageInputTokensDetails? Type1298 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventType? Type1298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEvent? Type1299 { get; set; } + public global::tryAGI.OpenAI.ImagesUsage? Type1299 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventBackground? Type1300 { get; set; } + public global::tryAGI.OpenAI.ImagesUsageInputTokensDetails? Type1300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventOutputFormat? Type1301 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEvent? Type1301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventQuality? Type1302 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventBackground? Type1302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventSize? Type1303 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventOutputFormat? Type1303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventType? Type1304 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventQuality? Type1304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEvent? Type1305 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventSize? Type1305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminator? Type1306 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventType? Type1306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEvent? Type1307 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEvent? Type1307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventBackground? Type1308 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminator? Type1308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventOutputFormat? Type1309 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEvent? Type1309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventQuality? Type1310 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventBackground? Type1310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventSize? Type1311 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventOutputFormat? Type1311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventType? Type1312 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventQuality? Type1312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type1313 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventSize? Type1313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEvent? Type1314 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventType? Type1314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventBackground? Type1315 { get; set; } + public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type1315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventOutputFormat? Type1316 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEvent? Type1316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventQuality? Type1317 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventBackground? Type1317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventSize? Type1318 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventOutputFormat? Type1318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventType? Type1319 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventQuality? Type1319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEvent? Type1320 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventSize? Type1320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminator? Type1321 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventType? Type1321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenUsage? Type1322 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEvent? Type1322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponse? Type1323 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminator? Type1323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseBackground? Type1324 { get; set; } + public global::tryAGI.OpenAI.ImageGenUsage? Type1324 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1325 { get; set; } + public global::tryAGI.OpenAI.ImagesResponse? Type1325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseOutputFormat? Type1326 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseBackground? Type1326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseQuality? Type1327 { get; set; } + public global::System.Collections.Generic.IList? Type1327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseSize? Type1328 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseOutputFormat? Type1328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageResource? Type1329 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseQuality? Type1329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageResourceVariant2? Type1330 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseSize? Type1330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Invite? Type1331 { get; set; } + public global::tryAGI.OpenAI.InputMessageResource? Type1331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteObject? Type1332 { get; set; } + public global::tryAGI.OpenAI.InputMessageResourceVariant2? Type1332 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1333 { get; set; } + public global::tryAGI.OpenAI.Invite? Type1333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProject? Type1334 { get; set; } + public global::tryAGI.OpenAI.InviteObject? Type1334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProjectRole? Type1335 { get; set; } + public global::System.Collections.Generic.IList? Type1335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRole? Type1336 { get; set; } + public global::tryAGI.OpenAI.InviteProject? Type1336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteStatus? Type1337 { get; set; } + public global::tryAGI.OpenAI.InviteProjectRole? Type1337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteDeleteResponse? Type1338 { get; set; } + public global::tryAGI.OpenAI.InviteRole? Type1338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteDeleteResponseObject? Type1339 { get; set; } + public global::tryAGI.OpenAI.InviteStatus? Type1339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteListResponse? Type1340 { get; set; } + public global::tryAGI.OpenAI.InviteDeleteResponse? Type1340 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1341 { get; set; } + public global::tryAGI.OpenAI.InviteDeleteResponseObject? Type1341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteListResponseObject? Type1342 { get; set; } + public global::tryAGI.OpenAI.InviteListResponse? Type1342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequest? Type1343 { get; set; } + public global::System.Collections.Generic.IList? Type1343 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1344 { get; set; } + public global::tryAGI.OpenAI.InviteListResponseObject? Type1344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestProject? Type1345 { get; set; } + public global::tryAGI.OpenAI.InviteRequest? Type1345 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestProjectRole? Type1346 { get; set; } + public global::System.Collections.Generic.IList? Type1346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestRole? Type1347 { get; set; } + public global::tryAGI.OpenAI.InviteRequestProject? Type1347 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResource? Type1348 { get; set; } + public global::tryAGI.OpenAI.InviteRequestProjectRole? Type1348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResourceDiscriminator? Type1349 { get; set; } + public global::tryAGI.OpenAI.InviteRequestRole? Type1349 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAssistantsResponse? Type1350 { get; set; } + public global::tryAGI.OpenAI.ItemResource? Type1350 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1351 { get; set; } + public global::tryAGI.OpenAI.ItemResourceDiscriminator? Type1351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsResponse? Type1352 { get; set; } + public global::tryAGI.OpenAI.ListAssistantsResponse? Type1352 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1353 { get; set; } + public global::System.Collections.Generic.IList? Type1353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsResponseObject? Type1354 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsResponse? Type1354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListBatchesResponse? Type1355 { get; set; } + public global::System.Collections.Generic.IList? Type1355 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1356 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsResponseObject? Type1356 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListBatchesResponseObject? Type1357 { get; set; } + public global::tryAGI.OpenAI.ListBatchesResponse? Type1357 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListCertificatesResponse? Type1358 { get; set; } + public global::System.Collections.Generic.IList? Type1358 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1359 { get; set; } + public global::tryAGI.OpenAI.ListBatchesResponseObject? Type1359 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListCertificatesResponseObject? Type1360 { get; set; } + public global::tryAGI.OpenAI.ListCertificatesResponse? Type1360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesResponse? Type1361 { get; set; } + public global::System.Collections.Generic.IList? Type1361 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1362 { get; set; } + public global::tryAGI.OpenAI.ListCertificatesResponseObject? Type1362 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFile? Type1363 { get; set; } + public global::tryAGI.OpenAI.ListFilesResponse? Type1363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFileObject? Type1364 { get; set; } + public global::System.Collections.Generic.IList? Type1364 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFilePurpose? Type1365 { get; set; } + public global::tryAGI.OpenAI.OpenAIFile? Type1365 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFileStatus? Type1366 { get; set; } + public global::tryAGI.OpenAI.OpenAIFileObject? Type1366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponse? Type1367 { get; set; } + public global::tryAGI.OpenAI.OpenAIFilePurpose? Type1367 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1368 { get; set; } + public global::tryAGI.OpenAI.OpenAIFileStatus? Type1368 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponseObject? Type1369 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponse? Type1369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponse? Type1370 { get; set; } + public global::System.Collections.Generic.IList? Type1370 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1371 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponseObject? Type1371 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject? Type1372 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponse? Type1372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobEventsResponse? Type1373 { get; set; } + public global::System.Collections.Generic.IList? Type1373 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1374 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject? Type1374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject? Type1375 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobEventsResponse? Type1375 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListMessagesResponse? Type1376 { get; set; } + public global::System.Collections.Generic.IList? Type1376 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1377 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject? Type1377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListModelsResponse? Type1378 { get; set; } + public global::tryAGI.OpenAI.ListMessagesResponse? Type1378 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1379 { get; set; } + public global::System.Collections.Generic.IList? Type1379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Model16? Type1380 { get; set; } + public global::tryAGI.OpenAI.ListModelsResponse? Type1380 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelObject? Type1381 { get; set; } + public global::System.Collections.Generic.IList? Type1381 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListModelsResponseObject? Type1382 { get; set; } + public global::tryAGI.OpenAI.Model16? Type1382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponse? Type1383 { get; set; } + public global::tryAGI.OpenAI.ModelObject? Type1383 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1384 { get; set; } + public global::tryAGI.OpenAI.ListModelsResponseObject? Type1384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject? Type1385 { get; set; } + public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponse? Type1385 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsResponse? Type1386 { get; set; } + public global::System.Collections.Generic.IList? Type1386 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1387 { get; set; } + public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject? Type1387 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunsResponse? Type1388 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsResponse? Type1388 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1389 { get; set; } + public global::System.Collections.Generic.IList? Type1389 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesResponse? Type1390 { get; set; } + public global::tryAGI.OpenAI.ListRunsResponse? Type1390 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1391 { get; set; } + public global::System.Collections.Generic.IList? Type1391 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObject? Type1392 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesResponse? Type1392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectLastError? Type1393 { get; set; } + public global::System.Collections.Generic.IList? Type1393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type1394 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObject? Type1394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type1395 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectLastError? Type1395 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type1396 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type1396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoresResponse? Type1397 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type1397 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1398 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type1398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObject? Type1399 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoresResponse? Type1399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type1400 { get; set; } + public global::System.Collections.Generic.IList? Type1400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectObject? Type1401 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObject? Type1401 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type1402 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type1402 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LogProbProperties? Type1403 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectObject? Type1403 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolFilter? Type1404 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type1404 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIds? Type1405 { get; set; } + public global::tryAGI.OpenAI.LogProbProperties? Type1405 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequest? Type1406 { get; set; } + public global::tryAGI.OpenAI.MCPToolFilter? Type1406 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResources? Type1407 { get; set; } + public global::tryAGI.OpenAI.ModelIds? Type1407 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type1408 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequest? Type1408 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type1409 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResources? Type1409 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyCertificateRequest? Type1410 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type1410 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyMessageRequest? Type1411 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type1411 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyRunRequest? Type1412 { get; set; } + public global::tryAGI.OpenAI.ModifyCertificateRequest? Type1412 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequest? Type1413 { get; set; } + public global::tryAGI.OpenAI.ModifyMessageRequest? Type1413 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResources? Type1414 { get; set; } + public global::tryAGI.OpenAI.ModifyRunRequest? Type1414 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type1415 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequest? Type1415 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type1416 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResources? Type1416 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NoiseReductionType? Type1417 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type1417 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputAudio? Type1418 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type1418 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputAudioType? Type1419 { get; set; } + public global::tryAGI.OpenAI.NoiseReductionType? Type1419 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItem? Type1420 { get; set; } + public global::tryAGI.OpenAI.OutputAudio? Type1420 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItemDiscriminator? Type1421 { get; set; } + public global::tryAGI.OpenAI.OutputAudioType? Type1421 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Project? Type1422 { get; set; } + public global::tryAGI.OpenAI.OutputItem? Type1422 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectObject? Type1423 { get; set; } + public global::tryAGI.OpenAI.OutputItemDiscriminator? Type1423 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectStatus? Type1424 { get; set; } + public global::tryAGI.OpenAI.Project? Type1424 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKey? Type1425 { get; set; } + public global::tryAGI.OpenAI.ProjectObject? Type1425 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1426 { get; set; } + public global::tryAGI.OpenAI.ProjectStatus? Type1426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1427 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKey? Type1427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccount? Type1428 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1428 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1429 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1429 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1430 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccount? Type1430 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1431 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUser? Type1432 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserObject? Type1433 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserRole? Type1434 { get; set; } + public global::tryAGI.OpenAI.ProjectUser? Type1434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1435 { get; set; } + public global::tryAGI.OpenAI.ProjectUserObject? Type1435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1436 { get; set; } + public global::tryAGI.OpenAI.ProjectUserRole? Type1436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1437 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1437 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1438 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1439 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectCreateRequest? Type1440 { get; set; } + public global::System.Collections.Generic.IList? Type1440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectListResponse? Type1441 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1441 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1442 { get; set; } + public global::tryAGI.OpenAI.ProjectCreateRequest? Type1442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectListResponseObject? Type1443 { get; set; } + public global::tryAGI.OpenAI.ProjectListResponse? Type1443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimit? Type1444 { get; set; } + public global::System.Collections.Generic.IList? Type1444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1445 { get; set; } + public global::tryAGI.OpenAI.ProjectListResponseObject? Type1445 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1446 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimit? Type1446 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1447 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1447 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1448 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1448 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1449 { get; set; } + public global::System.Collections.Generic.IList? Type1449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1450 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1451 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1452 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1452 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1453 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1453 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1454 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1454 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1455 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1455 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1456 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1457 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1457 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1458 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1458 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1459 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1459 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1460 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1460 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1461 { get; set; } + public global::System.Collections.Generic.IList? Type1461 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1462 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1462 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserCreateRequestRole? Type1463 { get; set; } + public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1464 { get; set; } + public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1465 { get; set; } + public global::tryAGI.OpenAI.ProjectUserCreateRequestRole? Type1465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserListResponse? Type1466 { get; set; } + public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1466 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1467 { get; set; } + public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1468 { get; set; } + public global::tryAGI.OpenAI.ProjectUserListResponse? Type1468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserUpdateRequestRole? Type1469 { get; set; } + public global::System.Collections.Generic.IList? Type1469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1470 { get; set; } + public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1470 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant1? Type1471 { get; set; } + public global::tryAGI.OpenAI.ProjectUserUpdateRequestRole? Type1471 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant1Type? Type1472 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant2? Type1473 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant1? Type1473 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant2Type? Type1474 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant1Type? Type1474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant3? Type1475 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant2? Type1475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant3Type? Type1476 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant2Type? Type1476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsDiscriminator? Type1477 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant3? Type1477 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1478 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsVariant3Type? Type1478 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItem? Type1479 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsDiscriminator? Type1479 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemObject? Type1480 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemType? Type1481 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItem? Type1481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemStatus? Type1482 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemObject? Type1482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemRole? Type1483 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemType? Type1483 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1484 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemStatus? Type1484 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemContentItem? Type1485 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemRole? Type1485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemContentItemType? Type1486 { get; set; } + public global::System.Collections.Generic.IList? Type1486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1487 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemContentItem? Type1487 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1488 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemContentItemType? Type1488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1489 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1490 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1491 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1492 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1493 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1494 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1494 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1495 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1496 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1497 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1498 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1499 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1499 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1500 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1500 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1501 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1501 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1502 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1502 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1503 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1503 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1504 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1505 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1506 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1507 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1507 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1508 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1508 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1509 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1510 { get; set; } + public global::System.Collections.Generic.IList? Type1510 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1511 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1512 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1513 { get; set; } + public global::System.Collections.Generic.IList? Type1513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1514 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1514 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1515 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1515 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1516 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1516 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1517 { get; set; } + public global::System.Collections.Generic.IList? Type1517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1518 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1518 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1519 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1520 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1520 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1521 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1522 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1523 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1524 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1524 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1525 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1526 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1526 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1527 { get; set; } + public global::System.Collections.Generic.IList? Type1527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1528 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1529 { get; set; } + public global::System.Collections.Generic.IList? Type1529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1530 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1530 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1531 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1531 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1532 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1532 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncation? Type1533 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1533 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1534 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1535 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncation? Type1535 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1536 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1536 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1537 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1537 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1538 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1538 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1539 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1540 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1540 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1541 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1541 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1542 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1543 { get; set; } + public global::System.Collections.Generic.IList? Type1543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1544 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1545 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1546 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1547 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1547 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1548 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1549 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1550 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1550 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1551 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1552 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1552 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1553 { get; set; } + public global::System.Collections.Generic.IList? Type1553 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1554 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1555 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1556 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1556 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1557 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1557 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1558 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1559 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1560 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1561 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1562 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1563 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1564 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1565 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1566 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1567 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1568 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1568 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1569 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1570 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1571 { get; set; } + public global::System.Collections.Generic.IList? Type1571 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1572 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1573 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1573 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1574 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1575 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1576 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1576 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1577 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1578 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1579 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1580 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1581 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1582 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1583 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1584 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1585 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1585 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1586 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1587 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1587 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1588 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1589 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1590 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1591 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1592 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1593 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1594 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1595 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1596 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1597 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1598 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1599 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1600 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1600 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1601 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1602 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1603 { get; set; } + public global::System.Collections.Generic.IList? Type1603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1604 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1605 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1606 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1607 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1608 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1609 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1610 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1611 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1612 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1613 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1614 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1615 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1616 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1617 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1618 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1619 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1620 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1621 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1622 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1623 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1624 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1625 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1626 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1627 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1627 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1628 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1629 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1630 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1631 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1632 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1633 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1634 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1635 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1636 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1637 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1638 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1638 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1639 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1640 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1641 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1641 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1642 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1642 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1643 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1644 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1645 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1646 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1646 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1647 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSession? Type1648 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1648 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionObject? Type1649 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionVoice? Type1650 { get; set; } + public global::tryAGI.OpenAI.RealtimeSession? Type1650 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormat? Type1651 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionObject? Type1651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionInputAudioTranscription? Type1652 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionVoice? Type1652 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionTurnDetection? Type1653 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormat? Type1653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionTurnDetectionType? Type1654 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionInputAudioTranscription? Type1654 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1655 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionTurnDetection? Type1655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionTool? Type1656 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionTurnDetectionType? Type1656 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionToolChoice? Type1657 { get; set; } + public global::System.Collections.Generic.IList? Type1657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1658 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionTool? Type1658 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionMaxOutputTokens? Type1659 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionToolChoice? Type1659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1660 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1660 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1661 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionMaxOutputTokens? Type1661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1662 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1662 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1663 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1664 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1664 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1665 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1665 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1666 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1666 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1667 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1668 { get; set; } + public global::System.Collections.Generic.IList? Type1668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1669 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1669 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1670 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1671 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1671 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEvent? Type1672 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1673 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1674 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEvent? Type1674 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1675 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1676 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1677 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1677 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1678 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1679 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1680 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1680 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1681 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1681 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1682 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1683 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1683 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1684 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1685 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1685 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1686 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1687 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1687 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1688 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1688 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1689 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1689 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1690 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1691 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1691 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1692 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1693 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1694 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1695 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1695 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1696 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1697 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1697 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1698 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1698 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1699 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1700 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1700 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1701 { get; set; } + public global::System.Collections.Generic.IList? Type1701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1702 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1703 { get; set; } + public global::System.Collections.Generic.IList>? Type1703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1704 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1705 { get; set; } + public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1706 { get; set; } + public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1707 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1708 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1708 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1709 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1710 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1711 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1711 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1712 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1712 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1713 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1714 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1714 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1715 { get; set; } + public global::System.Collections.Generic.IList? Type1715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1716 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1717 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1718 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1718 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1719 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1720 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1720 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1721 { get; set; } + public global::System.Collections.Generic.IList? Type1721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolsItem5? Type1722 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAToolDiscriminator? Type1723 { get; set; } + public global::System.Collections.Generic.IList? Type1723 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1724 { get; set; } + public global::tryAGI.OpenAI.ToolsItem5? Type1724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1725 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAToolDiscriminator? Type1725 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1726 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1727 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1727 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1728 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1729 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1730 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1731 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1731 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1732 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1733 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1734 { get; set; } + public global::System.Collections.Generic.IList? Type1734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1735 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1735 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1736 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1736 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1737 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1738 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConnectParams? Type1739 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1740 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1741 { get; set; } + public global::tryAGI.OpenAI.RealtimeConnectParams? Type1741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1742 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1743 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1744 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1745 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1745 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1746 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1747 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1748 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1748 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1749 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1750 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1751 { get; set; } + public global::System.Collections.Generic.IList? Type1751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1752 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1753 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1754 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1755 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1756 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1756 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1757 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1758 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1758 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1759 { get; set; } + public global::System.Collections.Generic.IList? Type1759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1760 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1761 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1761 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1762 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1763 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1764 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1764 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1765 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1766 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1767 { get; set; } + public global::System.Collections.Generic.IList? Type1767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1768 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1769 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1770 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1771 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1772 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1773 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1773 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1774 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1775 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1776 { get; set; } + public global::System.Collections.Generic.IList? Type1776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1777 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1778 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1779 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1780 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1781 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1782 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1783 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Session? Type1784 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestSessionDiscriminator? Type1785 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1786 { get; set; } + public global::tryAGI.OpenAI.Session? Type1786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Session2? Type1787 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestSessionDiscriminator? Type1787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1788 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1789 { get; set; } + public global::tryAGI.OpenAI.Session2? Type1789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1790 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1791 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1792 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAClientSecret? Type1793 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1793 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1794 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1795 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAClientSecret? Type1795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1796 { get; set; } + public global::System.Collections.Generic.IList? Type1796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1797 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1798 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1799 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1799 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1800 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1801 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1802 { get; set; } + public global::System.Collections.Generic.IList? Type1802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1803 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1804 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1805 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1806 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1806 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection? Type1807 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1807 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1808 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1809 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection? Type1809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1810 { get; set; } + public global::System.Collections.Generic.IList? Type1810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1811 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1811 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1812 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1813 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1813 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1814 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1815 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1815 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1816 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1817 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1817 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1818 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1819 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1820 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1820 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1821 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1821 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1822 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1823 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1824 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1825 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponse? Type1826 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1826 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseObject? Type1827 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1828 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponse? Type1828 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1829 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseObject? Type1829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEvent? Type1830 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeError? Type1831 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeErrorType? Type1832 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEvent? Type1832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeErrorDetails? Type1833 { get; set; } + public global::tryAGI.OpenAI.RealtimeError? Type1833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreated? Type1834 { get; set; } + public global::tryAGI.OpenAI.RealtimeErrorType? Type1834 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreatedType? Type1835 { get; set; } + public global::tryAGI.OpenAI.RealtimeErrorDetails? Type1835 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionUpdated? Type1836 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreated? Type1836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionUpdatedType? Type1837 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreatedType? Type1837 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationCreated? Type1838 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionUpdated? Type1838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationCreatedType? Type1839 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionUpdatedType? Type1839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversation? Type1840 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationCreated? Type1840 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationObject? Type1841 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationCreatedType? Type1841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemCreated? Type1842 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversation? Type1842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemCreatedType? Type1843 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationObject? Type1843 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionCompleted? Type1844 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemCreated? Type1844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionCompletedType? Type1845 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemCreatedType? Type1845 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionFailed? Type1846 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionCompleted? Type1846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionFailedType? Type1847 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionCompletedType? Type1847 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemTruncated? Type1848 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionFailed? Type1848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemTruncatedType? Type1849 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemInputAudioTranscriptionFailedType? Type1849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDeleted? Type1850 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemTruncated? Type1850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDeletedType? Type1851 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemTruncatedType? Type1851 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommitted? Type1852 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDeleted? Type1852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommittedType? Type1853 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDeletedType? Type1853 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferCleared? Type1854 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommitted? Type1854 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferClearedType? Type1855 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommittedType? Type1855 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStarted? Type1856 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferCleared? Type1856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStartedType? Type1857 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferClearedType? Type1857 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStopped? Type1858 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStarted? Type1858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStoppedType? Type1859 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStartedType? Type1859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreated? Type1860 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStopped? Type1860 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreatedType? Type1861 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferSpeechStoppedType? Type1861 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseDone? Type1862 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreated? Type1862 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseDoneType? Type1863 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreatedType? Type1863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseOutputItemAdded? Type1864 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseDone? Type1864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseOutputItemAddedType? Type1865 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseDoneType? Type1865 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseOutputItemDone? Type1866 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseOutputItemAdded? Type1866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseOutputItemDoneType? Type1867 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseOutputItemAddedType? Type1867 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseContentPartAdded? Type1868 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseOutputItemDone? Type1868 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseContentPartAddedType? Type1869 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseOutputItemDoneType? Type1869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeContentPart? Type1870 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseContentPartAdded? Type1870 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeContentPartType? Type1871 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseContentPartAddedType? Type1871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseContentPartDone? Type1872 { get; set; } + public global::tryAGI.OpenAI.RealtimeContentPart? Type1872 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseContentPartDoneType? Type1873 { get; set; } + public global::tryAGI.OpenAI.RealtimeContentPartType? Type1873 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseTextDelta? Type1874 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseContentPartDone? Type1874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseTextDeltaType? Type1875 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseContentPartDoneType? Type1875 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseTextDone? Type1876 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseTextDelta? Type1876 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseTextDoneType? Type1877 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseTextDeltaType? Type1877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDelta? Type1878 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseTextDone? Type1878 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDeltaType? Type1879 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseTextDoneType? Type1879 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDone? Type1880 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDelta? Type1880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDoneType? Type1881 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDeltaType? Type1881 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioDelta? Type1882 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDone? Type1882 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioDeltaType? Type1883 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioTranscriptDoneType? Type1883 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioDone? Type1884 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioDelta? Type1884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioDoneType? Type1885 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioDeltaType? Type1885 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDelta? Type1886 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioDone? Type1886 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDeltaType? Type1887 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioDoneType? Type1887 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDone? Type1888 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDelta? Type1888 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDoneType? Type1889 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDeltaType? Type1889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeRateLimitsUpdated? Type1890 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDone? Type1890 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeRateLimitsUpdatedType? Type1891 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseFunctionCallArgumentsDoneType? Type1891 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1892 { get; set; } + public global::tryAGI.OpenAI.RealtimeRateLimitsUpdated? Type1892 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeRateLimitsUpdatedRateLimit? Type1893 { get; set; } + public global::tryAGI.OpenAI.RealtimeRateLimitsUpdatedType? Type1893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeRateLimitsUpdatedRateLimitName? Type1894 { get; set; } + public global::System.Collections.Generic.IList? Type1894 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1895 { get; set; } + public global::tryAGI.OpenAI.RealtimeRateLimitsUpdatedRateLimit? Type1895 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1896 { get; set; } + public global::tryAGI.OpenAI.RealtimeRateLimitsUpdatedRateLimitName? Type1896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversationObject? Type1897 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1897 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1898 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1898 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1899 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversationObject? Type1899 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1900 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1901 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1901 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1902 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1902 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1903 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1904 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1905 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1905 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1906 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1907 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1908 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1909 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1910 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1911 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1912 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1913 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1914 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1915 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1916 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1917 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1917 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1918 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1919 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventError? Type1920 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1921 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1921 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1922 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventError? Type1922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1923 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1923 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1924 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1925 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1925 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1926 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1927 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1927 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1928 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1929 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1930 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1931 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1932 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1933 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1934 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1935 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1936 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1937 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1938 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1939 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1940 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1941 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1942 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1943 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1943 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1944 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1945 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1945 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1946 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1947 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1948 { get; set; } + public global::System.Collections.Generic.IList? Type1948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1949 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1949 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1950 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1951 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1951 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1952 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1953 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1954 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1955 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1956 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1957 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1958 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1958 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1959 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1960 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1961 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1961 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1962 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1963 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1964 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1965 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1966 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1967 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1967 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1968 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1969 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1969 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1970 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1971 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1971 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1972 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1973 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1974 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1975 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1976 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1977 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1978 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1979 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1979 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1980 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1981 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1981 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1982 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1982 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1983 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1984 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1985 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1986 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1987 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1987 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1988 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1989 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1990 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1991 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1992 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1992 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1993 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1993 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1994 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1995 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1995 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1996 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1997 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type1998 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1998 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type1999 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1999 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type2000 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type2000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type2001 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type2001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type2002 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type2002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type2003 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type2003 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2004 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type2004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type2005 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type2005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type2006 { get; set; } + public global::System.Collections.Generic.IList? Type2006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type2007 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type2007 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2008 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type2008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type2009 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type2009 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2010 { get; set; } + public global::System.Collections.Generic.IList? Type2010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type2011 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type2011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type2012 { get; set; } + public global::System.Collections.Generic.IList? Type2012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type2013 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type2013 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type2014 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type2014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Reasoning? Type2015 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type2015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningGenerateSummary? Type2016 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type2016 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningSummary? Type2017 { get; set; } + public global::tryAGI.OpenAI.Reasoning? Type2017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Response? Type2018 { get; set; } + public global::tryAGI.OpenAI.ReasoningGenerateSummary? Type2018 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3? Type2019 { get; set; } + public global::tryAGI.OpenAI.ReasoningSummary? Type2019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseError? Type2020 { get; set; } + public global::tryAGI.OpenAI.Response? Type2020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorCode? Type2021 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3? Type2021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails? Type2022 { get; set; } + public global::tryAGI.OpenAI.ResponseError? Type2022 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type2023 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorCode? Type2023 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Object? Type2024 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails? Type2024 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2025 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type2025 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Status? Type2026 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Object? Type2026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsage? Type2027 { get; set; } + public global::System.Collections.Generic.IList? Type2027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type2028 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Status? Type2028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type2029 { get; set; } + public global::tryAGI.OpenAI.ResponseUsage? Type2029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type2030 { get; set; } + public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type2030 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type2031 { get; set; } + public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type2031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type2032 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type2032 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type2033 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type2033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type2034 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type2034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type2035 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type2035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type2036 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type2036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type2037 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type2037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type2038 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type2038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type2039 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type2039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type2040 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type2040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type2041 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type2041 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type2042 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type2042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type2043 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type2043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type2044 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type2044 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type2045 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type2045 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type2046 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type2046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type2047 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type2047 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCompletedEvent? Type2048 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type2048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCompletedEventType? Type2049 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type2049 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type2050 { get; set; } + public global::tryAGI.OpenAI.ResponseCompletedEvent? Type2050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type2051 { get; set; } + public global::tryAGI.OpenAI.ResponseCompletedEventType? Type2051 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type2052 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type2052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type2053 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type2053 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCreatedEvent? Type2054 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type2054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCreatedEventType? Type2055 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type2055 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type2056 { get; set; } + public global::tryAGI.OpenAI.ResponseCreatedEvent? Type2056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type2057 { get; set; } + public global::tryAGI.OpenAI.ResponseCreatedEventType? Type2057 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type2058 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type2058 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type2059 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type2059 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorEvent? Type2060 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type2060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorEventType? Type2061 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type2061 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFailedEvent? Type2062 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorEvent? Type2062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFailedEventType? Type2063 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorEventType? Type2063 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type2064 { get; set; } + public global::tryAGI.OpenAI.ResponseFailedEvent? Type2064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type2065 { get; set; } + public global::tryAGI.OpenAI.ResponseFailedEventType? Type2065 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type2066 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type2066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type2067 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type2067 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type2068 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type2068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type2069 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type2069 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type2070 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type2070 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type2071 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type2071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextPython? Type2072 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type2072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type2073 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type2073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type2074 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextPython? Type2074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type2075 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type2075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type2076 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type2076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type2077 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type2077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type2078 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type2078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type2079 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type2079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type2080 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type2080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type2081 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type2081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type2082 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type2082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type2083 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type2083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type2084 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type2084 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type2085 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type2085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseInProgressEvent? Type2086 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type2086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseInProgressEventType? Type2087 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type2087 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type2088 { get; set; } + public global::tryAGI.OpenAI.ResponseInProgressEvent? Type2088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type2089 { get; set; } + public global::tryAGI.OpenAI.ResponseInProgressEventType? Type2089 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseItemList? Type2090 { get; set; } + public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type2090 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2091 { get; set; } + public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type2091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseItemListObject? Type2092 { get; set; } + public global::tryAGI.OpenAI.ResponseItemList? Type2092 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseLogProb? Type2093 { get; set; } + public global::System.Collections.Generic.IList? Type2093 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2094 { get; set; } + public global::tryAGI.OpenAI.ResponseItemListObject? Type2094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type2095 { get; set; } + public global::tryAGI.OpenAI.ResponseLogProb? Type2095 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type2096 { get; set; } + public global::System.Collections.Generic.IList? Type2096 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type2097 { get; set; } + public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type2097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type2098 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type2098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type2099 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type2099 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type2100 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type2100 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type2101 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type2101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type2102 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type2102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type2103 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type2103 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type2104 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type2104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type2105 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type2105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type2106 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type2106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type2107 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type2107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type2108 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type2108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type2109 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type2109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type2110 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type2110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type2111 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type2111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type2112 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type2112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type2113 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type2113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type2114 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type2114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type2115 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type2115 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type2116 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type2116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type2117 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type2117 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseQueuedEvent? Type2118 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type2118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseQueuedEventType? Type2119 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type2119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type2120 { get; set; } + public global::tryAGI.OpenAI.ResponseQueuedEvent? Type2120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type2121 { get; set; } + public global::tryAGI.OpenAI.ResponseQueuedEventType? Type2121 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type2122 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type2122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type2123 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type2123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type2124 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type2124 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type2125 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type2125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type2126 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type2126 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type2127 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type2127 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type2128 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type2128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type2129 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type2129 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type2130 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type2130 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type2131 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type2131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type2132 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type2132 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type2133 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type2133 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type2134 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type2134 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type2135 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type2135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type2136 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type2136 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type2137 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type2137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type2138 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type2138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type2139 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type2139 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEvent? Type2140 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type2140 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type2141 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type2141 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2142 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEvent? Type2142 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type2143 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type2143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type2144 { get; set; } + public global::System.Collections.Generic.IList? Type2144 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type2145 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type2145 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type2146 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type2146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type2147 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type2147 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type2148 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type2148 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type2149 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type2149 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type2150 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type2150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type2151 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type2151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type2152 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type2152 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderRequest? Type2153 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type2153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderRequestGrader? Type2154 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type2154 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderRequestGraderDiscriminator? Type2155 { get; set; } + public global::tryAGI.OpenAI.RunGraderRequest? Type2155 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponse? Type2156 { get; set; } + public global::tryAGI.OpenAI.RunGraderRequestGrader? Type2156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type2157 { get; set; } + public global::tryAGI.OpenAI.RunGraderRequestGraderDiscriminator? Type2157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type2158 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponse? Type2158 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2159 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type2159 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2160 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type2160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2161 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestWithoutStream? Type2162 { get; set; } + public global::System.Collections.Generic.IList? Type2162 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2163 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestWithoutStreamToolOutput? Type2164 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestWithoutStream? Type2164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2165 { get; set; } + public global::System.Collections.Generic.IList? Type2165 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateConversationBody? Type2166 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestWithoutStreamToolOutput? Type2166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2167 { get; set; } + public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2167 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2168 { get; set; } + public global::tryAGI.OpenAI.UpdateConversationBody? Type2168 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Upload? Type2169 { get; set; } + public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2169 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadObject? Type2170 { get; set; } + public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadStatus? Type2171 { get; set; } + public global::tryAGI.OpenAI.Upload? Type2171 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadCertificateRequest? Type2172 { get; set; } + public global::tryAGI.OpenAI.UploadObject? Type2172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadPart? Type2173 { get; set; } + public global::tryAGI.OpenAI.UploadStatus? Type2173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadPartObject? Type2174 { get; set; } + public global::tryAGI.OpenAI.UploadCertificateRequest? Type2174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2175 { get; set; } + public global::tryAGI.OpenAI.UploadPart? Type2175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2176 { get; set; } + public global::tryAGI.OpenAI.UploadPartObject? Type2176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2177 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2178 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2179 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2180 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2180 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsResult? Type2181 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2182 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2183 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsResult? Type2183 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2184 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesResult? Type2185 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesResultObject? Type2186 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsResult? Type2187 { get; set; } + public global::tryAGI.OpenAI.UsageImagesResult? Type2187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2188 { get; set; } + public global::tryAGI.OpenAI.UsageImagesResultObject? Type2188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageResponse? Type2189 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsResult? Type2189 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2190 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucket? Type2191 { get; set; } + public global::tryAGI.OpenAI.UsageResponse? Type2191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2192 { get; set; } + public global::System.Collections.Generic.IList? Type2192 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2193 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucket? Type2193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResultItem? Type2194 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2194 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2195 { get; set; } + public global::System.Collections.Generic.IList? Type2195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2196 { get; set; } + public global::tryAGI.OpenAI.ResultItem? Type2196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketResultItemDiscriminator? Type2197 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageResponseObject? Type2198 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.User? Type2199 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketResultItemDiscriminator? Type2199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserObject? Type2200 { get; set; } + public global::tryAGI.OpenAI.UsageResponseObject? Type2200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRole? Type2201 { get; set; } + public global::tryAGI.OpenAI.User? Type2201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserDeleteResponse? Type2202 { get; set; } + public global::tryAGI.OpenAI.UserObject? Type2202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserDeleteResponseObject? Type2203 { get; set; } + public global::tryAGI.OpenAI.UserRole? Type2203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResponse? Type2204 { get; set; } + public global::tryAGI.OpenAI.UserDeleteResponse? Type2204 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2205 { get; set; } + public global::tryAGI.OpenAI.UserDeleteResponseObject? Type2205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResponseObject? Type2206 { get; set; } + public global::tryAGI.OpenAI.UserListResponse? Type2206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleUpdateRequest? Type2207 { get; set; } + public global::System.Collections.Generic.IList? Type2207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleUpdateRequestRole? Type2208 { get; set; } + public global::tryAGI.OpenAI.UserListResponseObject? Type2208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VadConfig? Type2209 { get; set; } + public global::tryAGI.OpenAI.UserRoleUpdateRequest? Type2209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VadConfigType? Type2210 { get; set; } + public global::tryAGI.OpenAI.UserRoleUpdateRequestRole? Type2210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ValidateGraderRequest? Type2211 { get; set; } + public global::tryAGI.OpenAI.VadConfig? Type2211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ValidateGraderResponse? Type2212 { get; set; } + public global::tryAGI.OpenAI.VadConfigType? Type2212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2213 { get; set; } + public global::tryAGI.OpenAI.ValidateGraderRequest? Type2213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2214 { get; set; } + public global::tryAGI.OpenAI.ValidateGraderResponse? Type2214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2215 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2216 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2217 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2217 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2218 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2219 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2220 { get; set; } + public global::System.Collections.Generic.IList? Type2220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2221 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type2222 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf>? Type2223 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2224 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type2224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2225 { get; set; } + public global::tryAGI.OpenAI.AnyOf>? Type2225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2226 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2227 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2228 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2228 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2229 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2230 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2230 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2231 { get; set; } + public global::System.Collections.Generic.IList? Type2231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2232 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2232 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2233 { get; set; } + public global::System.Collections.Generic.IList? Type2233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2234 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2235 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2236 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2237 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2238 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2239 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2240 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpired? Type2241 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2242 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2243 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpired? Type2243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2244 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2244 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailed? Type2245 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2246 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2247 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailed? Type2247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2248 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2249 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2250 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2251 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2252 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2253 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2254 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2255 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2255 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2256 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2257 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2258 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2259 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2259 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2260 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2261 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2262 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2263 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2264 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2265 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2266 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2267 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2268 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2269 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2270 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2271 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2272 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2273 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2274 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2274 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2275 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2276 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2277 { get; set; } + public global::System.Collections.Generic.IList? Type2277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2278 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2279 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2280 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2281 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2282 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2283 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2284 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2285 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2286 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailed? Type2287 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2288 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2289 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailed? Type2289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2290 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2291 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2292 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2293 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2294 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventType? Type2295 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventBase? Type2296 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionUpdate? Type2297 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventType? Type2297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionUpdateType? Type2298 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventBase? Type2298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferAppend? Type2299 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionUpdate? Type2299 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferAppendType? Type2300 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionUpdateType? Type2300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommit? Type2301 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferAppend? Type2301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommitType? Type2302 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferAppendType? Type2302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferClear? Type2303 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommit? Type2303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeInputAudioBufferClearType? Type2304 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferCommitType? Type2304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemCreate? Type2305 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferClear? Type2305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemCreateType? Type2306 { get; set; } + public global::tryAGI.OpenAI.RealtimeInputAudioBufferClearType? Type2306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemTruncate? Type2307 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemCreate? Type2307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemTruncateType? Type2308 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemCreateType? Type2308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDelete? Type2309 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemTruncate? Type2309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDeleteType? Type2310 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemTruncateType? Type2310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreate? Type2311 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDelete? Type2311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateType? Type2312 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDeleteType? Type2312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateResponse? Type2313 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreate? Type2313 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2314 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateType? Type2314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateResponseModalitie? Type2315 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateResponse? Type2315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateResponseVoice? Type2316 { get; set; } + public global::System.Collections.Generic.IList? Type2316 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2317 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateResponseModalitie? Type2317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateResponseTool? Type2318 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateResponseVoice? Type2318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2319 { get; set; } + public global::System.Collections.Generic.IList? Type2319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateResponseToolChoice? Type2320 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateResponseTool? Type2320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2321 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateResponseMaxOutputTokens? Type2322 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateResponseToolChoice? Type2322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCancel? Type2323 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCancelType? Type2324 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateResponseMaxOutputTokens? Type2324 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateBatchRequest? Type2325 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCancel? Type2325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow? Type2326 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCancelType? Type2326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateBatchRequestEndpoint? Type2327 { get; set; } + public global::tryAGI.OpenAI.CreateBatchRequest? Type2327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateChatCompletionRequest? Type2328 { get; set; } + public global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow? Type2328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateConversationItemsRequest? Type2329 { get; set; } + public global::tryAGI.OpenAI.CreateBatchRequestEndpoint? Type2329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateEvalRequest? Type2330 { get; set; } + public global::tryAGI.OpenAI.UpdateChatCompletionRequest? Type2330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysCreateRequest? Type2331 { get; set; } + public global::tryAGI.OpenAI.CreateConversationItemsRequest? Type2331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAssistantsOrder? Type2332 { get; set; } + public global::tryAGI.OpenAI.UpdateEvalRequest? Type2332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListChatCompletionsOrder? Type2333 { get; set; } + public global::tryAGI.OpenAI.AdminApiKeysCreateRequest? Type2333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetChatCompletionMessagesOrder? Type2334 { get; set; } + public global::tryAGI.OpenAI.ListAssistantsOrder? Type2334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListContainersOrder? Type2335 { get; set; } + public global::tryAGI.OpenAI.ListChatCompletionsOrder? Type2335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListContainerFilesOrder? Type2336 { get; set; } + public global::tryAGI.OpenAI.GetChatCompletionMessagesOrder? Type2336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListConversationItemsOrder? Type2337 { get; set; } + public global::tryAGI.OpenAI.ListContainersOrder? Type2337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListEvalsOrder? Type2338 { get; set; } + public global::tryAGI.OpenAI.ListContainerFilesOrder? Type2338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListEvalsOrderBy? Type2339 { get; set; } + public global::tryAGI.OpenAI.ListConversationItemsOrder? Type2339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunsOrder? Type2340 { get; set; } + public global::tryAGI.OpenAI.ListEvalsOrder? Type2340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunsStatus? Type2341 { get; set; } + public global::tryAGI.OpenAI.ListEvalsOrderBy? Type2341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunOutputItemsStatus? Type2342 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunsOrder? Type2342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunOutputItemsOrder? Type2343 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunsStatus? Type2343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesOrder? Type2344 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunOutputItemsStatus? Type2344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionsOrder? Type2345 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunOutputItemsOrder? Type2345 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysListOrder? Type2346 { get; set; } + public global::tryAGI.OpenAI.ListFilesOrder? Type2346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsEffectiveAt? Type2347 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionsOrder? Type2347 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2348 { get; set; } + public global::tryAGI.OpenAI.AdminApiKeysListOrder? Type2348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListOrganizationCertificatesOrder? Type2349 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsEffectiveAt? Type2349 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2350 { get; set; } + public global::System.Collections.Generic.IList? Type2350 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetCertificateIncludeItem? Type2351 { get; set; } + public global::tryAGI.OpenAI.ListOrganizationCertificatesOrder? Type2351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCostsBucketWidth? Type2352 { get; set; } + public global::System.Collections.Generic.IList? Type2352 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2353 { get; set; } + public global::tryAGI.OpenAI.GetCertificateIncludeItem? Type2353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCostsGroupByItem? Type2354 { get; set; } + public global::tryAGI.OpenAI.UsageCostsBucketWidth? Type2354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectCertificatesOrder? Type2355 { get; set; } + public global::System.Collections.Generic.IList? Type2355 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesBucketWidth? Type2356 { get; set; } + public global::tryAGI.OpenAI.UsageCostsGroupByItem? Type2356 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2357 { get; set; } + public global::tryAGI.OpenAI.ListProjectCertificatesOrder? Type2357 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesGroupByItem? Type2358 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesBucketWidth? Type2358 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? Type2359 { get; set; } + public global::System.Collections.Generic.IList? Type2359 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2360 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesGroupByItem? Type2360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem? Type2361 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? Type2361 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsBucketWidth? Type2362 { get; set; } + public global::System.Collections.Generic.IList? Type2362 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2363 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem? Type2363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsGroupByItem? Type2364 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsBucketWidth? Type2364 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsBucketWidth? Type2365 { get; set; } + public global::System.Collections.Generic.IList? Type2365 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2366 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsGroupByItem? Type2366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsGroupByItem? Type2367 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsBucketWidth? Type2367 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsBucketWidth? Type2368 { get; set; } + public global::System.Collections.Generic.IList? Type2368 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2369 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsGroupByItem? Type2369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsGroupByItem? Type2370 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsBucketWidth? Type2370 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesBucketWidth? Type2371 { get; set; } + public global::System.Collections.Generic.IList? Type2371 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2372 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsGroupByItem? Type2372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesSource? Type2373 { get; set; } + public global::tryAGI.OpenAI.UsageImagesBucketWidth? Type2373 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2374 { get; set; } + public global::System.Collections.Generic.IList? Type2374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesSize? Type2375 { get; set; } + public global::tryAGI.OpenAI.UsageImagesSource? Type2375 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2376 { get; set; } + public global::System.Collections.Generic.IList? Type2376 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesGroupByItem? Type2377 { get; set; } + public global::tryAGI.OpenAI.UsageImagesSize? Type2377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsBucketWidth? Type2378 { get; set; } + public global::System.Collections.Generic.IList? Type2378 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2379 { get; set; } + public global::tryAGI.OpenAI.UsageImagesGroupByItem? Type2379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsGroupByItem? Type2380 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsBucketWidth? Type2380 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresBucketWidth? Type2381 { get; set; } + public global::System.Collections.Generic.IList? Type2381 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2382 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsGroupByItem? Type2382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresGroupByItem? Type2383 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresBucketWidth? Type2383 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListInputItemsOrder? Type2384 { get; set; } + public global::System.Collections.Generic.IList? Type2384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListMessagesOrder? Type2385 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresGroupByItem? Type2385 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunsOrder? Type2386 { get; set; } + public global::tryAGI.OpenAI.ListInputItemsOrder? Type2386 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2387 { get; set; } + public global::tryAGI.OpenAI.ListMessagesOrder? Type2387 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateRunIncludeItem? Type2388 { get; set; } + public global::tryAGI.OpenAI.ListRunsOrder? Type2388 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsOrder? Type2389 { get; set; } + public global::System.Collections.Generic.IList? Type2389 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2390 { get; set; } + public global::tryAGI.OpenAI.CreateRunIncludeItem? Type2390 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsIncludeItem? Type2391 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsOrder? Type2391 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2392 { get; set; } + public global::System.Collections.Generic.IList? Type2392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetRunStepIncludeItem? Type2393 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsIncludeItem? Type2393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoresOrder? Type2394 { get; set; } + public global::System.Collections.Generic.IList? Type2394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchOrder? Type2395 { get; set; } + public global::tryAGI.OpenAI.GetRunStepIncludeItem? Type2395 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchFilter? Type2396 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoresOrder? Type2396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesOrder? Type2397 { get; set; } + public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchOrder? Type2397 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesFilter? Type2398 { get; set; } + public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchFilter? Type2398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type2399 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesOrder? Type2399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type2400 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesFilter? Type2400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteEvalResponse? Type2401 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type2401 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteEvalRunResponse? Type2402 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type2402 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysDeleteResponse? Type2403 { get; set; } + public global::tryAGI.OpenAI.DeleteEvalResponse? Type2403 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.DeleteEvalRunResponse? Type2404 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.AdminApiKeysDeleteResponse? Type2405 { get; set; } } } \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ComputerCallOutputItemParam.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ComputerCallOutputItemParam.g.cs index 988a7c56..a299652f 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ComputerCallOutputItemParam.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ComputerCallOutputItemParam.g.cs @@ -22,8 +22,10 @@ public sealed partial class ComputerCallOutputItemParam public required string CallId { get; set; } /// - /// The ID of the computer tool call output. + /// The ID of the computer tool call output.
+ /// Example: cuo_123 ///
+ /// cuo_123 [global::System.Text.Json.Serialization.JsonPropertyName("id")] public string? Id { get; set; } @@ -65,7 +67,8 @@ public sealed partial class ComputerCallOutputItemParam /// The ID of the computer tool call that produced the output. /// /// - /// The ID of the computer tool call output. + /// The ID of the computer tool call output.
+ /// Example: cuo_123 /// /// /// A computer screenshot image used with the computer use tool. diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ContentItem.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ContentItem.g.cs index 75de47fe..31904e61 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ContentItem.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ContentItem.g.cs @@ -149,6 +149,41 @@ public ContentItem(global::tryAGI.OpenAI.SummaryTextContent? value) SummaryText = value; } + /// + /// Reasoning text from the model. + /// +#if NET6_0_OR_GREATER + public global::tryAGI.OpenAI.ReasoningTextContent? ReasoningText { get; init; } +#else + public global::tryAGI.OpenAI.ReasoningTextContent? ReasoningText { get; } +#endif + + /// + /// + /// +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(ReasoningText))] +#endif + public bool IsReasoningText => ReasoningText != null; + + /// + /// + /// + public static implicit operator ContentItem(global::tryAGI.OpenAI.ReasoningTextContent value) => new ContentItem((global::tryAGI.OpenAI.ReasoningTextContent?)value); + + /// + /// + /// + public static implicit operator global::tryAGI.OpenAI.ReasoningTextContent?(ContentItem @this) => @this.ReasoningText; + + /// + /// + /// + public ContentItem(global::tryAGI.OpenAI.ReasoningTextContent? value) + { + ReasoningText = value; + } + /// /// A refusal from the model. /// @@ -297,6 +332,7 @@ public ContentItem( global::tryAGI.OpenAI.OutputTextContent? outputText, global::tryAGI.OpenAI.TextContent? text, global::tryAGI.OpenAI.SummaryTextContent? summaryText, + global::tryAGI.OpenAI.ReasoningTextContent? reasoningText, global::tryAGI.OpenAI.RefusalContent? refusal, global::tryAGI.OpenAI.InputImageContent? inputImage, global::tryAGI.OpenAI.ComputerScreenshotContent? computerScreenshot, @@ -307,6 +343,7 @@ public ContentItem( OutputText = outputText; Text = text; SummaryText = summaryText; + ReasoningText = reasoningText; Refusal = refusal; InputImage = inputImage; ComputerScreenshot = computerScreenshot; @@ -321,6 +358,7 @@ InputFile as object ?? ComputerScreenshot as object ?? InputImage as object ?? Refusal as object ?? + ReasoningText as object ?? SummaryText as object ?? Text as object ?? OutputText as object ?? @@ -335,6 +373,7 @@ InputText as object OutputText?.ToString() ?? Text?.ToString() ?? SummaryText?.ToString() ?? + ReasoningText?.ToString() ?? Refusal?.ToString() ?? InputImage?.ToString() ?? ComputerScreenshot?.ToString() ?? @@ -346,7 +385,7 @@ InputText as object /// public bool Validate() { - return IsInputText || IsOutputText || IsText || IsSummaryText || IsRefusal || IsInputImage || IsComputerScreenshot || IsInputFile; + return IsInputText || IsOutputText || IsText || IsSummaryText || IsReasoningText || IsRefusal || IsInputImage || IsComputerScreenshot || IsInputFile; } /// @@ -357,6 +396,7 @@ public bool Validate() global::System.Func? outputText = null, global::System.Func? text = null, global::System.Func? summaryText = null, + global::System.Func? reasoningText = null, global::System.Func? refusal = null, global::System.Func? inputImage = null, global::System.Func? computerScreenshot = null, @@ -384,6 +424,10 @@ public bool Validate() { return summaryText(SummaryText!); } + else if (IsReasoningText && reasoningText != null) + { + return reasoningText(ReasoningText!); + } else if (IsRefusal && refusal != null) { return refusal(Refusal!); @@ -412,6 +456,7 @@ public void Match( global::System.Action? outputText = null, global::System.Action? text = null, global::System.Action? summaryText = null, + global::System.Action? reasoningText = null, global::System.Action? refusal = null, global::System.Action? inputImage = null, global::System.Action? computerScreenshot = null, @@ -439,6 +484,10 @@ public void Match( { summaryText?.Invoke(SummaryText!); } + else if (IsReasoningText) + { + reasoningText?.Invoke(ReasoningText!); + } else if (IsRefusal) { refusal?.Invoke(Refusal!); @@ -472,6 +521,8 @@ public override int GetHashCode() typeof(global::tryAGI.OpenAI.TextContent), SummaryText, typeof(global::tryAGI.OpenAI.SummaryTextContent), + ReasoningText, + typeof(global::tryAGI.OpenAI.ReasoningTextContent), Refusal, typeof(global::tryAGI.OpenAI.RefusalContent), InputImage, @@ -500,6 +551,7 @@ public bool Equals(ContentItem other) global::System.Collections.Generic.EqualityComparer.Default.Equals(OutputText, other.OutputText) && global::System.Collections.Generic.EqualityComparer.Default.Equals(Text, other.Text) && global::System.Collections.Generic.EqualityComparer.Default.Equals(SummaryText, other.SummaryText) && + global::System.Collections.Generic.EqualityComparer.Default.Equals(ReasoningText, other.ReasoningText) && global::System.Collections.Generic.EqualityComparer.Default.Equals(Refusal, other.Refusal) && global::System.Collections.Generic.EqualityComparer.Default.Equals(InputImage, other.InputImage) && global::System.Collections.Generic.EqualityComparer.Default.Equals(ComputerScreenshot, other.ComputerScreenshot) && diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ConversationParam.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ConversationParam.g.cs index 6a3c157c..8d814f34 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ConversationParam.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ConversationParam.g.cs @@ -9,8 +9,10 @@ namespace tryAGI.OpenAI public sealed partial class ConversationParam { /// - /// The unique ID of the conversation. + /// The unique ID of the conversation.
+ /// Example: conv_123 ///
+ /// conv_123 [global::System.Text.Json.Serialization.JsonPropertyName("id")] [global::System.Text.Json.Serialization.JsonRequired] public required string Id { get; set; } @@ -25,7 +27,8 @@ public sealed partial class ConversationParam /// Initializes a new instance of the class. ///
/// - /// The unique ID of the conversation. + /// The unique ID of the conversation.
+ /// Example: conv_123 /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.FunctionCallOutputItemParam.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.FunctionCallOutputItemParam.g.cs index 96a00ad7..688e62b5 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.FunctionCallOutputItemParam.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.FunctionCallOutputItemParam.g.cs @@ -16,13 +16,15 @@ public sealed partial class FunctionCallOutputItemParam public required string CallId { get; set; } /// - /// The unique ID of the function tool call output. Populated when this item is returned via API. + /// The unique ID of the function tool call output. Populated when this item is returned via API.
+ /// Example: fc_123 ///
+ /// fc_123 [global::System.Text.Json.Serialization.JsonPropertyName("id")] public string? Id { get; set; } /// - /// A JSON string of the output of the function tool call. + /// /// [global::System.Text.Json.Serialization.JsonPropertyName("output")] [global::System.Text.Json.Serialization.JsonRequired] @@ -56,11 +58,10 @@ public sealed partial class FunctionCallOutputItemParam /// The unique ID of the function tool call generated by the model. /// /// - /// The unique ID of the function tool call output. Populated when this item is returned via API. - /// - /// - /// A JSON string of the output of the function tool call. + /// The unique ID of the function tool call output. Populated when this item is returned via API.
+ /// Example: fc_123 /// + /// /// /// /// The type of the function tool call output. Always `function_call_output`.
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputContent.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputContent.g.cs index 5a389098..e5568198 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputContent.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputContent.g.cs @@ -79,22 +79,60 @@ public OutputContent(global::tryAGI.OpenAI.RefusalContent? value) Refusal = value; } + /// + /// Reasoning text from the model. + /// +#if NET6_0_OR_GREATER + public global::tryAGI.OpenAI.ReasoningTextContent? ReasoningText { get; init; } +#else + public global::tryAGI.OpenAI.ReasoningTextContent? ReasoningText { get; } +#endif + + /// + /// + /// +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(ReasoningText))] +#endif + public bool IsReasoningText => ReasoningText != null; + + /// + /// + /// + public static implicit operator OutputContent(global::tryAGI.OpenAI.ReasoningTextContent value) => new OutputContent((global::tryAGI.OpenAI.ReasoningTextContent?)value); + + /// + /// + /// + public static implicit operator global::tryAGI.OpenAI.ReasoningTextContent?(OutputContent @this) => @this.ReasoningText; + + /// + /// + /// + public OutputContent(global::tryAGI.OpenAI.ReasoningTextContent? value) + { + ReasoningText = value; + } + /// /// /// public OutputContent( global::tryAGI.OpenAI.OutputTextContent? text, - global::tryAGI.OpenAI.RefusalContent? refusal + global::tryAGI.OpenAI.RefusalContent? refusal, + global::tryAGI.OpenAI.ReasoningTextContent? reasoningText ) { Text = text; Refusal = refusal; + ReasoningText = reasoningText; } /// /// /// public object? Object => + ReasoningText as object ?? Refusal as object ?? Text as object ; @@ -104,7 +142,8 @@ Text as object /// public override string? ToString() => Text?.ToString() ?? - Refusal?.ToString() + Refusal?.ToString() ?? + ReasoningText?.ToString() ; /// @@ -112,7 +151,7 @@ Text as object /// public bool Validate() { - return IsText || IsRefusal; + return IsText || IsRefusal || IsReasoningText; } /// @@ -121,6 +160,7 @@ public bool Validate() public TResult? Match( global::System.Func? text = null, global::System.Func? refusal = null, + global::System.Func? reasoningText = null, bool validate = true) { if (validate) @@ -136,6 +176,10 @@ public bool Validate() { return refusal(Refusal!); } + else if (IsReasoningText && reasoningText != null) + { + return reasoningText(ReasoningText!); + } return default(TResult); } @@ -146,6 +190,7 @@ public bool Validate() public void Match( global::System.Action? text = null, global::System.Action? refusal = null, + global::System.Action? reasoningText = null, bool validate = true) { if (validate) @@ -161,6 +206,10 @@ public void Match( { refusal?.Invoke(Refusal!); } + else if (IsReasoningText) + { + reasoningText?.Invoke(ReasoningText!); + } } /// @@ -174,6 +223,8 @@ public override int GetHashCode() typeof(global::tryAGI.OpenAI.OutputTextContent), Refusal, typeof(global::tryAGI.OpenAI.RefusalContent), + ReasoningText, + typeof(global::tryAGI.OpenAI.ReasoningTextContent), }; const int offset = unchecked((int)2166136261); const int prime = 16777619; @@ -191,7 +242,8 @@ public bool Equals(OutputContent other) { return global::System.Collections.Generic.EqualityComparer.Default.Equals(Text, other.Text) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Refusal, other.Refusal) + global::System.Collections.Generic.EqualityComparer.Default.Equals(Refusal, other.Refusal) && + global::System.Collections.Generic.EqualityComparer.Default.Equals(ReasoningText, other.ReasoningText) ; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessage.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessage.g.cs index 576a3ab5..d4f1e6a3 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessage.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessage.g.cs @@ -13,7 +13,7 @@ public sealed partial class OutputMessage /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList Content { get; set; } + public required global::System.Collections.Generic.IList Content { get; set; } /// /// The unique ID of the output message. @@ -74,7 +74,7 @@ public sealed partial class OutputMessage [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public OutputMessage( - global::System.Collections.Generic.IList content, + global::System.Collections.Generic.IList content, string id, global::tryAGI.OpenAI.OutputMessageStatus status, global::tryAGI.OpenAI.OutputMessageRole role, diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItem.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContent.Json.g.cs similarity index 86% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItem.Json.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContent.Json.g.cs index 592be2d6..2e0e6703 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItem.Json.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContent.Json.g.cs @@ -2,7 +2,7 @@ namespace tryAGI.OpenAI { - public sealed partial class ReasoningItemContentItem + public readonly partial struct OutputMessageContent { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -34,14 +34,14 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::tryAGI.OpenAI.ReasoningItemContentItem? FromJson( + public static global::tryAGI.OpenAI.OutputMessageContent? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::tryAGI.OpenAI.ReasoningItemContentItem), - jsonSerializerContext) as global::tryAGI.OpenAI.ReasoningItemContentItem; + typeof(global::tryAGI.OpenAI.OutputMessageContent), + jsonSerializerContext) as global::tryAGI.OpenAI.OutputMessageContent?; } /// @@ -51,11 +51,11 @@ public string ToJson( [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] #endif - public static global::tryAGI.OpenAI.ReasoningItemContentItem? FromJson( + public static global::tryAGI.OpenAI.OutputMessageContent? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -63,14 +63,14 @@ public string ToJson( /// /// Deserializes a JSON stream using the provided JsonSerializerContext. /// - public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( jsonStream, - typeof(global::tryAGI.OpenAI.ReasoningItemContentItem), - jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.ReasoningItemContentItem; + typeof(global::tryAGI.OpenAI.OutputMessageContent), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.OutputMessageContent?; } /// @@ -80,11 +80,11 @@ public string ToJson( [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] #endif - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { - return global::System.Text.Json.JsonSerializer.DeserializeAsync( + return global::System.Text.Json.JsonSerializer.DeserializeAsync( jsonStream, jsonSerializerOptions); } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContent.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContent.g.cs new file mode 100644 index 00000000..491c5e2d --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContent.g.cs @@ -0,0 +1,222 @@ +#pragma warning disable CS0618 // Type or member is obsolete + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// + /// + public readonly partial struct OutputMessageContent : global::System.IEquatable + { + /// + /// A text output from the model. + /// +#if NET6_0_OR_GREATER + public global::tryAGI.OpenAI.OutputTextContent? Text { get; init; } +#else + public global::tryAGI.OpenAI.OutputTextContent? Text { get; } +#endif + + /// + /// + /// +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Text))] +#endif + public bool IsText => Text != null; + + /// + /// + /// + public static implicit operator OutputMessageContent(global::tryAGI.OpenAI.OutputTextContent value) => new OutputMessageContent((global::tryAGI.OpenAI.OutputTextContent?)value); + + /// + /// + /// + public static implicit operator global::tryAGI.OpenAI.OutputTextContent?(OutputMessageContent @this) => @this.Text; + + /// + /// + /// + public OutputMessageContent(global::tryAGI.OpenAI.OutputTextContent? value) + { + Text = value; + } + + /// + /// A refusal from the model. + /// +#if NET6_0_OR_GREATER + public global::tryAGI.OpenAI.RefusalContent? Refusal { get; init; } +#else + public global::tryAGI.OpenAI.RefusalContent? Refusal { get; } +#endif + + /// + /// + /// +#if NET6_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Refusal))] +#endif + public bool IsRefusal => Refusal != null; + + /// + /// + /// + public static implicit operator OutputMessageContent(global::tryAGI.OpenAI.RefusalContent value) => new OutputMessageContent((global::tryAGI.OpenAI.RefusalContent?)value); + + /// + /// + /// + public static implicit operator global::tryAGI.OpenAI.RefusalContent?(OutputMessageContent @this) => @this.Refusal; + + /// + /// + /// + public OutputMessageContent(global::tryAGI.OpenAI.RefusalContent? value) + { + Refusal = value; + } + + /// + /// + /// + public OutputMessageContent( + global::tryAGI.OpenAI.OutputTextContent? text, + global::tryAGI.OpenAI.RefusalContent? refusal + ) + { + Text = text; + Refusal = refusal; + } + + /// + /// + /// + public object? Object => + Refusal as object ?? + Text as object + ; + + /// + /// + /// + public override string? ToString() => + Text?.ToString() ?? + Refusal?.ToString() + ; + + /// + /// + /// + public bool Validate() + { + return IsText || IsRefusal; + } + + /// + /// + /// + public TResult? Match( + global::System.Func? text = null, + global::System.Func? refusal = null, + bool validate = true) + { + if (validate) + { + Validate(); + } + + if (IsText && text != null) + { + return text(Text!); + } + else if (IsRefusal && refusal != null) + { + return refusal(Refusal!); + } + + return default(TResult); + } + + /// + /// + /// + public void Match( + global::System.Action? text = null, + global::System.Action? refusal = null, + bool validate = true) + { + if (validate) + { + Validate(); + } + + if (IsText) + { + text?.Invoke(Text!); + } + else if (IsRefusal) + { + refusal?.Invoke(Refusal!); + } + } + + /// + /// + /// + public override int GetHashCode() + { + var fields = new object?[] + { + Text, + typeof(global::tryAGI.OpenAI.OutputTextContent), + Refusal, + typeof(global::tryAGI.OpenAI.RefusalContent), + }; + const int offset = unchecked((int)2166136261); + const int prime = 16777619; + static int HashCodeAggregator(int hashCode, object? value) => value == null + ? (hashCode ^ 0) * prime + : (hashCode ^ value.GetHashCode()) * prime; + + return global::System.Linq.Enumerable.Aggregate(fields, offset, HashCodeAggregator); + } + + /// + /// + /// + public bool Equals(OutputMessageContent other) + { + return + global::System.Collections.Generic.EqualityComparer.Default.Equals(Text, other.Text) && + global::System.Collections.Generic.EqualityComparer.Default.Equals(Refusal, other.Refusal) + ; + } + + /// + /// + /// + public static bool operator ==(OutputMessageContent obj1, OutputMessageContent obj2) + { + return global::System.Collections.Generic.EqualityComparer.Default.Equals(obj1, obj2); + } + + /// + /// + /// + public static bool operator !=(OutputMessageContent obj1, OutputMessageContent obj2) + { + return !(obj1 == obj2); + } + + /// + /// + /// + public override bool Equals(object? obj) + { + return obj is OutputMessageContent o && Equals(o); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContentDiscriminator.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContentDiscriminator.Json.g.cs new file mode 100644 index 00000000..cdf43362 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContentDiscriminator.Json.g.cs @@ -0,0 +1,92 @@ +#nullable enable + +namespace tryAGI.OpenAI +{ + public sealed partial class OutputMessageContentDiscriminator + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.OutputMessageContentDiscriminator? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.OutputMessageContentDiscriminator), + jsonSerializerContext) as global::tryAGI.OpenAI.OutputMessageContentDiscriminator; + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::tryAGI.OpenAI.OutputMessageContentDiscriminator? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::tryAGI.OpenAI.OutputMessageContentDiscriminator), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.OutputMessageContentDiscriminator; + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContentDiscriminator.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContentDiscriminator.g.cs new file mode 100644 index 00000000..80f91e3d --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.OutputMessageContentDiscriminator.g.cs @@ -0,0 +1,43 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// + /// + public sealed partial class OutputMessageContentDiscriminator + { + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("type")] + public string? Type { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public OutputMessageContentDiscriminator( + string? type) + { + this.Type = type; + } + + /// + /// Initializes a new instance of the class. + /// + public OutputMessageContentDiscriminator() + { + } + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItem.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItem.g.cs index fc6e9b20..9b8f6577 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItem.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItem.g.cs @@ -15,7 +15,7 @@ public sealed partial class ReasoningItem /// Reasoning text content. /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public global::System.Collections.Generic.IList? Content { get; set; } + public global::System.Collections.Generic.IList? Content { get; set; } /// /// The encrypted content of the reasoning item - populated when a response is
@@ -44,7 +44,7 @@ public sealed partial class ReasoningItem ///
[global::System.Text.Json.Serialization.JsonPropertyName("summary")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList Summary { get; set; } + public required global::System.Collections.Generic.IList Summary { get; set; } /// /// The type of the object. Always `reasoning`. @@ -87,8 +87,8 @@ public sealed partial class ReasoningItem #endif public ReasoningItem( string id, - global::System.Collections.Generic.IList summary, - global::System.Collections.Generic.IList? content, + global::System.Collections.Generic.IList summary, + global::System.Collections.Generic.IList? content, string? encryptedContent, global::tryAGI.OpenAI.ReasoningItemStatus? status, global::tryAGI.OpenAI.ReasoningItemType type) diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItem.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContent.Json.g.cs similarity index 86% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItem.Json.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContent.Json.g.cs index 753a0ad2..124b17d1 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItem.Json.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContent.Json.g.cs @@ -2,7 +2,7 @@ namespace tryAGI.OpenAI { - public sealed partial class ReasoningItemSummaryItem + public sealed partial class ReasoningTextContent { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -34,14 +34,14 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::tryAGI.OpenAI.ReasoningItemSummaryItem? FromJson( + public static global::tryAGI.OpenAI.ReasoningTextContent? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::tryAGI.OpenAI.ReasoningItemSummaryItem), - jsonSerializerContext) as global::tryAGI.OpenAI.ReasoningItemSummaryItem; + typeof(global::tryAGI.OpenAI.ReasoningTextContent), + jsonSerializerContext) as global::tryAGI.OpenAI.ReasoningTextContent; } /// @@ -51,11 +51,11 @@ public string ToJson( [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] #endif - public static global::tryAGI.OpenAI.ReasoningItemSummaryItem? FromJson( + public static global::tryAGI.OpenAI.ReasoningTextContent? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -63,14 +63,14 @@ public string ToJson( /// /// Deserializes a JSON stream using the provided JsonSerializerContext. /// - public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( jsonStream, - typeof(global::tryAGI.OpenAI.ReasoningItemSummaryItem), - jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.ReasoningItemSummaryItem; + typeof(global::tryAGI.OpenAI.ReasoningTextContent), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.ReasoningTextContent; } /// @@ -80,11 +80,11 @@ public string ToJson( [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] #endif - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { - return global::System.Text.Json.JsonSerializer.DeserializeAsync( + return global::System.Text.Json.JsonSerializer.DeserializeAsync( jsonStream, jsonSerializerOptions); } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItem.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContent.g.cs similarity index 60% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItem.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContent.g.cs index 7fb792d4..4d233801 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItem.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContent.g.cs @@ -4,23 +4,25 @@ namespace tryAGI.OpenAI { /// - /// + /// Reasoning text from the model. /// - public sealed partial class ReasoningItemContentItem + public sealed partial class ReasoningTextContent { /// - /// Reasoning text output from the model. + /// The reasoning text from the model. /// [global::System.Text.Json.Serialization.JsonPropertyName("text")] [global::System.Text.Json.Serialization.JsonRequired] public required string Text { get; set; } /// - /// The type of the object. Always `reasoning_text`. + /// The type of the reasoning text. Always `reasoning_text`.
+ /// Default Value: reasoning_text ///
+ /// global::tryAGI.OpenAI.ReasoningTextContentType.ReasoningText [global::System.Text.Json.Serialization.JsonPropertyName("type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemContentItemTypeJsonConverter))] - public global::tryAGI.OpenAI.ReasoningItemContentItemType Type { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningTextContentTypeJsonConverter))] + public global::tryAGI.OpenAI.ReasoningTextContentType Type { get; set; } = global::tryAGI.OpenAI.ReasoningTextContentType.ReasoningText; /// /// Additional properties that are not explicitly defined in the schema @@ -29,29 +31,30 @@ public sealed partial class ReasoningItemContentItem public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// - /// Reasoning text output from the model. + /// The reasoning text from the model. /// /// - /// The type of the object. Always `reasoning_text`. + /// The type of the reasoning text. Always `reasoning_text`.
+ /// Default Value: reasoning_text /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif - public ReasoningItemContentItem( + public ReasoningTextContent( string text, - global::tryAGI.OpenAI.ReasoningItemContentItemType type) + global::tryAGI.OpenAI.ReasoningTextContentType type = global::tryAGI.OpenAI.ReasoningTextContentType.ReasoningText) { this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text)); this.Type = type; } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public ReasoningItemContentItem() + public ReasoningTextContent() { } } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItemType.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContentType.g.cs similarity index 59% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItemType.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContentType.g.cs index e57bacae..1725e1b8 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemContentItemType.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningTextContentType.g.cs @@ -4,9 +4,10 @@ namespace tryAGI.OpenAI { /// - /// The type of the object. Always `reasoning_text`. + /// The type of the reasoning text. Always `reasoning_text`.
+ /// Default Value: reasoning_text ///
- public enum ReasoningItemContentItemType + public enum ReasoningTextContentType { /// /// @@ -17,27 +18,27 @@ public enum ReasoningItemContentItemType /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ReasoningItemContentItemTypeExtensions + public static class ReasoningTextContentTypeExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ReasoningItemContentItemType value) + public static string ToValueString(this ReasoningTextContentType value) { return value switch { - ReasoningItemContentItemType.ReasoningText => "reasoning_text", + ReasoningTextContentType.ReasoningText => "reasoning_text", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ReasoningItemContentItemType? ToEnum(string value) + public static ReasoningTextContentType? ToEnum(string value) { return value switch { - "reasoning_text" => ReasoningItemContentItemType.ReasoningText, + "reasoning_text" => ReasoningTextContentType.ReasoningText, _ => null, }; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.Summary.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.Summary.Json.g.cs new file mode 100644 index 00000000..cfe270ff --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.Summary.Json.g.cs @@ -0,0 +1,92 @@ +#nullable enable + +namespace tryAGI.OpenAI +{ + public sealed partial class Summary + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.Summary? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.Summary), + jsonSerializerContext) as global::tryAGI.OpenAI.Summary; + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::tryAGI.OpenAI.Summary? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::tryAGI.OpenAI.Summary), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.Summary; + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItem.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.Summary.g.cs similarity index 63% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItem.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.Summary.g.cs index b8ffbdac..44c71873 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItem.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.Summary.g.cs @@ -4,9 +4,9 @@ namespace tryAGI.OpenAI { /// - /// + /// A summary text from the model. /// - public sealed partial class ReasoningItemSummaryItem + public sealed partial class Summary { /// /// A summary of the reasoning output from the model so far. @@ -16,11 +16,13 @@ public sealed partial class ReasoningItemSummaryItem public required string Text { get; set; } /// - /// The type of the object. Always `summary_text`. + /// The type of the object. Always `summary_text`.
+ /// Default Value: summary_text ///
+ /// global::tryAGI.OpenAI.SummaryType.SummaryText [global::System.Text.Json.Serialization.JsonPropertyName("type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.ReasoningItemSummaryItemTypeJsonConverter))] - public global::tryAGI.OpenAI.ReasoningItemSummaryItemType Type { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.SummaryTypeJsonConverter))] + public global::tryAGI.OpenAI.SummaryType Type { get; set; } = global::tryAGI.OpenAI.SummaryType.SummaryText; /// /// Additional properties that are not explicitly defined in the schema @@ -29,29 +31,30 @@ public sealed partial class ReasoningItemSummaryItem public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// /// A summary of the reasoning output from the model so far. /// /// - /// The type of the object. Always `summary_text`. + /// The type of the object. Always `summary_text`.
+ /// Default Value: summary_text /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif - public ReasoningItemSummaryItem( + public Summary( string text, - global::tryAGI.OpenAI.ReasoningItemSummaryItemType type) + global::tryAGI.OpenAI.SummaryType type = global::tryAGI.OpenAI.SummaryType.SummaryText) { this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text)); this.Type = type; } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public ReasoningItemSummaryItem() + public Summary() { } } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContent.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContent.g.cs index 11a901ae..5b573211 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContent.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContent.g.cs @@ -9,13 +9,14 @@ namespace tryAGI.OpenAI public sealed partial class SummaryTextContent { /// - /// + /// A summary of the reasoning output from the model so far. /// [global::System.Text.Json.Serialization.JsonPropertyName("text")] [global::System.Text.Json.Serialization.JsonRequired] public required string Text { get; set; } /// + /// The type of the object. Always `summary_text`.
/// Default Value: summary_text ///
/// global::tryAGI.OpenAI.SummaryTextContentType.SummaryText @@ -32,8 +33,11 @@ public sealed partial class SummaryTextContent /// /// Initializes a new instance of the class. /// - /// + /// + /// A summary of the reasoning output from the model so far. + /// /// + /// The type of the object. Always `summary_text`.
/// Default Value: summary_text /// #if NET7_0_OR_GREATER diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContentType.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContentType.g.cs index d8bb180c..3b101a5b 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContentType.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryTextContentType.g.cs @@ -4,6 +4,7 @@ namespace tryAGI.OpenAI { /// + /// The type of the object. Always `summary_text`.
/// Default Value: summary_text ///
public enum SummaryTextContentType diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItemType.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryType.g.cs similarity index 61% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItemType.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryType.g.cs index 77b11651..b3e81c97 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ReasoningItemSummaryItemType.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.SummaryType.g.cs @@ -4,9 +4,10 @@ namespace tryAGI.OpenAI { /// - /// The type of the object. Always `summary_text`. + /// The type of the object. Always `summary_text`.
+ /// Default Value: summary_text ///
- public enum ReasoningItemSummaryItemType + public enum SummaryType { /// /// @@ -17,27 +18,27 @@ public enum ReasoningItemSummaryItemType /// /// Enum extensions to do fast conversions without the reflection. /// - public static class ReasoningItemSummaryItemTypeExtensions + public static class SummaryTypeExtensions { /// /// Converts an enum to a string. /// - public static string ToValueString(this ReasoningItemSummaryItemType value) + public static string ToValueString(this SummaryType value) { return value switch { - ReasoningItemSummaryItemType.SummaryText => "summary_text", + SummaryType.SummaryText => "summary_text", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } /// /// Converts an string to a enum. /// - public static ReasoningItemSummaryItemType? ToEnum(string value) + public static SummaryType? ToEnum(string value) { return value switch { - "summary_text" => ReasoningItemSummaryItemType.SummaryText, + "summary_text" => SummaryType.SummaryText, _ => null, }; } diff --git a/src/libs/tryAGI.OpenAI/openapi.yaml b/src/libs/tryAGI.OpenAI/openapi.yaml index 495ea1a5..5483c421 100644 --- a/src/libs/tryAGI.OpenAI/openapi.yaml +++ b/src/libs/tryAGI.OpenAI/openapi.yaml @@ -2328,7 +2328,7 @@ paths: beta: true examples: request: - curl: "curl -X POST https://api.openai.com/v1/fine_tuning/alpha/graders/run \\\n -H \"Content-Type: application/json\" \\\n -H \"Authorization: Bearer $OPENAI_API_KEY\" \\\n -d '{\n \"grader\": {\n \"type\": \"score_model\",\n \"name\": \"Example score model grader\",\n \"input\": [\n {\n \"role\": \"user\",\n \"content\": \"Score how close the reference answer is to the model answer. Score 1.0 if they are the same and 0.0 if they are different. Return just a floating point score\\n\\nReference answer: {{item.reference_answer}}\\n\\nModel answer: {{sample.output_text}}\"\n }\n ],\n \"model\": \"gpt-4o-2024-08-06\",\n \"sampling_params\": {\n \"temperature\": 1,\n \"top_p\": 1,\n \"seed\": 42\n }\n },\n \"item\": {\n \"reference_answer\": \"fuzzy wuzzy was a bear\"\n },\n \"model_sample\": \"fuzzy wuzzy was a bear\"\n }'\n" + curl: "curl -X POST https://api.openai.com/v1/fine_tuning/alpha/graders/run \\\n -H \"Content-Type: application/json\" \\\n -H \"Authorization: Bearer $OPENAI_API_KEY\" \\\n -d '{\n \"grader\": {\n \"type\": \"score_model\",\n \"name\": \"Example score model grader\",\n \"input\": [\n {\n \"role\": \"user\",\n \"content\": \"Score how close the reference answer is to the model\nanswer. Score 1.0 if they are the same and 0.0 if they are different. Return just a floating point score\\n\\nReference answer: {{item.reference_answer}}\\n\\nModel answer: {{sample.output_text}}\"\n }\n ],\n \"model\": \"gpt-4o-2024-08-06\",\n \"sampling_params\": {\n \"temperature\": 1,\n \"top_p\": 1,\n \"seed\": 42\n }\n },\n \"item\": {\n \"reference_answer\": \"fuzzy wuzzy was a bear\"\n },\n \"model_sample\": \"fuzzy wuzzy was a bear\"\n }'\n" go: "package main\n\nimport (\n \"context\"\n \"fmt\"\n\n \"github.com/openai/openai-go\"\n \"github.com/openai/openai-go/option\"\n)\n\nfunc main() {\n client := openai.NewClient(\n option.WithAPIKey(\"My API Key\"),\n )\n response, err := client.FineTuning.Alpha.Graders.Run(context.TODO(), openai.FineTuningAlphaGraderRunParams{\n Grader: openai.FineTuningAlphaGraderRunParamsGraderUnion{\n OfStringCheck: &openai.StringCheckGraderParam{\n Input: \"input\",\n Name: \"name\",\n Operation: openai.StringCheckGraderOperationEq,\n Reference: \"reference\",\n },\n },\n ModelSample: \"model_sample\",\n })\n if err != nil {\n panic(err.Error())\n }\n fmt.Printf(\"%+v\\n\", response.Metadata)\n}\n" java: "package com.openai.example;\n\nimport com.openai.client.OpenAIClient;\nimport com.openai.client.okhttp.OpenAIOkHttpClient;\nimport com.openai.models.finetuning.alpha.graders.GraderRunParams;\nimport com.openai.models.finetuning.alpha.graders.GraderRunResponse;\nimport com.openai.models.graders.gradermodels.StringCheckGrader;\n\npublic final class Main {\n private Main() {}\n\n public static void main(String[] args) {\n OpenAIClient client = OpenAIOkHttpClient.fromEnv();\n\n GraderRunParams params = GraderRunParams.builder()\n .grader(StringCheckGrader.builder()\n .input(\"input\")\n .name(\"name\")\n .operation(StringCheckGrader.Operation.EQ)\n .reference(\"reference\")\n .build())\n .modelSample(\"model_sample\")\n .build();\n GraderRunResponse response = client.fineTuning().alpha().graders().run(params);\n }\n}" node.js: "import OpenAI from 'openai';\n\nconst client = new OpenAI({\n apiKey: 'My API Key',\n});\n\nconst response = await client.fineTuning.alpha.graders.run({\n grader: { input: 'input', name: 'name', operation: 'eq', reference: 'reference', type: 'string_check' },\n model_sample: 'model_sample',\n});\n\nconsole.log(response.metadata);" @@ -9973,6 +9973,7 @@ components: type: string description: The ID of the computer tool call output. nullable: true + example: cuo_123 output: $ref: '#/components/schemas/ComputerScreenshotImage' status: @@ -10437,6 +10438,7 @@ components: id: type: string description: The unique ID of the conversation. + example: conv_123 description: The conversation that this response belongs to. ConversationResource: required: @@ -15682,10 +15684,12 @@ components: type: string description: The unique ID of the function tool call output. Populated when this item is returned via API. nullable: true + example: fc_123 output: - maxLength: 10485760 - type: string - description: A JSON string of the output of the function tool call. + anyOf: + - maxLength: 10485760 + type: string + description: A JSON string of the output of the function tool call. status: type: 'null' nullable: true @@ -17758,6 +17762,7 @@ components: - $ref: '#/components/schemas/OutputTextContent' - $ref: '#/components/schemas/TextContent' - $ref: '#/components/schemas/SummaryTextContent' + - $ref: '#/components/schemas/ReasoningTextContent' - $ref: '#/components/schemas/RefusalContent' - $ref: '#/components/schemas/InputImageContent' - $ref: '#/components/schemas/ComputerScreenshotContent' @@ -18799,6 +18804,7 @@ components: anyOf: - $ref: '#/components/schemas/OutputTextContent' - $ref: '#/components/schemas/RefusalContent' + - $ref: '#/components/schemas/ReasoningTextContent' discriminator: propertyName: type OutputItem: @@ -18831,7 +18837,7 @@ components: content: type: array items: - $ref: '#/components/schemas/OutputContent' + $ref: '#/components/schemas/OutputMessageContent' description: "The content of the output message.\n" id: type: string @@ -18857,6 +18863,12 @@ components: description: "The type of the output message. Always `message`.\n" x-stainless-const: true description: "An output message from the model.\n" + OutputMessageContent: + anyOf: + - $ref: '#/components/schemas/OutputTextContent' + - $ref: '#/components/schemas/RefusalContent' + discriminator: + propertyName: type OutputTextContent: title: Output text required: @@ -24728,20 +24740,7 @@ components: content: type: array items: - required: - - type - - text - type: object - properties: - text: - type: string - description: "Reasoning text output from the model.\n" - type: - enum: - - reasoning_text - type: string - description: "The type of the object. Always `reasoning_text`.\n" - x-stainless-const: true + $ref: '#/components/schemas/ReasoningTextContent' description: "Reasoning text content.\n" encrypted_content: type: string @@ -24760,20 +24759,7 @@ components: summary: type: array items: - required: - - type - - text - type: object - properties: - text: - type: string - description: "A summary of the reasoning output from the model so far.\n" - type: - enum: - - summary_text - type: string - description: "The type of the object. Always `summary_text`.\n" - x-stainless-const: true + $ref: '#/components/schemas/Summary' description: "Reasoning summary content.\n" type: enum: @@ -24782,6 +24768,24 @@ components: description: "The type of the object. Always `reasoning`.\n" x-stainless-const: true description: "A description of the chain of thought used by a reasoning model while generating\na response. Be sure to include these items in your `input` to the Responses API\nfor subsequent turns of a conversation if you are manually\n[managing context](https://platform.openai.com/docs/guides/conversation-state).\n" + ReasoningTextContent: + title: Reasoning text + required: + - type + - text + type: object + properties: + text: + type: string + description: The reasoning text from the model. + type: + enum: + - reasoning_text + type: string + description: The type of the reasoning text. Always `reasoning_text`. + default: reasoning_text + x-stainless-const: true + description: Reasoning text from the model. RefusalContent: title: Refusal required: @@ -28305,6 +28309,24 @@ components: description: The ID of the tool call in the `required_action` object within the run object the output is being submitted for. description: A list of tools for which the outputs are being submitted. additionalProperties: false + Summary: + title: Summary text + required: + - type + - text + type: object + properties: + text: + type: string + description: A summary of the reasoning output from the model so far. + type: + enum: + - summary_text + type: string + description: The type of the object. Always `summary_text`. + default: summary_text + x-stainless-const: true + description: A summary text from the model. SummaryTextContent: title: Summary text required: @@ -28314,10 +28336,12 @@ components: properties: text: type: string + description: A summary of the reasoning output from the model so far. type: enum: - summary_text type: string + description: The type of the object. Always `summary_text`. default: summary_text x-stainless-const: true description: A summary text from the model.