diff --git a/.claude/skills/tryagi-openai/SKILL.md b/.claude/skills/tryagi-openai/SKILL.md index 52d3de41a..269beb618 100644 --- a/.claude/skills/tryagi-openai/SKILL.md +++ b/.claude/skills/tryagi-openai/SKILL.md @@ -46,7 +46,7 @@ dnx tryAGI.OpenAI.CLI --help | `invite` | 4 | | | `model` | 3 | List and describe the various models available in the API. | | `moderation` | 1 | Given text and/or image inputs, classifies if those inputs are potentially harmful. | -| `project` | 24 | | +| `project` | 23 | | | `project-group` | 4 | | | `project-group-role-assignment` | 4 | | | `project-user-role-assignment` | 4 | | @@ -61,7 +61,7 @@ dnx tryAGI.OpenAI.CLI --help | `user-organization-role-assignment` | 4 | | | `vector-store` | 16 | | | `video` | 10 | | -| `default` | 23 | | +| `default` | 24 | | ## References diff --git a/.claude/skills/tryagi-openai/commands.md b/.claude/skills/tryagi-openai/commands.md index 20b900c42..eae306a00 100644 --- a/.claude/skills/tryagi-openai/commands.md +++ b/.claude/skills/tryagi-openai/commands.md @@ -260,7 +260,6 @@ Given text and/or image inputs, classifies if those inputs are potentially harmf | `archive-project` | `POST /organization/projects/{project_id}/archive` | Archives a project in the organization. Archived projects cannot be used or updated. | | `create-project` | `POST /organization/projects` | Create a new project in the organization. Projects can be created and archived, but cannot be deleted. | | `create-project-service-account` | `POST /organization/projects/{project_id}/service_accounts` | Creates a new service account in the project. By default, this also returns an unredacted API key for the service account. | -| `create-project-service-account-api-key` | `POST /organization/projects/{project_id}/service_accounts/{service_account_id}/api_keys` | Creates an API key for a service account in the project. | | `create-project-user` | `POST /organization/projects/{project_id}/users` | Adds a user to the project. Users must already be members of the organization to be added to a project. | | `delete-project-api-key` | `DELETE /organization/projects/{project_id}/api_keys/{api_key_id}` | Deletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account. | | `delete-project-model-permissions` | `DELETE /organization/projects/{project_id}/model_permissions` | Deletes model permissions for a project. | @@ -476,6 +475,7 @@ Use Uploads to upload large files in multiple parts. | `create-chat-kit-session` | `POST /chatkit/sessions` | Create a ChatKit session. | | `create-container` | `POST /containers` | Create Container | | `create-container-file` | `POST /containers/{container_id}/files` | Create a Container File You can send either a multipart/form-data request with the raw file content, or a JSON request with a file ID. | +| `create-project-service-account-api-key` | `POST /organization/projects/{project_id}/service_accounts/{service_account_id}/api_keys` | Creates an API key for a service account in the project. | | `delete-acontainer` | `DELETE /containers/{container_id}` | Delete Container | | `delete-acontainer-file` | `DELETE /containers/{container_id}/files/{file_id}` | Delete Container File | | `delete-admin-api-key` | `DELETE /organization/admin_api_keys/{key_id}` | Delete an organization admin API key | diff --git a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/ProjectsCreateProjectServiceAccountApiKeyCommandApiCommand.g.cs b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/CreateProjectServiceAccountApiKeyCommandApiCommand.g.cs similarity index 90% rename from src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/ProjectsCreateProjectServiceAccountApiKeyCommandApiCommand.g.cs rename to src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/CreateProjectServiceAccountApiKeyCommandApiCommand.g.cs index c5b322598..97e48db8f 100644 --- a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/ProjectsCreateProjectServiceAccountApiKeyCommandApiCommand.g.cs +++ b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/CreateProjectServiceAccountApiKeyCommandApiCommand.g.cs @@ -5,7 +5,7 @@ namespace tryAGI.OpenAI.Cli.GeneratedApi.Commands; -internal static partial class ProjectsCreateProjectServiceAccountApiKeyCommandApiCommand +internal static partial class CreateProjectServiceAccountApiKeyCommandApiCommand { private static Argument ProjectId { get; } = new( name: @"project-id") @@ -47,7 +47,7 @@ internal static partial class ProjectsCreateProjectServiceAccountApiKeyCommandAp Hidden = true, }; - private static string FormatResponse(ParseResult parseResult, global::tryAGI.OpenAI.ProjectServiceAccountApiKey value, global::System.Text.Json.Serialization.JsonSerializerContext context, bool truncateLongStrings) + private static string FormatResponse(ParseResult parseResult, global::tryAGI.OpenAI.ServiceAccountApiKeyBody value, global::System.Text.Json.Serialization.JsonSerializerContext context, bool truncateLongStrings) { string? text = null; CustomizeResponseText(parseResult, value, ref text); @@ -63,7 +63,7 @@ private static string FormatResponse(ParseResult parseResult, global::tryAGI.Ope return CliRuntime.FormatHumanReadable(value, context, truncateLongStrings, hints); } - static partial void CustomizeResponseText(ParseResult parseResult, global::tryAGI.OpenAI.ProjectServiceAccountApiKey value, ref string? text); + static partial void CustomizeResponseText(ParseResult parseResult, global::tryAGI.OpenAI.ServiceAccountApiKeyBody value, ref string? text); static partial void CustomizeResponseFormatHints(Dictionary hints); @@ -92,7 +92,7 @@ public static Command Create() command.SetAction(async (ParseResult parseResult, CancellationToken cancellationToken) => await CliRuntime.RunAsync(async () => { - var __requestBase = await CliRuntime.ReadRequestOrDefaultAsync( + var __requestBase = await CliRuntime.ReadRequestOrDefaultAsync( parseResult, Input, RequestJson, @@ -106,7 +106,7 @@ await CliRuntime.RunAsync(async () => using var client = await CliRuntime.CreateClientAsync(parseResult, cancellationToken).ConfigureAwait(false); - var response = await client.Projects.CreateProjectServiceAccountApiKeyAsync( + var response = await client.CreateProjectServiceAccountApiKeyAsync( projectId: projectId, serviceAccountId: serviceAccountId, name: name, diff --git a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/DefaultApiGroupCommand.g.cs b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/DefaultApiGroupCommand.g.cs index e39e1161b..053dac1b9 100644 --- a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/DefaultApiGroupCommand.g.cs +++ b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/DefaultApiGroupCommand.g.cs @@ -16,6 +16,7 @@ public static Command Create() command.Subcommands.Add(CreateChatKitSessionCommandApiCommand.Create()); command.Subcommands.Add(CreateContainerCommandApiCommand.Create()); command.Subcommands.Add(CreateContainerFileCommandApiCommand.Create()); + command.Subcommands.Add(CreateProjectServiceAccountApiKeyCommandApiCommand.Create()); command.Subcommands.Add(DeleteAContainerCommandApiCommand.Create()); command.Subcommands.Add(DeleteAContainerFileCommandApiCommand.Create()); command.Subcommands.Add(DeleteAdminApiKeyCommandApiCommand.Create()); diff --git a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/ProjectsApiGroupCommand.g.cs b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/ProjectsApiGroupCommand.g.cs index fc8312b17..3e5d357e5 100644 --- a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/ProjectsApiGroupCommand.g.cs +++ b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/ProjectsApiGroupCommand.g.cs @@ -12,7 +12,6 @@ public static Command Create() command.Subcommands.Add(ProjectsArchiveProjectCommandApiCommand.Create()); command.Subcommands.Add(ProjectsCreateProjectCommandApiCommand.Create()); command.Subcommands.Add(ProjectsCreateProjectServiceAccountCommandApiCommand.Create()); - command.Subcommands.Add(ProjectsCreateProjectServiceAccountApiKeyCommandApiCommand.Create()); command.Subcommands.Add(ProjectsCreateProjectUserCommandApiCommand.Create()); command.Subcommands.Add(ProjectsDeleteProjectApiKeyCommandApiCommand.Create()); command.Subcommands.Add(ProjectsDeleteProjectModelPermissionsCommandApiCommand.Create()); diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProjectServiceAccountApiKey.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IOpenAiClient.CreateProjectServiceAccountApiKey.g.cs similarity index 71% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProjectServiceAccountApiKey.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IOpenAiClient.CreateProjectServiceAccountApiKey.g.cs index 281952c9a..40b5e0798 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IProjectsClient.CreateProjectServiceAccountApiKey.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IOpenAiClient.CreateProjectServiceAccountApiKey.g.cs @@ -2,45 +2,57 @@ namespace tryAGI.OpenAI { - public partial interface IProjectsClient + public partial interface IOpenAiClient { /// /// Creates an API key for a service account in the project. /// - /// - /// + /// + /// The ID of the project. + /// + /// + /// The ID of the service account. + /// /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( + global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( string projectId, string serviceAccountId, - global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest request, + global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody request, global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); /// /// Creates an API key for a service account in the project. /// - /// - /// + /// + /// The ID of the project. + /// + /// + /// The ID of the service account. + /// /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task> CreateProjectServiceAccountApiKeyAsResponseAsync( + global::System.Threading.Tasks.Task> CreateProjectServiceAccountApiKeyAsResponseAsync( string projectId, string serviceAccountId, - global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest request, + global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody request, global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); /// /// Creates an API key for a service account in the project. /// - /// - /// + /// + /// The ID of the project. + /// + /// + /// The ID of the service account. + /// /// /// API key name. /// @@ -50,7 +62,7 @@ public partial interface IProjectsClient /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( + global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( string projectId, string serviceAccountId, string? name = default, diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObject.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObject.g.cs new file mode 100644 index 000000000..01ce5e113 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObject.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace tryAGI.OpenAI.JsonConverters +{ + /// + public sealed class ServiceAccountApiKeyBodyObjectJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject Read( + ref global::System.Text.Json.Utf8JsonReader reader, + global::System.Type typeToConvert, + global::System.Text.Json.JsonSerializerOptions options) + { + switch (reader.TokenType) + { + case global::System.Text.Json.JsonTokenType.String: + { + var stringValue = reader.GetString(); + if (stringValue != null) + { + return global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObjectExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObjectExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullable.g.cs new file mode 100644 index 000000000..5aca60508 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace tryAGI.OpenAI.JsonConverters +{ + /// + public sealed class ServiceAccountApiKeyBodyObjectNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject? Read( + ref global::System.Text.Json.Utf8JsonReader reader, + global::System.Type typeToConvert, + global::System.Text.Json.JsonSerializerOptions options) + { + switch (reader.TokenType) + { + case global::System.Text.Json.JsonTokenType.String: + { + var stringValue = reader.GetString(); + if (stringValue != null) + { + return global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObjectExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject? value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + if (value == null) + { + writer.WriteNullValue(); + } + else + { + writer.WriteStringValue(global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObjectExtensions.ToValueString(value.Value)); + } + } + } +} 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 508f2bb01..5b504f8bf 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs @@ -361,6 +361,14 @@ namespace tryAGI.OpenAI typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -4301,6 +4309,10 @@ namespace tryAGI.OpenAI typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -5925,14 +5937,6 @@ namespace tryAGI.OpenAI typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -7142,8 +7146,8 @@ namespace tryAGI.OpenAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Batch))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BatchObject), TypeInfoPropertyName = "BatchObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BatchErrors))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BatchErrorsDataItem))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BatchError))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BatchStatus), TypeInfoPropertyName = "BatchStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BatchRequestCounts))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BatchUsage))] @@ -7410,6 +7414,9 @@ namespace tryAGI.OpenAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategy))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType), TypeInfoPropertyName = "CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyStatic))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestEndpoint), TypeInfoPropertyName = "CreateBatchRequestEndpoint2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow), TypeInfoPropertyName = "CreateBatchRequestCompletionWindow2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateChatCompletionRequest), TypeInfoPropertyName = "CreateChatCompletionRequest2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateModelResponseProperties), TypeInfoPropertyName = "CreateModelResponseProperties2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2))] @@ -7456,9 +7463,6 @@ namespace tryAGI.OpenAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateCompletionRequestModel), TypeInfoPropertyName = "CreateCompletionRequestModel2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>), TypeInfoPropertyName = "OneOfStringIListStringIListInt32IListIListInt322")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList>))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateCompletionResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -7818,6 +7822,14 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -11758,6 +11770,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -13382,14 +13398,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -14439,6 +14447,9 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList>))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateCompletionResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateCompletionResponseChoice))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateCompletionResponseChoiceFinishReason), TypeInfoPropertyName = "CreateCompletionResponseChoiceFinishReason2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateCompletionResponseChoiceLogprobs2))] @@ -14913,9 +14924,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningIntegration))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningIntegrationType), TypeInfoPropertyName = "FineTuningIntegrationType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningIntegrationWandb))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningJob))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningJobError2))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningJobHyperparameters))] internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -15275,6 +15283,14 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -19215,6 +19231,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -20839,14 +20859,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -21896,6 +21908,9 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningJob))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningJobError2))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningJobHyperparameters))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningJobHyperparametersBatchSizeVariant1), TypeInfoPropertyName = "FineTuningJobHyperparametersBatchSizeVariant12")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfFineTuningJobHyperparametersLearningRateMultiplierDouble2")] @@ -22317,7 +22332,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectServiceAccountRole), TypeInfoPropertyName = "ProjectServiceAccountRole2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectServiceAccountApiKey))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject), TypeInfoPropertyName = "ProjectServiceAccountApiKeyObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject), TypeInfoPropertyName = "ProjectServiceAccountCreateResponseObject2")] @@ -22371,8 +22385,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType), TypeInfoPropertyName = "RealtimeBetaClientEventInputAudioBufferAppendType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType), TypeInfoPropertyName = "RealtimeBetaClientEventInputAudioBufferClearType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit))] internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -22732,6 +22744,14 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -26672,6 +26692,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -28296,14 +28320,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -29353,6 +29369,8 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType), TypeInfoPropertyName = "RealtimeBetaClientEventInputAudioBufferClearType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType), TypeInfoPropertyName = "RealtimeBetaClientEventInputAudioBufferCommitType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType), TypeInfoPropertyName = "RealtimeBetaClientEventOutputAudioBufferClearType2")] @@ -29828,8 +29846,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType), TypeInfoPropertyName = "RealtimeTranscriptionSessionCreateResponseGAType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem), TypeInfoPropertyName = "RealtimeTranscriptionSessionCreateResponseGAIncludeItem2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio))] internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -30189,6 +30205,14 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -34129,6 +34153,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -35753,14 +35781,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -36810,6 +36830,8 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem), TypeInfoPropertyName = "RealtimeTranscriptionSessionCreateResponseGAIncludeItem2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection2))] @@ -37285,8 +37307,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRoleUpdateRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VadConfigType), TypeInfoPropertyName = "VadConfigType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ValidateGraderRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ValidateGraderResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor), TypeInfoPropertyName = "VectorStoreExpirationAfterAnchor2")] internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -37646,6 +37666,14 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -41586,6 +41614,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -43210,14 +43242,6 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -44267,6 +44291,8 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ValidateGraderResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor), TypeInfoPropertyName = "VectorStoreExpirationAfterAnchor2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfStringDoubleBoolean2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VectorStoreFileBatchObject))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject), TypeInfoPropertyName = "VectorStoreFileBatchObjectObject2")] @@ -44654,6 +44680,9 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateConversationBody))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UpdateConversationBody))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeletedConversationResourceObject), TypeInfoPropertyName = "DeletedConversationResourceObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ServiceAccountApiKeyBody))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject), TypeInfoPropertyName = "ServiceAccountApiKeyBodyObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OrderEnum), TypeInfoPropertyName = "OrderEnum2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VideoModel), TypeInfoPropertyName = "VideoModel2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VideoModelEnum), TypeInfoPropertyName = "VideoModelEnum2")] @@ -44739,11 +44768,6 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateChatSessionBody))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageInputText))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageInputTextType), TypeInfoPropertyName = "UserMessageInputTextType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageQuotedText))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageQuotedTextType), TypeInfoPropertyName = "UserMessageQuotedTextType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AttachmentType), TypeInfoPropertyName = "AttachmentType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Attachment))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ToolChoice8))] internal sealed partial class SourceGenerationContextChunk5 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -45103,6 +45127,14 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -49043,6 +49075,10 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -50667,14 +50703,6 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -51724,6 +51752,11 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageQuotedText))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageQuotedTextType), TypeInfoPropertyName = "UserMessageQuotedTextType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AttachmentType), TypeInfoPropertyName = "AttachmentType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Attachment))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ToolChoice8))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InferenceOptions))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageItem))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserMessageItemObject), TypeInfoPropertyName = "UserMessageItemObject2")] @@ -52196,11 +52229,6 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaKeyPressActionType), TypeInfoPropertyName = "BetaKeyPressActionType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaDragParamType), TypeInfoPropertyName = "BetaDragParamType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCoordParam))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaDoubleClickActionType), TypeInfoPropertyName = "BetaDoubleClickActionType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaClickParamType), TypeInfoPropertyName = "BetaClickParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaClickButtonType), TypeInfoPropertyName = "BetaClickButtonType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFileSearchToolCallType), TypeInfoPropertyName = "BetaFileSearchToolCallType2")] internal sealed partial class SourceGenerationContextChunk6 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -52560,6 +52588,14 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -56500,6 +56536,10 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -58124,14 +58164,6 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -59181,6 +59213,11 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCoordParam))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaDoubleClickActionType), TypeInfoPropertyName = "BetaDoubleClickActionType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaClickParamType), TypeInfoPropertyName = "BetaClickParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaClickButtonType), TypeInfoPropertyName = "BetaClickButtonType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFileSearchToolCallType), TypeInfoPropertyName = "BetaFileSearchToolCallType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFileSearchToolCallStatus), TypeInfoPropertyName = "BetaFileSearchToolCallStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFileSearchToolCallResultsVariant1Item))] @@ -59546,9 +59583,6 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaModerationConfigParam))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaModerationMode), TypeInfoPropertyName = "BetaModerationMode2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCreateModelResponsePropertiesVariant2))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestEndpoint), TypeInfoPropertyName = "CreateBatchRequestEndpoint2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow), TypeInfoPropertyName = "CreateBatchRequestCompletionWindow2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UpdateChatCompletionRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateConversationItemsRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UpdateEvalRequest))] @@ -59656,8 +59690,6 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaListInputItemsOpenaiBetaItem), TypeInfoPropertyName = "BetaListInputItemsOpenaiBetaItem2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaGetinputtokencountsOpenaiBetaItem), TypeInfoPropertyName = "BetaGetinputtokencountsOpenaiBetaItem2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfCreateTranscriptionResponseJsonCreateTranscriptionResponseDiarizedJsonCreateTranscriptionResponseVerboseJson2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfCreateTranslationResponseJsonCreateTranslationResponseVerboseJson2")] internal sealed partial class SourceGenerationContextChunk7 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -60017,6 +60049,14 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -63957,6 +63997,10 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -65581,14 +65625,6 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -66638,6 +66674,8 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfCreateTranscriptionResponseJsonCreateTranscriptionResponseDiarizedJsonCreateTranscriptionResponseVerboseJson2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfCreateTranslationResponseJsonCreateTranslationResponseVerboseJson2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeleteEvalResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeleteEvalRunResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AdminApiKeysDeleteResponse))] @@ -66775,6 +66813,8 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.AnyOf?), TypeInfoPropertyName = "NullableAnyOfStringAssistantSupportedModels2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategyType?), TypeInfoPropertyName = "NullableCreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategyType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType?), TypeInfoPropertyName = "NullableCreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestEndpoint?), TypeInfoPropertyName = "NullableCreateBatchRequestEndpoint2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow?), TypeInfoPropertyName = "NullableCreateBatchRequestCompletionWindow2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateChatCompletionRequest?), TypeInfoPropertyName = "NullableCreateChatCompletionRequest2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateModelResponseProperties?), TypeInfoPropertyName = "NullableCreateModelResponseProperties2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ModelIdsShared?), TypeInfoPropertyName = "NullableModelIdsShared2")] @@ -67111,10 +67151,6 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListBatchesResponseObject?), TypeInfoPropertyName = "NullableListBatchesResponseObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListCertificatesResponseObject?), TypeInfoPropertyName = "NullableListCertificatesResponseObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponseObject?), TypeInfoPropertyName = "NullableListFineTuningCheckpointPermissionResponseObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject?), TypeInfoPropertyName = "NullableListFineTuningJobCheckpointsResponseObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject?), TypeInfoPropertyName = "NullableListFineTuningJobEventsResponseObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListModelsResponseObject?), TypeInfoPropertyName = "NullableListModelsResponseObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject?), TypeInfoPropertyName = "NullableListPaginatedFineTuningJobsResponseObject2")] internal sealed partial class SourceGenerationContextChunk8 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -67474,6 +67510,14 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -71414,6 +71458,10 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -73038,14 +73086,6 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -74095,6 +74135,10 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject?), TypeInfoPropertyName = "NullableListFineTuningJobCheckpointsResponseObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject?), TypeInfoPropertyName = "NullableListFineTuningJobEventsResponseObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListModelsResponseObject?), TypeInfoPropertyName = "NullableListModelsResponseObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject?), TypeInfoPropertyName = "NullableListPaginatedFineTuningJobsResponseObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListProjectCertificatesResponseObject?), TypeInfoPropertyName = "NullableListProjectCertificatesResponseObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.LocalShellToolCallType?), TypeInfoPropertyName = "NullableLocalShellToolCallType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.LocalShellToolCallStatus?), TypeInfoPropertyName = "NullableLocalShellToolCallStatus2")] @@ -74568,10 +74612,6 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf?), TypeInfoPropertyName = "NullableOneOfRunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectRunStepDeltaStepDetailsToolCallsCodeOutputImageObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsFileSearchObjectType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsFunctionObjectType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsObjectType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType?), TypeInfoPropertyName = "NullableRunStepDetailsMessageCreationObjectType2")] internal sealed partial class SourceGenerationContextChunk9 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -74931,6 +74971,14 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -78871,6 +78919,10 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -80495,14 +80547,6 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -81552,6 +81596,10 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsFileSearchObjectType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsFunctionObjectType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType?), TypeInfoPropertyName = "NullableRunStepDeltaStepDetailsToolCallsObjectType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType?), TypeInfoPropertyName = "NullableRunStepDetailsMessageCreationObjectType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectType?), TypeInfoPropertyName = "NullableRunStepDetailsToolCallsCodeObjectType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf?), TypeInfoPropertyName = "NullableOneOfRunStepDetailsToolCallsCodeOutputLogsObjectRunStepDetailsToolCallsCodeOutputImageObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectType?), TypeInfoPropertyName = "NullableRunStepDetailsToolCallsCodeOutputImageObjectType2")] @@ -81870,6 +81918,7 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Output5?), TypeInfoPropertyName = "NullableOutput52")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ModerationOutputDiscriminatorType?), TypeInfoPropertyName = "NullableModerationOutputDiscriminatorType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeletedConversationResourceObject?), TypeInfoPropertyName = "NullableDeletedConversationResourceObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject?), TypeInfoPropertyName = "NullableServiceAccountApiKeyBodyObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OrderEnum?), TypeInfoPropertyName = "NullableOrderEnum2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VideoModel?), TypeInfoPropertyName = "NullableVideoModel2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.VideoModelEnum?), TypeInfoPropertyName = "NullableVideoModelEnum2")] @@ -82024,11 +82073,6 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerToolType?), TypeInfoPropertyName = "NullableBetaComputerToolType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFileSearchToolType?), TypeInfoPropertyName = "NullableBetaFileSearchToolType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCompoundFilterType?), TypeInfoPropertyName = "NullableBetaCompoundFilterType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FiltersItem2?), TypeInfoPropertyName = "NullableFiltersItem22")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComparisonFilterType?), TypeInfoPropertyName = "NullableBetaComparisonFilterType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaRankerVersionType?), TypeInfoPropertyName = "NullableBetaRankerVersionType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionToolType?), TypeInfoPropertyName = "NullableBetaFunctionToolType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaItem?), TypeInfoPropertyName = "NullableBetaItem2")] internal sealed partial class SourceGenerationContextChunk10 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -82388,6 +82432,14 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -86328,6 +86380,10 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -87952,14 +88008,6 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -89009,6 +89057,11 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FiltersItem2?), TypeInfoPropertyName = "NullableFiltersItem22")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComparisonFilterType?), TypeInfoPropertyName = "NullableBetaComparisonFilterType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaRankerVersionType?), TypeInfoPropertyName = "NullableBetaRankerVersionType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionToolType?), TypeInfoPropertyName = "NullableBetaFunctionToolType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaItem?), TypeInfoPropertyName = "NullableBetaItem2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaInputItemDiscriminatorType?), TypeInfoPropertyName = "NullableBetaInputItemDiscriminatorType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaProgramOutputItemParamType?), TypeInfoPropertyName = "NullableBetaProgramOutputItemParamType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaProgramOutputItemStatus?), TypeInfoPropertyName = "NullableBetaProgramOutputItemStatus2")] @@ -89307,8 +89360,6 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCreateResponse?), TypeInfoPropertyName = "NullableBetaCreateResponse2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCreateModelResponseProperties?), TypeInfoPropertyName = "NullableBetaCreateModelResponseProperties2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaModerationMode?), TypeInfoPropertyName = "NullableBetaModerationMode2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestEndpoint?), TypeInfoPropertyName = "NullableCreateBatchRequestEndpoint2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow?), TypeInfoPropertyName = "NullableCreateBatchRequestCompletionWindow2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListAssistantsOrder?), TypeInfoPropertyName = "NullableListAssistantsOrder2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListChatCompletionsOrder?), TypeInfoPropertyName = "NullableListChatCompletionsOrder2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.GetChatCompletionMessagesOrder?), TypeInfoPropertyName = "NullableGetChatCompletionMessagesOrder2")] @@ -89395,7 +89446,7 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>))] @@ -89483,9 +89534,6 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf>))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf>))] internal sealed partial class SourceGenerationContextChunk11 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -89845,6 +89893,14 @@ internal sealed partial class SourceGenerationContextChunk11 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter), @@ -93785,6 +93841,10 @@ internal sealed partial class SourceGenerationContextChunk11 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter), @@ -95409,14 +95469,6 @@ internal sealed partial class SourceGenerationContextChunk11 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter), - - typeof(global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter), - typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter), @@ -96466,6 +96518,9 @@ internal sealed partial class SourceGenerationContextChunk11 : global::System.Te [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List>>), TypeInfoPropertyName = "CreateModerationRequestInputVariant3ItemVariant2_82fca1e83967e178")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "MessageDeltaContentImageUrlObject_9c7d436e0b6fe539")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "RunStepDeltaStepDetailsToolCallsFunctionObject_5640d9ed7ecfcd45")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf>))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf>))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] @@ -96918,6 +96973,10 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategyTypeNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyTypeNullableJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationTypeNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateChatCompletionRequestVariant2ResponseFormatDiscriminatorTypeJsonConverter()); @@ -98888,6 +98947,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.ModerationOutputDiscriminatorTypeNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.DeletedConversationResourceObjectNullableJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.OrderEnumJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.OrderEnumNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.VideoModelEnumJsonConverter()); @@ -99700,10 +99761,6 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.BetaCreateResponseVariant3Truncation2NullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.BetaModerationModeJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.BetaModerationModeNullableJsonConverter()); - options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointJsonConverter()); - options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestEndpointNullableJsonConverter()); - options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter()); - options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.CreateBatchRequestCompletionWindowNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.ListAssistantsOrderNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.ListChatCompletionsOrderJsonConverter()); 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 dda607d87..45eed2f5a 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs @@ -660,11 +660,11 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.IList? Type158 { get; set; } + public global::System.Collections.Generic.IList? Type158 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BatchErrorsDataItem? Type159 { get; set; } + public global::tryAGI.OpenAI.BatchError? Type159 { get; set; } /// /// /// @@ -1732,13543 +1732,13551 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequest? Type426 { get; set; } + public global::tryAGI.OpenAI.CreateBatchRequest? Type426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModelResponseProperties? Type427 { get; set; } + public global::tryAGI.OpenAI.CreateBatchRequestEndpoint? Type427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2? Type428 { get; set; } + public global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow? Type428 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type429 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequest? Type429 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsShared? Type430 { get; set; } + public global::tryAGI.OpenAI.CreateModelResponseProperties? Type430 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type431 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2? Type431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VerbosityEnum? Type432 { get; set; } + public global::System.Collections.Generic.IList? Type432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptions? Type433 { get; set; } + public global::tryAGI.OpenAI.ModelIdsShared? Type433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocation? Type434 { get; set; } + public global::System.Collections.Generic.IList? Type434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationType? Type435 { get; set; } + public global::tryAGI.OpenAI.VerbosityEnum? Type435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchLocation? Type436 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptions? Type436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchContextSize? Type437 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocation? Type437 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormat? Type438 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationType? Type438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2ResponseFormatDiscriminator? Type439 { get; set; } + public global::tryAGI.OpenAI.WebSearchLocation? Type439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2ResponseFormatDiscriminatorType? Type440 { get; set; } + public global::tryAGI.OpenAI.WebSearchContextSize? Type440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2Audio? Type441 { get; set; } + public global::tryAGI.OpenAI.ResponseFormat? Type441 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceIdsOrCustomVoice? Type442 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2ResponseFormatDiscriminator? Type442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2AudioFormat? Type443 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2ResponseFormatDiscriminatorType? Type443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationParam? Type444 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2Audio? Type444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StopConfiguration? Type445 { get; set; } + public global::tryAGI.OpenAI.VoiceIdsOrCustomVoice? Type445 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type446 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2AudioFormat? Type446 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PredictionContent? Type447 { get; set; } + public global::tryAGI.OpenAI.ModerationParam? Type447 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type448 { get; set; } + public global::tryAGI.OpenAI.StopConfiguration? Type448 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type449 { get; set; } + public global::System.Collections.Generic.Dictionary? Type449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletions? Type450 { get; set; } + public global::tryAGI.OpenAI.PredictionContent? Type450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type451 { get; set; } + public global::System.Collections.Generic.IList>? Type451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2FunctionCall? Type452 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type452 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type453 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletions? Type453 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type454 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type454 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionResponseChoice? Type455 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2FunctionCall? Type455 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionResponseChoiceFinishReason? Type456 { get; set; } + public global::System.Collections.Generic.IList? Type456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionResponseChoiceLogprobs2? Type457 { get; set; } + public global::System.Collections.Generic.IList? Type457 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type458 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionResponseChoice? Type458 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ServiceTierEnum? Type459 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionResponseChoiceFinishReason? Type459 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionResponseObject? Type460 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionResponseChoiceLogprobs2? Type460 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionStreamResponse? Type461 { get; set; } + public global::System.Collections.Generic.IList? Type461 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type462 { get; set; } + public global::tryAGI.OpenAI.ServiceTierEnum? Type462 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoice? Type463 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionResponseObject? Type463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceLogprobs? Type464 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionStreamResponse? Type464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceFinishReason? Type465 { get; set; } + public global::System.Collections.Generic.IList? Type465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseObject? Type466 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoice? Type466 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateCompletionRequest? Type467 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceLogprobs? Type467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type468 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceFinishReason? Type468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateCompletionRequestModel? Type469 { get; set; } + public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseObject? Type469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Type470 { get; set; } + public global::tryAGI.OpenAI.CreateCompletionRequest? Type470 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type471 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type471 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type472 { get; set; } + public global::tryAGI.OpenAI.CreateCompletionRequestModel? Type472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateCompletionResponse? Type473 { get; set; } + public global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Type473 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type474 { get; set; } + public global::System.Collections.Generic.IList? Type474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateCompletionResponseChoice? Type475 { get; set; } + public global::System.Collections.Generic.IList>? Type475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateCompletionResponseChoiceFinishReason? Type476 { get; set; } + public global::tryAGI.OpenAI.CreateCompletionResponse? Type476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateCompletionResponseChoiceLogprobs2? Type477 { get; set; } + public global::System.Collections.Generic.IList? Type477 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type478 { get; set; } + public global::tryAGI.OpenAI.CreateCompletionResponseChoice? Type478 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type479 { get; set; } + public global::tryAGI.OpenAI.CreateCompletionResponseChoiceFinishReason? Type479 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type480 { get; set; } + public global::tryAGI.OpenAI.CreateCompletionResponseChoiceLogprobs2? Type480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateCompletionResponseObject? Type481 { get; set; } + public global::System.Collections.Generic.IList? Type481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBody? Type482 { get; set; } + public global::System.Collections.Generic.IList>? Type482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfter? Type483 { get; set; } + public global::System.Collections.Generic.Dictionary? Type483 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfterAnchor? Type484 { get; set; } + public global::tryAGI.OpenAI.CreateCompletionResponseObject? Type484 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type485 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBody? Type485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillsItem? Type486 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfter? Type486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillReferenceParam? Type487 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfterAnchor? Type487 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillParam? Type488 { get; set; } + public global::System.Collections.Generic.IList? Type488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBodySkillDiscriminator? Type489 { get; set; } + public global::tryAGI.OpenAI.SkillsItem? Type489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBodySkillDiscriminatorType? Type490 { get; set; } + public global::tryAGI.OpenAI.SkillReferenceParam? Type490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBodyMemoryLimit? Type491 { get; set; } + public global::tryAGI.OpenAI.InlineSkillParam? Type491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy? Type492 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBodySkillDiscriminator? Type492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParam? Type493 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBodySkillDiscriminatorType? Type493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParam? Type494 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBodyMemoryLimit? Type494 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBodyNetworkPolicyDiscriminator? Type495 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy? Type495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerBodyNetworkPolicyDiscriminatorType? Type496 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParam? Type496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateContainerFileBody? Type497 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParam? Type497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingRequest? Type498 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBodyNetworkPolicyDiscriminator? Type498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type499 { get; set; } + public global::tryAGI.OpenAI.CreateContainerBodyNetworkPolicyDiscriminatorType? Type499 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingRequestModel? Type500 { get; set; } + public global::tryAGI.OpenAI.CreateContainerFileBody? Type500 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingRequestEncodingFormat? Type501 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingRequest? Type501 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingResponse? Type502 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type502 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type503 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingRequestModel? Type503 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Embedding? Type504 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingRequestEncodingFormat? Type504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingResponseObject? Type505 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingResponse? Type505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEmbeddingResponseUsage? Type506 { get; set; } + public global::System.Collections.Generic.IList? Type506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSource? Type507 { get; set; } + public global::tryAGI.OpenAI.Embedding? Type507 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceType? Type508 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingResponseObject? Type508 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessages? Type509 { get; set; } + public global::tryAGI.OpenAI.CreateEmbeddingResponseUsage? Type509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessagesType? Type510 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSource? Type510 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type511 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceType? Type511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type512 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessages? Type512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EasyInputMessage? Type513 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessagesType? Type513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItem? Type514 { get; set; } + public global::System.Collections.Generic.IList>? Type514 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessages? Type515 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type515 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessagesType? Type516 { get; set; } + public global::tryAGI.OpenAI.EasyInputMessage? Type516 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSamplingParams? Type517 { get; set; } + public global::tryAGI.OpenAI.EvalItem? Type517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type518 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessages? Type518 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type519 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessagesType? Type519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type520 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSamplingParams? Type520 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSource? Type521 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileIdSource? Type522 { get; set; } + public global::System.Collections.Generic.IList? Type522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsSource? Type523 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfig? Type524 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSource? Type524 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfigType? Type525 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileIdSource? Type525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalItem? Type526 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsSource? Type526 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalItemSimpleInputMessage? Type527 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfig? Type527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSource? Type528 { get; set; } + public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfigType? Type528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceType? Type529 { get; set; } + public global::tryAGI.OpenAI.CreateEvalItem? Type529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type530 { get; set; } + public global::tryAGI.OpenAI.CreateEvalItemSimpleInputMessage? Type530 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLabelModelGrader? Type531 { get; set; } + public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSource? Type531 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLabelModelGraderType? Type532 { get; set; } + public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceType? Type532 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type533 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type533 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfig? Type534 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLabelModelGrader? Type534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfigType? Type535 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLabelModelGraderType? Type535 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalRequest? Type536 { get; set; } + public global::System.Collections.Generic.IList? Type536 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type537 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfig? Type537 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfig? Type538 { get; set; } + public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfigType? Type538 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type539 { get; set; } + public global::tryAGI.OpenAI.CreateEvalRequest? Type539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderStringCheck? Type540 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type540 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderTextSimilarity? Type541 { get; set; } + public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfig? Type541 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderPython? Type542 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderScoreModel? Type543 { get; set; } + public global::tryAGI.OpenAI.EvalGraderStringCheck? Type543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSource? Type544 { get; set; } + public global::tryAGI.OpenAI.EvalGraderTextSimilarity? Type544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceType? Type545 { get; set; } + public global::tryAGI.OpenAI.EvalGraderPython? Type545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplate? Type546 { get; set; } + public global::tryAGI.OpenAI.EvalGraderScoreModel? Type546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateType? Type547 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSource? Type547 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type548 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceType? Type548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type549 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplate? Type549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateTemplateItem? Type550 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateType? Type550 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReference? Type551 { get; set; } + public global::System.Collections.Generic.IList>? Type551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReferenceType? Type552 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type552 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParams? Type553 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateTemplateItem? Type553 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type554 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReference? Type554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Tool? Type555 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReferenceType? Type555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParamsText? Type556 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParams? Type556 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatConfiguration? Type557 { get; set; } + public global::System.Collections.Generic.IList? Type557 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type558 { get; set; } + public global::tryAGI.OpenAI.Tool? Type558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalResponsesSource? Type559 { get; set; } + public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParamsText? Type559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalRunRequest? Type560 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatConfiguration? Type560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type561 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfigType? Type562 { get; set; } + public global::tryAGI.OpenAI.EvalResponsesSource? Type562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFileRequest? Type563 { get; set; } + public global::tryAGI.OpenAI.CreateEvalRunRequest? Type563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFileRequestPurpose? Type564 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileExpirationAfter? Type565 { get; set; } + public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfigType? Type565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningCheckpointPermissionRequest? Type566 { get; set; } + public global::tryAGI.OpenAI.CreateFileRequest? Type566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequest? Type567 { get; set; } + public global::tryAGI.OpenAI.CreateFileRequestPurpose? Type567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type568 { get; set; } + public global::tryAGI.OpenAI.FileExpirationAfter? Type568 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestModel? Type569 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningCheckpointPermissionRequest? Type569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparameters? Type570 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequest? Type570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type571 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type571 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersBatchSize? Type572 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestModel? Type572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type573 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparameters? Type573 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier? Type574 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type575 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersBatchSize? Type575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersNEpochs? Type576 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type576 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type577 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier? Type577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegration? Type578 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationType? Type579 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersNEpochs? Type579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationWandb? Type580 { get; set; } + public global::System.Collections.Generic.IList? Type580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneMethod? Type581 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegration? Type581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateGroupBody? Type582 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationType? Type582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateGroupUserBody? Type583 { get; set; } + public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationWandb? Type583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequest? Type584 { get; set; } + public global::tryAGI.OpenAI.FineTuneMethod? Type584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf>? Type585 { get; set; } + public global::tryAGI.OpenAI.CreateGroupBody? Type585 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type586 { get; set; } + public global::tryAGI.OpenAI.CreateGroupUserBody? Type586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestBackground? Type587 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequest? Type587 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type588 { get; set; } + public global::tryAGI.OpenAI.AnyOf>? Type588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestModel? Type589 { get; set; } + public global::System.Collections.Generic.IList? Type589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type590 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestBackground? Type590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestSize? Type591 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? Type592 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestModel? Type592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? Type593 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFidelity? Type594 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestSize? Type594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageEditRequestQuality? Type595 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? Type595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequest? Type596 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? Type596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type597 { get; set; } + public global::tryAGI.OpenAI.InputFidelity? Type597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestModel? Type598 { get; set; } + public global::tryAGI.OpenAI.CreateImageEditRequestQuality? Type598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestQuality? Type599 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequest? Type599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestResponseFormat? Type600 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestOutputFormat? Type601 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestModel? Type601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type602 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestQuality? Type602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestSize? Type603 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestResponseFormat? Type603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestModeration? Type604 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestOutputFormat? Type604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestBackground? Type605 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageRequestStyle? Type606 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestSize? Type606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequest? Type607 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestModeration? Type607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type608 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestBackground? Type608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequestModel? Type609 { get; set; } + public global::tryAGI.OpenAI.CreateImageRequestStyle? Type609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequestResponseFormat? Type610 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequest? Type610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateImageVariationRequestSize? Type611 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequest? Type612 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequestModel? Type612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequestRole? Type613 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequestResponseFormat? Type613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>>? Type614 { get; set; } + public global::tryAGI.OpenAI.CreateImageVariationRequestSize? Type614 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type615 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequest? Type615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type616 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequestRole? Type616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageFileObject? Type617 { get; set; } + public global::tryAGI.OpenAI.OneOf>>? Type617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageUrlObject? Type618 { get; set; } + public global::System.Collections.Generic.IList>? Type618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRequestContentTextObject? Type619 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type619 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type620 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageFileObject? Type620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateMessageRequestAttachmentsVariant1Item? Type621 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageUrlObject? Type621 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type622 { get; set; } + public global::tryAGI.OpenAI.MessageRequestContentTextObject? Type622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type623 { get; set; } + public global::System.Collections.Generic.IList? Type623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelResponseProperties? Type624 { get; set; } + public global::tryAGI.OpenAI.CreateMessageRequestAttachmentsVariant1Item? Type624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModelResponsePropertiesVariant2? Type625 { get; set; } + public global::System.Collections.Generic.IList>? Type625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheOptionsParam? Type626 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequest? Type627 { get; set; } + public global::tryAGI.OpenAI.ModelResponseProperties? Type627 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type628 { get; set; } + public global::tryAGI.OpenAI.CreateModelResponsePropertiesVariant2? Type628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type629 { get; set; } + public global::tryAGI.OpenAI.PromptCacheOptionsParam? Type629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1? Type630 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequest? Type630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1Type? Type631 { get; set; } + public global::System.Collections.Generic.IList>? Type631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1ImageUrl? Type632 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2? Type633 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1? Type633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2Type? Type634 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1Type? Type634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type635 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1ImageUrl? Type635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationRequestModel? Type636 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2? Type636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponse? Type637 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2Type? Type637 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type638 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type638 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResult? Type639 { get; set; } + public global::tryAGI.OpenAI.CreateModerationRequestModel? Type639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategories? Type640 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponse? Type640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryScores? Type641 { get; set; } + public global::System.Collections.Generic.IList? Type641 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypes? Type642 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResult? Type642 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type643 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategories? Type643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateItem? Type644 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryScores? Type644 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type645 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypes? Type645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateThreateningItem? Type646 { get; set; } + public global::System.Collections.Generic.IList? Type646 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type647 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateItem? Type647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentItem? Type648 { get; set; } + public global::System.Collections.Generic.IList? Type648 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type649 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateThreateningItem? Type649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentThreateningItem? Type650 { get; set; } + public global::System.Collections.Generic.IList? Type650 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type651 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentItem? Type651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitItem? Type652 { get; set; } + public global::System.Collections.Generic.IList? Type652 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type653 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentThreateningItem? Type653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitViolentItem? Type654 { get; set; } + public global::System.Collections.Generic.IList? Type654 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type655 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitItem? Type655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmItem? Type656 { get; set; } + public global::System.Collections.Generic.IList? Type656 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type657 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitViolentItem? Type657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntentItem? Type658 { get; set; } + public global::System.Collections.Generic.IList? Type658 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type659 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmItem? Type659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction? Type660 { get; set; } + public global::System.Collections.Generic.IList? Type660 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type661 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntentItem? Type661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualItem? Type662 { get; set; } + public global::System.Collections.Generic.IList? Type662 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type663 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction? Type663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualMinor? Type664 { get; set; } + public global::System.Collections.Generic.IList? Type664 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type665 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualItem? Type665 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceItem? Type666 { get; set; } + public global::System.Collections.Generic.IList? Type666 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type667 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualMinor? Type667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphicItem? Type668 { get; set; } + public global::System.Collections.Generic.IList? Type668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateResponse? Type669 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceItem? Type669 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseProperties? Type670 { get; set; } + public global::System.Collections.Generic.IList? Type670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateResponseVariant3? Type671 { get; set; } + public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphicItem? Type671 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateResponseVariant3Truncation2? Type672 { get; set; } + public global::tryAGI.OpenAI.CreateResponse? Type672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Reasoning? Type673 { get; set; } + public global::tryAGI.OpenAI.ResponseProperties? Type673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputParam? Type674 { get; set; } + public global::tryAGI.OpenAI.CreateResponseVariant3? Type674 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type675 { get; set; } + public global::tryAGI.OpenAI.CreateResponseVariant3Truncation2? Type675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.IncludeEnum? Type676 { get; set; } + public global::tryAGI.OpenAI.Reasoning? Type676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamOptionsVariant1? Type677 { get; set; } + public global::tryAGI.OpenAI.InputParam? Type677 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type678 { get; set; } + public global::System.Collections.Generic.IList? Type678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContextManagementParam? Type679 { get; set; } + public global::tryAGI.OpenAI.IncludeEnum? Type679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateRunRequest? Type680 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamOptionsVariant1? Type680 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type681 { get; set; } + public global::System.Collections.Generic.IList? Type681 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AllOf? Type682 { get; set; } + public global::tryAGI.OpenAI.ContextManagementParam? Type682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TruncationObject? Type683 { get; set; } + public global::tryAGI.OpenAI.CreateRunRequest? Type683 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AllOf? Type684 { get; set; } + public global::System.Collections.Generic.IList? Type684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequest? Type685 { get; set; } + public global::tryAGI.OpenAI.AllOf? Type685 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type686 { get; set; } + public global::tryAGI.OpenAI.TruncationObject? Type686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequestModel? Type687 { get; set; } + public global::tryAGI.OpenAI.AllOf? Type687 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequestResponseFormat? Type688 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequest? Type688 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechRequestStreamFormat? Type689 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type689 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechResponseStreamEvent? Type690 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequestModel? Type690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDeltaEvent? Type691 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequestResponseFormat? Type691 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEvent? Type692 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechRequestStreamFormat? Type692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechResponseStreamEventDiscriminator? Type693 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechResponseStreamEvent? Type693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpeechResponseStreamEventDiscriminatorType? Type694 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDeltaEvent? Type694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpendAlertBody? Type695 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEvent? Type695 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpendAlertBodyCurrency? Type696 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechResponseStreamEventDiscriminator? Type696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSpendAlertBodyInterval? Type697 { get; set; } + public global::tryAGI.OpenAI.CreateSpeechResponseStreamEventDiscriminatorType? Type697 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendAlertNotificationChannel? Type698 { get; set; } + public global::tryAGI.OpenAI.CreateSpendAlertBody? Type698 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequest? Type699 { get; set; } + public global::tryAGI.OpenAI.CreateSpendAlertBodyCurrency? Type699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequest? Type700 { get; set; } + public global::tryAGI.OpenAI.CreateSpendAlertBodyInterval? Type700 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type701 { get; set; } + public global::tryAGI.OpenAI.SpendAlertNotificationChannel? Type701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestModel? Type702 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequest? Type702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResources? Type703 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequest? Type703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesCodeInterpreter? Type704 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesFileSearch? Type705 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestModel? Type705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResources2? Type706 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResources? Type706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesCodeInterpreter? Type707 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesCodeInterpreter? Type707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearch? Type708 { get; set; } + public global::tryAGI.OpenAI.CreateThreadAndRunRequestToolResourcesFileSearch? Type708 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type709 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResources2? Type709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStore? Type710 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesCodeInterpreter? Type710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategy? Type711 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearch? Type711 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategyType? Type712 { get; set; } + public global::System.Collections.Generic.IList? Type712 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategy? Type713 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStore? Type713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType? Type714 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategy? Type714 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyStatic? Type715 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategyType? Type715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionRequest? Type716 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategy? Type716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type717 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType? Type717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionRequestModel? Type718 { get; set; } + public global::tryAGI.OpenAI.CreateThreadRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyStatic? Type718 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type719 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionRequest? Type719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionInclude? Type720 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type720 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type721 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionRequestModel? Type721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionRequestTimestampGranularitie? Type722 { get; set; } + public global::System.Collections.Generic.IList? Type722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type723 { get; set; } + public global::tryAGI.OpenAI.TranscriptionInclude? Type723 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionRequestChunkingStrategyVariant1? Type724 { get; set; } + public global::System.Collections.Generic.IList? Type724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VadConfig? Type725 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionRequestTimestampGranularitie? Type725 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJson? Type726 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonTask? Type727 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionRequestChunkingStrategyVariant1? Type727 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type728 { get; set; } + public global::tryAGI.OpenAI.VadConfig? Type728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionDiarizedSegment? Type729 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJson? Type729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsage? Type730 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonTask? Type730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokens? Type731 { get; set; } + public global::System.Collections.Generic.IList? Type731 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageDuration? Type732 { get; set; } + public global::tryAGI.OpenAI.TranscriptionDiarizedSegment? Type732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsageDiscriminator? Type733 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsage? Type733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsageDiscriminatorType? Type734 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokens? Type734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseJson? Type735 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageDuration? Type735 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type736 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsageDiscriminator? Type736 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonLogprob? Type737 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsageDiscriminatorType? Type737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type738 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseJson? Type738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEvent? Type739 { get; set; } + public global::System.Collections.Generic.IList? Type739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextSegmentEvent? Type740 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonLogprob? Type740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEvent? Type741 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEvent? Type742 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEvent? Type742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminator? Type743 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextSegmentEvent? Type743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminatorType? Type744 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEvent? Type744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseVerboseJson? Type745 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEvent? Type745 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type746 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminator? Type746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionWord? Type747 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminatorType? Type747 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type748 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseVerboseJson? Type748 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionSegment? Type749 { get; set; } + public global::System.Collections.Generic.IList? Type749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequest? Type750 { get; set; } + public global::tryAGI.OpenAI.TranscriptionWord? Type750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type751 { get; set; } + public global::System.Collections.Generic.IList? Type751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequestModel? Type752 { get; set; } + public global::tryAGI.OpenAI.TranscriptionSegment? Type752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequestResponseFormat? Type753 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequest? Type753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationResponseJson? Type754 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationResponseVerboseJson? Type755 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequestModel? Type755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateUploadRequest? Type756 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequestResponseFormat? Type756 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateUploadRequestPurpose? Type757 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationResponseJson? Type757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreFileBatchRequest? Type758 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationResponseVerboseJson? Type758 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type759 { get; set; } + public global::tryAGI.OpenAI.CreateUploadRequest? Type759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreFileRequest? Type760 { get; set; } + public global::tryAGI.OpenAI.CreateUploadRequestPurpose? Type760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreRequest? Type761 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreFileBatchRequest? Type761 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreExpirationAfter? Type762 { get; set; } + public global::System.Collections.Generic.IList? Type762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type763 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreFileRequest? Type763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVoiceConsentRequest? Type764 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreRequest? Type764 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVoiceRequest? Type765 { get; set; } + public global::tryAGI.OpenAI.VectorStoreExpirationAfter? Type765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallType? Type766 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCaller? Type767 { get; set; } + public global::tryAGI.OpenAI.CreateVoiceConsentRequest? Type767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallOutputType? Type768 { get; set; } + public global::tryAGI.OpenAI.CreateVoiceRequest? Type768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerParam? Type769 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallType? Type769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type770 { get; set; } + public global::tryAGI.OpenAI.ToolCallCaller? Type770 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type771 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallOutputType? Type771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutput? Type772 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerParam? Type772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallOutputResource? Type773 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type773 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallOutputResourceVariant2? Type774 { get; set; } + public global::System.Collections.Generic.IList? Type774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputStatusEnum? Type775 { get; set; } + public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutput? Type775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallResource? Type776 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallOutputResource? Type776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallResourceVariant2? Type777 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallOutputResourceVariant2? Type777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallStatus? Type778 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputStatusEnum? Type778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsType? Type779 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallResource? Type779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustom? Type780 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallResourceVariant2? Type780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type781 { get; set; } + public global::tryAGI.OpenAI.FunctionCallStatus? Type781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormat? Type782 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsType? Type782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormatType? Type783 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustom? Type783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormat? Type784 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatType? Type785 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormat? Type785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammar? Type786 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormatType? Type786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammarSyntax? Type787 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormat? Type787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteAssistantResponse? Type788 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatType? Type788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteAssistantResponseObject? Type789 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammar? Type789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteCertificateResponse? Type790 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammarSyntax? Type790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteCertificateResponseObject? Type791 { get; set; } + public global::tryAGI.OpenAI.DeleteAssistantResponse? Type791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFileResponse? Type792 { get; set; } + public global::tryAGI.OpenAI.DeleteAssistantResponseObject? Type792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFileResponseObject? Type793 { get; set; } + public global::tryAGI.OpenAI.DeleteCertificateResponse? Type793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponse? Type794 { get; set; } + public global::tryAGI.OpenAI.DeleteCertificateResponseObject? Type794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponseObject? Type795 { get; set; } + public global::tryAGI.OpenAI.DeleteFileResponse? Type795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteMessageResponse? Type796 { get; set; } + public global::tryAGI.OpenAI.DeleteFileResponseObject? Type796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteMessageResponseObject? Type797 { get; set; } + public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponse? Type797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteModelResponse? Type798 { get; set; } + public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponseObject? Type798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteThreadResponse? Type799 { get; set; } + public global::tryAGI.OpenAI.DeleteMessageResponse? Type799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteThreadResponseObject? Type800 { get; set; } + public global::tryAGI.OpenAI.DeleteMessageResponseObject? Type800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreFileResponse? Type801 { get; set; } + public global::tryAGI.OpenAI.DeleteModelResponse? Type801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreFileResponseObject? Type802 { get; set; } + public global::tryAGI.OpenAI.DeleteThreadResponse? Type802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreResponse? Type803 { get; set; } + public global::tryAGI.OpenAI.DeleteThreadResponseObject? Type803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreResponseObject? Type804 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreFileResponse? Type804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversation? Type805 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreFileResponseObject? Type805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversationResource? Type806 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreResponse? Type806 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedRoleAssignmentResource? Type807 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreResponseObject? Type807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoneEventEvent? Type808 { get; set; } + public global::tryAGI.OpenAI.DeletedConversation? Type808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoneEventData? Type809 { get; set; } + public global::tryAGI.OpenAI.DeletedConversationResource? Type809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EasyInputMessageRole? Type810 { get; set; } + public global::tryAGI.OpenAI.DeletedRoleAssignmentResource? Type810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type811 { get; set; } + public global::tryAGI.OpenAI.DoneEventEvent? Type811 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type812 { get; set; } + public global::tryAGI.OpenAI.DoneEventData? Type812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessagePhase? Type813 { get; set; } + public global::tryAGI.OpenAI.EasyInputMessageRole? Type813 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EasyInputMessageType? Type814 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParam? Type815 { get; set; } + public global::System.Collections.Generic.IList? Type815 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type816 { get; set; } + public global::tryAGI.OpenAI.MessagePhase? Type816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamModel? Type817 { get; set; } + public global::tryAGI.OpenAI.EasyInputMessageType? Type817 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type818 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParam? Type818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageRefParam? Type819 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamQuality2? Type820 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamModel? Type820 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamInputFidelity2? Type821 { get; set; } + public global::System.Collections.Generic.IList? Type821 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamSize2? Type822 { get; set; } + public global::tryAGI.OpenAI.ImageRefParam? Type822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamOutputFormat2? Type823 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamQuality2? Type823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamModeration2? Type824 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamInputFidelity2? Type824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamBackground2? Type825 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamSize2? Type825 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type826 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamOutputFormat2? Type826 { get; set; } /// /// /// - public float? Type827 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamModeration2? Type827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EmbeddingObject? Type828 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamBackground2? Type828 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Error? Type829 { get; set; } + public global::System.Collections.Generic.IList? Type829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ErrorEventEvent? Type830 { get; set; } + public float? Type830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ErrorResponse? Type831 { get; set; } + public global::tryAGI.OpenAI.EmbeddingObject? Type831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Eval? Type832 { get; set; } + public global::tryAGI.OpenAI.Error? Type832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalObject? Type833 { get; set; } + public global::tryAGI.OpenAI.ErrorEventEvent? Type833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type834 { get; set; } + public global::tryAGI.OpenAI.ErrorResponse? Type834 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalCustomDataSourceConfig? Type835 { get; set; } + public global::tryAGI.OpenAI.Eval? Type835 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalLogsDataSourceConfig? Type836 { get; set; } + public global::tryAGI.OpenAI.EvalObject? Type836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfig? Type837 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type837 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type838 { get; set; } + public global::tryAGI.OpenAI.EvalCustomDataSourceConfig? Type838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type839 { get; set; } + public global::tryAGI.OpenAI.EvalLogsDataSourceConfig? Type839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderLabelModel? Type840 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfig? Type840 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalApiError? Type841 { get; set; } + public global::System.Collections.Generic.IList>? Type841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalCustomDataSourceConfigType? Type842 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderLabelModel? Type843 { get; set; } + public global::tryAGI.OpenAI.EvalGraderLabelModel? Type843 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderPython? Type844 { get; set; } + public global::tryAGI.OpenAI.EvalApiError? Type844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type845 { get; set; } + public global::tryAGI.OpenAI.EvalCustomDataSourceConfigType? Type845 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModel? Type846 { get; set; } + public global::tryAGI.OpenAI.GraderLabelModel? Type846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type847 { get; set; } + public global::tryAGI.OpenAI.GraderPython? Type847 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheck? Type848 { get; set; } + public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarity? Type849 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModel? Type849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type850 { get; set; } + public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemRole? Type851 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheck? Type851 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContent? Type852 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarity? Type852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemType? Type853 { get; set; } + public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type853 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentItem? Type854 { get; set; } + public global::tryAGI.OpenAI.EvalItemRole? Type854 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type855 { get; set; } + public global::tryAGI.OpenAI.EvalItemContent? Type855 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContent? Type856 { get; set; } + public global::tryAGI.OpenAI.EvalItemType? Type856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentOutputText? Type857 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentItem? Type857 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemInputImage? Type858 { get; set; } + public global::System.Collections.Generic.IList? Type858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudio? Type859 { get; set; } + public global::tryAGI.OpenAI.InputTextContent? Type859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentOutputTextType? Type860 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentOutputText? Type860 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemInputImageType? Type861 { get; set; } + public global::tryAGI.OpenAI.EvalItemInputImage? Type861 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type862 { get; set; } + public global::tryAGI.OpenAI.InputAudio? Type862 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type863 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentOutputTextType? Type863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type864 { get; set; } + public global::tryAGI.OpenAI.EvalItemInputImageType? Type864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type865 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type865 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalList? Type866 { get; set; } + public global::System.Collections.Generic.IList? Type866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalListObject? Type867 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type867 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type868 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type868 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalLogsDataSourceConfigType? Type869 { get; set; } + public global::tryAGI.OpenAI.EvalList? Type869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalResponsesSourceType? Type870 { get; set; } + public global::tryAGI.OpenAI.EvalListObject? Type870 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRun? Type871 { get; set; } + public global::System.Collections.Generic.IList? Type871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunObject? Type872 { get; set; } + public global::tryAGI.OpenAI.EvalLogsDataSourceConfigType? Type872 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunResultCounts? Type873 { get; set; } + public global::tryAGI.OpenAI.EvalResponsesSourceType? Type873 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type874 { get; set; } + public global::tryAGI.OpenAI.EvalRun? Type874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunPerModelUsageItem? Type875 { get; set; } + public global::tryAGI.OpenAI.EvalRunObject? Type875 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type876 { get; set; } + public global::tryAGI.OpenAI.EvalRunResultCounts? Type876 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunPerTestingCriteriaResult? Type877 { get; set; } + public global::System.Collections.Generic.IList? Type877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunList? Type878 { get; set; } + public global::tryAGI.OpenAI.EvalRunPerModelUsageItem? Type878 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunListObject? Type879 { get; set; } + public global::System.Collections.Generic.IList? Type879 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type880 { get; set; } + public global::tryAGI.OpenAI.EvalRunPerTestingCriteriaResult? Type880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItem? Type881 { get; set; } + public global::tryAGI.OpenAI.EvalRunList? Type881 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemObject? Type882 { get; set; } + public global::tryAGI.OpenAI.EvalRunListObject? Type882 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type883 { get; set; } + public global::System.Collections.Generic.IList? Type883 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemResult? Type884 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItem? Type884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSample? Type885 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemObject? Type885 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type886 { get; set; } + public global::System.Collections.Generic.IList? Type886 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleInputItem? Type887 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemResult? Type887 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type888 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSample? Type888 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleOutputItem? Type889 { get; set; } + public global::System.Collections.Generic.IList? Type889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleUsage? Type890 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleInputItem? Type890 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemList? Type891 { get; set; } + public global::System.Collections.Generic.IList? Type891 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemListObject? Type892 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleOutputItem? Type892 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type893 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleUsage? Type893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfigType? Type894 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemList? Type894 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type895 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemListObject? Type895 { get; set; } /// /// /// - public global::System.DateTimeOffset? Type896 { get; set; } + public global::System.Collections.Generic.IList? Type896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type897 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfigType? Type897 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FilePath? Type898 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type898 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FilePathType? Type899 { get; set; } + public global::System.DateTimeOffset? Type899 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchRanker? Type900 { get; set; } + public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallType? Type901 { get; set; } + public global::tryAGI.OpenAI.FilePath? Type901 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type902 { get; set; } + public global::tryAGI.OpenAI.FilePathType? Type902 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type903 { get; set; } + public global::tryAGI.OpenAI.FileSearchRanker? Type903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallResultsVariant1Item? Type904 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallType? Type904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessage? Type905 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type905 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessageAssistantMessage? Type906 { get; set; } + public global::System.Collections.Generic.IList? Type906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type907 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallResultsVariant1Item? Type907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type908 { get; set; } + public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessage? Type908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type909 { get; set; } + public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessageAssistantMessage? Type909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type910 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type911 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type912 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type913 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type914 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type915 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOMethod? Type916 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneMethodType? Type917 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type917 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type918 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type919 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOMethod? Type919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type920 { get; set; } + public global::tryAGI.OpenAI.FineTuneMethodType? Type920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type921 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type921 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type922 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type923 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type923 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type924 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type925 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type925 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type926 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type927 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type927 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type928 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type929 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type930 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type931 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type932 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type933 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type934 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderMulti? Type935 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type936 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type937 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type938 { get; set; } + public global::tryAGI.OpenAI.GraderMulti? Type938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type939 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type940 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type941 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type942 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningCheckpointPermission? Type943 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type943 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningCheckpointPermissionObject? Type944 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegration? Type945 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type945 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegrationType? Type946 { get; set; } + public global::tryAGI.OpenAI.FineTuningCheckpointPermission? Type946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegrationWandb? Type947 { get; set; } + public global::tryAGI.OpenAI.FineTuningCheckpointPermissionObject? Type947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJob? Type948 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegration? Type948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobError2? Type949 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegrationType? Type949 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparameters? Type950 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegrationWandb? Type950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type951 { get; set; } + public global::tryAGI.OpenAI.FineTuningJob? Type951 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersBatchSizeVariant1? Type952 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobError2? Type952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type953 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparameters? Type953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersLearningRateMultiplier? Type954 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type955 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersBatchSizeVariant1? Type955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersNEpochs? Type956 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobObject? Type957 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersLearningRateMultiplier? Type957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobStatus? Type958 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type958 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type959 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersNEpochs? Type959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpoint? Type960 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobObject? Type960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpointMetrics? Type961 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobStatus? Type961 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpointObject? Type962 { get; set; } + public global::System.Collections.Generic.IList? Type962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEvent? Type963 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpoint? Type963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventObject? Type964 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpointMetrics? Type964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventLevel? Type965 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpointObject? Type965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventType? Type966 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEvent? Type966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContent? Type967 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventObject? Type967 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContent? Type968 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventLevel? Type968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminator? Type969 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventType? Type969 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminatorType? Type970 { get; set; } + public global::tryAGI.OpenAI.InputImageContent? Type970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCall? Type971 { get; set; } + public global::tryAGI.OpenAI.InputFileContent? Type971 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallType? Type972 { get; set; } + public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminator? Type972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallStatus? Type973 { get; set; } + public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminatorType? Type973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutput? Type974 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCall? Type974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type975 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallType? Type975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type976 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallStatus? Type976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type977 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutput? Type977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type978 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderLabelModelType? Type979 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type979 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type980 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderMultiType? Type981 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type981 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type982 { get; set; } + public global::tryAGI.OpenAI.GraderLabelModelType? Type982 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderPythonType? Type983 { get; set; } + public global::System.Collections.Generic.IList? Type983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModelType? Type984 { get; set; } + public global::tryAGI.OpenAI.GraderMultiType? Type984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type985 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheckType? Type986 { get; set; } + public global::tryAGI.OpenAI.GraderPythonType? Type986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheckOperation? Type987 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModelType? Type987 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarityType? Type988 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type989 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheckType? Type989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Group? Type990 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheckOperation? Type990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupObject? Type991 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarityType? Type991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupDeletedResource? Type992 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type992 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupDeletedResourceObject? Type993 { get; set; } + public global::tryAGI.OpenAI.Group? Type993 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupListResource? Type994 { get; set; } + public global::tryAGI.OpenAI.GroupObject? Type994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupListResourceObject? Type995 { get; set; } + public global::tryAGI.OpenAI.GroupDeletedResource? Type995 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type996 { get; set; } + public global::tryAGI.OpenAI.GroupDeletedResourceObject? Type996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupResponse? Type997 { get; set; } + public global::tryAGI.OpenAI.GroupListResource? Type997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupMemberUser? Type998 { get; set; } + public global::tryAGI.OpenAI.GroupListResourceObject? Type998 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupMemberUserUserType? Type999 { get; set; } + public global::System.Collections.Generic.IList? Type999 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupResourceWithSuccess? Type1000 { get; set; } + public global::tryAGI.OpenAI.GroupResponse? Type1000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupResponseGroupType? Type1001 { get; set; } + public global::tryAGI.OpenAI.GroupMemberUser? Type1001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupRoleAssignment? Type1002 { get; set; } + public global::tryAGI.OpenAI.GroupMemberUserUserType? Type1002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupRoleAssignmentObject? Type1003 { get; set; } + public global::tryAGI.OpenAI.GroupResourceWithSuccess? Type1003 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Role? Type1004 { get; set; } + public global::tryAGI.OpenAI.GroupResponseGroupType? Type1004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUser? Type1005 { get; set; } + public global::tryAGI.OpenAI.GroupRoleAssignment? Type1005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserAssignment? Type1006 { get; set; } + public global::tryAGI.OpenAI.GroupRoleAssignmentObject? Type1006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserAssignmentObject? Type1007 { get; set; } + public global::tryAGI.OpenAI.Role? Type1007 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserDeletedResource? Type1008 { get; set; } + public global::tryAGI.OpenAI.GroupUser? Type1008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserDeletedResourceObject? Type1009 { get; set; } + public global::tryAGI.OpenAI.GroupUserAssignment? Type1009 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HostedToolPermission? Type1010 { get; set; } + public global::tryAGI.OpenAI.GroupUserAssignmentObject? Type1010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HostedToolPermissionUpdate? Type1011 { get; set; } + public global::tryAGI.OpenAI.GroupUserDeletedResource? Type1011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Image2? Type1012 { get; set; } + public global::tryAGI.OpenAI.GroupUserDeletedResourceObject? Type1012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEvent? Type1013 { get; set; } + public global::tryAGI.OpenAI.HostedToolPermission? Type1013 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventType? Type1014 { get; set; } + public global::tryAGI.OpenAI.HostedToolPermissionUpdate? Type1014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventSize? Type1015 { get; set; } + public global::tryAGI.OpenAI.Image2? Type1015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventQuality? Type1016 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEvent? Type1016 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventBackground? Type1017 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventType? Type1017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventOutputFormat? Type1018 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventSize? Type1018 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesUsage? Type1019 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventQuality? Type1019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEvent? Type1020 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventBackground? Type1020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventType? Type1021 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventOutputFormat? Type1021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventSize? Type1022 { get; set; } + public global::tryAGI.OpenAI.ImagesUsage? Type1022 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventQuality? Type1023 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEvent? Type1023 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventBackground? Type1024 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventType? Type1024 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventOutputFormat? Type1025 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventSize? Type1025 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEvent? Type1026 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventQuality? Type1026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminator? Type1027 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventBackground? Type1027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminatorType? Type1028 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventOutputFormat? Type1028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEvent? Type1029 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEvent? Type1029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventType? Type1030 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminator? Type1030 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventSize? Type1031 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminatorType? Type1031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventQuality? Type1032 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEvent? Type1032 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventBackground? Type1033 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventType? Type1033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventOutputFormat? Type1034 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventSize? Type1034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEvent? Type1035 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventQuality? Type1035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventType? Type1036 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventBackground? Type1036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventSize? Type1037 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventOutputFormat? Type1037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventQuality? Type1038 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEvent? Type1038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventBackground? Type1039 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventType? Type1039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventOutputFormat? Type1040 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventSize? Type1040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEvent? Type1041 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventQuality? Type1041 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminator? Type1042 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventBackground? Type1042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminatorType? Type1043 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventOutputFormat? Type1043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenTool? Type1044 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEvent? Type1044 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolType? Type1045 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminator? Type1045 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1046 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminatorType? Type1046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolModel? Type1047 { get; set; } + public global::tryAGI.OpenAI.ImageGenTool? Type1047 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolQuality? Type1048 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolType? Type1048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1049 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1049 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolSize? Type1050 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolModel? Type1050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type1051 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolQuality? Type1051 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolModeration? Type1052 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolBackground? Type1053 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolSize? Type1053 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type1054 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type1054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenActionEnum? Type1055 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolModeration? Type1055 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolCallType? Type1056 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolBackground? Type1056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type1057 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type1057 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponse? Type1058 { get; set; } + public global::tryAGI.OpenAI.ImageGenActionEnum? Type1058 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1059 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolCallType? Type1059 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseBackground? Type1060 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type1060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseOutputFormat? Type1061 { get; set; } + public global::tryAGI.OpenAI.ImagesResponse? Type1061 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseSize? Type1062 { get; set; } + public global::System.Collections.Generic.IList? Type1062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseQuality? Type1063 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseBackground? Type1063 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenUsage? Type1064 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseOutputFormat? Type1064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesUsageInputTokensDetails? Type1065 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseSize? Type1065 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudioType? Type1066 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseQuality? Type1066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudioInputAudio1? Type1067 { get; set; } + public global::tryAGI.OpenAI.ImageGenUsage? Type1067 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudioInputAudio1Format? Type1068 { get; set; } + public global::tryAGI.OpenAI.ImagesUsageInputTokensDetails? Type1068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputContentDiscriminator? Type1069 { get; set; } + public global::tryAGI.OpenAI.InputAudioType? Type1069 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputContentDiscriminatorType? Type1070 { get; set; } + public global::tryAGI.OpenAI.InputAudioInputAudio1? Type1070 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputItem? Type1071 { get; set; } + public global::tryAGI.OpenAI.InputAudioInputAudio1Format? Type1071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Item? Type1072 { get; set; } + public global::tryAGI.OpenAI.InputContentDiscriminator? Type1072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionTriggerItemParam? Type1073 { get; set; } + public global::tryAGI.OpenAI.InputContentDiscriminatorType? Type1073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemReferenceParam? Type1074 { get; set; } + public global::tryAGI.OpenAI.InputItem? Type1074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramItemParam? Type1075 { get; set; } + public global::tryAGI.OpenAI.Item? Type1075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputItemParam? Type1076 { get; set; } + public global::tryAGI.OpenAI.CompactionTriggerItemParam? Type1076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputItemDiscriminator? Type1077 { get; set; } + public global::tryAGI.OpenAI.ItemReferenceParam? Type1077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputItemDiscriminatorType? Type1078 { get; set; } + public global::tryAGI.OpenAI.ProgramItemParam? Type1078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessage? Type1079 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputItemParam? Type1079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageType? Type1080 { get; set; } + public global::tryAGI.OpenAI.InputItemDiscriminator? Type1080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageRole? Type1081 { get; set; } + public global::tryAGI.OpenAI.InputItemDiscriminatorType? Type1081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageStatus? Type1082 { get; set; } + public global::tryAGI.OpenAI.InputMessage? Type1082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageResource? Type1083 { get; set; } + public global::tryAGI.OpenAI.InputMessageType? Type1083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageResourceVariant2? Type1084 { get; set; } + public global::tryAGI.OpenAI.InputMessageRole? Type1084 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1085 { get; set; } + public global::tryAGI.OpenAI.InputMessageStatus? Type1085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Invite? Type1086 { get; set; } + public global::tryAGI.OpenAI.InputMessageResource? Type1086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteObject? Type1087 { get; set; } + public global::tryAGI.OpenAI.InputMessageResourceVariant2? Type1087 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRole? Type1088 { get; set; } + public global::System.Collections.Generic.IList? Type1088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteStatus? Type1089 { get; set; } + public global::tryAGI.OpenAI.Invite? Type1089 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1090 { get; set; } + public global::tryAGI.OpenAI.InviteObject? Type1090 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProject? Type1091 { get; set; } + public global::tryAGI.OpenAI.InviteRole? Type1091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProjectRole? Type1092 { get; set; } + public global::tryAGI.OpenAI.InviteStatus? Type1092 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteDeleteResponse? Type1093 { get; set; } + public global::System.Collections.Generic.IList? Type1093 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteDeleteResponseObject? Type1094 { get; set; } + public global::tryAGI.OpenAI.InviteProject? Type1094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteListResponse? Type1095 { get; set; } + public global::tryAGI.OpenAI.InviteProjectRole? Type1095 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteListResponseObject? Type1096 { get; set; } + public global::tryAGI.OpenAI.InviteDeleteResponse? Type1096 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1097 { get; set; } + public global::tryAGI.OpenAI.InviteDeleteResponseObject? Type1097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProjectGroupBody? Type1098 { get; set; } + public global::tryAGI.OpenAI.InviteListResponse? Type1098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequest? Type1099 { get; set; } + public global::tryAGI.OpenAI.InviteListResponseObject? Type1099 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestRole? Type1100 { get; set; } + public global::System.Collections.Generic.IList? Type1100 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1101 { get; set; } + public global::tryAGI.OpenAI.InviteProjectGroupBody? Type1101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestProject? Type1102 { get; set; } + public global::tryAGI.OpenAI.InviteRequest? Type1102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestProjectRole? Type1103 { get; set; } + public global::tryAGI.OpenAI.InviteRequestRole? Type1103 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessage? Type1104 { get; set; } + public global::System.Collections.Generic.IList? Type1104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerCallOutputItemParam? Type1105 { get; set; } + public global::tryAGI.OpenAI.InviteRequestProject? Type1105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type1106 { get; set; } + public global::tryAGI.OpenAI.InviteRequestProjectRole? Type1106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchCallItemParam? Type1107 { get; set; } + public global::tryAGI.OpenAI.OutputMessage? Type1107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchOutputItemParam? Type1108 { get; set; } + public global::tryAGI.OpenAI.ComputerCallOutputItemParam? Type1108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsItemParam? Type1109 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type1109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionSummaryItemParam? Type1110 { get; set; } + public global::tryAGI.OpenAI.ToolSearchCallItemParam? Type1110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParam? Type1111 { get; set; } + public global::tryAGI.OpenAI.ToolSearchOutputItemParam? Type1111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputItemParam? Type1112 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsItemParam? Type1112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallItemParam? Type1113 { get; set; } + public global::tryAGI.OpenAI.CompactionSummaryItemParam? Type1113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParam? Type1114 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParam? Type1114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponse? Type1115 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputItemParam? Type1115 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemDiscriminator? Type1116 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallItemParam? Type1116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemDiscriminatorType? Type1117 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParam? Type1117 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResource? Type1118 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponse? Type1118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResourceDiscriminator? Type1119 { get; set; } + public global::tryAGI.OpenAI.ItemDiscriminator? Type1119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResourceDiscriminatorType? Type1120 { get; set; } + public global::tryAGI.OpenAI.ItemDiscriminatorType? Type1120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAssistantsResponse? Type1121 { get; set; } + public global::tryAGI.OpenAI.ItemResource? Type1121 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1122 { get; set; } + public global::tryAGI.OpenAI.ItemResourceDiscriminator? Type1122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsResponse? Type1123 { get; set; } + public global::tryAGI.OpenAI.ItemResourceDiscriminatorType? Type1123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsResponseObject? Type1124 { get; set; } + public global::tryAGI.OpenAI.ListAssistantsResponse? Type1124 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1125 { get; set; } + public global::System.Collections.Generic.IList? Type1125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListBatchesResponse? Type1126 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsResponse? Type1126 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1127 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsResponseObject? Type1127 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListBatchesResponseObject? Type1128 { get; set; } + public global::System.Collections.Generic.IList? Type1128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListCertificatesResponse? Type1129 { get; set; } + public global::tryAGI.OpenAI.ListBatchesResponse? Type1129 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1130 { get; set; } + public global::System.Collections.Generic.IList? Type1130 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificate? Type1131 { get; set; } + public global::tryAGI.OpenAI.ListBatchesResponseObject? Type1131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListCertificatesResponseObject? Type1132 { get; set; } + public global::tryAGI.OpenAI.ListCertificatesResponse? Type1132 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesResponse? Type1133 { get; set; } + public global::System.Collections.Generic.IList? Type1133 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1134 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificate? Type1134 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFile? Type1135 { get; set; } + public global::tryAGI.OpenAI.ListCertificatesResponseObject? Type1135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponse? Type1136 { get; set; } + public global::tryAGI.OpenAI.ListFilesResponse? Type1136 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1137 { get; set; } + public global::System.Collections.Generic.IList? Type1137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponseObject? Type1138 { get; set; } + public global::tryAGI.OpenAI.OpenAIFile? Type1138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponse? Type1139 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponse? Type1139 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1140 { get; set; } + public global::System.Collections.Generic.IList? Type1140 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject? Type1141 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponseObject? Type1141 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobEventsResponse? Type1142 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponse? Type1142 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1143 { get; set; } + public global::System.Collections.Generic.IList? Type1143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject? Type1144 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject? Type1144 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListMessagesResponse? Type1145 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobEventsResponse? Type1145 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1146 { get; set; } + public global::System.Collections.Generic.IList? Type1146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObject? Type1147 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject? Type1147 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListModelsResponse? Type1148 { get; set; } + public global::tryAGI.OpenAI.ListMessagesResponse? Type1148 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListModelsResponseObject? Type1149 { get; set; } + public global::System.Collections.Generic.IList? Type1149 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1150 { get; set; } + public global::tryAGI.OpenAI.MessageObject? Type1150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Model18? Type1151 { get; set; } + public global::tryAGI.OpenAI.ListModelsResponse? Type1151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponse? Type1152 { get; set; } + public global::tryAGI.OpenAI.ListModelsResponseObject? Type1152 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1153 { get; set; } + public global::System.Collections.Generic.IList? Type1153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject? Type1154 { get; set; } + public global::tryAGI.OpenAI.Model18? Type1154 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectCertificatesResponse? Type1155 { get; set; } + public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponse? Type1155 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1156 { get; set; } + public global::System.Collections.Generic.IList? Type1156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificate? Type1157 { get; set; } + public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject? Type1157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectCertificatesResponseObject? Type1158 { get; set; } + public global::tryAGI.OpenAI.ListProjectCertificatesResponse? Type1158 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsResponse? Type1159 { get; set; } + public global::System.Collections.Generic.IList? Type1159 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1160 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificate? Type1160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObject? Type1161 { get; set; } + public global::tryAGI.OpenAI.ListProjectCertificatesResponseObject? Type1161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunsResponse? Type1162 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsResponse? Type1162 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1163 { get; set; } + public global::System.Collections.Generic.IList? Type1163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObject? Type1164 { get; set; } + public global::tryAGI.OpenAI.RunStepObject? Type1164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesResponse? Type1165 { get; set; } + public global::tryAGI.OpenAI.ListRunsResponse? Type1165 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1166 { get; set; } + public global::System.Collections.Generic.IList? Type1166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObject? Type1167 { get; set; } + public global::tryAGI.OpenAI.RunObject? Type1167 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoresResponse? Type1168 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesResponse? Type1168 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1169 { get; set; } + public global::System.Collections.Generic.IList? Type1169 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObject? Type1170 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObject? Type1170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallType? Type1171 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoresResponse? Type1171 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellExecAction? Type1172 { get; set; } + public global::System.Collections.Generic.IList? Type1172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallStatus? Type1173 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObject? Type1173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallOutputType? Type1174 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallType? Type1174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallOutputStatus2? Type1175 { get; set; } + public global::tryAGI.OpenAI.LocalShellExecAction? Type1175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LogProbProperties? Type1176 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallStatus? Type1176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalRequestType? Type1177 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallOutputType? Type1177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponseType? Type1178 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallOutputStatus2? Type1178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponseResourceType? Type1179 { get; set; } + public global::tryAGI.OpenAI.LogProbProperties? Type1179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPListToolsType? Type1180 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalRequestType? Type1180 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1181 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponseType? Type1181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPListToolsTool? Type1182 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponseResourceType? Type1182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPTool? Type1183 { get; set; } + public global::tryAGI.OpenAI.MCPListToolsType? Type1183 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolType? Type1184 { get; set; } + public global::System.Collections.Generic.IList? Type1184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolConnectorId? Type1185 { get; set; } + public global::tryAGI.OpenAI.MCPListToolsTool? Type1185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? Type1186 { get; set; } + public global::tryAGI.OpenAI.MCPTool? Type1186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolFilter? Type1187 { get; set; } + public global::tryAGI.OpenAI.MCPToolType? Type1187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1188 { get; set; } + public global::tryAGI.OpenAI.MCPToolConnectorId? Type1188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum? Type1189 { get; set; } + public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? Type1189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum2? Type1190 { get; set; } + public global::tryAGI.OpenAI.MCPToolFilter? Type1190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolCallType? Type1191 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolCallStatus? Type1192 { get; set; } + public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum? Type1192 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageFileObjectType? Type1193 { get; set; } + public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum2? Type1193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFile? Type1194 { get; set; } + public global::tryAGI.OpenAI.MCPToolCallType? Type1194 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFileDetail? Type1195 { get; set; } + public global::tryAGI.OpenAI.MCPToolCallStatus? Type1195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageUrlObjectType? Type1196 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageFileObjectType? Type1196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrl? Type1197 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFile? Type1197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrlDetail? Type1198 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFileDetail? Type1198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentRefusalObject? Type1199 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageUrlObjectType? Type1199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentRefusalObjectType? Type1200 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrl? Type1200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObject? Type1201 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrlDetail? Type1201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectType? Type1202 { get; set; } + public global::tryAGI.OpenAI.MessageContentRefusalObject? Type1202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectFileCitation? Type1203 { get; set; } + public global::tryAGI.OpenAI.MessageContentRefusalObjectType? Type1203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObject? Type1204 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObject? Type1204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectType? Type1205 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectType? Type1205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectFilePath? Type1206 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectFileCitation? Type1206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextObject? Type1207 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObject? Type1207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextObjectType? Type1208 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectType? Type1208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextObjectText? Type1209 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectFilePath? Type1209 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1210 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextObject? Type1210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1211 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextObjectType? Type1211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObject? Type1212 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextObjectText? Type1212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectType? Type1213 { get; set; } + public global::System.Collections.Generic.IList>? Type1213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFile? Type1214 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFileDetail? Type1215 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObject? Type1215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObject? Type1216 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectType? Type1216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectType? Type1217 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFile? Type1217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrl? Type1218 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFileDetail? Type1218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrlDetail? Type1219 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObject? Type1219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentRefusalObject? Type1220 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectType? Type1220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentRefusalObjectType? Type1221 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrl? Type1221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObject? Type1222 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrlDetail? Type1222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectType? Type1223 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentRefusalObject? Type1223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation? Type1224 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentRefusalObjectType? Type1224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObject? Type1225 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObject? Type1225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectType? Type1226 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectType? Type1226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectFilePath? Type1227 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation? Type1227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextObject? Type1228 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObject? Type1228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextObjectType? Type1229 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectType? Type1229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextObjectText? Type1230 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectFilePath? Type1230 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1231 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextObject? Type1231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1232 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextObjectType? Type1232 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObject? Type1233 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextObjectText? Type1233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObjectObject? Type1234 { get; set; } + public global::System.Collections.Generic.IList>? Type1234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObjectDelta? Type1235 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObjectDeltaRole? Type1236 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObject? Type1236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectObject? Type1237 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObjectObject? Type1237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectStatus? Type1238 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObjectDelta? Type1238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectIncompleteDetails2? Type1239 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObjectDeltaRole? Type1239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectIncompleteDetailsReason? Type1240 { get; set; } + public global::tryAGI.OpenAI.MessageObjectObject? Type1240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectRole? Type1241 { get; set; } + public global::tryAGI.OpenAI.MessageObjectStatus? Type1241 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1242 { get; set; } + public global::tryAGI.OpenAI.MessageObjectIncompleteDetails2? Type1242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectAttachmentsVariant1Item? Type1243 { get; set; } + public global::tryAGI.OpenAI.MessageObjectIncompleteDetailsReason? Type1243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1244 { get; set; } + public global::tryAGI.OpenAI.MessageObjectRole? Type1244 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant1? Type1245 { get; set; } + public global::System.Collections.Generic.IList? Type1245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant1Event? Type1246 { get; set; } + public global::tryAGI.OpenAI.MessageObjectAttachmentsVariant1Item? Type1246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant2? Type1247 { get; set; } + public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant2Event? Type1248 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant1? Type1248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant3? Type1249 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant1Event? Type1249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant3Event? Type1250 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant2? Type1250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant4? Type1251 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant2Event? Type1251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant4Event? Type1252 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant3? Type1252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant5? Type1253 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant3Event? Type1253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant5Event? Type1254 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant4? Type1254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelObject? Type1255 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant4Event? Type1255 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIds? Type1256 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant5? Type1256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsResponses? Type1257 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant5Event? Type1257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsCompaction? Type1258 { get; set; } + public global::tryAGI.OpenAI.ModelObject? Type1258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1259 { get; set; } + public global::tryAGI.OpenAI.ModelIds? Type1259 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsSharedEnum? Type1260 { get; set; } + public global::tryAGI.OpenAI.ModelIdsResponses? Type1260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelResponsePropertiesPromptCacheRetention2? Type1261 { get; set; } + public global::tryAGI.OpenAI.ModelIdsCompaction? Type1261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequest? Type1262 { get; set; } + public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResources2? Type1263 { get; set; } + public global::tryAGI.OpenAI.ModelIdsSharedEnum? Type1263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type1264 { get; set; } + public global::tryAGI.OpenAI.ModelResponsePropertiesPromptCacheRetention2? Type1264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type1265 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequest? Type1265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyCertificateRequest? Type1266 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResources2? Type1266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyMessageRequest? Type1267 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type1267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyRunRequest? Type1268 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type1268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequest? Type1269 { get; set; } + public global::tryAGI.OpenAI.ModifyCertificateRequest? Type1269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResources2? Type1270 { get; set; } + public global::tryAGI.OpenAI.ModifyMessageRequest? Type1270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type1271 { get; set; } + public global::tryAGI.OpenAI.ModifyRunRequest? Type1271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type1272 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequest? Type1272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NoiseReductionType? Type1273 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResources2? Type1273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFileObject? Type1274 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type1274 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFilePurpose? Type1275 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type1275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFileStatus? Type1276 { get; set; } + public global::tryAGI.OpenAI.NoiseReductionType? Type1276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateObject? Type1277 { get; set; } + public global::tryAGI.OpenAI.OpenAIFileObject? Type1277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateCertificateDetails? Type1278 { get; set; } + public global::tryAGI.OpenAI.OpenAIFilePurpose? Type1278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateActivationResponse? Type1279 { get; set; } + public global::tryAGI.OpenAI.OpenAIFileStatus? Type1279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateActivationResponseObject? Type1280 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateObject? Type1280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponse? Type1281 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateCertificateDetails? Type1281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponseObject? Type1282 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateActivationResponse? Type1282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationDataRetention? Type1283 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateActivationResponseObject? Type1283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationDataRetentionObject? Type1284 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponse? Type1284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationDataRetentionType? Type1285 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponseObject? Type1285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateObject? Type1286 { get; set; } + public global::tryAGI.OpenAI.OrganizationDataRetention? Type1286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateCertificateDetails? Type1287 { get; set; } + public global::tryAGI.OpenAI.OrganizationDataRetentionObject? Type1287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponse? Type1288 { get; set; } + public global::tryAGI.OpenAI.OrganizationDataRetentionType? Type1288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponseObject? Type1289 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateObject? Type1289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponse? Type1290 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateCertificateDetails? Type1290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponseObject? Type1291 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponse? Type1291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlert? Type1292 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponseObject? Type1292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertObject? Type1293 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponse? Type1293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertCurrency? Type1294 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponseObject? Type1294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertInterval? Type1295 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlert? Type1295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResource? Type1296 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertObject? Type1296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResourceObject? Type1297 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertCurrency? Type1297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertListResource? Type1298 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertInterval? Type1298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertListResourceObject? Type1299 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResource? Type1299 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1300 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResourceObject? Type1300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParam? Type1301 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertListResource? Type1301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParamType? Type1302 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertListResourceObject? Type1302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputAudio? Type1303 { get; set; } + public global::System.Collections.Generic.IList? Type1303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputAudioType? Type1304 { get; set; } + public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParam? Type1304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputTextContent? Type1305 { get; set; } + public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParamType? Type1305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RefusalContent? Type1306 { get; set; } + public global::tryAGI.OpenAI.OutputAudio? Type1306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningTextContent? Type1307 { get; set; } + public global::tryAGI.OpenAI.OutputAudioType? Type1307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputContentDiscriminator? Type1308 { get; set; } + public global::tryAGI.OpenAI.OutputTextContent? Type1308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputContentDiscriminatorType? Type1309 { get; set; } + public global::tryAGI.OpenAI.RefusalContent? Type1309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItem? Type1310 { get; set; } + public global::tryAGI.OpenAI.ReasoningTextContent? Type1310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItemDiscriminator? Type1311 { get; set; } + public global::tryAGI.OpenAI.OutputContentDiscriminator? Type1311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItemDiscriminatorType? Type1312 { get; set; } + public global::tryAGI.OpenAI.OutputContentDiscriminatorType? Type1312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageType? Type1313 { get; set; } + public global::tryAGI.OpenAI.OutputItem? Type1313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageRole? Type1314 { get; set; } + public global::tryAGI.OpenAI.OutputItemDiscriminator? Type1314 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1315 { get; set; } + public global::tryAGI.OpenAI.OutputItemDiscriminatorType? Type1315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageContent? Type1316 { get; set; } + public global::tryAGI.OpenAI.OutputMessageType? Type1316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageStatus? Type1317 { get; set; } + public global::tryAGI.OpenAI.OutputMessageRole? Type1317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageContentDiscriminator? Type1318 { get; set; } + public global::System.Collections.Generic.IList? Type1318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageContentDiscriminatorType? Type1319 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContent? Type1319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PredictionContentType? Type1320 { get; set; } + public global::tryAGI.OpenAI.OutputMessageStatus? Type1320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Project? Type1321 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContentDiscriminator? Type1321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectObject? Type1322 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContentDiscriminatorType? Type1322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKey? Type1323 { get; set; } + public global::tryAGI.OpenAI.PredictionContentType? Type1323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1324 { get; set; } + public global::tryAGI.OpenAI.Project? Type1324 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerProjectAccess? Type1325 { get; set; } + public global::tryAGI.OpenAI.ProjectObject? Type1325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1326 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKey? Type1326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1327 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerUser? Type1328 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerProjectAccess? Type1328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerServiceAccount? Type1329 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1330 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1331 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerUser? Type1331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1332 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerServiceAccount? Type1332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1333 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1333 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1334 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectCreateRequest? Type1335 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectDataRetention? Type1336 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectDataRetentionObject? Type1337 { get; set; } + public global::System.Collections.Generic.IList? Type1337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectDataRetentionType? Type1338 { get; set; } + public global::tryAGI.OpenAI.ProjectCreateRequest? Type1338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroup? Type1339 { get; set; } + public global::tryAGI.OpenAI.ProjectDataRetention? Type1339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupObject? Type1340 { get; set; } + public global::tryAGI.OpenAI.ProjectDataRetentionObject? Type1340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupGroupType? Type1341 { get; set; } + public global::tryAGI.OpenAI.ProjectDataRetentionType? Type1341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupDeletedResource? Type1342 { get; set; } + public global::tryAGI.OpenAI.ProjectGroup? Type1342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupDeletedResourceObject? Type1343 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupObject? Type1343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupListResource? Type1344 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupGroupType? Type1344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupListResourceObject? Type1345 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupDeletedResource? Type1345 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1346 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupDeletedResourceObject? Type1346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectHostedToolPermissions? Type1347 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupListResource? Type1347 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectHostedToolPermissionsUpdateRequest? Type1348 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupListResourceObject? Type1348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectListResponse? Type1349 { get; set; } + public global::System.Collections.Generic.IList? Type1349 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectListResponseObject? Type1350 { get; set; } + public global::tryAGI.OpenAI.ProjectHostedToolPermissions? Type1350 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1351 { get; set; } + public global::tryAGI.OpenAI.ProjectHostedToolPermissionsUpdateRequest? Type1351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissions? Type1352 { get; set; } + public global::tryAGI.OpenAI.ProjectListResponse? Type1352 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsObject? Type1353 { get; set; } + public global::tryAGI.OpenAI.ProjectListResponseObject? Type1353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsMode? Type1354 { get; set; } + public global::System.Collections.Generic.IList? Type1354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponse? Type1355 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissions? Type1355 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponseObject? Type1356 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsObject? Type1356 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequest? Type1357 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsMode? Type1357 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequestMode? Type1358 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponse? Type1358 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimit? Type1359 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponseObject? Type1359 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1360 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequest? Type1360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1361 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequestMode? Type1361 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1362 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimit? Type1362 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1363 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1364 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1364 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccount? Type1365 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1365 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1366 { get; set; } + public global::System.Collections.Generic.IList? Type1366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1367 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1367 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1368 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccount? Type1368 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1369 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest? Type1370 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1370 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1371 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1371 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1372 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1373 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1373 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1374 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1375 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1375 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1376 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1376 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1377 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1378 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1378 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1379 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlert? Type1380 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1380 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertObject? Type1381 { get; set; } + public global::System.Collections.Generic.IList? Type1381 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertCurrency? Type1382 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlert? Type1382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertInterval? Type1383 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertObject? Type1383 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResource? Type1384 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertCurrency? Type1384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResourceObject? Type1385 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertInterval? Type1385 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertListResource? Type1386 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResource? Type1386 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertListResourceObject? Type1387 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResourceObject? Type1387 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1388 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertListResource? Type1388 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1389 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertListResourceObject? Type1389 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUser? Type1390 { get; set; } + public global::System.Collections.Generic.IList? Type1390 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserObject? Type1391 { get; set; } + public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1391 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1392 { get; set; } + public global::tryAGI.OpenAI.ProjectUser? Type1392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1393 { get; set; } + public global::tryAGI.OpenAI.ProjectUserObject? Type1393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1394 { get; set; } + public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserListResponse? Type1395 { get; set; } + public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1395 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1396 { get; set; } + public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1397 { get; set; } + public global::tryAGI.OpenAI.ProjectUserListResponse? Type1397 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptVariant1? Type1398 { get; set; } + public global::System.Collections.Generic.IList? Type1398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicAssignOrganizationGroupRoleBody? Type1399 { get; set; } + public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicCreateOrganizationRoleBody? Type1400 { get; set; } + public global::tryAGI.OpenAI.PromptVariant1? Type1400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicRoleListResource? Type1401 { get; set; } + public global::tryAGI.OpenAI.PublicAssignOrganizationGroupRoleBody? Type1401 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicRoleListResourceObject? Type1402 { get; set; } + public global::tryAGI.OpenAI.PublicCreateOrganizationRoleBody? Type1402 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1403 { get; set; } + public global::tryAGI.OpenAI.PublicRoleListResource? Type1403 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicUpdateOrganizationRoleBody? Type1404 { get; set; } + public global::tryAGI.OpenAI.PublicRoleListResourceObject? Type1404 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1405 { get; set; } + public global::System.Collections.Generic.IList? Type1405 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormat? Type1406 { get; set; } + public global::tryAGI.OpenAI.PublicUpdateOrganizationRoleBody? Type1406 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormatType? Type1407 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1407 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormat? Type1408 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormat? Type1408 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormatType? Type1409 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormatType? Type1409 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormat? Type1410 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormat? Type1410 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormatType? Type1411 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormatType? Type1411 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1412 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormat? Type1412 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1413 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormatType? Type1413 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItem? Type1414 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1414 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1415 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1415 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1416 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItem? Type1416 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1417 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1417 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1418 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1418 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1419 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1419 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1420 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1420 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1421 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1421 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1422 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1422 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1423 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1423 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1424 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1424 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1425 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1425 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1426 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1427 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1428 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1428 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1429 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1429 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1430 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1430 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1431 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1432 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1433 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1434 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1435 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1436 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1437 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1437 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1438 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1439 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1440 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1441 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1441 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1442 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1443 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1444 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1445 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1445 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1446 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1446 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1447 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1447 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1448 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1448 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1449 { get; set; } + public global::System.Collections.Generic.IList? Type1449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1450 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1451 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceIdsShared? Type1452 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1452 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1453 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1453 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1454 { get; set; } + public global::tryAGI.OpenAI.VoiceIdsShared? Type1454 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1455 { get; set; } + public global::System.Collections.Generic.IList? Type1455 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1456 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1457 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1457 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1458 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1458 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1459 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1459 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1460 { get; set; } + public global::System.Collections.Generic.IList? Type1460 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1461 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1461 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1462 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1462 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1463 { get; set; } + public global::System.Collections.Generic.IList? Type1463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1464 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceOptions? Type1465 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceFunction? Type1466 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1466 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceMCP? Type1467 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceOptions? Type1467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1468 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceFunction? Type1468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1469 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceMCP? Type1469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1470 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1470 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1471 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1471 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1472 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1473 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1473 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1474 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1475 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1476 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1477 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1477 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1478 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1478 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1479 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1479 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1480 { get; set; } + public global::System.Collections.Generic.IList? Type1480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1481 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1482 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1483 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1483 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1484 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1484 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1485 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1486 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1487 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1487 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1488 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1489 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1490 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1491 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1492 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1493 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1494 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1494 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1495 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1496 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1497 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1498 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1499 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1499 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1500 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1500 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1501 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1501 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1502 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1502 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1503 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1503 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1504 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1505 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1506 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1507 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1507 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1508 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1508 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1509 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1510 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1510 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1511 { get; set; } + public global::System.Collections.Generic.IList? Type1511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1512 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1513 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1514 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1514 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1515 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1515 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1516 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1516 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1517 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1518 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1518 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1519 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1520 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1520 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1521 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1522 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1523 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1524 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1524 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1525 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1526 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1526 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1527 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1528 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1529 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1530 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1530 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1531 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1531 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1532 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1532 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1533 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1533 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1534 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1535 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1535 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1536 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1536 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1537 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1537 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1538 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1538 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1539 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1540 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1540 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1541 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1541 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1542 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1543 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1544 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1545 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1546 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1547 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1547 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1548 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1549 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1550 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1550 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1551 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1552 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1552 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1553 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1553 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1554 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1555 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSession? Type1556 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1556 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1557 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1557 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1558 { get; set; } + public global::tryAGI.OpenAI.RealtimeSession? Type1558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1559 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1560 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1561 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1562 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1563 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCallCreateRequest? Type1564 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1565 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCallReferRequest? Type1566 { get; set; } + public global::tryAGI.OpenAI.RealtimeCallCreateRequest? Type1566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCallRejectRequest? Type1567 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEvent? Type1568 { get; set; } + public global::tryAGI.OpenAI.RealtimeCallReferRequest? Type1568 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1569 { get; set; } + public global::tryAGI.OpenAI.RealtimeCallRejectRequest? Type1569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1570 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEvent? Type1570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1571 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1571 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1572 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1573 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1573 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1574 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1575 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1576 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1576 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1577 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1578 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1579 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1580 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventDiscriminatorType? Type1581 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1582 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1583 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventDiscriminatorType? Type1583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1584 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1585 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1585 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1586 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1587 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1587 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1588 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1589 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1590 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1591 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1592 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1593 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1594 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1595 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1596 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1597 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1598 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1599 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1600 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1601 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1602 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1603 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1604 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1605 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1606 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminator? Type1607 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminatorType? Type1608 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1609 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminator? Type1609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1610 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminatorType? Type1610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1611 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1612 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1613 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1614 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1615 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1616 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1617 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1618 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1618 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1619 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1620 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1621 { get; set; } + public global::System.Collections.Generic.IList? Type1621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1622 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1623 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1624 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1625 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1625 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1626 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1627 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1627 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1628 { get; set; } + public global::System.Collections.Generic.IList? Type1628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1629 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1630 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1631 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1632 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1632 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1633 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1634 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1635 { get; set; } + public global::System.Collections.Generic.IList? Type1635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1636 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1637 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1638 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1638 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1639 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1640 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1641 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1641 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1642 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1642 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1643 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1644 { get; set; } + public global::System.Collections.Generic.IList? Type1644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1645 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1646 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1646 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1647 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1648 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1648 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Session2? Type1649 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1650 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1650 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1651 { get; set; } + public global::tryAGI.OpenAI.Session2? Type1651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1652 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1652 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminatorType? Type1653 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1654 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1654 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1655 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminatorType? Type1655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1656 { get; set; } + public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1656 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1657 { get; set; } + public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1658 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1658 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1659 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1660 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1660 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1661 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1662 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1662 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1663 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1664 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1664 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1665 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1665 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1666 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1666 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeReasoning? Type1667 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeReasoningEffort? Type1668 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponse? Type1669 { get; set; } + public global::tryAGI.OpenAI.RealtimeReasoning? Type1669 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseObject? Type1670 { get; set; } + public global::tryAGI.OpenAI.RealtimeReasoningEffort? Type1670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1671 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponse? Type1671 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetails? Type1672 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseObject? Type1672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsType? Type1673 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsReason? Type1674 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetails? Type1674 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsError? Type1675 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsType? Type1675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudio? Type1676 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsReason? Type1676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioOutput? Type1677 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsError? Type1677 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1678 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudio? Type1678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetails? Type1679 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioOutput? Type1679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetailsCachedTokensDetails? Type1680 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1680 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsageOutputTokenDetails? Type1681 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetails? Type1681 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1682 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetailsCachedTokensDetails? Type1682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseOutputModalitie? Type1683 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsageOutputTokenDetails? Type1683 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1684 { get; set; } + public global::System.Collections.Generic.IList? Type1684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseMaxOutputTokens? Type1685 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseOutputModalitie? Type1685 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1686 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1687 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseMaxOutputTokens? Type1687 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1688 { get; set; } + public global::System.Collections.Generic.IList? Type1688 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1689 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1689 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1690 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1691 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1691 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1692 { get; set; } + public global::System.Collections.Generic.IList>? Type1692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1693 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1694 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1695 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1695 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEvent? Type1696 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1697 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1697 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1698 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEvent? Type1698 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1699 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1700 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1700 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1701 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1702 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1703 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1704 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventError? Type1705 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1706 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1707 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventError? Type1707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type1708 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1708 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1709 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1710 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type1710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1711 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1711 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1712 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1712 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1713 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1714 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1714 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1715 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1716 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1717 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1718 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1718 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1719 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1720 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1720 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1721 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1722 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1723 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1723 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1724 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1725 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1725 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1726 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1727 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1727 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1728 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1729 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1730 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1731 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1731 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1732 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1733 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1734 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1735 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1735 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1736 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1736 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1737 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1738 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1739 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1740 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1741 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1742 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventDiscriminator? Type1743 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventDiscriminatorType? Type1744 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1745 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventDiscriminator? Type1745 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1746 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventDiscriminatorType? Type1746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1747 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1748 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1748 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1749 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1750 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1751 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1752 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1753 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1754 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1755 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1756 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1756 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1757 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1758 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1758 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1759 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1760 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1761 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1761 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type1762 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1763 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1764 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type1764 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1765 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1766 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1767 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1768 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1769 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1770 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1771 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1772 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1772 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1773 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1773 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1774 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1775 { get; set; } + public global::System.Collections.Generic.IList? Type1775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1776 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1777 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1778 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1779 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1780 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1781 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1782 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1783 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1784 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1785 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1786 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1787 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1788 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1789 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1790 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1791 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1792 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1793 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1794 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1795 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1796 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1797 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1798 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1799 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1800 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1801 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1802 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1803 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionObject? Type1804 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1804 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1805 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionModalitie? Type1806 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionObject? Type1806 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1807 { get; set; } + public global::System.Collections.Generic.IList? Type1807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionModel? Type1808 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionModalitie? Type1808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionInputAudioFormat? Type1809 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionOutputAudioFormat? Type1810 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionModel? Type1810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1? Type1811 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionInputAudioFormat? Type1811 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionInputAudioNoiseReduction? Type1812 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionOutputAudioFormat? Type1812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1813 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1? Type1813 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum? Type1814 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionInputAudioNoiseReduction? Type1814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum2? Type1815 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1815 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1816 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum? Type1816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1817 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum2? Type1817 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionMaxResponseOutputTokens? Type1818 { get; set; } + public global::System.Collections.Generic.IList? Type1818 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1819 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionIncludeVariant1Item? Type1820 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionMaxResponseOutputTokens? Type1820 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1821 { get; set; } + public global::System.Collections.Generic.IList? Type1821 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1822 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionIncludeVariant1Item? Type1822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1823 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1824 { get; set; } + public global::System.Collections.Generic.IList? Type1824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1825 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1826 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1826 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1827 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1828 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1828 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1829 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1830 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1831 { get; set; } + public global::System.Collections.Generic.IList? Type1831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1832 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1833 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncation? Type1834 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1834 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1835 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1835 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1836 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncation? Type1836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1837 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1837 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1838 { get; set; } + public global::System.Collections.Generic.IList? Type1838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1839 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1840 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1840 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1841 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1842 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1843 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1843 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1844 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1845 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1845 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1846 { get; set; } + public global::System.Collections.Generic.IList? Type1846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1847 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1847 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1848 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1849 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1850 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type1851 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1851 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1852 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type1853 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type1853 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1854 { get; set; } + public global::System.Collections.Generic.IList? Type1854 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type1855 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type1855 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type1856 { get; set; } + public global::System.Collections.Generic.IList? Type1856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type1857 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type1857 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type1858 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type1858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type1859 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type1859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type1860 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type1860 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1861 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type1861 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type1862 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type1862 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type1863 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type1864 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type1864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1865 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type1865 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type1866 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type1866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1867 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1867 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAObject? Type1868 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type1868 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1869 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1870 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAObject? Type1870 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1871 { get; set; } + public global::System.Collections.Generic.IList? Type1871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1872 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1872 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1873 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1873 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1874 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1875 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1875 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1876 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1876 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1877 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1878 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1878 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type1879 { get; set; } + public global::System.Collections.Generic.IList? Type1879 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type1880 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1881 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type1881 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1882 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type1882 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1883 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1883 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1884 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1885 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1885 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1886 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1886 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1887 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1887 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1888 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1888 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1889 { get; set; } + public global::System.Collections.Generic.IList? Type1889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1890 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1890 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1891 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1891 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1892 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1892 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1893 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1894 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1894 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1895 { get; set; } + public global::System.Collections.Generic.IList? Type1895 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1896 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1897 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1897 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1898 { get; set; } + public global::System.Collections.Generic.IList? Type1898 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1899 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1899 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1900 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1901 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1901 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1902 { get; set; } + public global::System.Collections.Generic.IList? Type1902 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1903 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1904 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection2? Type1905 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1905 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEvent? Type1906 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdate? Type1907 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection2? Type1907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppend? Type1908 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEvent? Type1908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionClose? Type1909 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdate? Type1909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminator? Type1910 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppend? Type1910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminatorType? Type1911 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionClose? Type1911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppendType? Type1912 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminator? Type1912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionCloseType? Type1913 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminatorType? Type1913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdateType? Type1914 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppendType? Type1914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequest? Type1915 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionCloseType? Type1915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequest? Type1916 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdateType? Type1916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfter? Type1917 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequest? Type1917 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfterAnchor? Type1918 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequest? Type1918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequest? Type1919 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfter? Type1919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateResponse? Type1920 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfterAnchor? Type1920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSession? Type1921 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequest? Type1921 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEvent? Type1922 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateResponse? Type1922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreated? Type1923 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSession? Type1923 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdated? Type1924 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEvent? Type1924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosed? Type1925 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreated? Type1925 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDelta? Type1926 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdated? Type1926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDelta? Type1927 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosed? Type1927 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDelta? Type1928 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDelta? Type1928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminator? Type1929 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDelta? Type1929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminatorType? Type1930 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDelta? Type1930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosedType? Type1931 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminator? Type1931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreatedType? Type1932 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminatorType? Type1932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDeltaType? Type1933 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosedType? Type1933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaType? Type1934 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreatedType? Type1934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaFormat? Type1935 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDeltaType? Type1935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDeltaType? Type1936 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaType? Type1936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdatedType? Type1937 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaFormat? Type1937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionType? Type1938 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDeltaType? Type1938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudio? Type1939 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdatedType? Type1939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInput? Type1940 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionType? Type1940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputTranscription2? Type1941 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudio? Type1941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputNoiseReduction2? Type1942 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInput? Type1942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioOutput? Type1943 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputTranscription2? Type1943 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudio? Type1944 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputNoiseReduction2? Type1944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInput? Type1945 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioOutput? Type1945 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputTranscription2? Type1946 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudio? Type1946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputNoiseReduction2? Type1947 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInput? Type1947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioOutput? Type1948 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputTranscription2? Type1948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudio? Type1949 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputNoiseReduction2? Type1949 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInput? Type1950 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioOutput? Type1950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputTranscription2? Type1951 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudio? Type1951 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputNoiseReduction2? Type1952 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInput? Type1952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioOutput? Type1953 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputTranscription2? Type1953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1954 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputNoiseReduction2? Type1954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1955 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioOutput? Type1955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1956 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnumTokenLimits? Type1957 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type1958 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1958 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type1959 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnumTokenLimits? Type1959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type1960 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type1960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type1961 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type1961 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1DiscriminatorType? Type1962 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type1962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningModeEnum? Type1963 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type1963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningSummary2? Type1964 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1DiscriminatorType? Type1964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningContext2? Type1965 { get; set; } + public global::tryAGI.OpenAI.ReasoningModeEnum? Type1965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1966 { get; set; } + public global::tryAGI.OpenAI.ReasoningSummary2? Type1966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemType? Type1967 { get; set; } + public global::tryAGI.OpenAI.ReasoningContext2? Type1967 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1968 { get; set; } + public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SummaryTextContent? Type1969 { get; set; } + public global::tryAGI.OpenAI.ReasoningItemType? Type1969 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1970 { get; set; } + public global::System.Collections.Generic.IList? Type1970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemStatus? Type1971 { get; set; } + public global::tryAGI.OpenAI.SummaryTextContent? Type1971 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Response? Type1972 { get; set; } + public global::System.Collections.Generic.IList? Type1972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3? Type1973 { get; set; } + public global::tryAGI.OpenAI.ReasoningItemStatus? Type1973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Truncation2? Type1974 { get; set; } + public global::tryAGI.OpenAI.Response? Type1974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Object? Type1975 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3? Type1975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Status? Type1976 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Truncation2? Type1976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorVariant1? Type1977 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Object? Type1977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails2? Type1978 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Status? Type1978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type1979 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorVariant1? Type1979 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1980 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails2? Type1980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type1981 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type1981 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsage? Type1982 { get; set; } + public global::System.Collections.Generic.IList? Type1982 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheOptions? Type1983 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type1983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Moderation? Type1984 { get; set; } + public global::tryAGI.OpenAI.ResponseUsage? Type1984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Conversation22? Type1985 { get; set; } + public global::tryAGI.OpenAI.PromptCacheOptions? Type1985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type1986 { get; set; } + public global::tryAGI.OpenAI.Moderation? Type1986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type1987 { get; set; } + public global::tryAGI.OpenAI.Conversation22? Type1987 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type1988 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type1988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type1989 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type1989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type1990 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type1990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type1991 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type1991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type1992 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type1992 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type1993 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type1993 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type1994 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type1994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type1995 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type1995 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type1996 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type1996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type1997 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type1997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type1998 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type1998 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type1999 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type1999 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type2000 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type2000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type2001 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type2001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type2002 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type2002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type2003 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type2003 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCompletedEvent? Type2004 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type2004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCompletedEventType? Type2005 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type2005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type2006 { get; set; } + public global::tryAGI.OpenAI.ResponseCompletedEvent? Type2006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type2007 { get; set; } + public global::tryAGI.OpenAI.ResponseCompletedEventType? Type2007 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type2008 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type2008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type2009 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type2009 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCreatedEvent? Type2010 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type2010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCreatedEventType? Type2011 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type2011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type2012 { get; set; } + public global::tryAGI.OpenAI.ResponseCreatedEvent? Type2012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type2013 { get; set; } + public global::tryAGI.OpenAI.ResponseCreatedEventType? Type2013 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type2014 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type2014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type2015 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type2015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorCode? Type2016 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type2016 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorEvent? Type2017 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type2017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorEventType? Type2018 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorCode? Type2018 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFailedEvent? Type2019 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorEvent? Type2019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFailedEventType? Type2020 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorEventType? Type2020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type2021 { get; set; } + public global::tryAGI.OpenAI.ResponseFailedEvent? Type2021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type2022 { get; set; } + public global::tryAGI.OpenAI.ResponseFailedEventType? Type2022 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type2023 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type2023 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type2024 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type2024 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type2025 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type2025 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type2026 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type2026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonObjectType? Type2027 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type2027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonSchemaType? Type2028 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type2028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonSchemaJsonSchema? Type2029 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonObjectType? Type2029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonSchemaSchema? Type2030 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonSchemaType? Type2030 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextType? Type2031 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonSchemaJsonSchema? Type2031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type2032 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonSchemaSchema? Type2032 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type2033 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextType? Type2033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextPython? Type2034 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type2034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type2035 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type2035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type2036 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextPython? Type2036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type2037 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type2037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type2038 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type2038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type2039 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type2039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type2040 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type2040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type2041 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type2041 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type2042 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type2042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type2043 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type2043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type2044 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type2044 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type2045 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type2045 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type2046 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type2046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type2047 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type2047 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseInProgressEvent? Type2048 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type2048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseInProgressEventType? Type2049 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type2049 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type2050 { get; set; } + public global::tryAGI.OpenAI.ResponseInProgressEvent? Type2050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type2051 { get; set; } + public global::tryAGI.OpenAI.ResponseInProgressEventType? Type2051 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseItemList? Type2052 { get; set; } + public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type2052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseItemListObject? Type2053 { get; set; } + public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type2053 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2054 { get; set; } + public global::tryAGI.OpenAI.ResponseItemList? Type2054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseLogProb? Type2055 { get; set; } + public global::tryAGI.OpenAI.ResponseItemListObject? Type2055 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2056 { get; set; } + public global::System.Collections.Generic.IList? Type2056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type2057 { get; set; } + public global::tryAGI.OpenAI.ResponseLogProb? Type2057 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type2058 { get; set; } + public global::System.Collections.Generic.IList? Type2058 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type2059 { get; set; } + public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type2059 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type2060 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type2060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type2061 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type2061 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type2062 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type2062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type2063 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type2063 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type2064 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type2064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type2065 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type2065 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type2066 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type2066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type2067 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type2067 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type2068 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type2068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type2069 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type2069 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type2070 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type2070 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type2071 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type2071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type2072 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type2072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type2073 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type2073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type2074 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type2074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type2075 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type2075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type2076 { get; set; } + public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type2076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type2077 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type2077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type2078 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type2078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type2079 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type2079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type2080 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type2080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2081 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type2081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextParam? Type2082 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type2082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceParam? Type2083 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseQueuedEvent? Type2084 { get; set; } + public global::tryAGI.OpenAI.ResponseTextParam? Type2084 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseQueuedEventType? Type2085 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceParam? Type2085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type2086 { get; set; } + public global::tryAGI.OpenAI.ResponseQueuedEvent? Type2086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type2087 { get; set; } + public global::tryAGI.OpenAI.ResponseQueuedEventType? Type2087 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type2088 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type2088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type2089 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type2089 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type2090 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type2090 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type2091 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type2091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventStatus? Type2092 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type2092 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type2093 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type2093 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type2094 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventStatus? Type2094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type2095 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type2095 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type2096 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type2096 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type2097 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type2097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type2098 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type2098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type2099 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type2099 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type2100 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type2100 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type2101 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type2101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type2102 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type2102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type2103 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type2103 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type2104 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type2104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type2105 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type2105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type2106 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type2106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEvent? Type2107 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type2107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type2108 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type2108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type2109 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEvent? Type2109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type2110 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type2110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type2111 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type2111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type2112 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type2112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type2113 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type2113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEventDiscriminatorType? Type2114 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type2114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type2115 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type2115 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2116 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEventDiscriminatorType? Type2116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type2117 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type2117 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type2118 { get; set; } + public global::System.Collections.Generic.IList? Type2118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type2119 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type2119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type2120 { get; set; } + public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type2120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type2121 { get; set; } + public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type2121 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type2122 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type2122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEvent? Type2123 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type2123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventResponseCreate? Type2124 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type2124 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventDiscriminator? Type2125 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEvent? Type2125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1? Type2126 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventResponseCreate? Type2126 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1Type? Type2127 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventDiscriminator? Type2127 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesServerEvent? Type2128 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1? Type2128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesServerEventDiscriminator? Type2129 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1Type? Type2129 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleObject? Type2130 { get; set; } + public global::tryAGI.OpenAI.ResponsesServerEvent? Type2130 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleDeletedResource? Type2131 { get; set; } + public global::tryAGI.OpenAI.ResponsesServerEventDiscriminator? Type2131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleDeletedResourceObject? Type2132 { get; set; } + public global::tryAGI.OpenAI.RoleObject? Type2132 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleListResource? Type2133 { get; set; } + public global::tryAGI.OpenAI.RoleDeletedResource? Type2133 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleListResourceObject? Type2134 { get; set; } + public global::tryAGI.OpenAI.RoleDeletedResourceObject? Type2134 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2135 { get; set; } + public global::tryAGI.OpenAI.RoleListResource? Type2135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunCompletionUsageVariant1? Type2136 { get; set; } + public global::tryAGI.OpenAI.RoleListResourceObject? Type2136 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderRequest? Type2137 { get; set; } + public global::System.Collections.Generic.IList? Type2137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponse? Type2138 { get; set; } + public global::tryAGI.OpenAI.RunCompletionUsageVariant1? Type2138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type2139 { get; set; } + public global::tryAGI.OpenAI.RunGraderRequest? Type2139 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type2140 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponse? Type2140 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectObject? Type2141 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type2141 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectStatus? Type2142 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type2142 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectRequiredAction? Type2143 { get; set; } + public global::tryAGI.OpenAI.RunObjectObject? Type2143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectRequiredActionType? Type2144 { get; set; } + public global::tryAGI.OpenAI.RunObjectStatus? Type2144 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type2145 { get; set; } + public global::tryAGI.OpenAI.RunObjectRequiredAction? Type2145 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2146 { get; set; } + public global::tryAGI.OpenAI.RunObjectRequiredActionType? Type2146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunToolCallObject? Type2147 { get; set; } + public global::tryAGI.OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type2147 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectLastError? Type2148 { get; set; } + public global::System.Collections.Generic.IList? Type2148 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectLastErrorCode? Type2149 { get; set; } + public global::tryAGI.OpenAI.RunToolCallObject? Type2149 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectIncompleteDetails? Type2150 { get; set; } + public global::tryAGI.OpenAI.RunObjectLastError? Type2150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectIncompleteDetailsReason? Type2151 { get; set; } + public global::tryAGI.OpenAI.RunObjectLastErrorCode? Type2151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepCompletionUsageVariant1? Type2152 { get; set; } + public global::tryAGI.OpenAI.RunObjectIncompleteDetails? Type2152 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaObject? Type2153 { get; set; } + public global::tryAGI.OpenAI.RunObjectIncompleteDetailsReason? Type2153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaObjectObject? Type2154 { get; set; } + public global::tryAGI.OpenAI.RunStepCompletionUsageVariant1? Type2154 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaObjectDelta? Type2155 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaObject? Type2155 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2156 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaObjectObject? Type2156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObject? Type2157 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaObjectDelta? Type2157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObject? Type2158 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2158 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type2159 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObject? Type2159 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type2160 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObject? Type2160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObject? Type2161 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type2161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectType? Type2162 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type2162 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter? Type2163 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObject? Type2163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2164 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectType? Type2164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject? Type2165 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter? Type2165 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObject? Type2166 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType? Type2167 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject? Type2167 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage? Type2168 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObject? Type2168 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType? Type2169 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType? Type2169 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObject? Type2170 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage? Type2170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType? Type2171 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType? Type2171 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObject? Type2172 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObject? Type2172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType? Type2173 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType? Type2173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectFunction? Type2174 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObject? Type2174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType? Type2175 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType? Type2175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObject? Type2176 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectFunction? Type2176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType? Type2177 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType? Type2177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type2178 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObject? Type2178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObject? Type2179 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType? Type2179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectType? Type2180 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type2180 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectCodeInterpreter? Type2181 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObject? Type2181 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type2182 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectType? Type2182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2183 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectCodeInterpreter? Type2183 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObject? Type2184 { get; set; } + public global::System.Collections.Generic.IList>? Type2184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObject? Type2185 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectType? Type2186 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObject? Type2186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectImage? Type2187 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObject? Type2187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObjectType? Type2188 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectType? Type2188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObject? Type2189 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectImage? Type2189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectType? Type2190 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObjectType? Type2190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectFileSearch? Type2191 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObject? Type2191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchRankingOptionsObject? Type2192 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectType? Type2192 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2193 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectFileSearch? Type2193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObject? Type2194 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchRankingOptionsObject? Type2194 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2195 { get; set; } + public global::System.Collections.Generic.IList? Type2195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItem? Type2196 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObject? Type2196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItemType? Type2197 { get; set; } + public global::System.Collections.Generic.IList? Type2197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObject? Type2198 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItem? Type2198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectType? Type2199 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItemType? Type2199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectFunction? Type2200 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObject? Type2200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsObject? Type2201 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectType? Type2201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsObjectType? Type2202 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectFunction? Type2202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectObject? Type2203 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsObject? Type2203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectType? Type2204 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsObjectType? Type2204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectStatus? Type2205 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectObject? Type2205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2206 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectType? Type2206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectLastError2? Type2207 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectStatus? Type2207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectLastErrorCode? Type2208 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant1? Type2209 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectLastError2? Type2209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant1Event? Type2210 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectLastErrorCode? Type2210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant2? Type2211 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant1? Type2211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant2Event? Type2212 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant1Event? Type2212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant3? Type2213 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant2? Type2213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant3Event? Type2214 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant2Event? Type2214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant4? Type2215 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant3? Type2215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant4Event? Type2216 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant3Event? Type2216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant5? Type2217 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant4? Type2217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant5Event? Type2218 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant4Event? Type2218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant6? Type2219 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant5? Type2219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant6Event? Type2220 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant5Event? Type2220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant7? Type2221 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant6? Type2221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant7Event? Type2222 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant6Event? Type2222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant1? Type2223 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant7? Type2223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant1Event? Type2224 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant7Event? Type2224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant2? Type2225 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant1? Type2225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant2Event? Type2226 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant1Event? Type2226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant3? Type2227 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant2? Type2227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant3Event? Type2228 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant2Event? Type2228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant4? Type2229 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant3? Type2229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant4Event? Type2230 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant3Event? Type2230 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant5? Type2231 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant4? Type2231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant5Event? Type2232 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant4Event? Type2232 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant6? Type2233 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant5? Type2233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant6Event? Type2234 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant5Event? Type2234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant7? Type2235 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant6? Type2235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant7Event? Type2236 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant6Event? Type2236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant8? Type2237 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant7? Type2237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant8Event? Type2238 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant7Event? Type2238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant9? Type2239 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant8? Type2239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant9Event? Type2240 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant8Event? Type2240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant10? Type2241 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant9? Type2241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant10Event? Type2242 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant9Event? Type2242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunToolCallObjectType? Type2243 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant10? Type2243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunToolCallObjectFunction? Type2244 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant10Event? Type2244 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type2245 { get; set; } + public global::tryAGI.OpenAI.RunToolCallObjectType? Type2245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type2246 { get; set; } + public global::tryAGI.OpenAI.RunToolCallObjectFunction? Type2246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type2247 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type2247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendAlertNotificationChannelType? Type2248 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type2248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategy? Type2249 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type2249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategyRequestParamType? Type2250 { get; set; } + public global::tryAGI.OpenAI.SpendAlertNotificationChannelType? Type2250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParam? Type2251 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategy? Type2251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParamType? Type2252 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategyRequestParamType? Type2252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2253 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParam? Type2253 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2254 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParamType? Type2254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2255 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2255 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type2256 { get; set; } + public global::System.Collections.Generic.IList? Type2256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type2257 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObject? Type2258 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type2258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectObject? Type2259 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type2259 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectToolResources2? Type2260 { get; set; } + public global::tryAGI.OpenAI.ThreadObject? Type2260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type2261 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectObject? Type2261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectToolResourcesFileSearch? Type2262 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectToolResources2? Type2262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadStreamEventVariant1? Type2263 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type2263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadStreamEventVariant1Event? Type2264 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectToolResourcesFileSearch? Type2264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2265 { get; set; } + public global::tryAGI.OpenAI.ThreadStreamEventVariant1? Type2265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionTool? Type2266 { get; set; } + public global::tryAGI.OpenAI.ThreadStreamEventVariant1Event? Type2266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchTool? Type2267 { get; set; } + public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerTool? Type2268 { get; set; } + public global::tryAGI.OpenAI.FunctionTool? Type2268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type2269 { get; set; } + public global::tryAGI.OpenAI.FileSearchTool? Type2269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchTool? Type2270 { get; set; } + public global::tryAGI.OpenAI.ComputerTool? Type2270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgrammaticToolCallingParam? Type2271 { get; set; } + public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type2271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolParam? Type2272 { get; set; } + public global::tryAGI.OpenAI.WebSearchTool? Type2272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParam? Type2273 { get; set; } + public global::tryAGI.OpenAI.ProgrammaticToolCallingParam? Type2273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParam? Type2274 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolParam? Type2274 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParam? Type2275 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParam? Type2275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchToolParam? Type2276 { get; set; } + public global::tryAGI.OpenAI.CustomToolParam? Type2276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchPreviewTool? Type2277 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParam? Type2277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolParam? Type2278 { get; set; } + public global::tryAGI.OpenAI.ToolSearchToolParam? Type2278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolDiscriminator? Type2279 { get; set; } + public global::tryAGI.OpenAI.WebSearchPreviewTool? Type2279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolDiscriminatorType? Type2280 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolParam? Type2280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowed? Type2281 { get; set; } + public global::tryAGI.OpenAI.ToolDiscriminator? Type2281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type2282 { get; set; } + public global::tryAGI.OpenAI.ToolDiscriminatorType? Type2282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type2283 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowed? Type2283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceCustom? Type2284 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type2284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceCustomType? Type2285 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type2285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type2286 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceCustom? Type2286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceMCPType? Type2287 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceCustomType? Type2287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceTypes? Type2288 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type2288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParam? Type2289 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceMCPType? Type2289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type2290 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceTypes? Type2290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type2291 { get; set; } + public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParam? Type2291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceTypesType? Type2292 { get; set; } + public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type2292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type2293 { get; set; } + public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type2293 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2294 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceTypesType? Type2294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type2295 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type2295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type2296 { get; set; } + public global::System.Collections.Generic.IList? Type2296 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2297 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type2297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type2298 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type2298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextSegmentEventType? Type2299 { get; set; } + public global::System.Collections.Generic.IList? Type2299 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type2300 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type2300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type2301 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextSegmentEventType? Type2301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type2302 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type2302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionChunkingStrategy? Type2303 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type2303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionChunkingStrategyEnum? Type2304 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type2304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionDiarizedSegmentType? Type2305 { get; set; } + public global::tryAGI.OpenAI.TranscriptionChunkingStrategy? Type2305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TruncationObjectType? Type2306 { get; set; } + public global::tryAGI.OpenAI.TranscriptionChunkingStrategyEnum? Type2306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateGroupBody? Type2307 { get; set; } + public global::tryAGI.OpenAI.TranscriptionDiarizedSegmentType? Type2307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBody? Type2308 { get; set; } + public global::tryAGI.OpenAI.TruncationObjectType? Type2308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBodyRetentionType? Type2309 { get; set; } + public global::tryAGI.OpenAI.UpdateGroupBody? Type2309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectDataRetentionBody? Type2310 { get; set; } + public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBody? Type2310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectDataRetentionBodyRetentionType? Type2311 { get; set; } + public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBodyRetentionType? Type2311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectServiceAccountBody? Type2312 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectDataRetentionBody? Type2312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectServiceAccountBodyRole? Type2313 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectDataRetentionBodyRetentionType? Type2313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2314 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectServiceAccountBody? Type2314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2315 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectServiceAccountBodyRole? Type2315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AllOf? Type2316 { get; set; } + public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVoiceConsentRequest? Type2317 { get; set; } + public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Upload? Type2318 { get; set; } + public global::tryAGI.OpenAI.AllOf? Type2318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadStatus? Type2319 { get; set; } + public global::tryAGI.OpenAI.UpdateVoiceConsentRequest? Type2319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadObject? Type2320 { get; set; } + public global::tryAGI.OpenAI.Upload? Type2320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AllOf? Type2321 { get; set; } + public global::tryAGI.OpenAI.UploadStatus? Type2321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadCertificateRequest? Type2322 { get; set; } + public global::tryAGI.OpenAI.UploadObject? Type2322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadPart? Type2323 { get; set; } + public global::tryAGI.OpenAI.AllOf? Type2323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadPartObject? Type2324 { get; set; } + public global::tryAGI.OpenAI.UploadCertificateRequest? Type2324 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2325 { get; set; } + public global::tryAGI.OpenAI.UploadPart? Type2325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2326 { get; set; } + public global::tryAGI.OpenAI.UploadPartObject? Type2326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2327 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2328 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2329 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2330 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsResult? Type2331 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2332 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2333 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsResult? Type2333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2334 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsResult? Type2335 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsResultObject? Type2336 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesResult? Type2337 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsResult? Type2337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesResultObject? Type2338 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsResultObject? Type2338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsResult? Type2339 { get; set; } + public global::tryAGI.OpenAI.UsageImagesResult? Type2339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2340 { get; set; } + public global::tryAGI.OpenAI.UsageImagesResultObject? Type2340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageResponse? Type2341 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsResult? Type2341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageResponseObject? Type2342 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2342 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2343 { get; set; } + public global::tryAGI.OpenAI.UsageResponse? Type2343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucket? Type2344 { get; set; } + public global::tryAGI.OpenAI.UsageResponseObject? Type2344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2345 { get; set; } + public global::System.Collections.Generic.IList? Type2345 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2346 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucket? Type2346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResultsItem? Type2347 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2347 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2348 { get; set; } + public global::System.Collections.Generic.IList? Type2348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsResult? Type2349 { get; set; } + public global::tryAGI.OpenAI.ResultsItem? Type2349 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminator? Type2350 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2350 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminatorObject? Type2351 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsResult? Type2351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2352 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminator? Type2352 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsResultObject? Type2353 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminatorObject? Type2353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.User? Type2354 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserObject? Type2355 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsResultObject? Type2355 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserUser1? Type2356 { get; set; } + public global::tryAGI.OpenAI.User? Type2356 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserUser1Object? Type2357 { get; set; } + public global::tryAGI.OpenAI.UserObject? Type2357 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserProjects2? Type2358 { get; set; } + public global::tryAGI.OpenAI.UserUser1? Type2358 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserProjectsObject? Type2359 { get; set; } + public global::tryAGI.OpenAI.UserUser1Object? Type2359 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2360 { get; set; } + public global::tryAGI.OpenAI.UserProjects2? Type2360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserProjectsDataItem? Type2361 { get; set; } + public global::tryAGI.OpenAI.UserProjectsObject? Type2361 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserDeleteResponse? Type2362 { get; set; } + public global::System.Collections.Generic.IList? Type2362 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserDeleteResponseObject? Type2363 { get; set; } + public global::tryAGI.OpenAI.UserProjectsDataItem? Type2363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResource? Type2364 { get; set; } + public global::tryAGI.OpenAI.UserDeleteResponse? Type2364 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResourceObject? Type2365 { get; set; } + public global::tryAGI.OpenAI.UserDeleteResponseObject? Type2365 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2366 { get; set; } + public global::tryAGI.OpenAI.UserListResource? Type2366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResponse? Type2367 { get; set; } + public global::tryAGI.OpenAI.UserListResourceObject? Type2367 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResponseObject? 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.UserListResponse? Type2369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleAssignment? Type2370 { get; set; } + public global::tryAGI.OpenAI.UserListResponseObject? Type2370 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleAssignmentObject? Type2371 { get; set; } + public global::System.Collections.Generic.IList? Type2371 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleUpdateRequest? Type2372 { get; set; } + public global::tryAGI.OpenAI.UserRoleAssignment? Type2372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VadConfigType? Type2373 { get; set; } + public global::tryAGI.OpenAI.UserRoleAssignmentObject? Type2373 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ValidateGraderRequest? Type2374 { get; set; } + public global::tryAGI.OpenAI.UserRoleUpdateRequest? Type2374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ValidateGraderResponse? Type2375 { get; set; } + public global::tryAGI.OpenAI.VadConfigType? Type2375 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type2376 { get; set; } + public global::tryAGI.OpenAI.ValidateGraderRequest? Type2376 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2377 { get; set; } + public global::tryAGI.OpenAI.ValidateGraderResponse? Type2377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2378 { get; set; } + public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type2378 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2379 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2380 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2380 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2381 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2381 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2382 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2383 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2383 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2384 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2385 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2385 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type2386 { get; set; } + public global::System.Collections.Generic.IList? Type2386 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type2387 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2387 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectLastError2? Type2388 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type2388 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type2389 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type2389 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2390 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectLastError2? Type2390 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectObject? Type2391 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type2391 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type2392 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type2393 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectObject? Type2393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2394 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type2394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type2395 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type2395 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2396 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2397 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type2397 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2398 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2399 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2400 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2401 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2401 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2402 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2402 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2403 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2403 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2404 { get; set; } + public global::System.Collections.Generic.IList? Type2404 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2405 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2405 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentDeletedResource? Type2406 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2406 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentDeletedResourceObject? Type2407 { get; set; } + public global::System.Collections.Generic.IList? Type2407 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentListResource? Type2408 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentDeletedResource? Type2408 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentListResourceObject? Type2409 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentDeletedResourceObject? Type2409 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2410 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentListResource? Type2410 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentResource? Type2411 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentListResourceObject? Type2411 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentResourceObject? Type2412 { get; set; } + public global::System.Collections.Generic.IList? Type2412 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type2413 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentResource? Type2413 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type2414 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentResourceObject? Type2414 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceResource? Type2415 { get; set; } + public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type2415 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceResourceObject? Type2416 { get; set; } + public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type2416 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionFind? Type2417 { get; set; } + public global::tryAGI.OpenAI.VoiceResource? Type2417 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionFindType? Type2418 { get; set; } + public global::tryAGI.OpenAI.VoiceResourceObject? Type2418 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type2419 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionFind? Type2419 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type2420 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionFindType? Type2420 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearch? Type2421 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type2421 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchType? Type2422 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type2422 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2423 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearch? Type2423 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type2424 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchType? Type2424 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type2425 { get; set; } + public global::System.Collections.Generic.IList? Type2425 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type2426 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type2426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type2427 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type2427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolType? Type2428 { get; set; } + public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type2428 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolFilters2? Type2429 { get; set; } + public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type2429 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type2430 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolType? Type2430 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallType? Type2431 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolFilters2? Type2431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type2432 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type2432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallAction? Type2433 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallType? Type2433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type2434 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type2434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminatorType? Type2435 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallAction? Type2435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2436 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type2436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2437 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminatorType? Type2437 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2438 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2439 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2440 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2441 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2441 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2442 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2443 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpired? Type2444 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2445 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2445 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2446 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpired? Type2446 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2447 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2447 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailed? Type2448 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2448 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2449 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2450 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailed? Type2450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2451 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2452 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2452 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2453 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2453 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2454 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2454 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2455 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2455 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2456 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2457 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2457 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2458 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2458 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2459 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2459 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2460 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2460 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2461 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2461 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2462 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2462 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2463 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2464 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2465 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2466 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2466 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2467 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2468 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2469 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2470 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2470 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2471 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2471 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2472 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2473 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2473 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2474 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2475 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2476 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2477 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2477 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2478 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2478 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2479 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2479 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2480 { get; set; } + public global::System.Collections.Generic.IList? Type2480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2481 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2482 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2483 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2483 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2484 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2484 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2485 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2486 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2487 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2487 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2488 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2489 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailed? Type2490 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2491 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2492 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailed? Type2492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2493 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2494 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2494 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2495 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2496 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2497 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationInputType? Type2498 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationResultBodyType? Type2499 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2499 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type2500 { get; set; } + public global::tryAGI.OpenAI.ModerationInputType? Type2500 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type2501 { get; set; } + public global::tryAGI.OpenAI.ModerationResultBodyType? Type2501 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2502 { get; set; } + public global::System.Collections.Generic.Dictionary? Type2502 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheTTLEnum? Type2503 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type2503 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheModeEnum? Type2504 { get; set; } + public global::System.Collections.Generic.IList? Type2504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheBreakpointParamMode? Type2505 { get; set; } + public global::tryAGI.OpenAI.PromptCacheTTLEnum? Type2505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationMode? Type2506 { get; set; } + public global::tryAGI.OpenAI.PromptCacheModeEnum? Type2506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationConfigParam? Type2507 { get; set; } + public global::tryAGI.OpenAI.PromptCacheBreakpointParamMode? Type2507 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationPolicyParam? Type2508 { get; set; } + public global::tryAGI.OpenAI.ModerationMode? Type2508 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillReferenceParamType? Type2509 { get; set; } + public global::tryAGI.OpenAI.ModerationConfigParam? Type2509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillSourceParam? Type2510 { get; set; } + public global::tryAGI.OpenAI.ModerationPolicyParam? Type2510 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type2511 { get; set; } + public global::tryAGI.OpenAI.SkillReferenceParamType? Type2511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type2512 { get; set; } + public global::tryAGI.OpenAI.InlineSkillSourceParam? Type2512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillParamType? Type2513 { get; set; } + public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type2513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParamType? Type2514 { get; set; } + public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type2514 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyDomainSecretParam? Type2515 { get; set; } + public global::tryAGI.OpenAI.InlineSkillParamType? Type2515 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParamType? Type2516 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParamType? Type2516 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2517 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyDomainSecretParam? Type2517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStatus? Type2518 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParamType? Type2518 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRole? Type2519 { get; set; } + public global::System.Collections.Generic.IList? Type2519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheBreakpointConfig? Type2520 { get; set; } + public global::tryAGI.OpenAI.MessageStatus? Type2520 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheBreakpointConfigMode? Type2521 { get; set; } + public global::tryAGI.OpenAI.MessageRole? Type2521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContentType? Type2522 { get; set; } + public global::tryAGI.OpenAI.PromptCacheBreakpointConfig? Type2522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationBody? Type2523 { get; set; } + public global::tryAGI.OpenAI.PromptCacheBreakpointConfigMode? Type2523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationBodyType? Type2524 { get; set; } + public global::tryAGI.OpenAI.InputTextContentType? Type2524 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationBody? Type2525 { get; set; } + public global::tryAGI.OpenAI.FileCitationBody? Type2525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationBodyType? Type2526 { get; set; } + public global::tryAGI.OpenAI.FileCitationBodyType? Type2526 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationBody? Type2527 { get; set; } + public global::tryAGI.OpenAI.UrlCitationBody? Type2527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type2528 { get; set; } + public global::tryAGI.OpenAI.UrlCitationBodyType? Type2528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Annotation? Type2529 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationBody? Type2529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationDiscriminator? Type2530 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type2530 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationDiscriminatorType? Type2531 { get; set; } + public global::tryAGI.OpenAI.Annotation? Type2531 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TopLogProb? Type2532 { get; set; } + public global::tryAGI.OpenAI.AnnotationDiscriminator? Type2532 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LogProb? Type2533 { get; set; } + public global::tryAGI.OpenAI.AnnotationDiscriminatorType? Type2533 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2534 { get; set; } + public global::tryAGI.OpenAI.TopLogProb? Type2534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputTextContentType? Type2535 { get; set; } + public global::tryAGI.OpenAI.LogProb? Type2535 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2536 { get; set; } + public global::System.Collections.Generic.IList? Type2536 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2537 { get; set; } + public global::tryAGI.OpenAI.OutputTextContentType? Type2537 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextContent? Type2538 { get; set; } + public global::System.Collections.Generic.IList? Type2538 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextContentType? Type2539 { get; set; } + public global::System.Collections.Generic.IList? Type2539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SummaryTextContentType? Type2540 { get; set; } + public global::tryAGI.OpenAI.TextContent? Type2540 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningTextContentType? Type2541 { get; set; } + public global::tryAGI.OpenAI.TextContentType? Type2541 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RefusalContentType? Type2542 { get; set; } + public global::tryAGI.OpenAI.SummaryTextContentType? Type2542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageDetail? Type2543 { get; set; } + public global::tryAGI.OpenAI.ReasoningTextContentType? Type2543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContentType? Type2544 { get; set; } + public global::tryAGI.OpenAI.RefusalContentType? Type2544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerScreenshotContent? Type2545 { get; set; } + public global::tryAGI.OpenAI.ImageDetail? Type2545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type2546 { get; set; } + public global::tryAGI.OpenAI.InputImageContentType? Type2546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileInputDetail? Type2547 { get; set; } + public global::tryAGI.OpenAI.ComputerScreenshotContent? Type2547 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContentType? Type2548 { get; set; } + public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type2548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessagePhase2? Type2549 { get; set; } + public global::tryAGI.OpenAI.FileInputDetail? Type2549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageType? Type2550 { get; set; } + public global::tryAGI.OpenAI.InputFileContentType? Type2550 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2551 { get; set; } + public global::tryAGI.OpenAI.MessagePhase2? Type2551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem3? Type2552 { get; set; } + public global::tryAGI.OpenAI.MessageType? Type2552 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type2553 { get; set; } + public global::System.Collections.Generic.IList? Type2553 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentItemDiscriminatorType? Type2554 { get; set; } + public global::tryAGI.OpenAI.ContentItem3? Type2554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCaller? Type2555 { get; set; } + public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type2555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCallerType? Type2556 { get; set; } + public global::tryAGI.OpenAI.MessageContentItemDiscriminatorType? Type2556 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCaller? Type2557 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCaller? Type2557 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCallerType? Type2558 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCallerType? Type2558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerDiscriminator? Type2559 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCaller? Type2559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerDiscriminatorType? Type2560 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCallerType? Type2560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCallerParam? Type2561 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerDiscriminator? Type2561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCallerParamType? Type2562 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerDiscriminatorType? Type2562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCallerParam? Type2563 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCallerParam? Type2563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCallerParamType? Type2564 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCallerParamType? Type2564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminator? Type2565 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCallerParam? Type2565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminatorType? Type2566 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCallerParamType? Type2566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClickButtonType? Type2567 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminator? Type2567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClickParamType? Type2568 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminatorType? Type2568 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoubleClickActionType? Type2569 { get; set; } + public global::tryAGI.OpenAI.ClickButtonType? Type2569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CoordParam? Type2570 { get; set; } + public global::tryAGI.OpenAI.ClickParamType? Type2570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DragParamType? Type2571 { get; set; } + public global::tryAGI.OpenAI.DoubleClickActionType? Type2571 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2572 { get; set; } + public global::tryAGI.OpenAI.CoordParam? Type2572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.KeyPressActionType? Type2573 { get; set; } + public global::tryAGI.OpenAI.DragParamType? Type2573 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MoveParamType? Type2574 { get; set; } + public global::System.Collections.Generic.IList? Type2574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ScreenshotParamType? Type2575 { get; set; } + public global::tryAGI.OpenAI.KeyPressActionType? Type2575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ScrollParamType? Type2576 { get; set; } + public global::tryAGI.OpenAI.MoveParamType? Type2576 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TypeParamType? Type2577 { get; set; } + public global::tryAGI.OpenAI.ScreenshotParamType? Type2577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WaitParamType? Type2578 { get; set; } + public global::tryAGI.OpenAI.ScrollParamType? Type2578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchExecutionType? Type2579 { get; set; } + public global::tryAGI.OpenAI.TypeParamType? Type2579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchCallType? Type2580 { get; set; } + public global::tryAGI.OpenAI.WaitParamType? Type2580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolType? Type2581 { get; set; } + public global::tryAGI.OpenAI.ToolSearchExecutionType? Type2581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RankerVersionType? Type2582 { get; set; } + public global::tryAGI.OpenAI.ToolSearchCallType? Type2582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HybridSearchOptions? Type2583 { get; set; } + public global::tryAGI.OpenAI.FunctionToolType? Type2583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RankingOptions? Type2584 { get; set; } + public global::tryAGI.OpenAI.RankerVersionType? Type2584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Filters2? Type2585 { get; set; } + public global::tryAGI.OpenAI.HybridSearchOptions? Type2585 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolType? Type2586 { get; set; } + public global::tryAGI.OpenAI.RankingOptions? Type2586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerToolType? Type2587 { get; set; } + public global::tryAGI.OpenAI.Filters2? Type2587 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerEnvironment? Type2588 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolType? Type2588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type2589 { get; set; } + public global::tryAGI.OpenAI.ComputerToolType? Type2589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerMemoryLimit? Type2590 { get; set; } + public global::tryAGI.OpenAI.ComputerEnvironment? Type2590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamType? Type2591 { get; set; } + public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type2591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy2? Type2592 { get; set; } + public global::tryAGI.OpenAI.ContainerMemoryLimit? Type2592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type2593 { get; set; } + public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamType? Type2593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type2594 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy2? Type2594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgrammaticToolCallingParamType? Type2595 { get; set; } + public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type2595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolParamType? Type2596 { get; set; } + public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type2596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParam? Type2597 { get; set; } + public global::tryAGI.OpenAI.ProgrammaticToolCallingParamType? Type2597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamType? Type2598 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolParamType? Type2598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy3? Type2599 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParam? Type2599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type2600 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamType? Type2600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminatorType? Type2601 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy3? Type2601 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2602 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type2602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillsItem2? Type2603 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminatorType? Type2603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type2604 { get; set; } + public global::System.Collections.Generic.IList? Type2604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminatorType? Type2605 { get; set; } + public global::tryAGI.OpenAI.SkillsItem2? Type2605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalSkillParam? Type2606 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type2606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentParam? Type2607 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminatorType? Type2607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type2608 { get; set; } + public global::tryAGI.OpenAI.LocalSkillParam? Type2608 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2609 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentParam? Type2609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceParam? Type2610 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type2610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceParamType? Type2611 { get; set; } + public global::System.Collections.Generic.IList? Type2611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParamType? Type2612 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceParam? Type2612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant1? Type2613 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceParamType? Type2613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type2614 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParamType? Type2614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type2615 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant1? Type2615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomTextFormatParam? Type2616 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type2616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomTextFormatParamType? Type2617 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type2617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GrammarSyntax1? Type2618 { get; set; } + public global::tryAGI.OpenAI.CustomTextFormatParam? Type2618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type2619 { get; set; } + public global::tryAGI.OpenAI.CustomTextFormatParamType? Type2619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type2620 { get; set; } + public global::tryAGI.OpenAI.GrammarSyntax1? Type2620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParamType? Type2621 { get; set; } + public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type2621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Format2? Type2622 { get; set; } + public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type2622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type2623 { get; set; } + public global::tryAGI.OpenAI.CustomToolParamType? Type2623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminatorType? Type2624 { get; set; } + public global::tryAGI.OpenAI.Format2? Type2624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EmptyModelParam? Type2625 { get; set; } + public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type2625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolParam? Type2626 { get; set; } + public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminatorType? Type2626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolParamType? Type2627 { get; set; } + public global::tryAGI.OpenAI.EmptyModelParam? Type2627 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParamType? Type2628 { get; set; } + public global::tryAGI.OpenAI.FunctionToolParam? Type2628 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2629 { get; set; } + public global::tryAGI.OpenAI.FunctionToolParamType? Type2629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolsItem13? Type2630 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParamType? Type2630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type2631 { get; set; } + public global::System.Collections.Generic.IList? Type2631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminatorType? Type2632 { get; set; } + public global::tryAGI.OpenAI.ToolsItem13? Type2632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchToolParamType? Type2633 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type2633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApproximateLocation? Type2634 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminatorType? Type2634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApproximateLocationType? Type2635 { get; set; } + public global::tryAGI.OpenAI.ToolSearchToolParamType? Type2635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SearchContextSize? Type2636 { get; set; } + public global::tryAGI.OpenAI.ApproximateLocation? Type2636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SearchContentType? Type2637 { get; set; } + public global::tryAGI.OpenAI.ApproximateLocationType? Type2637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type2638 { get; set; } + public global::tryAGI.OpenAI.SearchContextSize? Type2638 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2639 { get; set; } + public global::tryAGI.OpenAI.SearchContentType? Type2639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type2640 { get; set; } + public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type2640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchOutputType? Type2641 { get; set; } + public global::System.Collections.Generic.IList? Type2641 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsType? Type2642 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type2642 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramType? Type2643 { get; set; } + public global::tryAGI.OpenAI.ToolSearchOutputType? Type2643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputStatus? Type2644 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsType? Type2644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputType? Type2645 { get; set; } + public global::tryAGI.OpenAI.ProgramType? Type2645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionBodyType? Type2646 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputStatus? Type2646 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CodeInterpreterOutputLogsType? Type2647 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputType? Type2647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CodeInterpreterOutputImageType? Type2648 { get; set; } + public global::tryAGI.OpenAI.CompactionBodyType? Type2648 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellExecActionType? Type2649 { get; set; } + public global::tryAGI.OpenAI.CodeInterpreterOutputLogsType? Type2649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellAction? Type2650 { get; set; } + public global::tryAGI.OpenAI.CodeInterpreterOutputImageType? Type2650 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallStatus? Type2651 { get; set; } + public global::tryAGI.OpenAI.LocalShellExecActionType? Type2651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentResource? Type2652 { get; set; } + public global::tryAGI.OpenAI.FunctionShellAction? Type2652 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type2653 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallStatus? Type2653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceResource? Type2654 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentResource? Type2654 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type2655 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type2655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallType? Type2656 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceResource? Type2656 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant12? Type2657 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type2657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type2658 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallType? Type2658 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1DiscriminatorType? Type2659 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant12? Type2659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputStatusEnum? Type2660 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type2660 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type2661 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1DiscriminatorType? Type2661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type2662 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputStatusEnum? Type2662 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type2663 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type2663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type2664 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type2664 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type2665 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type2665 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Outcome? Type2666 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type2666 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type2667 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type2667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminatorType? Type2668 { get; set; } + public global::tryAGI.OpenAI.Outcome? Type2668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type2669 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type2669 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2670 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminatorType? Type2670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type2671 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type2671 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type2672 { get; set; } + public global::System.Collections.Generic.IList? Type2672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type2673 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type2673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type2674 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type2674 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type2675 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type2675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type2676 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type2676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type2677 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type2677 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type2678 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type2678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Operation? Type2679 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type2679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type2680 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type2680 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminatorType? Type2681 { get; set; } + public global::tryAGI.OpenAI.Operation? Type2681 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type2682 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type2682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type2683 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminatorType? Type2683 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DetailEnum? Type2684 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type2684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallItemStatus? Type2685 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type2685 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type2686 { get; set; } + public global::tryAGI.OpenAI.DetailEnum? Type2686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContentParam? Type2687 { get; set; } + public global::tryAGI.OpenAI.FunctionCallItemStatus? Type2687 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContentParamType? Type2688 { get; set; } + public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type2688 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type2689 { get; set; } + public global::tryAGI.OpenAI.InputTextContentParam? Type2689 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type2690 { get; set; } + public global::tryAGI.OpenAI.InputTextContentParamType? Type2690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileDetailEnum? Type2691 { get; set; } + public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type2691 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContentParam? Type2692 { get; set; } + public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type2692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContentParamType? Type2693 { get; set; } + public global::tryAGI.OpenAI.FileDetailEnum? Type2693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type2694 { get; set; } + public global::tryAGI.OpenAI.InputFileContentParam? Type2694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type2695 { get; set; } + public global::tryAGI.OpenAI.InputFileContentParamType? Type2695 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2696 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type2696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputVariant2Item? Type2697 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type2697 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type2698 { get; set; } + public global::System.Collections.Generic.IList? Type2698 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type2699 { get; set; } + public global::tryAGI.OpenAI.OutputVariant2Item? Type2699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationParam? Type2700 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type2700 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationParamType? Type2701 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type2701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationParam? Type2702 { get; set; } + public global::tryAGI.OpenAI.FileCitationParam? Type2702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationParamType? Type2703 { get; set; } + public global::tryAGI.OpenAI.FileCitationParamType? Type2703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationParam? Type2704 { get; set; } + public global::tryAGI.OpenAI.UrlCitationParam? Type2704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationParamType? Type2705 { get; set; } + public global::tryAGI.OpenAI.UrlCitationParamType? Type2705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type2706 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationParam? Type2706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type2707 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationParamType? Type2707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsItemParamType? Type2708 { get; set; } + public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type2708 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsItemParamRole? Type2709 { get; set; } + public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type2709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type2710 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsItemParamType? Type2710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellActionParam? Type2711 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsItemParamRole? Type2711 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type2712 { get; set; } + public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type2712 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type2713 { get; set; } + public global::tryAGI.OpenAI.FunctionShellActionParam? Type2713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant13? Type2714 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type2714 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type2715 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type2715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type2716 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant13? Type2716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type2717 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type2717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type2718 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type2718 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type2719 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type2719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type2720 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type2720 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type2721 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type2721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type2722 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type2722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminatorType? Type2723 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type2723 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type2724 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type2724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type2725 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminatorType? Type2725 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2726 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type2726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type2727 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type2727 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type2728 { get; set; } + public global::System.Collections.Generic.IList? Type2728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type2729 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type2729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type2730 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type2730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type2731 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type2731 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type2732 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type2732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type2733 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type2733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type2734 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type2734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type2735 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type2735 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminatorType? Type2736 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type2736 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type2737 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type2737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type2738 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminatorType? Type2738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type2739 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type2739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionTriggerItemParamType? Type2740 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type2740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemReferenceParamType2? Type2741 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type2741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramItemParamType? Type2742 { get; set; } + public global::tryAGI.OpenAI.CompactionTriggerItemParamType? Type2742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputItemStatus? Type2743 { get; set; } + public global::tryAGI.OpenAI.ItemReferenceParamType2? Type2743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputItemParamType? Type2744 { get; set; } + public global::tryAGI.OpenAI.ProgramItemParamType? Type2744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ConversationResource? Type2745 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputItemStatus? Type2745 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ConversationResourceObject? Type2746 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputItemParamType? Type2746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenOutputTokensDetails? Type2747 { get; set; } + public global::tryAGI.OpenAI.ConversationResource? Type2747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type2748 { get; set; } + public global::tryAGI.OpenAI.ConversationResourceObject? Type2748 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParamType? Type2749 { get; set; } + public global::tryAGI.OpenAI.ImageGenOutputTokensDetails? Type2749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type2750 { get; set; } + public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type2750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type2751 { get; set; } + public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParamType? Type2751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningModeEnumEnum? Type2752 { get; set; } + public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type2752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationErrorBody? Type2753 { get; set; } + public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type2753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationErrorBodyType? Type2754 { get; set; } + public global::tryAGI.OpenAI.ReasoningModeEnumEnum? Type2754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Input4? Type2755 { get; set; } + public global::tryAGI.OpenAI.ModerationErrorBody? Type2755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationInputDiscriminator? Type2756 { get; set; } + public global::tryAGI.OpenAI.ModerationErrorBodyType? Type2756 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationInputDiscriminatorType? Type2757 { get; set; } + public global::tryAGI.OpenAI.Input4? Type2757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Output5? Type2758 { get; set; } + public global::tryAGI.OpenAI.ModerationInputDiscriminator? Type2758 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationOutputDiscriminator? Type2759 { get; set; } + public global::tryAGI.OpenAI.ModerationInputDiscriminatorType? Type2759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationOutputDiscriminatorType? Type2760 { get; set; } + public global::tryAGI.OpenAI.Output5? Type2760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateConversationBody? Type2761 { get; set; } + public global::tryAGI.OpenAI.ModerationOutputDiscriminator? Type2761 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateConversationBody? Type2762 { get; set; } + public global::tryAGI.OpenAI.ModerationOutputDiscriminatorType? Type2762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type2763 { get; set; } + public global::tryAGI.OpenAI.CreateConversationBody? Type2763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrderEnum? Type2764 { get; set; } + public global::tryAGI.OpenAI.UpdateConversationBody? Type2764 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoModel? Type2765 { get; set; } + public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type2765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoModelEnum? Type2766 { get; set; } + public global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody? Type2766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoStatus? Type2767 { get; set; } + public global::tryAGI.OpenAI.ServiceAccountApiKeyBody? Type2767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoSize? Type2768 { get; set; } + public global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject? Type2768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Error2? Type2769 { get; set; } + public global::tryAGI.OpenAI.OrderEnum? Type2769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoResource? Type2770 { get; set; } + public global::tryAGI.OpenAI.VideoModel? Type2770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoResourceObject? Type2771 { get; set; } + public global::tryAGI.OpenAI.VideoModelEnum? Type2771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoListResource? Type2772 { get; set; } + public global::tryAGI.OpenAI.VideoStatus? Type2772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoListResourceObject? Type2773 { get; set; } + public global::tryAGI.OpenAI.VideoSize? Type2773 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2774 { get; set; } + public global::tryAGI.OpenAI.Error2? Type2774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageRefParam2? Type2775 { get; set; } + public global::tryAGI.OpenAI.VideoResource? Type2775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoSeconds? Type2776 { get; set; } + public global::tryAGI.OpenAI.VideoResourceObject? Type2776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoMultipartBody? Type2777 { get; set; } + public global::tryAGI.OpenAI.VideoListResource? Type2777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2778 { get; set; } + public global::tryAGI.OpenAI.VideoListResourceObject? Type2778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoJsonBody? Type2779 { get; set; } + public global::System.Collections.Generic.IList? Type2779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoCharacterBody? Type2780 { get; set; } + public global::tryAGI.OpenAI.ImageRefParam2? Type2780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoCharacterResource? Type2781 { get; set; } + public global::tryAGI.OpenAI.VideoSeconds? Type2781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoReferenceInputParam? Type2782 { get; set; } + public global::tryAGI.OpenAI.CreateVideoMultipartBody? Type2782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoEditMultipartBody? Type2783 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2784 { get; set; } + public global::tryAGI.OpenAI.CreateVideoJsonBody? Type2784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoEditJsonBody? Type2785 { get; set; } + public global::tryAGI.OpenAI.CreateVideoCharacterBody? Type2785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoExtendMultipartBody? Type2786 { get; set; } + public global::tryAGI.OpenAI.VideoCharacterResource? Type2786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2787 { get; set; } + public global::tryAGI.OpenAI.VideoReferenceInputParam? Type2787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoExtendJsonBody? Type2788 { get; set; } + public global::tryAGI.OpenAI.CreateVideoEditMultipartBody? Type2788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedVideoResource? Type2789 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedVideoResourceObject? Type2790 { get; set; } + public global::tryAGI.OpenAI.CreateVideoEditJsonBody? Type2790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoContentVariant? Type2791 { get; set; } + public global::tryAGI.OpenAI.CreateVideoExtendMultipartBody? Type2791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoRemixBody? Type2792 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TruncationEnum? Type2793 { get; set; } + public global::tryAGI.OpenAI.CreateVideoExtendJsonBody? Type2793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PersonalityEnum? Type2794 { get; set; } + public global::tryAGI.OpenAI.DeletedVideoResource? Type2794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PersonalityEnumEnum? Type2795 { get; set; } + public global::tryAGI.OpenAI.DeletedVideoResourceObject? Type2795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TokenCountsBody? Type2796 { get; set; } + public global::tryAGI.OpenAI.VideoContentVariant? Type2796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TokenCountsResource? Type2797 { get; set; } + public global::tryAGI.OpenAI.CreateVideoRemixBody? Type2797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TokenCountsResourceObject? Type2798 { get; set; } + public global::tryAGI.OpenAI.TruncationEnum? Type2798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheRetentionEnum? Type2799 { get; set; } + public global::tryAGI.OpenAI.PersonalityEnum? Type2799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ServiceTierEnum2? Type2800 { get; set; } + public global::tryAGI.OpenAI.PersonalityEnumEnum? Type2800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactResponseMethodPublicBody? Type2801 { get; set; } + public global::tryAGI.OpenAI.TokenCountsBody? Type2801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemField? Type2802 { get; set; } + public global::tryAGI.OpenAI.TokenCountsResource? Type2802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemFieldDiscriminator? Type2803 { get; set; } + public global::tryAGI.OpenAI.TokenCountsResourceObject? Type2803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemFieldDiscriminatorType? Type2804 { get; set; } + public global::tryAGI.OpenAI.PromptCacheRetentionEnum? Type2804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactResource? Type2805 { get; set; } + public global::tryAGI.OpenAI.ServiceTierEnum2? Type2805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactResourceObject? Type2806 { get; set; } + public global::tryAGI.OpenAI.CompactResponseMethodPublicBody? Type2806 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2807 { get; set; } + public global::tryAGI.OpenAI.ItemField? Type2807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillResource? Type2808 { get; set; } + public global::tryAGI.OpenAI.ItemFieldDiscriminator? Type2808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillResourceObject? Type2809 { get; set; } + public global::tryAGI.OpenAI.ItemFieldDiscriminatorType? Type2809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillListResource? Type2810 { get; set; } + public global::tryAGI.OpenAI.CompactResource? Type2810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillListResourceObject? Type2811 { get; set; } + public global::tryAGI.OpenAI.CompactResourceObject? Type2811 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2812 { get; set; } + public global::System.Collections.Generic.IList? Type2812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSkillBody? Type2813 { get; set; } + public global::tryAGI.OpenAI.SkillResource? Type2813 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, byte[]>? Type2814 { get; set; } + public global::tryAGI.OpenAI.SkillResourceObject? Type2814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SetDefaultSkillVersionBody? Type2815 { get; set; } + public global::tryAGI.OpenAI.SkillListResource? Type2815 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillResource? Type2816 { get; set; } + public global::tryAGI.OpenAI.SkillListResourceObject? Type2816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillResourceObject? Type2817 { get; set; } + public global::System.Collections.Generic.IList? Type2817 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionResource? Type2818 { get; set; } + public global::tryAGI.OpenAI.CreateSkillBody? Type2818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionResourceObject? Type2819 { get; set; } + public global::tryAGI.OpenAI.OneOf, byte[]>? Type2819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionListResource? Type2820 { get; set; } + public global::tryAGI.OpenAI.SetDefaultSkillVersionBody? Type2820 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionListResourceObject? Type2821 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillResource? Type2821 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2822 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillResourceObject? Type2822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSkillVersionBody? Type2823 { get; set; } + public global::tryAGI.OpenAI.SkillVersionResource? Type2823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillVersionResource? Type2824 { get; set; } + public global::tryAGI.OpenAI.SkillVersionResourceObject? Type2824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillVersionResourceObject? Type2825 { get; set; } + public global::tryAGI.OpenAI.SkillVersionListResource? Type2825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatkitWorkflowTracing? Type2826 { get; set; } + public global::tryAGI.OpenAI.SkillVersionListResourceObject? Type2826 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatkitWorkflow? Type2827 { get; set; } + public global::System.Collections.Generic.IList? Type2827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2828 { get; set; } + public global::tryAGI.OpenAI.CreateSkillVersionBody? Type2828 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionRateLimits? Type2829 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillVersionResource? Type2829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionStatus? Type2830 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillVersionResourceObject? Type2830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionAutomaticThreadTitling? Type2831 { get; set; } + public global::tryAGI.OpenAI.ChatkitWorkflowTracing? Type2831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionFileUpload? Type2832 { get; set; } + public global::tryAGI.OpenAI.ChatkitWorkflow? Type2832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionHistory? Type2833 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionChatkitConfiguration? Type2834 { get; set; } + public global::tryAGI.OpenAI.ChatSessionRateLimits? Type2834 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionResource? Type2835 { get; set; } + public global::tryAGI.OpenAI.ChatSessionStatus? Type2835 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionResourceObject? Type2836 { get; set; } + public global::tryAGI.OpenAI.ChatSessionAutomaticThreadTitling? Type2836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WorkflowTracingParam? Type2837 { get; set; } + public global::tryAGI.OpenAI.ChatSessionFileUpload? Type2837 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WorkflowParam? Type2838 { get; set; } + public global::tryAGI.OpenAI.ChatSessionHistory? Type2838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ExpiresAfterParam? Type2839 { get; set; } + public global::tryAGI.OpenAI.ChatSessionChatkitConfiguration? Type2839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ExpiresAfterParamAnchor? Type2840 { get; set; } + public global::tryAGI.OpenAI.ChatSessionResource? Type2840 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RateLimitsParam? Type2841 { get; set; } + public global::tryAGI.OpenAI.ChatSessionResourceObject? Type2841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutomaticThreadTitlingParam? Type2842 { get; set; } + public global::tryAGI.OpenAI.WorkflowTracingParam? Type2842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileUploadParam? Type2843 { get; set; } + public global::tryAGI.OpenAI.WorkflowParam? Type2843 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HistoryParam? Type2844 { get; set; } + public global::tryAGI.OpenAI.ExpiresAfterParam? Type2844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatkitConfigurationParam? Type2845 { get; set; } + public global::tryAGI.OpenAI.ExpiresAfterParamAnchor? Type2845 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatSessionBody? Type2846 { get; set; } + public global::tryAGI.OpenAI.RateLimitsParam? Type2846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageInputText? Type2847 { get; set; } + public global::tryAGI.OpenAI.AutomaticThreadTitlingParam? Type2847 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageInputTextType? Type2848 { get; set; } + public global::tryAGI.OpenAI.FileUploadParam? Type2848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageQuotedText? Type2849 { get; set; } + public global::tryAGI.OpenAI.HistoryParam? Type2849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageQuotedTextType? Type2850 { get; set; } + public global::tryAGI.OpenAI.ChatkitConfigurationParam? Type2850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AttachmentType? Type2851 { get; set; } + public global::tryAGI.OpenAI.CreateChatSessionBody? Type2851 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Attachment? Type2852 { get; set; } + public global::tryAGI.OpenAI.UserMessageInputText? Type2852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoice8? Type2853 { get; set; } + public global::tryAGI.OpenAI.UserMessageInputTextType? Type2853 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InferenceOptions? Type2854 { get; set; } + public global::tryAGI.OpenAI.UserMessageQuotedText? Type2854 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItem? Type2855 { get; set; } + public global::tryAGI.OpenAI.UserMessageQuotedTextType? Type2855 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemObject? Type2856 { get; set; } + public global::tryAGI.OpenAI.AttachmentType? Type2856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemType? Type2857 { get; set; } + public global::tryAGI.OpenAI.Attachment? Type2857 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2858 { get; set; } + public global::tryAGI.OpenAI.ToolChoice8? Type2858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem4? Type2859 { get; set; } + public global::tryAGI.OpenAI.InferenceOptions? Type2859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminator? Type2860 { get; set; } + public global::tryAGI.OpenAI.UserMessageItem? Type2860 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminatorType? Type2861 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemObject? Type2861 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2862 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemType? Type2862 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotationSource? Type2863 { get; set; } + public global::System.Collections.Generic.IList? Type2863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotationSourceType? Type2864 { get; set; } + public global::tryAGI.OpenAI.ContentItem4? Type2864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotation? Type2865 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminator? Type2865 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotationType? Type2866 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminatorType? Type2866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotationSource? Type2867 { get; set; } + public global::System.Collections.Generic.IList? Type2867 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotationSourceType? Type2868 { get; set; } + public global::tryAGI.OpenAI.FileAnnotationSource? Type2868 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotation? Type2869 { get; set; } + public global::tryAGI.OpenAI.FileAnnotationSourceType? Type2869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotationType? Type2870 { get; set; } + public global::tryAGI.OpenAI.FileAnnotation? Type2870 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputText? Type2871 { get; set; } + public global::tryAGI.OpenAI.FileAnnotationType? Type2871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextType? Type2872 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotationSource? Type2872 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2873 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotationSourceType? Type2873 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationsItem3? Type2874 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotation? Type2874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminator? Type2875 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotationType? Type2875 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminatorType? Type2876 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputText? Type2876 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AssistantMessageItem? Type2877 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextType? Type2877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AssistantMessageItemObject? Type2878 { get; set; } + public global::System.Collections.Generic.IList? Type2878 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AssistantMessageItemType? Type2879 { get; set; } + public global::tryAGI.OpenAI.AnnotationsItem3? Type2879 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2880 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminator? Type2880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WidgetMessageItem? Type2881 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminatorType? Type2881 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WidgetMessageItemObject? Type2882 { get; set; } + public global::tryAGI.OpenAI.AssistantMessageItem? Type2882 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WidgetMessageItemType? Type2883 { get; set; } + public global::tryAGI.OpenAI.AssistantMessageItemObject? Type2883 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallStatus? Type2884 { get; set; } + public global::tryAGI.OpenAI.AssistantMessageItemType? Type2884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallItem? Type2885 { get; set; } + public global::System.Collections.Generic.IList? Type2885 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallItemObject? Type2886 { get; set; } + public global::tryAGI.OpenAI.WidgetMessageItem? Type2886 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallItemType? Type2887 { get; set; } + public global::tryAGI.OpenAI.WidgetMessageItemObject? Type2887 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskType? Type2888 { get; set; } + public global::tryAGI.OpenAI.WidgetMessageItemType? Type2888 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskItem? Type2889 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallStatus? Type2889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskItemObject? Type2890 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallItem? Type2890 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskItemType? Type2891 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallItemObject? Type2891 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupTask? Type2892 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallItemType? Type2892 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupItem? Type2893 { get; set; } + public global::tryAGI.OpenAI.TaskType? Type2893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupItemObject? Type2894 { get; set; } + public global::tryAGI.OpenAI.TaskItem? Type2894 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupItemType? Type2895 { get; set; } + public global::tryAGI.OpenAI.TaskItemObject? Type2895 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2896 { get; set; } + public global::tryAGI.OpenAI.TaskItemType? Type2896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItem? Type2897 { get; set; } + public global::tryAGI.OpenAI.TaskGroupTask? Type2897 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemDiscriminator? Type2898 { get; set; } + public global::tryAGI.OpenAI.TaskGroupItem? Type2898 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemDiscriminatorType? Type2899 { get; set; } + public global::tryAGI.OpenAI.TaskGroupItemObject? Type2899 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemListResource? Type2900 { get; set; } + public global::tryAGI.OpenAI.TaskGroupItemType? Type2900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemListResourceObject? Type2901 { get; set; } + public global::System.Collections.Generic.IList? Type2901 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2902 { get; set; } + public global::tryAGI.OpenAI.ThreadItem? Type2902 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ActiveStatus? Type2903 { get; set; } + public global::tryAGI.OpenAI.ThreadItemDiscriminator? Type2903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ActiveStatusType? Type2904 { get; set; } + public global::tryAGI.OpenAI.ThreadItemDiscriminatorType? Type2904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LockedStatus? Type2905 { get; set; } + public global::tryAGI.OpenAI.ThreadItemListResource? Type2905 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LockedStatusType? Type2906 { get; set; } + public global::tryAGI.OpenAI.ThreadItemListResourceObject? Type2906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClosedStatus? Type2907 { get; set; } + public global::System.Collections.Generic.IList? Type2907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClosedStatusType? Type2908 { get; set; } + public global::tryAGI.OpenAI.ActiveStatus? Type2908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResource? Type2909 { get; set; } + public global::tryAGI.OpenAI.ActiveStatusType? Type2909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResourceObject? Type2910 { get; set; } + public global::tryAGI.OpenAI.LockedStatus? Type2910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Status? Type2911 { get; set; } + public global::tryAGI.OpenAI.LockedStatusType? Type2911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminator? Type2912 { get; set; } + public global::tryAGI.OpenAI.ClosedStatus? Type2912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminatorType? Type2913 { get; set; } + public global::tryAGI.OpenAI.ClosedStatusType? Type2913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedThreadResource? Type2914 { get; set; } + public global::tryAGI.OpenAI.ThreadResource? Type2914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedThreadResourceObject? Type2915 { get; set; } + public global::tryAGI.OpenAI.ThreadResourceObject? Type2915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadListResource? Type2916 { get; set; } + public global::tryAGI.OpenAI.Status? Type2916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadListResourceObject? Type2917 { get; set; } + public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminator? Type2917 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2918 { get; set; } + public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminatorType? Type2918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DragPoint? Type2919 { get; set; } + public global::tryAGI.OpenAI.DeletedThreadResource? Type2919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTokenCountsResource? Type2920 { get; set; } + public global::tryAGI.OpenAI.DeletedThreadResourceObject? Type2920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTokenCountsResourceObject? Type2921 { get; set; } + public global::tryAGI.OpenAI.ThreadListResource? Type2921 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTokenCountsBody? Type2922 { get; set; } + public global::tryAGI.OpenAI.ThreadListResourceObject? Type2922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type2923 { get; set; } + public global::System.Collections.Generic.IList? Type2923 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2924 { get; set; } + public global::tryAGI.OpenAI.DragPoint? Type2924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputItem? Type2925 { get; set; } + public global::tryAGI.OpenAI.BetaTokenCountsResource? Type2925 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2926 { get; set; } + public global::tryAGI.OpenAI.BetaTokenCountsResourceObject? Type2926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTool? Type2927 { get; set; } + public global::tryAGI.OpenAI.BetaTokenCountsBody? Type2927 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextParam? Type2928 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type2928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoning? Type2929 { get; set; } + public global::System.Collections.Generic.IList? Type2929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTruncationEnum? Type2930 { get; set; } + public global::tryAGI.OpenAI.BetaInputItem? Type2930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPersonalityEnum? Type2931 { get; set; } + public global::System.Collections.Generic.IList? Type2931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaConversationParam? Type2932 { get; set; } + public global::tryAGI.OpenAI.BetaTool? Type2932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceParam? Type2933 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextParam? Type2933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceOptions? Type2934 { get; set; } + public global::tryAGI.OpenAI.BetaReasoning? Type2934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceAllowed? Type2935 { get; set; } + public global::tryAGI.OpenAI.BetaTruncationEnum? Type2935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceTypes? Type2936 { get; set; } + public global::tryAGI.OpenAI.BetaPersonalityEnum? Type2936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceFunction? Type2937 { get; set; } + public global::tryAGI.OpenAI.BetaConversationParam? Type2937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceMCP? Type2938 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceParam? Type2938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceCustom? Type2939 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceOptions? Type2939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParam? Type2940 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceAllowed? Type2940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificApplyPatchParam? Type2941 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceTypes? Type2941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificFunctionShellParam? Type2942 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceFunction? Type2942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificFunctionShellParamType? Type2943 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceMCP? Type2943 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificApplyPatchParamType? Type2944 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceCustom? Type2944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParamType? Type2945 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParam? Type2945 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceCustomType? Type2946 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificApplyPatchParam? Type2946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceMCPType? Type2947 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificFunctionShellParam? Type2947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceFunctionType? Type2948 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificFunctionShellParamType? Type2948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceTypesType? Type2949 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificApplyPatchParamType? Type2949 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceAllowedType? Type2950 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParamType? Type2950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceAllowedMode? Type2951 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceCustomType? Type2951 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaConversationParam2? Type2952 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceMCPType? Type2952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPersonalityEnumEnum? Type2953 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceFunctionType? Type2953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningModeEnum? Type2954 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceTypesType? Type2954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningEffortEnum? Type2955 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceAllowedType? Type2955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningSummary2? Type2956 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceAllowedMode? Type2956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningContext2? Type2957 { get; set; } + public global::tryAGI.OpenAI.BetaConversationParam2? Type2957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningGenerateSummary2? Type2958 { get; set; } + public global::tryAGI.OpenAI.BetaPersonalityEnumEnum? Type2958 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningModeEnumEnum? Type2959 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningModeEnum? Type2959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextResponseFormatConfiguration? Type2960 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningEffortEnum? Type2960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaVerbosityEnum? Type2961 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningSummary2? Type2961 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatText? Type2962 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningContext2? Type2962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchema? Type2963 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningGenerateSummary2? Type2963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatJsonObject? Type2964 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningModeEnumEnum? Type2964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatJsonObjectType? Type2965 { get; set; } + public global::tryAGI.OpenAI.BetaTextResponseFormatConfiguration? Type2965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchemaType? Type2966 { get; set; } + public global::tryAGI.OpenAI.BetaVerbosityEnum? Type2966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatJsonSchemaSchema? Type2967 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatText? Type2967 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatTextType? Type2968 { get; set; } + public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchema? Type2968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionTool? Type2969 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatJsonObject? Type2969 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchTool? Type2970 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatJsonObjectType? Type2970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerTool? Type2971 { get; set; } + public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchemaType? Type2971 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerUsePreviewTool? Type2972 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatJsonSchemaSchema? Type2972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchTool? Type2973 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatTextType? Type2973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPTool? Type2974 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionTool? Type2974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterTool? Type2975 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchTool? Type2975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParam? Type2976 { get; set; } + public global::tryAGI.OpenAI.BetaComputerTool? Type2976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenTool? Type2977 { get; set; } + public global::tryAGI.OpenAI.BetaComputerUsePreviewTool? Type2977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolParam? Type2978 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchTool? Type2978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParam? Type2979 { get; set; } + public global::tryAGI.OpenAI.BetaMCPTool? Type2979 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParam? Type2980 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterTool? Type2980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParam? Type2981 { get; set; } + public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParam? Type2981 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchToolParam? Type2982 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenTool? Type2982 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchPreviewTool? Type2983 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolParam? Type2983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolParam? Type2984 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParam? Type2984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolDiscriminator? Type2985 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParam? Type2985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolDiscriminatorType? Type2986 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParam? Type2986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolParamType? Type2987 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchToolParam? Type2987 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2988 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchPreviewTool? Type2988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCallableToolAllowedCaller? Type2989 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolParam? Type2989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchPreviewToolType? Type2990 { get; set; } + public global::tryAGI.OpenAI.BetaToolDiscriminator? Type2990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApproximateLocation? Type2991 { get; set; } + public global::tryAGI.OpenAI.BetaToolDiscriminatorType? Type2991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSearchContextSize? Type2992 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolParamType? Type2992 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2993 { get; set; } + public global::System.Collections.Generic.IList? Type2993 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSearchContentType? Type2994 { get; set; } + public global::tryAGI.OpenAI.BetaCallableToolAllowedCaller? Type2994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApproximateLocationType? Type2995 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchPreviewToolType? Type2995 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchToolParamType? Type2996 { get; set; } + public global::tryAGI.OpenAI.BetaApproximateLocation? Type2996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchExecutionType? Type2997 { get; set; } + public global::tryAGI.OpenAI.BetaSearchContextSize? Type2997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEmptyModelParam? Type2998 { get; set; } + public global::System.Collections.Generic.IList? Type2998 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParamType? Type2999 { get; set; } + public global::tryAGI.OpenAI.BetaSearchContentType? Type2999 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3000 { get; set; } + public global::tryAGI.OpenAI.BetaApproximateLocationType? Type3000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolsItem14? Type3001 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchToolParamType? Type3001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolParam? Type3002 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchExecutionType? Type3002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminator? Type3003 { get; set; } + public global::tryAGI.OpenAI.BetaEmptyModelParam? Type3003 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminatorType? Type3004 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParamType? Type3004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParamType? Type3005 { get; set; } + public global::System.Collections.Generic.IList? Type3005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Format3? Type3006 { get; set; } + public global::tryAGI.OpenAI.ToolsItem14? Type3006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomTextFormatParam? Type3007 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolParam? Type3007 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomGrammarFormatParam? Type3008 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminator? Type3008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminator? Type3009 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminatorType? Type3009 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminatorType? Type3010 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParamType? Type3010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomGrammarFormatParamType? Type3011 { get; set; } + public global::tryAGI.OpenAI.Format3? Type3011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaGrammarSyntax1? Type3012 { get; set; } + public global::tryAGI.OpenAI.BetaCustomTextFormatParam? Type3012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomTextFormatParamType? Type3013 { get; set; } + public global::tryAGI.OpenAI.BetaCustomGrammarFormatParam? Type3013 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolParamType? Type3014 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminator? Type3014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParamType? Type3015 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminatorType? Type3015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant14? Type3016 { get; set; } + public global::tryAGI.OpenAI.BetaCustomGrammarFormatParamType? Type3016 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParam? Type3017 { get; set; } + public global::tryAGI.OpenAI.BetaGrammarSyntax1? Type3017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentParam? Type3018 { get; set; } + public global::tryAGI.OpenAI.BetaCustomTextFormatParamType? Type3018 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceParam? Type3019 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolParamType? Type3019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1Discriminator? Type3020 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParamType? Type3020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type3021 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant14? Type3021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceParamType? Type3022 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParam? Type3022 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentParamType? Type3023 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentParam? Type3023 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3024 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceParam? Type3024 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalSkillParam? Type3025 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1Discriminator? Type3025 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamType? Type3026 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type3026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerMemoryLimit? Type3027 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceParamType? Type3027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy4? Type3028 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentParamType? Type3028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParam? Type3029 { get; set; } + public global::System.Collections.Generic.IList? Type3029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParam? Type3030 { get; set; } + public global::tryAGI.OpenAI.BetaLocalSkillParam? Type3030 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminator? Type3031 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamType? Type3031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminatorType? Type3032 { get; set; } + public global::tryAGI.OpenAI.BetaContainerMemoryLimit? Type3032 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3033 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy4? Type3033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillsItem3? Type3034 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParam? Type3034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSkillReferenceParam? Type3035 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParam? Type3035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillParam? Type3036 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminator? Type3036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminator? Type3037 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminatorType? Type3037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminatorType? Type3038 { get; set; } + public global::System.Collections.Generic.IList? Type3038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillParamType? Type3039 { get; set; } + public global::tryAGI.OpenAI.SkillsItem3? Type3039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillSourceParam? Type3040 { get; set; } + public global::tryAGI.OpenAI.BetaSkillReferenceParam? Type3040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillSourceParamType? Type3041 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillParam? Type3041 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillSourceParamMediaType? Type3042 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminator? Type3042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSkillReferenceParamType? Type3043 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminatorType? Type3043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParamType? Type3044 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillParamType? Type3044 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3045 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillSourceParam? Type3045 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDomainSecretParam? Type3046 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillSourceParamType? Type3046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParamType? Type3047 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillSourceParamMediaType? Type3047 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolParamType? Type3048 { get; set; } + public global::tryAGI.OpenAI.BetaSkillReferenceParamType? Type3048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolType? Type3049 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParamType? Type3049 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type3050 { get; set; } + public global::System.Collections.Generic.IList? Type3050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolModel? Type3051 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDomainSecretParam? Type3051 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolQuality? Type3052 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParamType? Type3052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type3053 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolParamType? Type3053 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolSize? Type3054 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolType? Type3054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolOutputFormat? Type3055 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type3055 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolModeration? Type3056 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolModel? Type3056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolBackground? Type3057 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolQuality? Type3057 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFidelity? Type3058 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type3058 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolInputImageMask? Type3059 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolSize? Type3059 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenActionEnum? Type3060 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolOutputFormat? Type3060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParamType? Type3061 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolModeration? Type3061 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolType? Type3062 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolBackground? Type3062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3063 { get; set; } + public global::tryAGI.OpenAI.BetaInputFidelity? Type3063 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParam? Type3064 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolInputImageMask? Type3064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamType? Type3065 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenActionEnum? Type3065 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy5? Type3066 { get; set; } + public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParamType? Type3066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type3067 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolType? Type3067 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type3068 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type3068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolType? Type3069 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParam? Type3069 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolConnectorId? Type3070 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamType? Type3070 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.BetaMCPToolFilter>? Type3071 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy5? Type3071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolFilter? Type3072 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type3072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3073 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type3073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum? Type3074 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolType? Type3074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum2? Type3075 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolConnectorId? Type3075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolType? Type3076 { get; set; } + public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.BetaMCPToolFilter>? Type3076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolFilters2? Type3077 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolFilter? Type3077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocation? Type3078 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type3078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolSearchContextSize? Type3079 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum? Type3079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocationType? Type3080 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum2? Type3080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerUsePreviewToolType? Type3081 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolType? Type3081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerEnvironment? Type3082 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolFilters2? Type3082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolType? Type3083 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocation? Type3083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolType? Type3084 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolSearchContextSize? Type3084 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRankingOptions? Type3085 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocationType? Type3085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFilters? Type3086 { get; set; } + public global::tryAGI.OpenAI.BetaComputerUsePreviewToolType? Type3086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComparisonFilter? Type3087 { get; set; } + public global::tryAGI.OpenAI.BetaComputerEnvironment? Type3087 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompoundFilter? Type3088 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolType? Type3088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompoundFilterType? Type3089 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolType? Type3089 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3090 { get; set; } + public global::tryAGI.OpenAI.BetaRankingOptions? Type3090 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FiltersItem2? Type3091 { get; set; } + public global::tryAGI.OpenAI.BetaFilters? Type3091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompoundFilterFilterDiscriminator? Type3092 { get; set; } + public global::tryAGI.OpenAI.BetaComparisonFilter? Type3092 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComparisonFilterType? Type3093 { get; set; } + public global::tryAGI.OpenAI.BetaCompoundFilter? Type3093 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRankerVersionType? Type3094 { get; set; } + public global::tryAGI.OpenAI.BetaCompoundFilterType? Type3094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaHybridSearchOptions? Type3095 { get; set; } + public global::System.Collections.Generic.IList? Type3095 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolType? Type3096 { get; set; } + public global::tryAGI.OpenAI.FiltersItem2? Type3096 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEasyInputMessage? Type3097 { get; set; } + public global::tryAGI.OpenAI.BetaCompoundFilterFilterDiscriminator? Type3097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItem? Type3098 { get; set; } + public global::tryAGI.OpenAI.BetaComparisonFilterType? Type3098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionTriggerItemParam? Type3099 { get; set; } + public global::tryAGI.OpenAI.BetaRankerVersionType? Type3099 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemReferenceParam? Type3100 { get; set; } + public global::tryAGI.OpenAI.BetaHybridSearchOptions? Type3100 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramItemParam? Type3101 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolType? Type3101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputItemParam? Type3102 { get; set; } + public global::tryAGI.OpenAI.BetaEasyInputMessage? Type3102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputItemDiscriminator? Type3103 { get; set; } + public global::tryAGI.OpenAI.BetaItem? Type3103 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputItemDiscriminatorType? Type3104 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionTriggerItemParam? Type3104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentTagParam? Type3105 { get; set; } + public global::tryAGI.OpenAI.BetaItemReferenceParam? Type3105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputItemParamType? Type3106 { get; set; } + public global::tryAGI.OpenAI.BetaProgramItemParam? Type3106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputItemStatus? Type3107 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputItemParam? Type3107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramItemParamType? Type3108 { get; set; } + public global::tryAGI.OpenAI.BetaInputItemDiscriminator? Type3108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemReferenceParamType2? Type3109 { get; set; } + public global::tryAGI.OpenAI.BetaInputItemDiscriminatorType? Type3109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionTriggerItemParamType? Type3110 { get; set; } + public global::tryAGI.OpenAI.BetaAgentTagParam? Type3110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessage? Type3111 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputItemParamType? Type3111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessage? Type3112 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputItemStatus? Type3112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCall? Type3113 { get; set; } + public global::tryAGI.OpenAI.BetaProgramItemParamType? Type3113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCall? Type3114 { get; set; } + public global::tryAGI.OpenAI.BetaItemReferenceParamType2? Type3114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallOutputItemParam? Type3115 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionTriggerItemParamType? Type3115 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCall? Type3116 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessage? Type3116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCall? Type3117 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessage? Type3117 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParam? Type3118 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCall? Type3118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParam? Type3119 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCall? Type3119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallItemParam? Type3120 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallOutputItemParam? Type3120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParam? Type3121 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCall? Type3121 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCallItemParam? Type3122 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCall? Type3122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutputItemParam? Type3123 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParam? Type3123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsItemParam? Type3124 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParam? Type3124 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningItem? Type3125 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallItemParam? Type3125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionSummaryItemParam? Type3126 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParam? Type3126 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolCall? Type3127 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCallItemParam? Type3127 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCall? Type3128 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutputItemParam? Type3128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCall? Type3129 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsItemParam? Type3129 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallOutput? Type3130 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningItem? Type3130 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParam? Type3131 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionSummaryItemParam? Type3131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParam? Type3132 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolCall? Type3132 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParam? Type3133 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCall? Type3133 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParam? Type3134 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCall? Type3134 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPListTools? Type3135 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallOutput? Type3135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalRequest? Type3136 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParam? Type3136 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponse? Type3137 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParam? Type3137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolCall? Type3138 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParam? Type3138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutput? Type3139 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParam? Type3139 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCall? Type3140 { get; set; } + public global::tryAGI.OpenAI.BetaMCPListTools? Type3140 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemDiscriminator? Type3141 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalRequest? Type3141 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemDiscriminatorType? Type3142 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponse? Type3142 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentTag? Type3143 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolCall? Type3143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallType? Type3144 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutput? Type3144 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCaller? Type3145 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCall? Type3145 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCaller? Type3146 { get; set; } + public global::tryAGI.OpenAI.BetaItemDiscriminator? Type3146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCaller? Type3147 { get; set; } + public global::tryAGI.OpenAI.BetaItemDiscriminatorType? Type3147 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminator? Type3148 { get; set; } + public global::tryAGI.OpenAI.BetaAgentTag? Type3148 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminatorType? Type3149 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallType? Type3149 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCallerType? Type3150 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCaller? Type3150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCallerType? Type3151 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCaller? Type3151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutputType? Type3152 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCaller? Type3152 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerParam? Type3153 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminator? Type3153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type3154 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminatorType? Type3154 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3155 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCallerType? Type3155 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutput? Type3156 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCallerType? Type3156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContent? Type3157 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutputType? Type3157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContent? Type3158 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerParam? Type3158 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContent? Type3159 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type3159 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminator? Type3160 { get; set; } + public global::System.Collections.Generic.IList? Type3160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminatorType? Type3161 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutput? Type3161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContentType? Type3162 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContent? Type3162 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfig? Type3163 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContent? Type3163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileInputDetail? Type3164 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContent? Type3164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfigMode? Type3165 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminator? Type3165 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContentType? Type3166 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminatorType? Type3166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageDetail? Type3167 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContentType? Type3167 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContentType? Type3168 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfig? Type3168 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCallerParam? Type3169 { get; set; } + public global::tryAGI.OpenAI.BetaFileInputDetail? Type3169 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCallerParam? Type3170 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfigMode? Type3170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminator? Type3171 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContentType? Type3171 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminatorType? Type3172 { get; set; } + public global::tryAGI.OpenAI.BetaImageDetail? Type3172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCallerParamType? Type3173 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContentType? Type3173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCallerParamType? Type3174 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCallerParam? Type3174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolCallType? Type3175 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCallerParam? Type3175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolCallStatus? Type3176 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminator? Type3176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponseType? Type3177 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminatorType? Type3177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalRequestType? Type3178 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCallerParamType? Type3178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPListToolsType? Type3179 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCallerParamType? Type3179 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3180 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolCallType? Type3180 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPListToolsTool? Type3181 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolCallStatus? Type3181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParamType? Type3182 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponseType? Type3182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatusParam? Type3183 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalRequestType? Type3183 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParamType? Type3184 { get; set; } + public global::tryAGI.OpenAI.BetaMCPListToolsType? Type3184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallStatusParam? Type3185 { get; set; } + public global::System.Collections.Generic.IList? Type3185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchOperationParam? Type3186 { get; set; } + public global::tryAGI.OpenAI.BetaMCPListToolsTool? Type3186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParam? Type3187 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParamType? Type3187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParam? Type3188 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatusParam? Type3188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParam? Type3189 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParamType? Type3189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminator? Type3190 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallStatusParam? Type3190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminatorType? Type3191 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchOperationParam? Type3191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParamType? Type3192 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParam? Type3192 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParamType? Type3193 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParam? Type3193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParamType? Type3194 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParam? Type3194 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParamType? Type3195 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminator? Type3195 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3196 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminatorType? Type3196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentParam? Type3197 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParamType? Type3197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemStatus? Type3198 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParamType? Type3198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParam? Type3199 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParamType? Type3199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParam? Type3200 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParamType? Type3200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParam? Type3201 { get; set; } + public global::System.Collections.Generic.IList? Type3201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminator? Type3202 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentParam? Type3202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminatorType? Type3203 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemStatus? Type3203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParamType? Type3204 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParam? Type3204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParamType? Type3205 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParam? Type3205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamType? Type3206 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParam? Type3206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellActionParam? Type3207 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminator? Type3207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant15? Type3208 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminatorType? Type3208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1Discriminator? Type3209 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParamType? Type3209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type3210 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParamType? Type3210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputType? Type3211 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamType? Type3211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputStatus2? Type3212 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellActionParam? Type3212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallType? Type3213 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant15? Type3213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellExecAction? Type3214 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1Discriminator? Type3214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallStatus? Type3215 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type3215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellExecActionType? Type3216 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputType? Type3216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallType? Type3217 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputStatus2? Type3217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallStatus? Type3218 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallType? Type3218 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3219 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellExecAction? Type3219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputsVariant1Item2? Type3220 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallStatus? Type3220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogs? Type3221 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellExecActionType? Type3221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImage? Type3222 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallType? Type3222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminator? Type3223 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallStatus? Type3223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminatorType? Type3224 { get; set; } + public global::System.Collections.Generic.IList? Type3224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImageType? Type3225 { get; set; } + public global::tryAGI.OpenAI.OutputsVariant1Item2? Type3225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogsType? Type3226 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogs? Type3226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolCallType? Type3227 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImage? Type3227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolCallStatus? Type3228 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminator? Type3228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionSummaryItemParamType? Type3229 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminatorType? Type3229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningItemType? Type3230 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImageType? Type3230 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3231 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogsType? Type3231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSummaryTextContent? Type3232 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolCallType? Type3232 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3233 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolCallStatus? Type3233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningTextContent? Type3234 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionSummaryItemParamType? Type3234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningItemStatus? Type3235 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningItemType? Type3235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningTextContentType? Type3236 { get; set; } + public global::System.Collections.Generic.IList? Type3236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSummaryTextContentType? Type3237 { get; set; } + public global::tryAGI.OpenAI.BetaSummaryTextContent? Type3237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamType? Type3238 { get; set; } + public global::System.Collections.Generic.IList? Type3238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamRole? Type3239 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningTextContent? Type3239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutputItemParamType? Type3240 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningItemStatus? Type3240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallItemStatus? Type3241 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningTextContentType? Type3241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCallItemParamType? Type3242 { get; set; } + public global::tryAGI.OpenAI.BetaSummaryTextContentType? Type3242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParamType? Type3243 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamType? Type3243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentAction1? Type3244 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamRole? Type3244 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3245 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutputItemParamType? Type3245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParam? Type3246 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallItemStatus? Type3246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParamType? Type3247 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCallItemParamType? Type3247 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3248 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParamType? Type3248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationsItem4? Type3249 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentAction1? Type3249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationParam? Type3250 { get; set; } + public global::System.Collections.Generic.IList? Type3250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationParam? Type3251 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParam? Type3251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationParam? Type3252 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParamType? Type3252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminator? Type3253 { get; set; } + public global::System.Collections.Generic.IList? Type3253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminatorType? Type3254 { get; set; } + public global::tryAGI.OpenAI.AnnotationsItem4? Type3254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationParamType? Type3255 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationParam? Type3255 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationParamType? Type3256 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationParam? Type3256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationParamType? Type3257 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationParam? Type3257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallItemParamType? Type3258 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminator? Type3258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParamType? Type3259 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminatorType? Type3259 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3260 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationParamType? Type3260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem5? Type3261 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationParamType? Type3261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContentParam? Type3262 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationParamType? Type3262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParam? Type3263 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallItemParamType? Type3263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContentParam? Type3264 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParamType? Type3264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminator? Type3265 { get; set; } + public global::System.Collections.Generic.IList? Type3265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminatorType? Type3266 { get; set; } + public global::tryAGI.OpenAI.ContentItem5? Type3266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContentParamType? Type3267 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContentParam? Type3267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParamType? Type3268 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParam? Type3268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDetailEnum? Type3269 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContentParam? Type3269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParam? Type3270 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminator? Type3270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParamMode? Type3271 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminatorType? Type3271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContentParamType? Type3272 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContentParamType? Type3272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamType? Type3273 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParamType? Type3273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type3274 { get; set; } + public global::tryAGI.OpenAI.BetaDetailEnum? Type3274 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3275 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParam? Type3275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputVariant2Item2? Type3276 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParamMode? Type3276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContentParam? Type3277 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContentParamType? Type3277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type3278 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamType? Type3278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type3279 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type3279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContentParamType? Type3280 { get; set; } + public global::System.Collections.Generic.IList? Type3280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileDetailEnum? Type3281 { get; set; } + public global::tryAGI.OpenAI.OutputVariant2Item2? Type3281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallType? Type3282 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContentParam? Type3282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallStatus? Type3283 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type3283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallType? Type3284 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type3284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallStatus? Type3285 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContentParamType? Type3285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallAction? Type3286 { get; set; } + public global::tryAGI.OpenAI.BetaFileDetailEnum? Type3286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearch? Type3287 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallType? Type3287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionOpenPage? Type3288 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallStatus? Type3288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionFind? Type3289 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallType? Type3289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminator? Type3290 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallStatus? Type3290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminatorType? Type3291 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallAction? Type3291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionFindType? Type3292 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearch? Type3292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionOpenPageType? Type3293 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionOpenPage? Type3293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearchType? Type3294 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionFind? Type3294 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3295 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminator? Type3295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearchSource? Type3296 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminatorType? Type3296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearchSourceType? Type3297 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionFindType? Type3297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallOutputItemParamType? Type3298 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionOpenPageType? Type3298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotImage? Type3299 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearchType? Type3299 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3300 { get; set; } + public global::System.Collections.Generic.IList? Type3300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallSafetyCheckParam? Type3301 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearchSource? Type3301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotImageType? Type3302 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearchSourceType? Type3302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallType? Type3303 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallOutputItemParamType? Type3303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerAction? Type3304 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotImage? Type3304 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3305 { get; set; } + public global::System.Collections.Generic.IList? Type3305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallStatus? Type3306 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallSafetyCheckParam? Type3306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaClickParam? Type3307 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotImageType? Type3307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDoubleClickAction? Type3308 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallType? Type3308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDragParam? Type3309 { get; set; } + public global::tryAGI.OpenAI.BetaComputerAction? Type3309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaKeyPressAction? Type3310 { get; set; } + public global::System.Collections.Generic.IList? Type3310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMoveParam? Type3311 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallStatus? Type3311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScreenshotParam? Type3312 { get; set; } + public global::tryAGI.OpenAI.BetaClickParam? Type3312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScrollParam? Type3313 { get; set; } + public global::tryAGI.OpenAI.BetaDoubleClickAction? Type3313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTypeParam? Type3314 { get; set; } + public global::tryAGI.OpenAI.BetaDragParam? Type3314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWaitParam? Type3315 { get; set; } + public global::tryAGI.OpenAI.BetaKeyPressAction? Type3315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerActionDiscriminator? Type3316 { get; set; } + public global::tryAGI.OpenAI.BetaMoveParam? Type3316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerActionDiscriminatorType? Type3317 { get; set; } + public global::tryAGI.OpenAI.BetaScreenshotParam? Type3317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWaitParamType? Type3318 { get; set; } + public global::tryAGI.OpenAI.BetaScrollParam? Type3318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTypeParamType? Type3319 { get; set; } + public global::tryAGI.OpenAI.BetaTypeParam? Type3319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScrollParamType? Type3320 { get; set; } + public global::tryAGI.OpenAI.BetaWaitParam? Type3320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScreenshotParamType? Type3321 { get; set; } + public global::tryAGI.OpenAI.BetaComputerActionDiscriminator? Type3321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMoveParamType? Type3322 { get; set; } + public global::tryAGI.OpenAI.BetaComputerActionDiscriminatorType? Type3322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaKeyPressActionType? Type3323 { get; set; } + public global::tryAGI.OpenAI.BetaWaitParamType? Type3323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDragParamType? Type3324 { get; set; } + public global::tryAGI.OpenAI.BetaTypeParamType? Type3324 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3325 { get; set; } + public global::tryAGI.OpenAI.BetaScrollParamType? Type3325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCoordParam? Type3326 { get; set; } + public global::tryAGI.OpenAI.BetaScreenshotParamType? Type3326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDoubleClickActionType? Type3327 { get; set; } + public global::tryAGI.OpenAI.BetaMoveParamType? Type3327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaClickParamType? Type3328 { get; set; } + public global::tryAGI.OpenAI.BetaKeyPressActionType? Type3328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaClickButtonType? Type3329 { get; set; } + public global::tryAGI.OpenAI.BetaDragParamType? Type3329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCallType? Type3330 { get; set; } + public global::System.Collections.Generic.IList? Type3330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCallStatus? Type3331 { get; set; } + public global::tryAGI.OpenAI.BetaCoordParam? Type3331 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3332 { get; set; } + public global::tryAGI.OpenAI.BetaDoubleClickActionType? Type3332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCallResultsVariant1Item? Type3333 { get; set; } + public global::tryAGI.OpenAI.BetaClickParamType? Type3333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageType? Type3334 { get; set; } + public global::tryAGI.OpenAI.BetaClickButtonType? Type3334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageRole? Type3335 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCallType? Type3335 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3336 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCallStatus? Type3336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageContent? Type3337 { get; set; } + public global::System.Collections.Generic.IList? Type3337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessagePhase? Type3338 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCallResultsVariant1Item? Type3338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageStatus? Type3339 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageType? Type3339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContent? Type3340 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageRole? Type3340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRefusalContent? Type3341 { get; set; } + public global::System.Collections.Generic.IList? Type3341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminator? Type3342 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageContent? Type3342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminatorType? Type3343 { get; set; } + public global::tryAGI.OpenAI.BetaMessagePhase? Type3343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRefusalContentType? Type3344 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageStatus? Type3344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentType? Type3345 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContent? Type3345 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3346 { get; set; } + public global::tryAGI.OpenAI.BetaRefusalContent? Type3346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAnnotation? Type3347 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminator? Type3347 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3348 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminatorType? Type3348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLogProb? Type3349 { get; set; } + public global::tryAGI.OpenAI.BetaRefusalContentType? Type3349 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3350 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentType? Type3350 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTopLogProb? Type3351 { get; set; } + public global::System.Collections.Generic.IList? Type3351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationBody? Type3352 { get; set; } + public global::tryAGI.OpenAI.BetaAnnotation? Type3352 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationBody? Type3353 { get; set; } + public global::System.Collections.Generic.IList? Type3353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationBody? Type3354 { get; set; } + public global::tryAGI.OpenAI.BetaLogProb? Type3354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFilePath? Type3355 { get; set; } + public global::System.Collections.Generic.IList? Type3355 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAnnotationDiscriminator? Type3356 { get; set; } + public global::tryAGI.OpenAI.BetaTopLogProb? Type3356 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAnnotationDiscriminatorType? Type3357 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationBody? Type3357 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFilePathType? Type3358 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationBody? Type3358 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationBodyType? Type3359 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationBody? Type3359 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationBodyType? Type3360 { get; set; } + public global::tryAGI.OpenAI.BetaFilePath? Type3360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationBodyType? Type3361 { get; set; } + public global::tryAGI.OpenAI.BetaAnnotationDiscriminator? Type3361 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageType? Type3362 { get; set; } + public global::tryAGI.OpenAI.BetaAnnotationDiscriminatorType? Type3362 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageRole? Type3363 { get; set; } + public global::tryAGI.OpenAI.BetaFilePathType? Type3363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageStatus? Type3364 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationBodyType? Type3364 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3365 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationBodyType? Type3365 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputContent? Type3366 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationBodyType? Type3366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputContentDiscriminator? Type3367 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageType? Type3367 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputContentDiscriminatorType? Type3368 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageRole? Type3368 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEasyInputMessageRole? Type3369 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageStatus? Type3369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type3370 { get; set; } + public global::System.Collections.Generic.IList? Type3370 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEasyInputMessageType? Type3371 { get; set; } + public global::tryAGI.OpenAI.BetaInputContent? Type3371 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactResponseMethodPublicBody? Type3372 { get; set; } + public global::tryAGI.OpenAI.BetaInputContentDiscriminator? Type3372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsCompaction? Type3373 { get; set; } + public global::tryAGI.OpenAI.BetaInputContentDiscriminatorType? Type3373 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheRetentionEnum? Type3374 { get; set; } + public global::tryAGI.OpenAI.BetaEasyInputMessageRole? Type3374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheOptionsParam? Type3375 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type3375 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaServiceTierEnum? Type3376 { get; set; } + public global::tryAGI.OpenAI.BetaEasyInputMessageType? Type3376 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheTTLEnum? Type3377 { get; set; } + public global::tryAGI.OpenAI.BetaCompactResponseMethodPublicBody? Type3377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheModeEnum? Type3378 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsCompaction? Type3378 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsResponses? Type3379 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheRetentionEnum? Type3379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsShared? Type3380 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheOptionsParam? Type3380 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsResponsesEnum? Type3381 { get; set; } + public global::tryAGI.OpenAI.BetaServiceTierEnum? Type3381 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsSharedEnum? Type3382 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheTTLEnum? Type3382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaError? Type3383 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheModeEnum? Type3383 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseItemList? Type3384 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsResponses? Type3384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseItemListObject? Type3385 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsShared? Type3385 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3386 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsResponsesEnum? Type3386 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemResource? Type3387 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsSharedEnum? Type3387 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageResource? Type3388 { get; set; } + public global::tryAGI.OpenAI.BetaError? Type3388 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputResource? Type3389 { get; set; } + public global::tryAGI.OpenAI.BetaResponseItemList? Type3389 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallResource? Type3390 { get; set; } + public global::tryAGI.OpenAI.BetaResponseItemListObject? Type3390 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResource? Type3391 { get; set; } + public global::System.Collections.Generic.IList? Type3391 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessage? Type3392 { get; set; } + public global::tryAGI.OpenAI.BetaItemResource? Type3392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCall? Type3393 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageResource? Type3393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutput? Type3394 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputResource? Type3394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCall? Type3395 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallResource? Type3395 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutput? Type3396 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResource? Type3396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalTools? Type3397 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessage? Type3397 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgram? Type3398 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCall? Type3398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutput? Type3399 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutput? Type3399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionBody? Type3400 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCall? Type3400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCall? Type3401 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutput? Type3401 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutput? Type3402 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalTools? Type3402 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCall? Type3403 { get; set; } + public global::tryAGI.OpenAI.BetaProgram? Type3403 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutput? Type3404 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutput? Type3404 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponseResource? Type3405 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionBody? Type3405 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallResource? Type3406 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCall? Type3406 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutputResource? Type3407 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutput? Type3407 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemResourceDiscriminator? Type3408 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCall? Type3408 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemResourceDiscriminatorType? Type3409 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutput? Type3409 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutputResourceVariant2? Type3410 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponseResource? Type3410 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputStatusEnum? Type3411 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallResource? Type3411 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallResourceVariant2? Type3412 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutputResource? Type3412 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallStatus? Type3413 { get; set; } + public global::tryAGI.OpenAI.BetaItemResourceDiscriminator? Type3413 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponseResourceType? Type3414 { get; set; } + public global::tryAGI.OpenAI.BetaItemResourceDiscriminatorType? Type3414 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputType? Type3415 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutputResourceVariant2? Type3415 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatus? Type3416 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputStatusEnum? Type3416 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallType? Type3417 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallResourceVariant2? Type3417 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallStatus? Type3418 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallStatus? Type3418 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Operation2? Type3419 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponseResourceType? Type3419 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperation? Type3420 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputType? Type3420 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperation? Type3421 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatus? Type3421 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperation? Type3422 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallType? Type3422 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminator? Type3423 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallStatus? Type3423 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminatorType? Type3424 { get; set; } + public global::tryAGI.OpenAI.Operation2? Type3424 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationType? Type3425 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperation? Type3425 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationType? Type3426 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperation? Type3426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationType? Type3427 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperation? Type3427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputType? Type3428 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminator? Type3428 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputStatusEnum? Type3429 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminatorType? Type3429 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3430 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationType? Type3430 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContent? Type3431 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationType? Type3431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Outcome2? Type3432 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationType? Type3432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcome? Type3433 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputType? Type3433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcome? Type3434 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputStatusEnum? Type3434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminator? Type3435 { get; set; } + public global::System.Collections.Generic.IList? Type3435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminatorType? Type3436 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContent? Type3436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeType? Type3437 { get; set; } + public global::tryAGI.OpenAI.Outcome2? Type3437 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeType? Type3438 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcome? Type3438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallType? Type3439 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcome? Type3439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellAction? Type3440 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminator? Type3440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallStatus? Type3441 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminatorType? Type3441 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant16? Type3442 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeType? Type3442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentResource? Type3443 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeType? Type3443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceResource? Type3444 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallType? Type3444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1Discriminator? Type3445 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellAction? Type3445 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1DiscriminatorType? Type3446 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallStatus? Type3446 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceResourceType? Type3447 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant16? Type3447 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentResourceType? Type3448 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentResource? Type3448 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionBodyType? Type3449 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceResource? Type3449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputType? Type3450 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1Discriminator? Type3450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputStatus? Type3451 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1DiscriminatorType? Type3451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramType? Type3452 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceResourceType? Type3452 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsType? Type3453 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentResourceType? Type3453 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageRole? Type3454 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionBodyType? Type3454 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutputType? Type3455 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputType? Type3455 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCallType? Type3456 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputStatus? Type3456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutputType? Type3457 { get; set; } + public global::tryAGI.OpenAI.BetaProgramType? Type3457 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentAction? Type3458 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsType? Type3458 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3459 { get; set; } + public global::tryAGI.OpenAI.BetaMessageRole? Type3459 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallType? Type3460 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutputType? Type3460 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageType? Type3461 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCallType? Type3461 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3462 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutputType? Type3462 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem6? Type3463 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentAction? Type3463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextContent? Type3464 { get; set; } + public global::System.Collections.Generic.IList? Type3464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotContent? Type3465 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallType? Type3465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContent? Type3466 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageType? Type3466 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminator? Type3467 { get; set; } + public global::System.Collections.Generic.IList? Type3467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminatorType? Type3468 { get; set; } + public global::tryAGI.OpenAI.ContentItem6? Type3468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContentType? Type3469 { get; set; } + public global::tryAGI.OpenAI.BetaTextContent? Type3469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotContentType? Type3470 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotContent? Type3470 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextContentType? Type3471 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContent? Type3471 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutput? Type3472 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminator? Type3472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResourceVariant2? Type3473 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminatorType? Type3473 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputType? Type3474 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContentType? Type3474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputStatus? Type3475 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotContentType? Type3475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallResourceVariant2? Type3476 { get; set; } + public global::tryAGI.OpenAI.BetaTextContentType? Type3476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutput? Type3477 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutput? Type3477 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputResourceVariant2? Type3478 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResourceVariant2? Type3478 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallOutputStatus? Type3479 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputType? Type3479 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputType? Type3480 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputStatus? Type3480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputStatus? Type3481 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallResourceVariant2? Type3481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageResourceVariant2? Type3482 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutput? Type3482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactResource? Type3483 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputResourceVariant2? Type3483 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactResourceObject? Type3484 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallOutputStatus? Type3484 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3485 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputType? Type3485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemField? Type3486 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputStatus? Type3486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseUsage? Type3487 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageResourceVariant2? Type3487 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseUsageInputTokensDetails? Type3488 { get; set; } + public global::tryAGI.OpenAI.BetaCompactResource? Type3488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseUsageOutputTokensDetails? Type3489 { get; set; } + public global::tryAGI.OpenAI.BetaCompactResourceObject? Type3489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessage? Type3490 { get; set; } + public global::System.Collections.Generic.IList? Type3490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemFieldDiscriminator? Type3491 { get; set; } + public global::tryAGI.OpenAI.BetaItemField? Type3491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemFieldDiscriminatorType? Type3492 { get; set; } + public global::tryAGI.OpenAI.BetaResponseUsage? Type3492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageType? Type3493 { get; set; } + public global::tryAGI.OpenAI.BetaResponseUsageInputTokensDetails? Type3493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageStatus? Type3494 { get; set; } + public global::tryAGI.OpenAI.BetaResponseUsageOutputTokensDetails? Type3494 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3495 { get; set; } + public global::tryAGI.OpenAI.BetaMessage? Type3495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem7? Type3496 { get; set; } + public global::tryAGI.OpenAI.BetaItemFieldDiscriminator? Type3496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminator? Type3497 { get; set; } + public global::tryAGI.OpenAI.BetaItemFieldDiscriminatorType? Type3497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminatorType? Type3498 { get; set; } + public global::tryAGI.OpenAI.BetaMessageType? Type3498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessagePhase22? Type3499 { get; set; } + public global::tryAGI.OpenAI.BetaMessageStatus? Type3499 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEvent? Type3500 { get; set; } + public global::System.Collections.Generic.IList? Type3500 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEventType? Type3501 { get; set; } + public global::tryAGI.OpenAI.ContentItem7? Type3501 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEvent? Type3502 { get; set; } + public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminator? Type3502 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEventType? Type3503 { get; set; } + public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminatorType? Type3503 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseQueuedEvent? Type3504 { get; set; } + public global::tryAGI.OpenAI.BetaMessagePhase22? Type3504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseQueuedEventType? Type3505 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEvent? Type3505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponse? Type3506 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEventType? Type3506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelResponseProperties? Type3507 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEvent? Type3507 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseProperties? Type3508 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEventType? Type3508 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3? Type3509 { get; set; } + public global::tryAGI.OpenAI.BetaResponseQueuedEvent? Type3509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3Truncation2? Type3510 { get; set; } + public global::tryAGI.OpenAI.BetaResponseQueuedEventType? Type3510 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3Object? Type3511 { get; set; } + public global::tryAGI.OpenAI.BetaResponse? Type3511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3Status? Type3512 { get; set; } + public global::tryAGI.OpenAI.BetaModelResponseProperties? Type3512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorVariant1? Type3513 { get; set; } + public global::tryAGI.OpenAI.BetaResponseProperties? Type3513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetails2? Type3514 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3? Type3514 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetailsReason? Type3515 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3Truncation2? Type3515 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3516 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3Object? Type3516 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputItem? Type3517 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3Status? Type3517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheOptions? Type3518 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorVariant1? Type3518 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModeration? Type3519 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetails2? Type3519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaConversation2? Type3520 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetailsReason? Type3520 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Input5? Type3521 { get; set; } + public global::System.Collections.Generic.IList? Type3521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationResultBody? Type3522 { get; set; } + public global::tryAGI.OpenAI.BetaOutputItem? Type3522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationErrorBody? Type3523 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheOptions? Type3523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationInputDiscriminator? Type3524 { get; set; } + public global::tryAGI.OpenAI.BetaModeration? Type3524 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationInputDiscriminatorType? Type3525 { get; set; } + public global::tryAGI.OpenAI.BetaConversation2? Type3525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Output9? Type3526 { get; set; } + public global::tryAGI.OpenAI.Input5? Type3526 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationOutputDiscriminator? Type3527 { get; set; } + public global::tryAGI.OpenAI.BetaModerationResultBody? Type3527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationOutputDiscriminatorType? Type3528 { get; set; } + public global::tryAGI.OpenAI.BetaModerationErrorBody? Type3528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationErrorBodyType? Type3529 { get; set; } + public global::tryAGI.OpenAI.BetaModerationInputDiscriminator? Type3529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationResultBodyType? Type3530 { get; set; } + public global::tryAGI.OpenAI.BetaModerationInputDiscriminatorType? Type3530 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type3531 { get; set; } + public global::tryAGI.OpenAI.Output9? Type3531 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3532 { get; set; } + public global::tryAGI.OpenAI.BetaModerationOutputDiscriminator? Type3532 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationInputType? Type3533 { get; set; } + public global::tryAGI.OpenAI.BetaModerationOutputDiscriminatorType? Type3533 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputItemDiscriminator? Type3534 { get; set; } + public global::tryAGI.OpenAI.BetaModerationErrorBodyType? Type3534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputItemDiscriminatorType? Type3535 { get; set; } + public global::tryAGI.OpenAI.BetaModerationResultBodyType? Type3535 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorCode? Type3536 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type3536 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptVariant1? Type3537 { get; set; } + public global::System.Collections.Generic.IList? Type3537 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3538 { get; set; } + public global::tryAGI.OpenAI.BetaModerationInputType? Type3538 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaServiceTierEnum2? Type3539 { get; set; } + public global::tryAGI.OpenAI.BetaOutputItemDiscriminator? Type3539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelResponsePropertiesPromptCacheRetention2? Type3540 { get; set; } + public global::tryAGI.OpenAI.BetaOutputItemDiscriminatorType? Type3540 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEvent? Type3541 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorCode? Type3541 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEventType? Type3542 { get; set; } + public global::tryAGI.OpenAI.BetaPromptVariant1? Type3542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEvent? Type3543 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type3543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEventType? Type3544 { get; set; } + public global::tryAGI.OpenAI.BetaServiceTierEnum2? Type3544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEvent? Type3545 { get; set; } + public global::tryAGI.OpenAI.BetaModelResponsePropertiesPromptCacheRetention2? Type3545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEventType? Type3546 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEvent? Type3546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEvent? Type3547 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEventType? Type3547 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEventType? Type3548 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEvent? Type3548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEvent? Type3549 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEventType? Type3549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEventType? Type3550 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEvent? Type3550 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEvent? Type3551 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEventType? Type3551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEventType? Type3552 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEvent? Type3552 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEvent? Type3553 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEventType? Type3553 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEventType? Type3554 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEvent? Type3554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEvent? Type3555 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEventType? Type3555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEventType? Type3556 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEvent? Type3556 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEvent? Type3557 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEventType? Type3557 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEventType? Type3558 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEvent? Type3558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEvent? Type3559 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEventType? Type3559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEventType? Type3560 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEvent? Type3560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEvent? Type3561 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEventType? Type3561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEventType? Type3562 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEvent? Type3562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEvent? Type3563 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEventType? Type3563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEventType? Type3564 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEvent? Type3564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEvent? Type3565 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEventType? Type3565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEventType? Type3566 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEvent? Type3566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEvent? Type3567 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEventType? Type3567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEventType? Type3568 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEvent? Type3568 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEvent? Type3569 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEventType? Type3569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEventType? Type3570 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEvent? Type3570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEvent? Type3571 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEventType? Type3571 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEventType? Type3572 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEvent? Type3572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEvent? Type3573 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEventType? Type3573 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEventType? Type3574 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEvent? Type3574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEvent? Type3575 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEventType? Type3575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventType? Type3576 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEvent? Type3576 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventStatus? Type3577 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEventType? Type3577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPart? Type3578 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEvent? Type3578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPartType? Type3579 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEventType? Type3579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEvent? Type3580 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEvent? Type3580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventType? Type3581 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventType? Type3581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPart? Type3582 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventStatus? Type3582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPartType? Type3583 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPart? Type3583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDoneEvent? Type3584 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPartType? Type3584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDoneEventType? Type3585 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEvent? Type3585 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3586 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventType? Type3586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseLogProb? Type3587 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPart? Type3587 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3588 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPartType? Type3588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseLogProbTopLogprob? Type3589 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDoneEvent? Type3589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDeltaEvent? Type3590 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDoneEventType? Type3590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDeltaEventType? Type3591 { get; set; } + public global::System.Collections.Generic.IList? Type3591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDoneEvent? Type3592 { get; set; } + public global::tryAGI.OpenAI.BetaResponseLogProb? Type3592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDoneEventType? Type3593 { get; set; } + public global::System.Collections.Generic.IList? Type3593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEvent? Type3594 { get; set; } + public global::tryAGI.OpenAI.BetaResponseLogProbTopLogprob? Type3594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEventType? Type3595 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDeltaEvent? Type3595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEvent? Type3596 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDeltaEventType? Type3596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEventType? Type3597 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDoneEvent? Type3597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEvent? Type3598 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDoneEventType? Type3598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEventType? Type3599 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEvent? Type3599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInProgressEvent? Type3600 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEventType? Type3600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInProgressEventType? Type3601 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEvent? Type3601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEvent? Type3602 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEventType? Type3602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEventType? Type3603 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEvent? Type3603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEvent? Type3604 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEventType? Type3604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEventType? Type3605 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInProgressEvent? Type3605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEvent? Type3606 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInProgressEventType? Type3606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEventType? Type3607 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEvent? Type3607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEvent? Type3608 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEventType? Type3608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEventType? Type3609 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEvent? Type3609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEvent? Type3610 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEventType? Type3610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEventType? Type3611 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEvent? Type3611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorEvent? Type3612 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEventType? Type3612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorEventType? Type3613 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEvent? Type3613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCreatedEvent? Type3614 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEventType? Type3614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCreatedEventType? Type3615 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEvent? Type3615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartDoneEvent? Type3616 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEventType? Type3616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartDoneEventType? Type3617 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorEvent? Type3617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputContent? Type3618 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorEventType? Type3618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputContentDiscriminator? Type3619 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCreatedEvent? Type3619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputContentDiscriminatorType? Type3620 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCreatedEventType? Type3620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartAddedEvent? Type3621 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartDoneEvent? Type3621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartAddedEventType? Type3622 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartDoneEventType? Type3622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCompletedEvent? Type3623 { get; set; } + public global::tryAGI.OpenAI.BetaOutputContent? Type3623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCompletedEventType? Type3624 { get; set; } + public global::tryAGI.OpenAI.BetaOutputContentDiscriminator? Type3624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEvent? Type3625 { get; set; } + public global::tryAGI.OpenAI.BetaOutputContentDiscriminatorType? Type3625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEventType? Type3626 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartAddedEvent? Type3626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEvent? Type3627 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartAddedEventType? Type3627 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEventType? Type3628 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCompletedEvent? Type3628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEvent? Type3629 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCompletedEventType? Type3629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEventType? Type3630 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEvent? Type3630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEvent? Type3631 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEventType? Type3631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEventType? Type3632 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEvent? Type3632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEvent? Type3633 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEventType? Type3633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEventType? Type3634 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEvent? Type3634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEvent? Type3635 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEventType? Type3635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEventType? Type3636 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEvent? Type3636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEvent? Type3637 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEventType? Type3637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEventType? Type3638 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEvent? Type3638 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDoneEvent? Type3639 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEventType? Type3639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDoneEventType? Type3640 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEvent? Type3640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDeltaEvent? Type3641 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEventType? Type3641 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDeltaEventType? Type3642 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEvent? Type3642 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseIncompleteEvent? Type3643 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEventType? Type3643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseIncompleteEventType? Type3644 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDoneEvent? Type3644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFailedEvent? Type3645 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDoneEventType? Type3645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFailedEventType? Type3646 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDeltaEvent? Type3646 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEvent? Type3647 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDeltaEventType? Type3647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEventType? Type3648 { get; set; } + public global::tryAGI.OpenAI.BetaResponseIncompleteEvent? Type3648 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEvent? Type3649 { get; set; } + public global::tryAGI.OpenAI.BetaResponseIncompleteEventType? Type3649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEventType? Type3650 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFailedEvent? Type3650 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEvent? Type3651 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFailedEventType? Type3651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEventType? Type3652 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEvent? Type3652 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputAudio? Type3653 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEventType? Type3653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputAudioType? Type3654 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEvent? Type3654 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudio? Type3655 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEventType? Type3655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudioType? Type3656 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEvent? Type3656 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudioInputAudio? Type3657 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEventType? Type3657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudioInputAudioFormat? Type3658 { get; set; } + public global::tryAGI.OpenAI.BetaOutputAudio? Type3658 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputParam? Type3659 { get; set; } + public global::tryAGI.OpenAI.BetaOutputAudioType? Type3659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContent? Type3660 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudio? Type3660 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaIncludeEnum? Type3661 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudioType? Type3661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesServerEvent? Type3662 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudioInputAudio? Type3662 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamEvent? Type3663 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudioInputAudioFormat? Type3663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectCreatedEvent? Type3664 { get; set; } + public global::tryAGI.OpenAI.BetaInputParam? Type3664 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEvent? Type3665 { get; set; } + public global::tryAGI.OpenAI.BetaContent? Type3665 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminator? Type3666 { get; set; } + public global::tryAGI.OpenAI.BetaIncludeEnum? Type3666 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminatorType? Type3667 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesServerEvent? Type3667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEventType? Type3668 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamEvent? Type3668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEventError? Type3669 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectCreatedEvent? Type3669 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEventErrorCode? Type3670 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEvent? Type3670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectCreatedEventType? Type3671 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminator? Type3671 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminator? Type3672 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminatorType? Type3672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminatorType? Type3673 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEventType? Type3673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEvent? Type3674 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEventError? Type3674 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreate? Type3675 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEventErrorCode? Type3675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectEvent? Type3676 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectCreatedEventType? Type3676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminator? Type3677 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminator? Type3677 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminatorType? Type3678 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminatorType? Type3678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectEventType? Type3679 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEvent? Type3679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1? Type3680 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreate? Type3680 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1Type? Type3681 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectEvent? Type3681 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponse? Type3682 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminator? Type3682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateModelResponseProperties? Type3683 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminatorType? Type3683 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponseVariant3? Type3684 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectEventType? Type3684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponseVariant3Truncation2? Type3685 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1? Type3685 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3686 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1Type? Type3686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationParam? Type3687 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponse? Type3687 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamOptionsVariant1? Type3688 { get; set; } + public global::tryAGI.OpenAI.BetaCreateModelResponseProperties? Type3688 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3689 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponseVariant3? Type3689 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContextManagementParam? Type3690 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponseVariant3Truncation2? Type3690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentParam? Type3691 { get; set; } + public global::System.Collections.Generic.IList? Type3691 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationPolicyParam? Type3692 { get; set; } + public global::tryAGI.OpenAI.BetaModerationParam? Type3692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationConfigParam? Type3693 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamOptionsVariant1? Type3693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationMode? Type3694 { get; set; } + public global::System.Collections.Generic.IList? Type3694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateModelResponsePropertiesVariant2? Type3695 { get; set; } + public global::tryAGI.OpenAI.BetaContextManagementParam? Type3695 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateBatchRequest? Type3696 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentParam? Type3696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateBatchRequestEndpoint? Type3697 { get; set; } + public global::tryAGI.OpenAI.BetaModerationPolicyParam? Type3697 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateBatchRequestCompletionWindow? Type3698 { get; set; } + public global::tryAGI.OpenAI.BetaModerationConfigParam? Type3698 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateChatCompletionRequest? Type3699 { get; set; } + public global::tryAGI.OpenAI.BetaModerationMode? Type3699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateConversationItemsRequest? Type3700 { get; set; } + public global::tryAGI.OpenAI.BetaCreateModelResponsePropertiesVariant2? Type3700 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateEvalRequest? Type3701 { get; set; } + public global::tryAGI.OpenAI.UpdateChatCompletionRequest? Type3701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysCreateRequest? Type3702 { get; set; } + public global::tryAGI.OpenAI.CreateConversationItemsRequest? Type3702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAssistantsOrder? Type3703 { get; set; } + public global::tryAGI.OpenAI.UpdateEvalRequest? Type3703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListChatCompletionsOrder? Type3704 { get; set; } + public global::tryAGI.OpenAI.AdminApiKeysCreateRequest? Type3704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetChatCompletionMessagesOrder? Type3705 { get; set; } + public global::tryAGI.OpenAI.ListAssistantsOrder? Type3705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListContainersOrder? Type3706 { get; set; } + public global::tryAGI.OpenAI.ListChatCompletionsOrder? Type3706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListContainerFilesOrder? Type3707 { get; set; } + public global::tryAGI.OpenAI.GetChatCompletionMessagesOrder? Type3707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListConversationItemsOrder? Type3708 { get; set; } + public global::tryAGI.OpenAI.ListContainersOrder? Type3708 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListEvalsOrder? Type3709 { get; set; } + public global::tryAGI.OpenAI.ListContainerFilesOrder? Type3709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListEvalsOrderBy? Type3710 { get; set; } + public global::tryAGI.OpenAI.ListConversationItemsOrder? Type3710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunsOrder? Type3711 { get; set; } + public global::tryAGI.OpenAI.ListEvalsOrder? Type3711 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunsStatus? Type3712 { get; set; } + public global::tryAGI.OpenAI.ListEvalsOrderBy? Type3712 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunOutputItemsStatus? Type3713 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunsOrder? Type3713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunOutputItemsOrder? Type3714 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunsStatus? Type3714 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesOrder? Type3715 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunOutputItemsStatus? Type3715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionsOrder? Type3716 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunOutputItemsOrder? Type3716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysListOrder? Type3717 { get; set; } + public global::tryAGI.OpenAI.ListFilesOrder? Type3717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsEffectiveAt? Type3718 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionsOrder? Type3718 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3719 { get; set; } + public global::tryAGI.OpenAI.AdminApiKeysListOrder? Type3719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListOrganizationCertificatesOrder? Type3720 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsEffectiveAt? Type3720 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3721 { get; set; } + public global::System.Collections.Generic.IList? Type3721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetCertificateIncludeItem? Type3722 { get; set; } + public global::tryAGI.OpenAI.ListOrganizationCertificatesOrder? Type3722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCostsBucketWidth? Type3723 { get; set; } + public global::System.Collections.Generic.IList? Type3723 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3724 { get; set; } + public global::tryAGI.OpenAI.GetCertificateIncludeItem? Type3724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCostsGroupByItem? Type3725 { get; set; } + public global::tryAGI.OpenAI.UsageCostsBucketWidth? Type3725 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListGroupsOrder? Type3726 { get; set; } + public global::System.Collections.Generic.IList? Type3726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListGroupRoleAssignmentsOrder? Type3727 { get; set; } + public global::tryAGI.OpenAI.UsageCostsGroupByItem? Type3727 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListGroupUsersOrder? Type3728 { get; set; } + public global::tryAGI.OpenAI.ListGroupsOrder? Type3728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectApiKeysOwnerProjectAccess? Type3729 { get; set; } + public global::tryAGI.OpenAI.ListGroupRoleAssignmentsOrder? Type3729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectCertificatesOrder? Type3730 { get; set; } + public global::tryAGI.OpenAI.ListGroupUsersOrder? Type3730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectGroupsOrder? Type3731 { get; set; } + public global::tryAGI.OpenAI.ListProjectApiKeysOwnerProjectAccess? Type3731 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RetrieveProjectGroupGroupType? Type3732 { get; set; } + public global::tryAGI.OpenAI.ListProjectCertificatesOrder? Type3732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectSpendAlertsOrder? Type3733 { get; set; } + public global::tryAGI.OpenAI.ListProjectGroupsOrder? Type3733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRolesOrder? Type3734 { get; set; } + public global::tryAGI.OpenAI.RetrieveProjectGroupGroupType? Type3734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListOrganizationSpendAlertsOrder? Type3735 { get; set; } + public global::tryAGI.OpenAI.ListProjectSpendAlertsOrder? Type3735 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesBucketWidth? Type3736 { get; set; } + public global::tryAGI.OpenAI.ListRolesOrder? Type3736 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3737 { get; set; } + public global::tryAGI.OpenAI.ListOrganizationSpendAlertsOrder? Type3737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesGroupByItem? Type3738 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesBucketWidth? Type3738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? Type3739 { get; set; } + public global::System.Collections.Generic.IList? Type3739 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3740 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesGroupByItem? Type3740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem? Type3741 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? Type3741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsBucketWidth? Type3742 { get; set; } + public global::System.Collections.Generic.IList? Type3742 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3743 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem? Type3743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsGroupByItem? Type3744 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsBucketWidth? Type3744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsBucketWidth? Type3745 { get; set; } + public global::System.Collections.Generic.IList? Type3745 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3746 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsGroupByItem? Type3746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsGroupByItem? Type3747 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsBucketWidth? Type3747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsBucketWidth? Type3748 { get; set; } + public global::System.Collections.Generic.IList? Type3748 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3749 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsGroupByItem? Type3749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsGroupByItem? Type3750 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsBucketWidth? Type3750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsBucketWidth? Type3751 { get; set; } + public global::System.Collections.Generic.IList? Type3751 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3752 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsGroupByItem? Type3752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsGroupByItem? Type3753 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsBucketWidth? Type3753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesBucketWidth? Type3754 { get; set; } + public global::System.Collections.Generic.IList? Type3754 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3755 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsGroupByItem? Type3755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesSource? Type3756 { get; set; } + public global::tryAGI.OpenAI.UsageImagesBucketWidth? Type3756 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3757 { get; set; } + public global::System.Collections.Generic.IList? Type3757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesSize? Type3758 { get; set; } + public global::tryAGI.OpenAI.UsageImagesSource? Type3758 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3759 { get; set; } + public global::System.Collections.Generic.IList? Type3759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesGroupByItem? Type3760 { get; set; } + public global::tryAGI.OpenAI.UsageImagesSize? Type3760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsBucketWidth? Type3761 { get; set; } + public global::System.Collections.Generic.IList? Type3761 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3762 { get; set; } + public global::tryAGI.OpenAI.UsageImagesGroupByItem? Type3762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsGroupByItem? Type3763 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsBucketWidth? Type3763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresBucketWidth? Type3764 { get; set; } + public global::System.Collections.Generic.IList? Type3764 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3765 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsGroupByItem? Type3765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresGroupByItem? Type3766 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresBucketWidth? Type3766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsBucketWidth? Type3767 { get; set; } + public global::System.Collections.Generic.IList? Type3767 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3768 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresGroupByItem? Type3768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsContextLevel? Type3769 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsBucketWidth? Type3769 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3770 { get; set; } + public global::System.Collections.Generic.IList? Type3770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsGroupByItem? Type3771 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsContextLevel? Type3771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListUserRoleAssignmentsOrder? Type3772 { get; set; } + public global::System.Collections.Generic.IList? Type3772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectGroupRoleAssignmentsOrder? Type3773 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsGroupByItem? Type3773 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectRolesOrder? Type3774 { get; set; } + public global::tryAGI.OpenAI.ListUserRoleAssignmentsOrder? Type3774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectUserRoleAssignmentsOrder? Type3775 { get; set; } + public global::tryAGI.OpenAI.ListProjectGroupRoleAssignmentsOrder? Type3775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListInputItemsOrder? Type3776 { get; set; } + public global::tryAGI.OpenAI.ListProjectRolesOrder? Type3776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListMessagesOrder? Type3777 { get; set; } + public global::tryAGI.OpenAI.ListProjectUserRoleAssignmentsOrder? Type3777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunsOrder? Type3778 { get; set; } + public global::tryAGI.OpenAI.ListInputItemsOrder? Type3778 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3779 { get; set; } + public global::tryAGI.OpenAI.ListMessagesOrder? Type3779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateRunIncludeItem? Type3780 { get; set; } + public global::tryAGI.OpenAI.ListRunsOrder? Type3780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsOrder? Type3781 { get; set; } + public global::System.Collections.Generic.IList? Type3781 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3782 { get; set; } + public global::tryAGI.OpenAI.CreateRunIncludeItem? Type3782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsIncludeItem? Type3783 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsOrder? Type3783 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3784 { get; set; } + public global::System.Collections.Generic.IList? Type3784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetRunStepIncludeItem? Type3785 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsIncludeItem? Type3785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoresOrder? Type3786 { get; set; } + public global::System.Collections.Generic.IList? Type3786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchOrder? Type3787 { get; set; } + public global::tryAGI.OpenAI.GetRunStepIncludeItem? Type3787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchFilter? Type3788 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoresOrder? Type3788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesOrder? Type3789 { get; set; } + public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchOrder? Type3789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesFilter? Type3790 { get; set; } + public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchFilter? Type3790 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3791 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesOrder? Type3791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponseOpenaiBetaItem? Type3792 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesFilter? Type3792 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3793 { get; set; } + public global::System.Collections.Generic.IList? Type3793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaGetResponseOpenaiBetaItem? Type3794 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponseOpenaiBetaItem? Type3794 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3795 { get; set; } + public global::System.Collections.Generic.IList? Type3795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDeleteResponseOpenaiBetaItem? Type3796 { get; set; } + public global::tryAGI.OpenAI.BetaGetResponseOpenaiBetaItem? Type3796 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3797 { get; set; } + public global::System.Collections.Generic.IList? Type3797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCancelResponseOpenaiBetaItem? Type3798 { get; set; } + public global::tryAGI.OpenAI.BetaDeleteResponseOpenaiBetaItem? Type3798 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3799 { get; set; } + public global::System.Collections.Generic.IList? Type3799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactconversationOpenaiBetaItem? Type3800 { get; set; } + public global::tryAGI.OpenAI.BetaCancelResponseOpenaiBetaItem? Type3800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaListInputItemsOrder? Type3801 { get; set; } + public global::System.Collections.Generic.IList? Type3801 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3802 { get; set; } + public global::tryAGI.OpenAI.BetaCompactconversationOpenaiBetaItem? Type3802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaListInputItemsOpenaiBetaItem? Type3803 { get; set; } + public global::tryAGI.OpenAI.BetaListInputItemsOrder? Type3803 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3804 { get; set; } + public global::System.Collections.Generic.IList? Type3804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaGetinputtokencountsOpenaiBetaItem? Type3805 { get; set; } + public global::tryAGI.OpenAI.BetaListInputItemsOpenaiBetaItem? Type3805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3806 { get; set; } + public global::System.Collections.Generic.IList? Type3806 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteEvalResponse? Type3807 { get; set; } + public global::tryAGI.OpenAI.BetaGetinputtokencountsOpenaiBetaItem? Type3807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteEvalRunResponse? Type3808 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type3808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysDeleteResponse? Type3809 { get; set; } + public global::tryAGI.OpenAI.DeleteEvalResponse? Type3809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysDeleteResponseObject? Type3810 { get; set; } + public global::tryAGI.OpenAI.DeleteEvalRunResponse? Type3810 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.AdminApiKeysDeleteResponse? Type3811 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.AdminApiKeysDeleteResponseObject? Type3812 { get; set; } /// /// @@ -15305,7 +15313,7 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType8 { get; set; } + public global::System.Collections.Generic.List? ListType8 { get; set; } /// /// /// diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItem.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchError.Json.g.cs similarity index 88% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItem.Json.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchError.Json.g.cs index 90c75acf0..9c088693d 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItem.Json.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchError.Json.g.cs @@ -2,7 +2,7 @@ namespace tryAGI.OpenAI { - public sealed partial class BatchErrorsDataItem + public sealed partial class BatchError { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -47,20 +47,20 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::tryAGI.OpenAI.BatchErrorsDataItem? FromJson( + public static global::tryAGI.OpenAI.BatchError? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::tryAGI.OpenAI.BatchErrorsDataItem), - jsonSerializerContext) as global::tryAGI.OpenAI.BatchErrorsDataItem; + typeof(global::tryAGI.OpenAI.BatchError), + jsonSerializerContext) as global::tryAGI.OpenAI.BatchError; } /// /// Deserializes a JSON string using the generated default JsonSerializerContext. /// - public static global::tryAGI.OpenAI.BatchErrorsDataItem? FromJson( + public static global::tryAGI.OpenAI.BatchError? FromJson( string json) { return FromJson( @@ -75,7 +75,7 @@ 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.BatchErrorsDataItem? FromJson( + public static global::tryAGI.OpenAI.BatchError? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { @@ -86,7 +86,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -94,20 +94,20 @@ 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.BatchErrorsDataItem), - jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.BatchErrorsDataItem; + typeof(global::tryAGI.OpenAI.BatchError), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.BatchError; } /// /// Deserializes a JSON stream using the generated default JsonSerializerContext. /// - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream) { return FromJsonStreamAsync( @@ -122,7 +122,7 @@ 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) { @@ -133,7 +133,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - 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.BatchErrorsDataItem.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchError.g.cs similarity index 92% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItem.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchError.g.cs index b0a8c5c65..ee379e823 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItem.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchError.g.cs @@ -6,7 +6,7 @@ namespace tryAGI.OpenAI /// /// /// - public sealed partial class BatchErrorsDataItem + public sealed partial class BatchError { /// /// An error code identifying the error type. @@ -39,7 +39,7 @@ public sealed partial class BatchErrorsDataItem 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. /// /// /// An error code identifying the error type. @@ -52,7 +52,7 @@ public sealed partial class BatchErrorsDataItem #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif - public BatchErrorsDataItem( + public BatchError( string? code, string? message, string? param, @@ -65,9 +65,9 @@ public BatchErrorsDataItem( } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public BatchErrorsDataItem() + public BatchError() { } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemLine.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorLine.Json.g.cs similarity index 88% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemLine.Json.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorLine.Json.g.cs index 7e8f3e680..bac881cdb 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemLine.Json.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorLine.Json.g.cs @@ -2,7 +2,7 @@ namespace tryAGI.OpenAI { - public sealed partial class BatchErrorsDataItemLine + public sealed partial class BatchErrorLine { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -47,20 +47,20 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::tryAGI.OpenAI.BatchErrorsDataItemLine? FromJson( + public static global::tryAGI.OpenAI.BatchErrorLine? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::tryAGI.OpenAI.BatchErrorsDataItemLine), - jsonSerializerContext) as global::tryAGI.OpenAI.BatchErrorsDataItemLine; + typeof(global::tryAGI.OpenAI.BatchErrorLine), + jsonSerializerContext) as global::tryAGI.OpenAI.BatchErrorLine; } /// /// Deserializes a JSON string using the generated default JsonSerializerContext. /// - public static global::tryAGI.OpenAI.BatchErrorsDataItemLine? FromJson( + public static global::tryAGI.OpenAI.BatchErrorLine? FromJson( string json) { return FromJson( @@ -75,7 +75,7 @@ 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.BatchErrorsDataItemLine? FromJson( + public static global::tryAGI.OpenAI.BatchErrorLine? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { @@ -86,7 +86,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -94,20 +94,20 @@ 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.BatchErrorsDataItemLine), - jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.BatchErrorsDataItemLine; + typeof(global::tryAGI.OpenAI.BatchErrorLine), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.BatchErrorLine; } /// /// Deserializes a JSON stream using the generated default JsonSerializerContext. /// - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream) { return FromJsonStreamAsync( @@ -122,7 +122,7 @@ 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) { @@ -133,7 +133,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - 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.BatchErrorsDataItemLine.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorLine.g.cs similarity index 89% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemLine.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorLine.g.cs index c316a3680..db49fca73 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemLine.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorLine.g.cs @@ -6,7 +6,7 @@ namespace tryAGI.OpenAI /// /// /// - public sealed partial class BatchErrorsDataItemLine + public sealed partial class BatchErrorLine { /// diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ProjectServiceAccountApiKeyCreateRequest.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorParam.Json.g.cs similarity index 85% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ProjectServiceAccountApiKeyCreateRequest.Json.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorParam.Json.g.cs index db6c14cd1..a8a15accb 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ProjectServiceAccountApiKeyCreateRequest.Json.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorParam.Json.g.cs @@ -2,7 +2,7 @@ namespace tryAGI.OpenAI { - public sealed partial class ProjectServiceAccountApiKeyCreateRequest + public sealed partial class BatchErrorParam { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -47,20 +47,20 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest? FromJson( + public static global::tryAGI.OpenAI.BatchErrorParam? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest), - jsonSerializerContext) as global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest; + typeof(global::tryAGI.OpenAI.BatchErrorParam), + jsonSerializerContext) as global::tryAGI.OpenAI.BatchErrorParam; } /// /// Deserializes a JSON string using the generated default JsonSerializerContext. /// - public static global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest? FromJson( + public static global::tryAGI.OpenAI.BatchErrorParam? FromJson( string json) { return FromJson( @@ -75,7 +75,7 @@ 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.ProjectServiceAccountApiKeyCreateRequest? FromJson( + public static global::tryAGI.OpenAI.BatchErrorParam? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { @@ -86,7 +86,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -94,20 +94,20 @@ 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.ProjectServiceAccountApiKeyCreateRequest), - jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest; + typeof(global::tryAGI.OpenAI.BatchErrorParam), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.BatchErrorParam; } /// /// Deserializes a JSON stream using the generated default JsonSerializerContext. /// - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream) { return FromJsonStreamAsync( @@ -122,7 +122,7 @@ 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) { @@ -133,7 +133,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - 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.BatchErrorsDataItemParam.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorParam.g.cs similarity index 89% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemParam.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorParam.g.cs index db743ed00..c79ffd500 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemParam.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorParam.g.cs @@ -6,7 +6,7 @@ namespace tryAGI.OpenAI /// /// /// - public sealed partial class BatchErrorsDataItemParam + public sealed partial class BatchErrorParam { /// diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrors.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrors.g.cs index f4bd5c2a0..2f0be465f 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrors.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrors.g.cs @@ -18,7 +18,7 @@ public sealed partial class BatchErrors /// /// [global::System.Text.Json.Serialization.JsonPropertyName("data")] - public global::System.Collections.Generic.IList? Data { get; set; } + public global::System.Collections.Generic.IList? Data { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -38,7 +38,7 @@ public sealed partial class BatchErrors #endif public BatchErrors( string? @object, - global::System.Collections.Generic.IList? data) + global::System.Collections.Generic.IList? data) { this.Object = @object; this.Data = data; diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateProjectServiceAccountApiKeyBody.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateProjectServiceAccountApiKeyBody.Json.g.cs new file mode 100644 index 000000000..2e2e5367f --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateProjectServiceAccountApiKeyBody.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace tryAGI.OpenAI +{ + public sealed partial class CreateProjectServiceAccountApiKeyBody + { + /// + /// 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 generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::tryAGI.OpenAI.SourceGenerationContext.Default); + } + + /// + /// 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) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::tryAGI.OpenAI.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody), + jsonSerializerContext) as global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody? FromJson( + string json) + { + return FromJson( + json, + global::tryAGI.OpenAI.SourceGenerationContext.Default); + } + + /// + /// 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.CreateProjectServiceAccountApiKeyBody? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::tryAGI.OpenAI.SourceGenerationContext.Default); + } + + 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.CreateProjectServiceAccountApiKeyBody), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::tryAGI.OpenAI.SourceGenerationContext.Default); + } + + /// + /// 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) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::tryAGI.OpenAI.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ProjectServiceAccountApiKeyCreateRequest.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateProjectServiceAccountApiKeyBody.g.cs similarity index 76% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ProjectServiceAccountApiKeyCreateRequest.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateProjectServiceAccountApiKeyBody.g.cs index 0135fbd91..c038635d5 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ProjectServiceAccountApiKeyCreateRequest.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateProjectServiceAccountApiKeyBody.g.cs @@ -4,9 +4,9 @@ namespace tryAGI.OpenAI { /// - /// + /// The service account API key create request payload. /// - public sealed partial class ProjectServiceAccountApiKeyCreateRequest + public sealed partial class CreateProjectServiceAccountApiKeyBody { /// /// API key name. @@ -27,7 +27,7 @@ public sealed partial class ProjectServiceAccountApiKeyCreateRequest 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. /// /// /// API key name. @@ -38,7 +38,7 @@ public sealed partial class ProjectServiceAccountApiKeyCreateRequest #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif - public ProjectServiceAccountApiKeyCreateRequest( + public CreateProjectServiceAccountApiKeyBody( string? name, global::System.Collections.Generic.IList? scopes) { @@ -47,9 +47,9 @@ public ProjectServiceAccountApiKeyCreateRequest( } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public ProjectServiceAccountApiKeyCreateRequest() + public CreateProjectServiceAccountApiKeyBody() { } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemParam.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBody.Json.g.cs similarity index 88% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemParam.Json.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBody.Json.g.cs index cf19e50e7..61fe98e77 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.BatchErrorsDataItemParam.Json.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBody.Json.g.cs @@ -2,7 +2,7 @@ namespace tryAGI.OpenAI { - public sealed partial class BatchErrorsDataItemParam + public sealed partial class ServiceAccountApiKeyBody { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -47,20 +47,20 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::tryAGI.OpenAI.BatchErrorsDataItemParam? FromJson( + public static global::tryAGI.OpenAI.ServiceAccountApiKeyBody? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::tryAGI.OpenAI.BatchErrorsDataItemParam), - jsonSerializerContext) as global::tryAGI.OpenAI.BatchErrorsDataItemParam; + typeof(global::tryAGI.OpenAI.ServiceAccountApiKeyBody), + jsonSerializerContext) as global::tryAGI.OpenAI.ServiceAccountApiKeyBody; } /// /// Deserializes a JSON string using the generated default JsonSerializerContext. /// - public static global::tryAGI.OpenAI.BatchErrorsDataItemParam? FromJson( + public static global::tryAGI.OpenAI.ServiceAccountApiKeyBody? FromJson( string json) { return FromJson( @@ -75,7 +75,7 @@ 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.BatchErrorsDataItemParam? FromJson( + public static global::tryAGI.OpenAI.ServiceAccountApiKeyBody? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { @@ -86,7 +86,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -94,20 +94,20 @@ 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.BatchErrorsDataItemParam), - jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.BatchErrorsDataItemParam; + typeof(global::tryAGI.OpenAI.ServiceAccountApiKeyBody), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.ServiceAccountApiKeyBody; } /// /// Deserializes a JSON stream using the generated default JsonSerializerContext. /// - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream) { return FromJsonStreamAsync( @@ -122,7 +122,7 @@ 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) { @@ -133,7 +133,7 @@ public string ToJson( global::tryAGI.OpenAI.SourceGenerationContext.Default); } - 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.ServiceAccountApiKeyBody.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBody.g.cs new file mode 100644 index 000000000..964c4bf60 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBody.g.cs @@ -0,0 +1,98 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// + /// + public sealed partial class ServiceAccountApiKeyBody + { + /// + /// The object type, which is always `organization.project.service_account.api_key`
+ /// Default Value: organization.project.service_account.api_key + ///
+ /// global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject.OrganizationProjectServiceAccountApiKey + [global::System.Text.Json.Serialization.JsonPropertyName("object")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.ServiceAccountApiKeyBodyObjectJsonConverter))] + public global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject Object { get; set; } = global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject.OrganizationProjectServiceAccountApiKey; + + /// + /// The unredacted API key value. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("value")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Value { get; set; } + + /// + /// The name of the API key. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Name { get; set; } + + /// + /// The Unix timestamp (in seconds) when the API key was created. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] + [global::System.Text.Json.Serialization.JsonRequired] + public required int CreatedAt { get; set; } + + /// + /// The identifier of the API key. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Id { 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. + /// + /// + /// The unredacted API key value. + /// + /// + /// The name of the API key. + /// + /// + /// The Unix timestamp (in seconds) when the API key was created. + /// + /// + /// The identifier of the API key. + /// + /// + /// The object type, which is always `organization.project.service_account.api_key`
+ /// Default Value: organization.project.service_account.api_key + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public ServiceAccountApiKeyBody( + string value, + string name, + int createdAt, + string id, + global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject @object = global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject.OrganizationProjectServiceAccountApiKey) + { + this.Object = @object; + this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value)); + this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name)); + this.CreatedAt = createdAt; + this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id)); + } + + /// + /// Initializes a new instance of the class. + /// + public ServiceAccountApiKeyBody() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBodyObject.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBodyObject.g.cs new file mode 100644 index 000000000..6777b523f --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.ServiceAccountApiKeyBodyObject.g.cs @@ -0,0 +1,46 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// The object type, which is always `organization.project.service_account.api_key`
+ /// Default Value: organization.project.service_account.api_key + ///
+ public enum ServiceAccountApiKeyBodyObject + { + /// + /// + /// + OrganizationProjectServiceAccountApiKey, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class ServiceAccountApiKeyBodyObjectExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this ServiceAccountApiKeyBodyObject value) + { + return value switch + { + ServiceAccountApiKeyBodyObject.OrganizationProjectServiceAccountApiKey => "organization.project.service_account.api_key", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static ServiceAccountApiKeyBodyObject? ToEnum(string value) + { + return value switch + { + "organization.project.service_account.api_key" => ServiceAccountApiKeyBodyObject.OrganizationProjectServiceAccountApiKey, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.ProjectsClient.CreateProjectServiceAccountApiKey.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.OpenAiClient.CreateProjectServiceAccountApiKey.g.cs similarity index 93% rename from src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.ProjectsClient.CreateProjectServiceAccountApiKey.g.cs rename to src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.OpenAiClient.CreateProjectServiceAccountApiKey.g.cs index 08d2d0952..a820f79c2 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.ProjectsClient.CreateProjectServiceAccountApiKey.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.OpenAiClient.CreateProjectServiceAccountApiKey.g.cs @@ -3,7 +3,7 @@ namespace tryAGI.OpenAI { - public partial class ProjectsClient + public partial class OpenAiClient { @@ -29,13 +29,13 @@ partial void PrepareCreateProjectServiceAccountApiKeyArguments( global::System.Net.Http.HttpClient httpClient, ref string projectId, ref string serviceAccountId, - global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest request); + global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody request); partial void PrepareCreateProjectServiceAccountApiKeyRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string projectId, string serviceAccountId, - global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest request); + global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody request); partial void ProcessCreateProjectServiceAccountApiKeyResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -48,17 +48,21 @@ partial void ProcessCreateProjectServiceAccountApiKeyResponseContent( /// /// Creates an API key for a service account in the project. /// - /// - /// + /// + /// The ID of the project. + /// + /// + /// The ID of the service account. + /// /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( + public async global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( string projectId, string serviceAccountId, - global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest request, + global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody request, global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { @@ -76,17 +80,21 @@ partial void ProcessCreateProjectServiceAccountApiKeyResponseContent( /// /// Creates an API key for a service account in the project. /// - /// - /// + /// + /// The ID of the project. + /// + /// + /// The ID of the service account. + /// /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> CreateProjectServiceAccountApiKeyAsResponseAsync( + public async global::System.Threading.Tasks.Task> CreateProjectServiceAccountApiKeyAsResponseAsync( string projectId, string serviceAccountId, - global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest request, + global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody request, global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { @@ -377,9 +385,9 @@ partial void ProcessCreateProjectServiceAccountApiKeyResponseContent( { __response.EnsureSuccessStatusCode(); - var __value = global::tryAGI.OpenAI.ProjectServiceAccountApiKey.FromJson(__content, JsonSerializerContext) ?? + var __value = global::tryAGI.OpenAI.ServiceAccountApiKeyBody.FromJson(__content, JsonSerializerContext) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); - return new global::tryAGI.OpenAI.AutoSDKHttpResponse( + return new global::tryAGI.OpenAI.AutoSDKHttpResponse( statusCode: __response.StatusCode, headers: global::tryAGI.OpenAI.AutoSDKHttpResponse.CreateHeaders(__response), requestUri: __response.RequestMessage?.RequestUri, @@ -409,9 +417,9 @@ partial void ProcessCreateProjectServiceAccountApiKeyResponseContent( #endif ).ConfigureAwait(false); - var __value = await global::tryAGI.OpenAI.ProjectServiceAccountApiKey.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ?? + var __value = await global::tryAGI.OpenAI.ServiceAccountApiKeyBody.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ?? throw new global::System.InvalidOperationException("Response deserialization failed."); - return new global::tryAGI.OpenAI.AutoSDKHttpResponse( + return new global::tryAGI.OpenAI.AutoSDKHttpResponse( statusCode: __response.StatusCode, headers: global::tryAGI.OpenAI.AutoSDKHttpResponse.CreateHeaders(__response), requestUri: __response.RequestMessage?.RequestUri, @@ -454,8 +462,12 @@ partial void ProcessCreateProjectServiceAccountApiKeyResponseContent( /// /// Creates an API key for a service account in the project. /// - /// - /// + /// + /// The ID of the project. + /// + /// + /// The ID of the service account. + /// /// /// API key name. /// @@ -465,7 +477,7 @@ partial void ProcessCreateProjectServiceAccountApiKeyResponseContent( /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( + public async global::System.Threading.Tasks.Task CreateProjectServiceAccountApiKeyAsync( string projectId, string serviceAccountId, string? name = default, @@ -473,7 +485,7 @@ partial void ProcessCreateProjectServiceAccountApiKeyResponseContent( global::tryAGI.OpenAI.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { - var __request = new global::tryAGI.OpenAI.ProjectServiceAccountApiKeyCreateRequest + var __request = new global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody { Name = name, Scopes = scopes, diff --git a/src/libs/tryAGI.OpenAI/openapi.yaml b/src/libs/tryAGI.OpenAI/openapi.yaml index 7bd1598f2..dc4252336 100644 --- a/src/libs/tryAGI.OpenAI/openapi.yaml +++ b/src/libs/tryAGI.OpenAI/openapi.yaml @@ -2516,57 +2516,7 @@ paths: content: application/json: schema: - type: object - required: - - input_file_id - - endpoint - - completion_window - properties: - input_file_id: - type: string - description: > - The ID of an uploaded file that contains requests for the - new batch. - - - See [upload file](/docs/api-reference/files/create) for how - to upload a file. - - - Your input file must be formatted as a [JSONL - file](/docs/api-reference/batch/request-input), and must be - uploaded with the purpose `batch`. The file can contain up - to 50,000 requests, and can be up to 200 MB in size. - endpoint: - type: string - enum: - - /v1/responses - - /v1/chat/completions - - /v1/embeddings - - /v1/completions - - /v1/moderations - - /v1/images/generations - - /v1/images/edits - - /v1/videos - description: >- - The endpoint to be used for all requests in the batch. - Currently `/v1/responses`, `/v1/chat/completions`, - `/v1/embeddings`, `/v1/completions`, `/v1/moderations`, - `/v1/images/generations`, `/v1/images/edits`, and - `/v1/videos` are supported. Note that `/v1/embeddings` - batches are also restricted to a maximum of 50,000 embedding - inputs across all requests in the batch. - completion_window: - type: string - enum: - - 24h - description: >- - The time frame within which the batch should be processed. - Currently only `24h` is supported. - metadata: - $ref: '#/components/schemas/Metadata' - output_expires_after: - $ref: '#/components/schemas/BatchFileExpirationAfter' + $ref: '#/components/schemas/CreateBatchRequest' responses: '200': description: Batch created successfully. @@ -21640,141 +21590,6 @@ paths: "id": "svc_acct_abc", "deleted": true } - /organization/projects/{project_id}/service_accounts/{service_account_id}/api_keys: - post: - security: - - AdminApiKeyAuth: [] - summary: Creates an API key for a service account in the project. - operationId: create-project-service-account-api-key - tags: - - Projects - parameters: - - name: project_id - in: path - description: The ID of the project. - required: true - schema: - type: string - - name: service_account_id - in: path - description: The ID of the service account. - required: true - schema: - type: string - requestBody: - description: The service account API key create request payload. - content: - application/json: - schema: - $ref: '#/components/schemas/ProjectServiceAccountApiKeyCreateRequest' - responses: - '200': - description: Service account API key created successfully. - content: - application/json: - schema: - $ref: '#/components/schemas/ProjectServiceAccountApiKey' - x-oaiMeta: - name: Create project service account API key - group: administration - examples: - request: - curl: > - curl -X POST - https://api.openai.com/v1/organization/projects/proj_abc/service_accounts/svc_acct_abc/api_keys - \ - -H "Authorization: Bearer $OPENAI_ADMIN_KEY" \ - -H "Content-Type: application/json" \ - -d '{ - "name": "Production App", - "scopes": ["api.responses.write"] - }' - node.js: >- - import OpenAI from 'openai'; - - - const client = new OpenAI({ - adminAPIKey: process.env['OPENAI_ADMIN_KEY'], // This is the default and can be omitted - }); - - - const apiKey = await - client.admin.organization.projects.serviceAccounts.apiKeys.create( - 'service_account_id', - { project_id: 'project_id' }, - ); - - - console.log(apiKey.id); - python: >- - import os - - from openai import OpenAI - - - client = OpenAI( - admin_api_key=os.environ.get("OPENAI_ADMIN_KEY"), # This is the default and can be omitted - ) - - api_key = - client.admin.organization.projects.service_accounts.api_keys.create( - service_account_id="service_account_id", - project_id="project_id", - ) - - print(api_key.id) - go: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/openai/openai-go\"\n\t\"github.com/openai/openai-go/option\"\n)\n\nfunc main() {\n\tclient := openai.NewClient(\n\t\toption.WithAdminAPIKey(\"My Admin API Key\"),\n\t)\n\tapiKey, err := client.Admin.Organization.Projects.ServiceAccounts.APIKeys.New(\n\t\tcontext.TODO(),\n\t\t\"project_id\",\n\t\t\"service_account_id\",\n\t\topenai.AdminOrganizationProjectServiceAccountAPIKeyNewParams{},\n\t)\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", apiKey.ID)\n}\n" - java: >- - package com.openai.example; - - - import com.openai.client.OpenAIClient; - - import com.openai.client.okhttp.OpenAIOkHttpClient; - - import - com.openai.models.admin.organization.projects.serviceaccounts.apikeys.ApiKeyCreateParams; - - import - com.openai.models.admin.organization.projects.serviceaccounts.apikeys.ApiKeyCreateResponse; - - - public final class Main { - private Main() {} - - public static void main(String[] args) { - OpenAIClient client = OpenAIOkHttpClient.fromEnv(); - - ApiKeyCreateParams params = ApiKeyCreateParams.builder() - .projectId("project_id") - .serviceAccountId("service_account_id") - .build(); - ApiKeyCreateResponse apiKey = client.admin().organization().projects().serviceAccounts().apiKeys().create(params); - } - } - ruby: >- - require "openai" - - - openai = OpenAI::Client.new(admin_api_key: "My Admin API Key") - - - api_key = - openai.admin.organization.projects.service_accounts.api_keys.create( - "service_account_id", - project_id: "project_id" - ) - - - puts(api_key) - response: | - { - "object": "organization.project.service_account.api_key", - "value": "sk-abcdefghijklmnop123", - "name": "Production App", - "created_at": 1711471533, - "id": "key_abc" - } /organization/projects/{project_id}/spend_alerts: get: security: @@ -39319,6 +39134,141 @@ paths: "created_at": 1741900000, "metadata": {"topic": "project-x"} } + /organization/projects/{project_id}/service_accounts/{service_account_id}/api_keys: + post: + summary: Creates an API key for a service account in the project. + operationId: CreateanAPIkeyforaserviceaccount + parameters: + - name: project_id + in: path + description: The ID of the project. + required: true + schema: + description: The ID of the project. + type: string + - name: service_account_id + in: path + description: The ID of the service account. + required: true + schema: + description: The ID of the service account. + type: string + requestBody: + description: The service account API key create request payload. + content: + application/json: + schema: + $ref: '#/components/schemas/CreateProjectServiceAccountApiKeyBody' + responses: + '200': + description: Service account API key created successfully. + content: + application/json: + schema: + $ref: '#/components/schemas/ServiceAccountApiKeyBody' + x-oaiMeta: + name: Create project service account API key + group: administration + examples: + request: + curl: > + curl -X POST + https://api.openai.com/v1/organization/projects/proj_abc/service_accounts/svc_acct_abc/api_keys + \ + -H "Authorization: Bearer $OPENAI_ADMIN_KEY" \ + -H "Content-Type: application/json" \ + -d '{ + "name": "Production App", + "scopes": ["api.responses.write"] + }' + node.js: >- + import OpenAI from 'openai'; + + + const client = new OpenAI({ + adminAPIKey: process.env['OPENAI_ADMIN_KEY'], // This is the default and can be omitted + }); + + + const response = await + client.admin.organization.projects.serviceAccounts.createAPIKey( + 'service_account_id', + { project_id: 'project_id' }, + ); + + + console.log(response.id); + python: >- + import os + + from openai import OpenAI + + + client = OpenAI( + admin_api_key=os.environ.get("OPENAI_ADMIN_KEY"), # This is the default and can be omitted + ) + + response = + client.admin.organization.projects.service_accounts.create_api_key( + service_account_id="service_account_id", + project_id="project_id", + ) + + print(response.id) + go: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/openai/openai-go\"\n\t\"github.com/openai/openai-go/option\"\n)\n\nfunc main() {\n\tclient := openai.NewClient(\n\t\toption.WithAdminAPIKey(\"My Admin API Key\"),\n\t)\n\tresponse, err := client.Admin.Organization.Projects.ServiceAccounts.NewAPIKey(\n\t\tcontext.TODO(),\n\t\t\"project_id\",\n\t\t\"service_account_id\",\n\t\topenai.AdminOrganizationProjectServiceAccountNewAPIKeyParams{},\n\t)\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", response.ID)\n}\n" + java: >- + package com.openai.example; + + + import com.openai.client.OpenAIClient; + + import com.openai.client.okhttp.OpenAIOkHttpClient; + + import + com.openai.models.admin.organization.projects.serviceaccounts.ServiceAccountCreateApiKeyParams; + + import + com.openai.models.admin.organization.projects.serviceaccounts.ServiceAccountCreateApiKeyResponse; + + + public final class Main { + private Main() {} + + public static void main(String[] args) { + OpenAIClient client = OpenAIOkHttpClient.fromEnv(); + + ServiceAccountCreateApiKeyParams params = ServiceAccountCreateApiKeyParams.builder() + .projectId("project_id") + .serviceAccountId("service_account_id") + .build(); + ServiceAccountCreateApiKeyResponse response = client.admin().organization().projects().serviceAccounts().createApiKey(params); + } + } + ruby: >- + require "openai" + + + openai = OpenAI::Client.new(admin_api_key: "My Admin API Key") + + + response = + openai.admin.organization.projects.service_accounts.create_api_key( + "service_account_id", + project_id: "project_id" + ) + + + puts(response) + response: | + { + "object": "organization.project.service_account.api_key", + "value": "sk-abcdefghijklmnop123", + "name": "Production App", + "created_at": 1711471533, + "id": "key_abc" + } + security: + - AdminApiKeyAuth: [] /videos: post: tags: @@ -46980,30 +46930,7 @@ components: data: type: array items: - type: object - properties: - code: - type: string - description: An error code identifying the error type. - message: - type: string - description: >- - A human-readable message providing more details about the - error. - param: - anyOf: - - type: string - description: >- - The name of the parameter that caused the error, if - applicable. - - type: 'null' - line: - anyOf: - - type: integer - description: >- - The line number of the input file where the error - occurred, if applicable. - - type: 'null' + $ref: '#/components/schemas/BatchError' input_file_id: type: string description: The ID of the input file for the batch. @@ -47073,22 +47000,7 @@ components: format: unixtime description: The Unix timestamp (in seconds) for when the batch was cancelled. request_counts: - type: object - properties: - total: - type: integer - description: Total number of requests in the batch. - completed: - type: integer - description: Number of requests that have been completed successfully. - failed: - type: integer - description: Number of requests that have failed. - required: - - total - - completed - - failed - description: The request counts for different statuses within the batch. + $ref: '#/components/schemas/BatchRequestCounts' usage: type: object description: > @@ -47191,6 +47103,27 @@ components: "batch_description": "Nightly eval job", } } + BatchError: + type: object + properties: + code: + type: string + description: An error code identifying the error type. + message: + type: string + description: A human-readable message providing more details about the error. + param: + anyOf: + - type: string + description: The name of the parameter that caused the error, if applicable. + - type: 'null' + line: + anyOf: + - type: integer + description: >- + The line number of the input file where the error occurred, if + applicable. + - type: 'null' BatchFileExpirationAfter: type: object title: File expiration policy @@ -47218,6 +47151,23 @@ components: required: - anchor - seconds + BatchRequestCounts: + type: object + properties: + total: + type: integer + description: Total number of requests in the batch. + completed: + type: integer + description: Number of requests that have been completed successfully. + failed: + type: integer + description: Number of requests that have failed. + required: + - total + - completed + - failed + description: The request counts for different statuses within the batch. Certificate: type: object description: Represents an individual `certificate` uploaded to the organization. @@ -49677,6 +49627,56 @@ components: - type: 'null' required: - model + CreateBatchRequest: + type: object + required: + - input_file_id + - endpoint + - completion_window + properties: + input_file_id: + type: string + description: > + The ID of an uploaded file that contains requests for the new batch. + + + See [upload file](/docs/api-reference/files/create) for how to + upload a file. + + + Your input file must be formatted as a [JSONL + file](/docs/api-reference/batch/request-input), and must be uploaded + with the purpose `batch`. The file can contain up to 50,000 + requests, and can be up to 200 MB in size. + endpoint: + type: string + enum: + - /v1/responses + - /v1/chat/completions + - /v1/embeddings + - /v1/completions + - /v1/moderations + - /v1/images/generations + - /v1/images/edits + - /v1/videos + description: >- + The endpoint to be used for all requests in the batch. Currently + `/v1/responses`, `/v1/chat/completions`, `/v1/embeddings`, + `/v1/completions`, `/v1/moderations`, `/v1/images/generations`, + `/v1/images/edits`, and `/v1/videos` are supported. Note that + `/v1/embeddings` batches are also restricted to a maximum of 50,000 + embedding inputs across all requests in the batch. + completion_window: + type: string + enum: + - 24h + description: >- + The time frame within which the batch should be processed. Currently + only `24h` is supported. + metadata: + $ref: '#/components/schemas/Metadata' + output_expires_after: + $ref: '#/components/schemas/BatchFileExpirationAfter' CreateChatCompletionRequest: allOf: - $ref: '#/components/schemas/CreateModelResponseProperties' @@ -62959,18 +62959,6 @@ components: - name - created_at - id - ProjectServiceAccountApiKeyCreateRequest: - type: object - properties: - name: - type: string - description: API key name. - scopes: - type: array - description: API key scopes. - items: - type: string - description: API key scope. ProjectServiceAccountCreateRequest: type: object properties: @@ -87095,6 +87083,51 @@ components: - object - deleted - id + CreateProjectServiceAccountApiKeyBody: + properties: + name: + type: string + description: API key name. + scopes: + items: + type: string + description: API key scope. + type: array + description: API key scopes. + type: object + required: [] + description: The service account API key create request payload. + ServiceAccountApiKeyBody: + properties: + object: + type: string + enum: + - organization.project.service_account.api_key + description: >- + The object type, which is always + `organization.project.service_account.api_key` + default: organization.project.service_account.api_key + x-stainless-const: true + value: + type: string + description: The unredacted API key value. + name: + type: string + description: The name of the API key. + created_at: + type: integer + format: unixtime + description: The Unix timestamp (in seconds) when the API key was created. + id: + type: string + description: The identifier of the API key. + type: object + required: + - object + - value + - name + - created_at + - id OrderEnum: type: string enum: