diff --git a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionAsStreamCommandApiCommand.g.cs b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionAsStreamCommandApiCommand.g.cs index 6d7e2336..e13ed897 100644 --- a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionAsStreamCommandApiCommand.g.cs +++ b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionAsStreamCommandApiCommand.g.cs @@ -18,7 +18,7 @@ internal static partial class AudioCreateTranscriptionAsStreamCommandApiCommand private static Option> Model { get; } = new( name: @"--model") { - Description = @"ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`. + Description = @"ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`. ", Required = true, }; @@ -57,6 +57,8 @@ public static Command Create() command.Options.Add(Model); command.Options.Add(ChunkingStrategy); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Filename); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Language); + command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Languages); + command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Keywords); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Prompt); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.ResponseFormat); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Temperature); @@ -93,6 +95,8 @@ await CliRuntime.RunAsync(async () => var model = parseResult.GetRequiredValue(Model); var chunkingStrategy = CliRuntime.WasSpecified(parseResult, ChunkingStrategy) ? parseResult.GetValue(ChunkingStrategy) : (__requestBase is { } __ChunkingStrategyBaseValue ? __ChunkingStrategyBaseValue.ChunkingStrategy : default); var filename = parseResult.GetRequiredValue(CreateTranscriptionRequestOptionSetOptions.Filename); var language = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Language) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Language) : (__requestBase is { } __LanguageBaseValue ? __LanguageBaseValue.Language : default); + var languages = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Languages) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Languages) : (__requestBase is { } __LanguagesBaseValue ? __LanguagesBaseValue.Languages : default); + var keywords = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Keywords) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Keywords) : (__requestBase is { } __KeywordsBaseValue ? __KeywordsBaseValue.Keywords : default); var prompt = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Prompt) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Prompt) : (__requestBase is { } __PromptBaseValue ? __PromptBaseValue.Prompt : default); var responseFormat = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.ResponseFormat) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.ResponseFormat) : (__requestBase is { } __ResponseFormatBaseValue ? __ResponseFormatBaseValue.ResponseFormat : default); var temperature = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Temperature) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Temperature) : (__requestBase is { } __TemperatureBaseValue ? __TemperatureBaseValue.Temperature : default); @@ -109,6 +113,8 @@ await CliRuntime.RunAsync(async () => chunkingStrategy: chunkingStrategy, filename: filename, language: language, + languages: languages, + keywords: keywords, prompt: prompt, responseFormat: responseFormat, temperature: temperature, diff --git a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionCommandApiCommand.g.cs b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionCommandApiCommand.g.cs index 91960aa7..66e89ac2 100644 --- a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionCommandApiCommand.g.cs +++ b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/AudioCreateTranscriptionCommandApiCommand.g.cs @@ -18,7 +18,7 @@ internal static partial class AudioCreateTranscriptionCommandApiCommand private static Option> Model { get; } = new( name: @"--model") { - Description = @"ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`. + Description = @"ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`. ", Required = true, }; @@ -77,6 +77,8 @@ public static Command Create() command.Options.Add(Model); command.Options.Add(ChunkingStrategy); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Filename); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Language); + command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Languages); + command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Keywords); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Prompt); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.ResponseFormat); command.Options.Add(CreateTranscriptionRequestOptionSetOptions.Temperature); @@ -113,6 +115,8 @@ await CliRuntime.RunAsync(async () => var model = parseResult.GetRequiredValue(Model); var chunkingStrategy = CliRuntime.WasSpecified(parseResult, ChunkingStrategy) ? parseResult.GetValue(ChunkingStrategy) : (__requestBase is { } __ChunkingStrategyBaseValue ? __ChunkingStrategyBaseValue.ChunkingStrategy : default); var filename = parseResult.GetRequiredValue(CreateTranscriptionRequestOptionSetOptions.Filename); var language = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Language) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Language) : (__requestBase is { } __LanguageBaseValue ? __LanguageBaseValue.Language : default); + var languages = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Languages) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Languages) : (__requestBase is { } __LanguagesBaseValue ? __LanguagesBaseValue.Languages : default); + var keywords = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Keywords) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Keywords) : (__requestBase is { } __KeywordsBaseValue ? __KeywordsBaseValue.Keywords : default); var prompt = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Prompt) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Prompt) : (__requestBase is { } __PromptBaseValue ? __PromptBaseValue.Prompt : default); var responseFormat = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.ResponseFormat) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.ResponseFormat) : (__requestBase is { } __ResponseFormatBaseValue ? __ResponseFormatBaseValue.ResponseFormat : default); var temperature = CliRuntime.WasSpecified(parseResult, CreateTranscriptionRequestOptionSetOptions.Temperature) ? parseResult.GetValue(CreateTranscriptionRequestOptionSetOptions.Temperature) : (__requestBase is { } __TemperatureBaseValue ? __TemperatureBaseValue.Temperature : default); @@ -129,6 +133,8 @@ await CliRuntime.RunAsync(async () => chunkingStrategy: chunkingStrategy, filename: filename, language: language, + languages: languages, + keywords: keywords, prompt: prompt, responseFormat: responseFormat, temperature: temperature, diff --git a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/CreateTranscriptionRequestOptionSet.g.cs b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/CreateTranscriptionRequestOptionSet.g.cs index 65506e81..b94334fe 100644 --- a/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/CreateTranscriptionRequestOptionSet.g.cs +++ b/src/libs/tryAGI.OpenAI.CLI/GeneratedApi/Commands/CreateTranscriptionRequestOptionSet.g.cs @@ -7,6 +7,8 @@ namespace tryAGI.OpenAI.Cli.GeneratedApi.Commands; internal sealed record CreateTranscriptionRequestOptionSet( Option Filename, Option Language, + Option?> Languages, + Option?> Keywords, Option Prompt, Option ResponseFormat, Option Temperature, @@ -31,6 +33,16 @@ public static CreateTranscriptionRequestOptionSet Create(string? prefix = null) Language: new Option($"--{normalizedPrefix}language") { Description = @"The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. +", + }, + Languages: new Option?>($"--{normalizedPrefix}languages") + { + Description = @"Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. +", + }, + Keywords: new Option?>($"--{normalizedPrefix}keywords") + { + Description = @"Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. ", }, Prompt: new Option($"--{normalizedPrefix}prompt") diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscription.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscription.g.cs index c0bbe2f2..405f3bba 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscription.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscription.g.cs @@ -88,6 +88,8 @@ partial void ProcessCreateTranscriptionResponseContent( Filename = request.Filename, Model = request.Model, Language = request.Language, + Languages = request.Languages, + Keywords = request.Keywords, Prompt = request.Prompt, ResponseFormat = request.ResponseFormat, Temperature = request.Temperature, @@ -210,6 +212,22 @@ request.Filename is null content: new global::System.Net.Http.StringContent(request.Language ?? string.Empty), name: "\"language\""); + } + if (request.Languages != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Languages, x => x))}]"), + name: "\"languages\""); + + } + if (request.Keywords != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Keywords, x => x))}]"), + name: "\"keywords\""); + } if (request.Prompt != default) { @@ -584,12 +602,18 @@ request.Filename is null /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -628,6 +652,8 @@ request.Filename is null string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -645,6 +671,8 @@ request.Filename is null Filename = filename, Model = model, Language = language, + Languages = languages, + Keywords = keywords, Prompt = prompt, ResponseFormat = responseFormat, Temperature = temperature, @@ -674,12 +702,18 @@ request.Filename is null /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -718,6 +752,8 @@ request.Filename is null string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -737,6 +773,8 @@ request.Filename is null Filename = filename, Model = model, Language = language, + Languages = languages, + Keywords = keywords, Prompt = prompt, ResponseFormat = responseFormat, Temperature = temperature, @@ -859,6 +897,22 @@ request.Filename is null content: new global::System.Net.Http.StringContent(request.Language ?? string.Empty), name: "\"language\""); + } + if (request.Languages != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Languages, x => x))}]"), + name: "\"languages\""); + + } + if (request.Keywords != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Keywords, x => x))}]"), + name: "\"keywords\""); + } if (request.Prompt != default) { @@ -1225,12 +1279,18 @@ request.Filename is null /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -1269,6 +1329,8 @@ request.Filename is null string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -1288,6 +1350,8 @@ request.Filename is null Filename = filename, Model = model, Language = language, + Languages = languages, + Keywords = keywords, Prompt = prompt, ResponseFormat = responseFormat, Temperature = temperature, @@ -1410,6 +1474,22 @@ request.Filename is null content: new global::System.Net.Http.StringContent(request.Language ?? string.Empty), name: "\"language\""); + } + if (request.Languages != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Languages, x => x))}]"), + name: "\"languages\""); + + } + if (request.Keywords != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Keywords, x => x))}]"), + name: "\"keywords\""); + } if (request.Prompt != default) { diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscriptionAsStream.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscriptionAsStream.g.cs index f83fa171..28bda39c 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscriptionAsStream.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.AudioClient.CreateTranscriptionAsStream.g.cs @@ -59,6 +59,8 @@ partial void ProcessCreateTranscriptionAsStreamResponse( Filename = request.Filename, Model = request.Model, Language = request.Language, + Languages = request.Languages, + Keywords = request.Keywords, Prompt = request.Prompt, ResponseFormat = request.ResponseFormat, Temperature = request.Temperature, @@ -181,6 +183,22 @@ request.Filename is null content: new global::System.Net.Http.StringContent(request.Language ?? string.Empty), name: "\"language\""); + } + if (request.Languages != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Languages, x => x))}]"), + name: "\"languages\""); + + } + if (request.Keywords != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Keywords, x => x))}]"), + name: "\"keywords\""); + } if (request.Prompt != default) { @@ -526,12 +544,18 @@ request.Filename is null /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -570,6 +594,8 @@ request.Filename is null string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -587,6 +613,8 @@ request.Filename is null Filename = filename, Model = model, Language = language, + Languages = languages, + Keywords = keywords, Prompt = prompt, ResponseFormat = responseFormat, Temperature = temperature, @@ -621,12 +649,18 @@ request.Filename is null /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -665,6 +699,8 @@ request.Filename is null string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -684,6 +720,8 @@ request.Filename is null Filename = filename, Model = model, Language = language, + Languages = languages, + Keywords = keywords, Prompt = prompt, ResponseFormat = responseFormat, Temperature = temperature, @@ -806,6 +844,22 @@ request.Filename is null content: new global::System.Net.Http.StringContent(request.Language ?? string.Empty), name: "\"language\""); + } + if (request.Languages != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Languages, x => x))}]"), + name: "\"languages\""); + + } + if (request.Keywords != default) + { + + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"[{string.Join(",", global::System.Linq.Enumerable.Select(request.Keywords, x => x))}]"), + name: "\"keywords\""); + } if (request.Prompt != default) { diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscription.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscription.g.cs index 087991b2..3da41860 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscription.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscription.g.cs @@ -44,12 +44,18 @@ public partial interface IAudioClient /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -88,6 +94,8 @@ public partial interface IAudioClient string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -111,12 +119,18 @@ public partial interface IAudioClient /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -155,6 +169,8 @@ public partial interface IAudioClient string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -177,12 +193,18 @@ public partial interface IAudioClient /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -221,6 +243,8 @@ public partial interface IAudioClient string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscriptionAsStream.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscriptionAsStream.g.cs index 2edf5402..c09d3957 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscriptionAsStream.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.IAudioClient.CreateTranscriptionAsStream.g.cs @@ -30,12 +30,18 @@ public partial interface IAudioClient /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -74,6 +80,8 @@ public partial interface IAudioClient string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, @@ -97,12 +105,18 @@ public partial interface IAudioClient /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -141,6 +155,8 @@ public partial interface IAudioClient string filename, global::tryAGI.OpenAI.AnyOf model, string? language = default, + global::System.Collections.Generic.IList? languages = default, + global::System.Collections.Generic.IList? keywords = default, string? prompt = default, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat = default, double? temperature = default, diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObject.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObject.g.cs new file mode 100644 index 00000000..7cb22739 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObject.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace tryAGI.OpenAI.JsonConverters +{ + /// + public sealed class WebhookLiveCallIncomingObjectJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::tryAGI.OpenAI.WebhookLiveCallIncomingObject 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.WebhookLiveCallIncomingObjectExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::tryAGI.OpenAI.WebhookLiveCallIncomingObject)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::tryAGI.OpenAI.WebhookLiveCallIncomingObject); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::tryAGI.OpenAI.WebhookLiveCallIncomingObject value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::tryAGI.OpenAI.WebhookLiveCallIncomingObjectExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullable.g.cs new file mode 100644 index 00000000..4c0c5238 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace tryAGI.OpenAI.JsonConverters +{ + /// + public sealed class WebhookLiveCallIncomingObjectNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::tryAGI.OpenAI.WebhookLiveCallIncomingObject? 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.WebhookLiveCallIncomingObjectExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::tryAGI.OpenAI.WebhookLiveCallIncomingObject)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::tryAGI.OpenAI.WebhookLiveCallIncomingObject?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::tryAGI.OpenAI.WebhookLiveCallIncomingObject? 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.WebhookLiveCallIncomingObjectExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingType.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingType.g.cs new file mode 100644 index 00000000..7dd11c13 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingType.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace tryAGI.OpenAI.JsonConverters +{ + /// + public sealed class WebhookLiveCallIncomingTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::tryAGI.OpenAI.WebhookLiveCallIncomingType 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.WebhookLiveCallIncomingTypeExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::tryAGI.OpenAI.WebhookLiveCallIncomingType)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::tryAGI.OpenAI.WebhookLiveCallIncomingType); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::tryAGI.OpenAI.WebhookLiveCallIncomingType value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::tryAGI.OpenAI.WebhookLiveCallIncomingTypeExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullable.g.cs new file mode 100644 index 00000000..cb3efcc9 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace tryAGI.OpenAI.JsonConverters +{ + /// + public sealed class WebhookLiveCallIncomingTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::tryAGI.OpenAI.WebhookLiveCallIncomingType? 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.WebhookLiveCallIncomingTypeExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::tryAGI.OpenAI.WebhookLiveCallIncomingType)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::tryAGI.OpenAI.WebhookLiveCallIncomingType?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::tryAGI.OpenAI.WebhookLiveCallIncomingType? 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.WebhookLiveCallIncomingTypeExtensions.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 1fb764d7..299c3b6d 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContext.g.cs @@ -3613,6 +3613,14 @@ namespace tryAGI.OpenAI typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -11124,6 +11132,14 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -14812,6 +14828,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsageDiscriminator))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateTranscriptionResponseDiarizedJsonUsageDiscriminatorType), TypeInfoPropertyName = "CreateTranscriptionResponseDiarizedJsonUsageDiscriminatorType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateTranscriptionResponseJson))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.TranscriptionLanguage))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateTranscriptionResponseJsonLogprob))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfTranscriptTextUsageTokensTranscriptTextUsageDuration2")] @@ -15022,8 +15040,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningCheckpointPermission))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.FineTuningCheckpointPermissionObject), TypeInfoPropertyName = "FineTuningCheckpointPermissionObject2")] [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))] internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -18635,6 +18651,14 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -22058,6 +22082,8 @@ 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.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))] @@ -22533,8 +22559,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType), TypeInfoPropertyName = "RealtimeBetaClientEventConversationItemTruncateType2")] [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))] internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -26146,6 +26170,14 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -29569,6 +29601,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.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))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType), TypeInfoPropertyName = "RealtimeBetaClientEventInputAudioBufferCommitType2")] @@ -30044,8 +30078,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie), TypeInfoPropertyName = "RealtimeTranscriptionSessionCreateResponseModalitie2")] [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))] internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -33657,6 +33689,14 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -37080,6 +37120,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.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))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput))] @@ -37555,8 +37597,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRoleAssignment))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.UserRoleAssignmentObject), TypeInfoPropertyName = "UserRoleAssignmentObject2")] [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))] internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -41168,6 +41208,14 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -44591,6 +44639,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.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")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfStringDoubleBoolean2")] @@ -44692,6 +44742,12 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject), TypeInfoPropertyName = "WebhookFineTuningJobSucceededObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType), TypeInfoPropertyName = "WebhookFineTuningJobSucceededType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookLiveCallIncoming))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingData))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingDataSipHeader))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingObject), TypeInfoPropertyName = "WebhookLiveCallIncomingObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingType), TypeInfoPropertyName = "WebhookLiveCallIncomingType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookRealtimeCallIncoming))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] @@ -45060,14 +45116,6 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeletedSkillResourceObject), TypeInfoPropertyName = "DeletedSkillResourceObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.SkillVersionResource))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.SkillVersionResourceObject), TypeInfoPropertyName = "SkillVersionResourceObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.SkillVersionListResource))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.SkillVersionListResourceObject), TypeInfoPropertyName = "SkillVersionListResourceObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateSkillVersionBody))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeletedSkillVersionResource))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeletedSkillVersionResourceObject), TypeInfoPropertyName = "DeletedSkillVersionResourceObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ChatkitWorkflowTracing))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ChatkitWorkflow))] internal sealed partial class SourceGenerationContextChunk5 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -48679,6 +48727,14 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -52102,6 +52158,14 @@ 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.SkillVersionListResource))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.SkillVersionListResourceObject), TypeInfoPropertyName = "SkillVersionListResourceObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateSkillVersionBody))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeletedSkillVersionResource))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.DeletedSkillVersionResourceObject), TypeInfoPropertyName = "DeletedSkillVersionResourceObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ChatkitWorkflowTracing))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ChatkitWorkflow))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.OneOf), TypeInfoPropertyName = "OneOfStringInt32BooleanDouble2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ChatSessionRateLimits))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ChatSessionStatus), TypeInfoPropertyName = "ChatSessionStatus2")] @@ -52571,14 +52635,6 @@ internal sealed partial class SourceGenerationContextChunk5 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaWebSearchActionSearchType), TypeInfoPropertyName = "BetaWebSearchActionSearchType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaWebSearchActionSearchSource))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaWebSearchActionSearchSourceType), TypeInfoPropertyName = "BetaWebSearchActionSearchSourceType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerCallOutputItemParamType), TypeInfoPropertyName = "BetaComputerCallOutputItemParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerScreenshotImage))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerCallSafetyCheckParam))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerScreenshotImageType), TypeInfoPropertyName = "BetaComputerScreenshotImageType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerToolCallType), TypeInfoPropertyName = "BetaComputerToolCallType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerAction), TypeInfoPropertyName = "BetaComputerAction2")] internal sealed partial class SourceGenerationContextChunk6 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -56190,6 +56246,14 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -59613,6 +59677,14 @@ 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.BetaWebSearchActionSearchSourceType), TypeInfoPropertyName = "BetaWebSearchActionSearchSourceType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerCallOutputItemParamType), TypeInfoPropertyName = "BetaComputerCallOutputItemParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerScreenshotImage))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerCallSafetyCheckParam))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerScreenshotImageType), TypeInfoPropertyName = "BetaComputerScreenshotImageType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerToolCallType), TypeInfoPropertyName = "BetaComputerToolCallType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerAction), TypeInfoPropertyName = "BetaComputerAction2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaComputerToolCallStatus), TypeInfoPropertyName = "BetaComputerToolCallStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaClickParam))] @@ -60082,14 +60154,6 @@ internal sealed partial class SourceGenerationContextChunk6 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListProjectRolesOrder), TypeInfoPropertyName = "ListProjectRolesOrder2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListProjectUserRoleAssignmentsOrder), TypeInfoPropertyName = "ListProjectUserRoleAssignmentsOrder2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListInputItemsOrder), TypeInfoPropertyName = "ListInputItemsOrder2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListMessagesOrder), TypeInfoPropertyName = "ListMessagesOrder2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListRunsOrder), TypeInfoPropertyName = "ListRunsOrder2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateRunIncludeItem), TypeInfoPropertyName = "CreateRunIncludeItem2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListRunStepsOrder), TypeInfoPropertyName = "ListRunStepsOrder2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListRunStepsIncludeItem), TypeInfoPropertyName = "ListRunStepsIncludeItem2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] internal sealed partial class SourceGenerationContextChunk7 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -63701,6 +63765,14 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -67124,6 +67196,14 @@ 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.ListMessagesOrder), TypeInfoPropertyName = "ListMessagesOrder2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListRunsOrder), TypeInfoPropertyName = "ListRunsOrder2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.CreateRunIncludeItem), TypeInfoPropertyName = "CreateRunIncludeItem2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListRunStepsOrder), TypeInfoPropertyName = "ListRunStepsOrder2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListRunStepsIncludeItem), TypeInfoPropertyName = "ListRunStepsIncludeItem2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.GetRunStepIncludeItem), TypeInfoPropertyName = "GetRunStepIncludeItem2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListVectorStoresOrder), TypeInfoPropertyName = "ListVectorStoresOrder2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ListFilesInVectorStoreBatchOrder), TypeInfoPropertyName = "ListFilesInVectorStoreBatchOrder2")] @@ -67593,14 +67673,6 @@ internal sealed partial class SourceGenerationContextChunk7 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImageGenActionEnum?), TypeInfoPropertyName = "NullableImageGenActionEnum2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImageGenToolCallType?), TypeInfoPropertyName = "NullableImageGenToolCallType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImageGenToolCallStatus?), TypeInfoPropertyName = "NullableImageGenToolCallStatus2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImagesResponseBackground?), TypeInfoPropertyName = "NullableImagesResponseBackground2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImagesResponseOutputFormat?), TypeInfoPropertyName = "NullableImagesResponseOutputFormat2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImagesResponseSize?), TypeInfoPropertyName = "NullableImagesResponseSize2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImagesResponseQuality?), TypeInfoPropertyName = "NullableImagesResponseQuality2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputAudioType?), TypeInfoPropertyName = "NullableInputAudioType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputAudioInputAudio1Format?), TypeInfoPropertyName = "NullableInputAudioInputAudio1Format2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputContentDiscriminatorType?), TypeInfoPropertyName = "NullableInputContentDiscriminatorType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputItem?), TypeInfoPropertyName = "NullableInputItem2")] internal sealed partial class SourceGenerationContextChunk8 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -71212,6 +71284,14 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -74635,6 +74715,14 @@ 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.ImagesResponseBackground?), TypeInfoPropertyName = "NullableImagesResponseBackground2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImagesResponseOutputFormat?), TypeInfoPropertyName = "NullableImagesResponseOutputFormat2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImagesResponseSize?), TypeInfoPropertyName = "NullableImagesResponseSize2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ImagesResponseQuality?), TypeInfoPropertyName = "NullableImagesResponseQuality2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputAudioType?), TypeInfoPropertyName = "NullableInputAudioType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputAudioInputAudio1Format?), TypeInfoPropertyName = "NullableInputAudioInputAudio1Format2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputContentDiscriminatorType?), TypeInfoPropertyName = "NullableInputContentDiscriminatorType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputItem?), TypeInfoPropertyName = "NullableInputItem2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Item?), TypeInfoPropertyName = "NullableItem2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputItemDiscriminatorType?), TypeInfoPropertyName = "NullableInputItemDiscriminatorType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.InputMessageType?), TypeInfoPropertyName = "NullableInputMessageType2")] @@ -75104,14 +75192,6 @@ internal sealed partial class SourceGenerationContextChunk8 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType?), TypeInfoPropertyName = "NullableResponseReasoningSummaryTextDeltaEventType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType?), TypeInfoPropertyName = "NullableResponseReasoningSummaryTextDoneEventType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType?), TypeInfoPropertyName = "NullableResponseReasoningTextDeltaEventType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType?), TypeInfoPropertyName = "NullableResponseReasoningTextDoneEventType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseRefusalDeltaEventType?), TypeInfoPropertyName = "NullableResponseRefusalDeltaEventType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseRefusalDoneEventType?), TypeInfoPropertyName = "NullableResponseRefusalDoneEventType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseStreamEvent?), TypeInfoPropertyName = "NullableResponseStreamEvent2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseStreamEventDiscriminatorType?), TypeInfoPropertyName = "NullableResponseStreamEventDiscriminatorType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseTextDeltaEventType?), TypeInfoPropertyName = "NullableResponseTextDeltaEventType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseTextDoneEventType?), TypeInfoPropertyName = "NullableResponseTextDoneEventType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType?), TypeInfoPropertyName = "NullableResponseWebSearchCallCompletedEventType2")] internal sealed partial class SourceGenerationContextChunk9 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -78723,6 +78803,14 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -82146,6 +82234,14 @@ 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.ResponseReasoningTextDoneEventType?), TypeInfoPropertyName = "NullableResponseReasoningTextDoneEventType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseRefusalDeltaEventType?), TypeInfoPropertyName = "NullableResponseRefusalDeltaEventType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseRefusalDoneEventType?), TypeInfoPropertyName = "NullableResponseRefusalDoneEventType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseStreamEvent?), TypeInfoPropertyName = "NullableResponseStreamEvent2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseStreamEventDiscriminatorType?), TypeInfoPropertyName = "NullableResponseStreamEventDiscriminatorType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseTextDeltaEventType?), TypeInfoPropertyName = "NullableResponseTextDeltaEventType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseTextDoneEventType?), TypeInfoPropertyName = "NullableResponseTextDoneEventType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType?), TypeInfoPropertyName = "NullableResponseWebSearchCallCompletedEventType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType?), TypeInfoPropertyName = "NullableResponseWebSearchCallInProgressEventType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType?), TypeInfoPropertyName = "NullableResponseWebSearchCallSearchingEventType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.ResponsesClientEvent?), TypeInfoPropertyName = "NullableResponsesClientEvent2")] @@ -82308,6 +82404,8 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookFineTuningJobFailedType?), TypeInfoPropertyName = "NullableWebhookFineTuningJobFailedType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject?), TypeInfoPropertyName = "NullableWebhookFineTuningJobSucceededObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType?), TypeInfoPropertyName = "NullableWebhookFineTuningJobSucceededType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingObject?), TypeInfoPropertyName = "NullableWebhookLiveCallIncomingObject2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingType?), TypeInfoPropertyName = "NullableWebhookLiveCallIncomingType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject?), TypeInfoPropertyName = "NullableWebhookRealtimeCallIncomingObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType?), TypeInfoPropertyName = "NullableWebhookRealtimeCallIncomingType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.WebhookResponseCancelledObject?), TypeInfoPropertyName = "NullableWebhookResponseCancelledObject2")] @@ -82613,16 +82711,6 @@ internal sealed partial class SourceGenerationContextChunk9 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminatorType?), TypeInfoPropertyName = "NullableBetaCustomToolParamFormatDiscriminatorType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCustomGrammarFormatParamType?), TypeInfoPropertyName = "NullableBetaCustomGrammarFormatParamType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaGrammarSyntax1?), TypeInfoPropertyName = "NullableBetaGrammarSyntax12")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaCustomTextFormatParamType?), TypeInfoPropertyName = "NullableBetaCustomTextFormatParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionToolParamType?), TypeInfoPropertyName = "NullableBetaFunctionToolParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionShellToolParamType?), TypeInfoPropertyName = "NullableBetaFunctionShellToolParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType?), TypeInfoPropertyName = "NullableBetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaContainerReferenceParamType?), TypeInfoPropertyName = "NullableBetaContainerReferenceParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaLocalEnvironmentParamType?), TypeInfoPropertyName = "NullableBetaLocalEnvironmentParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaContainerAutoParamType?), TypeInfoPropertyName = "NullableBetaContainerAutoParamType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.NetworkPolicy4?), TypeInfoPropertyName = "NullableNetworkPolicy42")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminatorType?), TypeInfoPropertyName = "NullableBetaContainerAutoParamNetworkPolicyDiscriminatorType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.SkillsItem3?), TypeInfoPropertyName = "NullableSkillsItem32")] internal sealed partial class SourceGenerationContextChunk10 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -86234,6 +86322,14 @@ internal sealed partial class SourceGenerationContextChunk10 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -89657,6 +89753,16 @@ 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.BetaCustomTextFormatParamType?), TypeInfoPropertyName = "NullableBetaCustomTextFormatParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionToolParamType?), TypeInfoPropertyName = "NullableBetaFunctionToolParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionShellToolParamType?), TypeInfoPropertyName = "NullableBetaFunctionShellToolParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType?), TypeInfoPropertyName = "NullableBetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaContainerReferenceParamType?), TypeInfoPropertyName = "NullableBetaContainerReferenceParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaLocalEnvironmentParamType?), TypeInfoPropertyName = "NullableBetaLocalEnvironmentParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaContainerAutoParamType?), TypeInfoPropertyName = "NullableBetaContainerAutoParamType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.NetworkPolicy4?), TypeInfoPropertyName = "NullableNetworkPolicy42")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminatorType?), TypeInfoPropertyName = "NullableBetaContainerAutoParamNetworkPolicyDiscriminatorType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.SkillsItem3?), TypeInfoPropertyName = "NullableSkillsItem32")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminatorType?), TypeInfoPropertyName = "NullableBetaContainerAutoParamSkillDiscriminatorType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaInlineSkillParamType?), TypeInfoPropertyName = "NullableBetaInlineSkillParamType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.BetaInlineSkillSourceParamType?), TypeInfoPropertyName = "NullableBetaInlineSkillSourceParamType2")] @@ -90124,16 +90230,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::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.List, 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))] - [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>))] internal sealed partial class SourceGenerationContextChunk11 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -93745,6 +93841,14 @@ internal sealed partial class SourceGenerationContextChunk11 : global::System.Te typeof(global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter), + + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter), + typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter), typeof(global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter), @@ -97168,6 +97272,16 @@ 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::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))] + [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))] @@ -97199,6 +97313,7 @@ internal sealed partial class SourceGenerationContextChunk11 : 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))] @@ -97318,6 +97433,7 @@ internal sealed partial class SourceGenerationContextChunk11 : 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.Dictionary>))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] @@ -99284,6 +99400,10 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededObjectNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookFineTuningJobSucceededTypeNullableJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectNullableJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter()); + options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingObjectNullableJsonConverter()); options.Converters.Add(new global::tryAGI.OpenAI.JsonConverters.WebhookRealtimeCallIncomingTypeJsonConverter()); 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 1ca4bd42..191b6c14 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs @@ -2984,12383 +2984,12415 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.IList? Type739 { get; set; } + public global::System.Collections.Generic.IList? Type739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonLogprob? Type740 { get; set; } + public global::tryAGI.OpenAI.TranscriptionLanguage? Type740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type741 { get; set; } + public global::System.Collections.Generic.IList? Type741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEvent? Type742 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseJsonLogprob? Type742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextSegmentEvent? Type743 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEvent? Type744 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEvent? Type744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEvent? Type745 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextSegmentEvent? Type745 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminator? Type746 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEvent? Type746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminatorType? Type747 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEvent? Type747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranscriptionResponseVerboseJson? Type748 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminator? Type748 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type749 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseStreamEventDiscriminatorType? Type749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionWord? Type750 { get; set; } + public global::tryAGI.OpenAI.CreateTranscriptionResponseVerboseJson? Type750 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type751 { get; set; } + public global::System.Collections.Generic.IList? Type751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionSegment? Type752 { get; set; } + public global::tryAGI.OpenAI.TranscriptionWord? Type752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequest? Type753 { get; set; } + public global::System.Collections.Generic.IList? Type753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type754 { get; set; } + public global::tryAGI.OpenAI.TranscriptionSegment? Type754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequestModel? Type755 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequest? Type755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationRequestResponseFormat? Type756 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type756 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationResponseJson? Type757 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequestModel? Type757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateTranslationResponseVerboseJson? Type758 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationRequestResponseFormat? Type758 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateUploadRequest? Type759 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationResponseJson? Type759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateUploadRequestPurpose? Type760 { get; set; } + public global::tryAGI.OpenAI.CreateTranslationResponseVerboseJson? Type760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreFileBatchRequest? Type761 { get; set; } + public global::tryAGI.OpenAI.CreateUploadRequest? Type761 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type762 { get; set; } + public global::tryAGI.OpenAI.CreateUploadRequestPurpose? Type762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreFileRequest? Type763 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreFileBatchRequest? Type763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVectorStoreRequest? Type764 { get; set; } + public global::System.Collections.Generic.IList? Type764 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreExpirationAfter? Type765 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreFileRequest? Type765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type766 { get; set; } + public global::tryAGI.OpenAI.CreateVectorStoreRequest? Type766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVoiceConsentRequest? Type767 { get; set; } + public global::tryAGI.OpenAI.VectorStoreExpirationAfter? Type767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVoiceRequest? Type768 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallType? Type769 { get; set; } + public global::tryAGI.OpenAI.CreateVoiceConsentRequest? Type769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCaller? Type770 { get; set; } + public global::tryAGI.OpenAI.CreateVoiceRequest? Type770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallOutputType? Type771 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallType? Type771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerParam? Type772 { get; set; } + public global::tryAGI.OpenAI.ToolCallCaller? Type772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type773 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallOutputType? Type773 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type774 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerParam? Type774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutput? Type775 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallOutputResource? Type776 { get; set; } + public global::System.Collections.Generic.IList? Type776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallOutputResourceVariant2? Type777 { get; set; } + public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutput? Type777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputStatusEnum? Type778 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallOutputResource? Type778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallResource? Type779 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallOutputResourceVariant2? Type779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolCallResourceVariant2? Type780 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputStatusEnum? Type780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallStatus? Type781 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallResource? Type781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsType? Type782 { get; set; } + public global::tryAGI.OpenAI.CustomToolCallResourceVariant2? Type782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustom? Type783 { get; set; } + public global::tryAGI.OpenAI.FunctionCallStatus? Type783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type784 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsType? Type784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormat? Type785 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustom? Type785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormatType? Type786 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormat? Type787 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormat? Type787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatType? Type788 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormatType? Type788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammar? Type789 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormat? Type789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammarSyntax? Type790 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatType? Type790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteAssistantResponse? Type791 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammar? Type791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteAssistantResponseObject? Type792 { get; set; } + public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammarSyntax? Type792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteCertificateResponse? Type793 { get; set; } + public global::tryAGI.OpenAI.DeleteAssistantResponse? Type793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteCertificateResponseObject? Type794 { get; set; } + public global::tryAGI.OpenAI.DeleteAssistantResponseObject? Type794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFileResponse? Type795 { get; set; } + public global::tryAGI.OpenAI.DeleteCertificateResponse? Type795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFileResponseObject? Type796 { get; set; } + public global::tryAGI.OpenAI.DeleteCertificateResponseObject? Type796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponse? Type797 { get; set; } + public global::tryAGI.OpenAI.DeleteFileResponse? Type797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponseObject? Type798 { get; set; } + public global::tryAGI.OpenAI.DeleteFileResponseObject? Type798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteMessageResponse? Type799 { get; set; } + public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponse? Type799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteMessageResponseObject? Type800 { get; set; } + public global::tryAGI.OpenAI.DeleteFineTuningCheckpointPermissionResponseObject? Type800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteModelResponse? Type801 { get; set; } + public global::tryAGI.OpenAI.DeleteMessageResponse? Type801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteThreadResponse? Type802 { get; set; } + public global::tryAGI.OpenAI.DeleteMessageResponseObject? Type802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteThreadResponseObject? Type803 { get; set; } + public global::tryAGI.OpenAI.DeleteModelResponse? Type803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreFileResponse? Type804 { get; set; } + public global::tryAGI.OpenAI.DeleteThreadResponse? Type804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreFileResponseObject? Type805 { get; set; } + public global::tryAGI.OpenAI.DeleteThreadResponseObject? Type805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreResponse? Type806 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreFileResponse? Type806 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteVectorStoreResponseObject? Type807 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreFileResponseObject? Type807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversation? Type808 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreResponse? Type808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversationResource? Type809 { get; set; } + public global::tryAGI.OpenAI.DeleteVectorStoreResponseObject? Type809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedRoleAssignmentResource? Type810 { get; set; } + public global::tryAGI.OpenAI.DeletedConversation? Type810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoneEventEvent? Type811 { get; set; } + public global::tryAGI.OpenAI.DeletedConversationResource? Type811 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoneEventData? Type812 { get; set; } + public global::tryAGI.OpenAI.DeletedRoleAssignmentResource? Type812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EasyInputMessageRole? Type813 { get; set; } + public global::tryAGI.OpenAI.DoneEventEvent? Type813 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type814 { get; set; } + public global::tryAGI.OpenAI.DoneEventData? Type814 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type815 { get; set; } + public global::tryAGI.OpenAI.EasyInputMessageRole? Type815 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessagePhase? Type816 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EasyInputMessageType? Type817 { get; set; } + public global::System.Collections.Generic.IList? Type817 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParam? Type818 { get; set; } + public global::tryAGI.OpenAI.MessagePhase? Type818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type819 { get; set; } + public global::tryAGI.OpenAI.EasyInputMessageType? Type819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamModel? Type820 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParam? Type820 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type821 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type821 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageRefParam? Type822 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamModel? Type822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamQuality2? Type823 { get; set; } + public global::System.Collections.Generic.IList? Type823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamInputFidelity2? Type824 { get; set; } + public global::tryAGI.OpenAI.ImageRefParam? Type824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamSize2? Type825 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamQuality2? Type825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamOutputFormat2? Type826 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamInputFidelity2? Type826 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamModeration2? Type827 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamSize2? Type827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EditImageBodyJsonParamBackground2? Type828 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamOutputFormat2? Type828 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type829 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamModeration2? Type829 { get; set; } /// /// /// - public float? Type830 { get; set; } + public global::tryAGI.OpenAI.EditImageBodyJsonParamBackground2? Type830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EmbeddingObject? Type831 { get; set; } + public global::System.Collections.Generic.IList? Type831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Error? Type832 { get; set; } + public float? Type832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ErrorEventEvent? Type833 { get; set; } + public global::tryAGI.OpenAI.EmbeddingObject? Type833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ErrorResponse? Type834 { get; set; } + public global::tryAGI.OpenAI.Error? Type834 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Eval? Type835 { get; set; } + public global::tryAGI.OpenAI.ErrorEventEvent? Type835 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalObject? Type836 { get; set; } + public global::tryAGI.OpenAI.ErrorResponse? Type836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type837 { get; set; } + public global::tryAGI.OpenAI.Eval? Type837 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalCustomDataSourceConfig? Type838 { get; set; } + public global::tryAGI.OpenAI.EvalObject? Type838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalLogsDataSourceConfig? Type839 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfig? Type840 { get; set; } + public global::tryAGI.OpenAI.EvalCustomDataSourceConfig? Type840 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type841 { get; set; } + public global::tryAGI.OpenAI.EvalLogsDataSourceConfig? Type841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type842 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfig? Type842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderLabelModel? Type843 { get; set; } + public global::System.Collections.Generic.IList>? Type843 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalApiError? Type844 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalCustomDataSourceConfigType? Type845 { get; set; } + public global::tryAGI.OpenAI.EvalGraderLabelModel? Type845 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderLabelModel? Type846 { get; set; } + public global::tryAGI.OpenAI.EvalApiError? Type846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderPython? Type847 { get; set; } + public global::tryAGI.OpenAI.EvalCustomDataSourceConfigType? Type847 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type848 { get; set; } + public global::tryAGI.OpenAI.GraderLabelModel? Type848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModel? Type849 { get; set; } + public global::tryAGI.OpenAI.GraderPython? Type849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type850 { get; set; } + public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheck? Type851 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModel? Type851 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarity? Type852 { get; set; } + public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type853 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheck? Type853 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemRole? Type854 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarity? Type854 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContent? Type855 { get; set; } + public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type855 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemType? Type856 { get; set; } + public global::tryAGI.OpenAI.EvalItemRole? Type856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentItem? Type857 { get; set; } + public global::tryAGI.OpenAI.EvalItemContent? Type857 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type858 { get; set; } + public global::tryAGI.OpenAI.EvalItemType? Type858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContent? Type859 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentItem? Type859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentOutputText? Type860 { get; set; } + public global::System.Collections.Generic.IList? Type860 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemInputImage? Type861 { get; set; } + public global::tryAGI.OpenAI.InputTextContent? Type861 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudio? Type862 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentOutputText? Type862 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemContentOutputTextType? Type863 { get; set; } + public global::tryAGI.OpenAI.EvalItemInputImage? Type863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalItemInputImageType? Type864 { get; set; } + public global::tryAGI.OpenAI.InputAudio? Type864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type865 { get; set; } + public global::tryAGI.OpenAI.EvalItemContentOutputTextType? Type865 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type866 { get; set; } + public global::tryAGI.OpenAI.EvalItemInputImageType? Type866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type867 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type867 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type868 { get; set; } + public global::System.Collections.Generic.IList? Type868 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalList? Type869 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalListObject? Type870 { get; set; } + public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type870 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type871 { get; set; } + public global::tryAGI.OpenAI.EvalList? Type871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalLogsDataSourceConfigType? Type872 { get; set; } + public global::tryAGI.OpenAI.EvalListObject? Type872 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalResponsesSourceType? Type873 { get; set; } + public global::System.Collections.Generic.IList? Type873 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRun? Type874 { get; set; } + public global::tryAGI.OpenAI.EvalLogsDataSourceConfigType? Type874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunObject? Type875 { get; set; } + public global::tryAGI.OpenAI.EvalResponsesSourceType? Type875 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunResultCounts? Type876 { get; set; } + public global::tryAGI.OpenAI.EvalRun? Type876 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type877 { get; set; } + public global::tryAGI.OpenAI.EvalRunObject? Type877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunPerModelUsageItem? Type878 { get; set; } + public global::tryAGI.OpenAI.EvalRunResultCounts? Type878 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type879 { get; set; } + public global::System.Collections.Generic.IList? Type879 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunPerTestingCriteriaResult? Type880 { get; set; } + public global::tryAGI.OpenAI.EvalRunPerModelUsageItem? Type880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunList? Type881 { get; set; } + public global::System.Collections.Generic.IList? Type881 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunListObject? Type882 { get; set; } + public global::tryAGI.OpenAI.EvalRunPerTestingCriteriaResult? Type882 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type883 { get; set; } + public global::tryAGI.OpenAI.EvalRunList? Type883 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItem? Type884 { get; set; } + public global::tryAGI.OpenAI.EvalRunListObject? Type884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemObject? Type885 { get; set; } + public global::System.Collections.Generic.IList? Type885 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type886 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItem? Type886 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemResult? Type887 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemObject? Type887 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSample? Type888 { get; set; } + public global::System.Collections.Generic.IList? Type888 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type889 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemResult? Type889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleInputItem? Type890 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSample? Type890 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type891 { get; set; } + public global::System.Collections.Generic.IList? Type891 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleOutputItem? Type892 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleInputItem? Type892 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemSampleUsage? Type893 { get; set; } + public global::System.Collections.Generic.IList? Type893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemList? Type894 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleOutputItem? Type894 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalRunOutputItemListObject? Type895 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemSampleUsage? Type895 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type896 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemList? Type896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfigType? Type897 { get; set; } + public global::tryAGI.OpenAI.EvalRunOutputItemListObject? Type897 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type898 { get; set; } + public global::System.Collections.Generic.IList? Type898 { get; set; } /// /// /// - public global::System.DateTimeOffset? Type899 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsDataSourceConfigType? Type899 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type900 { get; set; } + public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FilePath? Type901 { get; set; } + public global::System.DateTimeOffset? Type901 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FilePathType? Type902 { get; set; } + public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type902 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchRanker? Type903 { get; set; } + public global::tryAGI.OpenAI.FilePath? Type903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallType? Type904 { get; set; } + public global::tryAGI.OpenAI.FilePathType? Type904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type905 { get; set; } + public global::tryAGI.OpenAI.FileSearchRanker? Type905 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type906 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallType? Type906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolCallResultsVariant1Item? Type907 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessage? Type908 { get; set; } + public global::System.Collections.Generic.IList? Type908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessageAssistantMessage? Type909 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolCallResultsVariant1Item? Type909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type910 { get; set; } + public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessage? Type910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type911 { get; set; } + public global::tryAGI.OpenAI.FineTuneChatCompletionRequestAssistantMessageAssistantMessage? Type911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type912 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type913 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type914 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type915 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type916 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type917 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type917 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type918 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneDPOMethod? Type919 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneMethodType? Type920 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type921 { get; set; } + public global::tryAGI.OpenAI.FineTuneDPOMethod? Type921 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type922 { get; set; } + public global::tryAGI.OpenAI.FineTuneMethodType? Type922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type923 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type923 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type924 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type925 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type925 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type926 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type927 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type927 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type928 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type929 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type930 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type931 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type932 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type933 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type934 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type935 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type936 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type937 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderMulti? Type938 { get; set; } + public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type939 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type940 { get; set; } + public global::tryAGI.OpenAI.GraderMulti? Type940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type941 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type942 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type943 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type943 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type944 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type945 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type945 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningCheckpointPermission? Type946 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningCheckpointPermissionObject? Type947 { get; set; } + public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegration? Type948 { get; set; } + public global::tryAGI.OpenAI.FineTuningCheckpointPermission? Type948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegrationType? Type949 { get; set; } + public global::tryAGI.OpenAI.FineTuningCheckpointPermissionObject? Type949 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningIntegrationWandb? Type950 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegration? Type950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJob? Type951 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegrationType? Type951 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobError2? Type952 { get; set; } + public global::tryAGI.OpenAI.FineTuningIntegrationWandb? Type952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparameters? Type953 { get; set; } + public global::tryAGI.OpenAI.FineTuningJob? Type953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type954 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobError2? Type954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersBatchSizeVariant1? Type955 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparameters? Type955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type956 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersLearningRateMultiplier? Type957 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersBatchSizeVariant1? Type957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type958 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type958 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobHyperparametersNEpochs? Type959 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersLearningRateMultiplier? Type959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobObject? Type960 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobStatus? Type961 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobHyperparametersNEpochs? Type961 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type962 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobObject? Type962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpoint? Type963 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobStatus? Type963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpointMetrics? Type964 { get; set; } + public global::System.Collections.Generic.IList? Type964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobCheckpointObject? Type965 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpoint? Type965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEvent? Type966 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpointMetrics? Type966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventObject? Type967 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobCheckpointObject? Type967 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventLevel? Type968 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEvent? Type968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FineTuningJobEventType? Type969 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventObject? Type969 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContent? Type970 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventLevel? Type970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContent? Type971 { get; set; } + public global::tryAGI.OpenAI.FineTuningJobEventType? Type971 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminator? Type972 { get; set; } + public global::tryAGI.OpenAI.InputImageContent? Type972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminatorType? Type973 { get; set; } + public global::tryAGI.OpenAI.InputFileContent? Type973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCall? Type974 { get; set; } + public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminator? Type974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallType? Type975 { get; set; } + public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminatorType? Type975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallStatus? Type976 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCall? Type976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutput? Type977 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallType? Type977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type978 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallStatus? Type978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type979 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutput? Type979 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type980 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type981 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type981 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderLabelModelType? Type982 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type982 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type983 { get; set; } + public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderMultiType? Type984 { get; set; } + public global::tryAGI.OpenAI.GraderLabelModelType? Type984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type985 { get; set; } + public global::System.Collections.Generic.IList? Type985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderPythonType? Type986 { get; set; } + public global::tryAGI.OpenAI.GraderMultiType? Type986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModelType? Type987 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type987 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type988 { get; set; } + public global::tryAGI.OpenAI.GraderPythonType? Type988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheckType? Type989 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModelType? Type989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderStringCheckOperation? Type990 { get; set; } + public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarityType? Type991 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheckType? Type991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type992 { get; set; } + public global::tryAGI.OpenAI.GraderStringCheckOperation? Type992 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Group? Type993 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarityType? Type993 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupObject? Type994 { get; set; } + public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupDeletedResource? Type995 { get; set; } + public global::tryAGI.OpenAI.Group? Type995 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupDeletedResourceObject? Type996 { get; set; } + public global::tryAGI.OpenAI.GroupObject? Type996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupListResource? Type997 { get; set; } + public global::tryAGI.OpenAI.GroupDeletedResource? Type997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupListResourceObject? Type998 { get; set; } + public global::tryAGI.OpenAI.GroupDeletedResourceObject? Type998 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type999 { get; set; } + public global::tryAGI.OpenAI.GroupListResource? Type999 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupResponse? Type1000 { get; set; } + public global::tryAGI.OpenAI.GroupListResourceObject? Type1000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupMemberUser? Type1001 { get; set; } + public global::System.Collections.Generic.IList? Type1001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupMemberUserUserType? Type1002 { get; set; } + public global::tryAGI.OpenAI.GroupResponse? Type1002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupResourceWithSuccess? Type1003 { get; set; } + public global::tryAGI.OpenAI.GroupMemberUser? Type1003 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupResponseGroupType? Type1004 { get; set; } + public global::tryAGI.OpenAI.GroupMemberUserUserType? Type1004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupRoleAssignment? Type1005 { get; set; } + public global::tryAGI.OpenAI.GroupResourceWithSuccess? Type1005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupRoleAssignmentObject? Type1006 { get; set; } + public global::tryAGI.OpenAI.GroupResponseGroupType? Type1006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Role? Type1007 { get; set; } + public global::tryAGI.OpenAI.GroupRoleAssignment? Type1007 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUser? Type1008 { get; set; } + public global::tryAGI.OpenAI.GroupRoleAssignmentObject? Type1008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserAssignment? Type1009 { get; set; } + public global::tryAGI.OpenAI.Role? Type1009 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserAssignmentObject? Type1010 { get; set; } + public global::tryAGI.OpenAI.GroupUser? Type1010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserDeletedResource? Type1011 { get; set; } + public global::tryAGI.OpenAI.GroupUserAssignment? Type1011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GroupUserDeletedResourceObject? Type1012 { get; set; } + public global::tryAGI.OpenAI.GroupUserAssignmentObject? Type1012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HostedToolPermission? Type1013 { get; set; } + public global::tryAGI.OpenAI.GroupUserDeletedResource? Type1013 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HostedToolPermissionUpdate? Type1014 { get; set; } + public global::tryAGI.OpenAI.GroupUserDeletedResourceObject? Type1014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Image2? Type1015 { get; set; } + public global::tryAGI.OpenAI.HostedToolPermission? Type1015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEvent? Type1016 { get; set; } + public global::tryAGI.OpenAI.HostedToolPermissionUpdate? Type1016 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventType? Type1017 { get; set; } + public global::tryAGI.OpenAI.Image2? Type1017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventSize? Type1018 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEvent? Type1018 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventQuality? Type1019 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventType? Type1019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventBackground? Type1020 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventSize? Type1020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditCompletedEventOutputFormat? Type1021 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventQuality? Type1021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesUsage? Type1022 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventBackground? Type1022 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEvent? Type1023 { get; set; } + public global::tryAGI.OpenAI.ImageEditCompletedEventOutputFormat? Type1023 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventType? Type1024 { get; set; } + public global::tryAGI.OpenAI.ImagesUsage? Type1024 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventSize? Type1025 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEvent? Type1025 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventQuality? Type1026 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventType? Type1026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventBackground? Type1027 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventSize? Type1027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditPartialImageEventOutputFormat? Type1028 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventQuality? Type1028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEvent? Type1029 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventBackground? Type1029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminator? Type1030 { get; set; } + public global::tryAGI.OpenAI.ImageEditPartialImageEventOutputFormat? Type1030 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminatorType? Type1031 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEvent? Type1031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEvent? Type1032 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminator? Type1032 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventType? Type1033 { get; set; } + public global::tryAGI.OpenAI.ImageEditStreamEventDiscriminatorType? Type1033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventSize? Type1034 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEvent? Type1034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventQuality? Type1035 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventType? Type1035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventBackground? Type1036 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventSize? Type1036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenCompletedEventOutputFormat? Type1037 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventQuality? Type1037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEvent? Type1038 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventBackground? Type1038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventType? Type1039 { get; set; } + public global::tryAGI.OpenAI.ImageGenCompletedEventOutputFormat? Type1039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventSize? Type1040 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEvent? Type1040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventQuality? Type1041 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventType? Type1041 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventBackground? Type1042 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventSize? Type1042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenPartialImageEventOutputFormat? Type1043 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventQuality? Type1043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEvent? Type1044 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventBackground? Type1044 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminator? Type1045 { get; set; } + public global::tryAGI.OpenAI.ImageGenPartialImageEventOutputFormat? Type1045 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminatorType? Type1046 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEvent? Type1046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenTool? Type1047 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminator? Type1047 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolType? Type1048 { get; set; } + public global::tryAGI.OpenAI.ImageGenStreamEventDiscriminatorType? Type1048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1049 { get; set; } + public global::tryAGI.OpenAI.ImageGenTool? Type1049 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolModel? Type1050 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolType? Type1050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolQuality? Type1051 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1051 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1052 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolModel? Type1052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolSize? Type1053 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolQuality? Type1053 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type1054 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolModeration? Type1055 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolSize? Type1055 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolBackground? Type1056 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type1056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type1057 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolModeration? Type1057 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenActionEnum? Type1058 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolBackground? Type1058 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolCallType? Type1059 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type1059 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type1060 { get; set; } + public global::tryAGI.OpenAI.ImageGenActionEnum? Type1060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponse? Type1061 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolCallType? Type1061 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1062 { get; set; } + public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type1062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseBackground? Type1063 { get; set; } + public global::tryAGI.OpenAI.ImagesResponse? Type1063 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseOutputFormat? Type1064 { get; set; } + public global::System.Collections.Generic.IList? Type1064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseSize? Type1065 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseBackground? Type1065 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesResponseQuality? Type1066 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseOutputFormat? Type1066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenUsage? Type1067 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseSize? Type1067 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImagesUsageInputTokensDetails? Type1068 { get; set; } + public global::tryAGI.OpenAI.ImagesResponseQuality? Type1068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudioType? Type1069 { get; set; } + public global::tryAGI.OpenAI.ImageGenUsage? Type1069 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudioInputAudio1? Type1070 { get; set; } + public global::tryAGI.OpenAI.ImagesUsageInputTokensDetails? Type1070 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputAudioInputAudio1Format? Type1071 { get; set; } + public global::tryAGI.OpenAI.InputAudioType? Type1071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputContentDiscriminator? Type1072 { get; set; } + public global::tryAGI.OpenAI.InputAudioInputAudio1? Type1072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputContentDiscriminatorType? Type1073 { get; set; } + public global::tryAGI.OpenAI.InputAudioInputAudio1Format? Type1073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputItem? Type1074 { get; set; } + public global::tryAGI.OpenAI.InputContentDiscriminator? Type1074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Item? Type1075 { get; set; } + public global::tryAGI.OpenAI.InputContentDiscriminatorType? Type1075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionTriggerItemParam? Type1076 { get; set; } + public global::tryAGI.OpenAI.InputItem? Type1076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemReferenceParam? Type1077 { get; set; } + public global::tryAGI.OpenAI.Item? Type1077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramItemParam? Type1078 { get; set; } + public global::tryAGI.OpenAI.CompactionTriggerItemParam? Type1078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputItemParam? Type1079 { get; set; } + public global::tryAGI.OpenAI.ItemReferenceParam? Type1079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputItemDiscriminator? Type1080 { get; set; } + public global::tryAGI.OpenAI.ProgramItemParam? Type1080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputItemDiscriminatorType? Type1081 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputItemParam? Type1081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessage? Type1082 { get; set; } + public global::tryAGI.OpenAI.InputItemDiscriminator? Type1082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageType? Type1083 { get; set; } + public global::tryAGI.OpenAI.InputItemDiscriminatorType? Type1083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageRole? Type1084 { get; set; } + public global::tryAGI.OpenAI.InputMessage? Type1084 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageStatus? Type1085 { get; set; } + public global::tryAGI.OpenAI.InputMessageType? Type1085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageResource? Type1086 { get; set; } + public global::tryAGI.OpenAI.InputMessageRole? Type1086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputMessageResourceVariant2? Type1087 { get; set; } + public global::tryAGI.OpenAI.InputMessageStatus? Type1087 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1088 { get; set; } + public global::tryAGI.OpenAI.InputMessageResource? Type1088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Invite? Type1089 { get; set; } + public global::tryAGI.OpenAI.InputMessageResourceVariant2? Type1089 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteObject? Type1090 { get; set; } + public global::System.Collections.Generic.IList? Type1090 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRole? Type1091 { get; set; } + public global::tryAGI.OpenAI.Invite? Type1091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteStatus? Type1092 { get; set; } + public global::tryAGI.OpenAI.InviteObject? Type1092 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1093 { get; set; } + public global::tryAGI.OpenAI.InviteRole? Type1093 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProject? Type1094 { get; set; } + public global::tryAGI.OpenAI.InviteStatus? Type1094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProjectRole? Type1095 { get; set; } + public global::System.Collections.Generic.IList? Type1095 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteDeleteResponse? Type1096 { get; set; } + public global::tryAGI.OpenAI.InviteProject? Type1096 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteDeleteResponseObject? Type1097 { get; set; } + public global::tryAGI.OpenAI.InviteProjectRole? Type1097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteListResponse? Type1098 { get; set; } + public global::tryAGI.OpenAI.InviteDeleteResponse? Type1098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteListResponseObject? Type1099 { get; set; } + public global::tryAGI.OpenAI.InviteDeleteResponseObject? Type1099 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1100 { get; set; } + public global::tryAGI.OpenAI.InviteListResponse? Type1100 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteProjectGroupBody? Type1101 { get; set; } + public global::tryAGI.OpenAI.InviteListResponseObject? Type1101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequest? Type1102 { get; set; } + public global::System.Collections.Generic.IList? Type1102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestRole? Type1103 { get; set; } + public global::tryAGI.OpenAI.InviteProjectGroupBody? Type1103 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1104 { get; set; } + public global::tryAGI.OpenAI.InviteRequest? Type1104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestProject? Type1105 { get; set; } + public global::tryAGI.OpenAI.InviteRequestRole? Type1105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InviteRequestProjectRole? Type1106 { get; set; } + public global::System.Collections.Generic.IList? Type1106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessage? Type1107 { get; set; } + public global::tryAGI.OpenAI.InviteRequestProject? Type1107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerCallOutputItemParam? Type1108 { get; set; } + public global::tryAGI.OpenAI.InviteRequestProjectRole? Type1108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type1109 { get; set; } + public global::tryAGI.OpenAI.OutputMessage? Type1109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchCallItemParam? Type1110 { get; set; } + public global::tryAGI.OpenAI.ComputerCallOutputItemParam? Type1110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchOutputItemParam? Type1111 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type1111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsItemParam? Type1112 { get; set; } + public global::tryAGI.OpenAI.ToolSearchCallItemParam? Type1112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionSummaryItemParam? Type1113 { get; set; } + public global::tryAGI.OpenAI.ToolSearchOutputItemParam? Type1113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParam? Type1114 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsItemParam? Type1114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputItemParam? Type1115 { get; set; } + public global::tryAGI.OpenAI.CompactionSummaryItemParam? Type1115 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallItemParam? Type1116 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParam? Type1116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParam? Type1117 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputItemParam? Type1117 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponse? Type1118 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallItemParam? Type1118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemDiscriminator? Type1119 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParam? Type1119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemDiscriminatorType? Type1120 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponse? Type1120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResource? Type1121 { get; set; } + public global::tryAGI.OpenAI.ItemDiscriminator? Type1121 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResourceDiscriminator? Type1122 { get; set; } + public global::tryAGI.OpenAI.ItemDiscriminatorType? Type1122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemResourceDiscriminatorType? Type1123 { get; set; } + public global::tryAGI.OpenAI.ItemResource? Type1123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAssistantsResponse? Type1124 { get; set; } + public global::tryAGI.OpenAI.ItemResourceDiscriminator? Type1124 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1125 { get; set; } + public global::tryAGI.OpenAI.ItemResourceDiscriminatorType? Type1125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsResponse? Type1126 { get; set; } + public global::tryAGI.OpenAI.ListAssistantsResponse? Type1126 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsResponseObject? Type1127 { get; set; } + public global::System.Collections.Generic.IList? Type1127 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1128 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsResponse? Type1128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListBatchesResponse? Type1129 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsResponseObject? 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.ListBatchesResponseObject? Type1131 { get; set; } + public global::tryAGI.OpenAI.ListBatchesResponse? Type1131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListCertificatesResponse? Type1132 { get; set; } + public global::System.Collections.Generic.IList? Type1132 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1133 { get; set; } + public global::tryAGI.OpenAI.ListBatchesResponseObject? Type1133 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificate? Type1134 { get; set; } + public global::tryAGI.OpenAI.ListCertificatesResponse? Type1134 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListCertificatesResponseObject? Type1135 { get; set; } + public global::System.Collections.Generic.IList? Type1135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesResponse? Type1136 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificate? Type1136 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1137 { get; set; } + public global::tryAGI.OpenAI.ListCertificatesResponseObject? Type1137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFile? Type1138 { get; set; } + public global::tryAGI.OpenAI.ListFilesResponse? Type1138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponse? Type1139 { get; set; } + public global::System.Collections.Generic.IList? Type1139 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1140 { get; set; } + public global::tryAGI.OpenAI.OpenAIFile? Type1140 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponseObject? Type1141 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponse? Type1141 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponse? Type1142 { get; set; } + public global::System.Collections.Generic.IList? Type1142 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1143 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionResponseObject? Type1143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject? Type1144 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponse? Type1144 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobEventsResponse? Type1145 { get; set; } + public global::System.Collections.Generic.IList? Type1145 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1146 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobCheckpointsResponseObject? Type1146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject? Type1147 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobEventsResponse? Type1147 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListMessagesResponse? Type1148 { get; set; } + public global::System.Collections.Generic.IList? Type1148 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1149 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningJobEventsResponseObject? Type1149 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObject? Type1150 { get; set; } + public global::tryAGI.OpenAI.ListMessagesResponse? Type1150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListModelsResponse? Type1151 { get; set; } + public global::System.Collections.Generic.IList? Type1151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListModelsResponseObject? Type1152 { get; set; } + public global::tryAGI.OpenAI.MessageObject? Type1152 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1153 { get; set; } + public global::tryAGI.OpenAI.ListModelsResponse? Type1153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Model18? Type1154 { get; set; } + public global::tryAGI.OpenAI.ListModelsResponseObject? Type1154 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponse? Type1155 { get; set; } + public global::System.Collections.Generic.IList? Type1155 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1156 { get; set; } + public global::tryAGI.OpenAI.Model18? Type1156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject? Type1157 { get; set; } + public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponse? Type1157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectCertificatesResponse? Type1158 { get; set; } + public global::System.Collections.Generic.IList? Type1158 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1159 { get; set; } + public global::tryAGI.OpenAI.ListPaginatedFineTuningJobsResponseObject? Type1159 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificate? Type1160 { get; set; } + public global::tryAGI.OpenAI.ListProjectCertificatesResponse? Type1160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectCertificatesResponseObject? Type1161 { get; set; } + public global::System.Collections.Generic.IList? Type1161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsResponse? Type1162 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificate? Type1162 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1163 { get; set; } + public global::tryAGI.OpenAI.ListProjectCertificatesResponseObject? Type1163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObject? Type1164 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsResponse? Type1164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunsResponse? Type1165 { get; set; } + public global::System.Collections.Generic.IList? Type1165 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1166 { get; set; } + public global::tryAGI.OpenAI.RunStepObject? Type1166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObject? Type1167 { get; set; } + public global::tryAGI.OpenAI.ListRunsResponse? Type1167 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesResponse? Type1168 { get; set; } + public global::System.Collections.Generic.IList? Type1168 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1169 { get; set; } + public global::tryAGI.OpenAI.RunObject? Type1169 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObject? Type1170 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesResponse? Type1170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoresResponse? Type1171 { get; set; } + public global::System.Collections.Generic.IList? Type1171 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1172 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObject? Type1172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObject? Type1173 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoresResponse? Type1173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallType? Type1174 { get; set; } + public global::System.Collections.Generic.IList? Type1174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellExecAction? Type1175 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObject? Type1175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallStatus? Type1176 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallType? Type1176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallOutputType? Type1177 { get; set; } + public global::tryAGI.OpenAI.LocalShellExecAction? Type1177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolCallOutputStatus2? Type1178 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallStatus? Type1178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LogProbProperties? Type1179 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallOutputType? Type1179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalRequestType? Type1180 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolCallOutputStatus2? Type1180 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponseType? Type1181 { get; set; } + public global::tryAGI.OpenAI.LogProbProperties? Type1181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPApprovalResponseResourceType? Type1182 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalRequestType? Type1182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPListToolsType? Type1183 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponseType? Type1183 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1184 { get; set; } + public global::tryAGI.OpenAI.MCPApprovalResponseResourceType? Type1184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPListToolsTool? Type1185 { get; set; } + public global::tryAGI.OpenAI.MCPListToolsType? Type1185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPTool? Type1186 { get; set; } + public global::System.Collections.Generic.IList? Type1186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolType? Type1187 { get; set; } + public global::tryAGI.OpenAI.MCPListToolsTool? Type1187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolConnectorId? Type1188 { get; set; } + public global::tryAGI.OpenAI.MCPTool? Type1188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? Type1189 { get; set; } + public global::tryAGI.OpenAI.MCPToolType? Type1189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolFilter? Type1190 { get; set; } + public global::tryAGI.OpenAI.MCPToolConnectorId? Type1190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1191 { get; set; } + public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? Type1191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum? Type1192 { get; set; } + public global::tryAGI.OpenAI.MCPToolFilter? Type1192 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum2? Type1193 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolCallType? Type1194 { get; set; } + public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum? Type1194 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MCPToolCallStatus? Type1195 { get; set; } + public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum2? Type1195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageFileObjectType? Type1196 { get; set; } + public global::tryAGI.OpenAI.MCPToolCallType? Type1196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFile? Type1197 { get; set; } + public global::tryAGI.OpenAI.MCPToolCallStatus? Type1197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFileDetail? Type1198 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageFileObjectType? Type1198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageUrlObjectType? Type1199 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFile? Type1199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrl? Type1200 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageFileObjectImageFileDetail? Type1200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrlDetail? Type1201 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageUrlObjectType? Type1201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentRefusalObject? Type1202 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrl? Type1202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentRefusalObjectType? Type1203 { get; set; } + public global::tryAGI.OpenAI.MessageContentImageUrlObjectImageUrlDetail? Type1203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObject? Type1204 { get; set; } + public global::tryAGI.OpenAI.MessageContentRefusalObject? Type1204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectType? Type1205 { get; set; } + public global::tryAGI.OpenAI.MessageContentRefusalObjectType? Type1205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectFileCitation? Type1206 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObject? Type1206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObject? Type1207 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectType? Type1207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectType? Type1208 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFileCitationObjectFileCitation? Type1208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectFilePath? Type1209 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObject? Type1209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextObject? Type1210 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectType? Type1210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextObjectType? Type1211 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextAnnotationsFilePathObjectFilePath? Type1211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentTextObjectText? Type1212 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextObject? Type1212 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1213 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextObjectType? Type1213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1214 { get; set; } + public global::tryAGI.OpenAI.MessageContentTextObjectText? Type1214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObject? Type1215 { get; set; } + public global::System.Collections.Generic.IList>? Type1215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectType? Type1216 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFile? Type1217 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObject? Type1217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFileDetail? Type1218 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectType? Type1218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObject? Type1219 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFile? Type1219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectType? Type1220 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageFileObjectImageFileDetail? Type1220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrl? Type1221 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObject? Type1221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrlDetail? Type1222 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectType? Type1222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentRefusalObject? Type1223 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrl? Type1223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentRefusalObjectType? Type1224 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentImageUrlObjectImageUrlDetail? Type1224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObject? Type1225 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentRefusalObject? Type1225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectType? Type1226 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentRefusalObjectType? Type1226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation? Type1227 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObject? Type1227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObject? Type1228 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectType? Type1228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectType? Type1229 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation? Type1229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectFilePath? Type1230 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObject? Type1230 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextObject? Type1231 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectType? Type1231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextObjectType? Type1232 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextAnnotationsFilePathObjectFilePath? Type1232 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaContentTextObjectText? Type1233 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextObject? Type1233 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1234 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextObjectType? Type1234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1235 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaContentTextObjectText? Type1235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObject? Type1236 { get; set; } + public global::System.Collections.Generic.IList>? Type1236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObjectObject? Type1237 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObjectDelta? Type1238 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObject? Type1238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageDeltaObjectDeltaRole? Type1239 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObjectObject? Type1239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectObject? Type1240 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObjectDelta? Type1240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectStatus? Type1241 { get; set; } + public global::tryAGI.OpenAI.MessageDeltaObjectDeltaRole? Type1241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectIncompleteDetails2? Type1242 { get; set; } + public global::tryAGI.OpenAI.MessageObjectObject? Type1242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectIncompleteDetailsReason? Type1243 { get; set; } + public global::tryAGI.OpenAI.MessageObjectStatus? Type1243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectRole? Type1244 { get; set; } + public global::tryAGI.OpenAI.MessageObjectIncompleteDetails2? Type1244 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1245 { get; set; } + public global::tryAGI.OpenAI.MessageObjectIncompleteDetailsReason? Type1245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageObjectAttachmentsVariant1Item? Type1246 { get; set; } + public global::tryAGI.OpenAI.MessageObjectRole? Type1246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1247 { get; set; } + public global::System.Collections.Generic.IList? Type1247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant1? Type1248 { get; set; } + public global::tryAGI.OpenAI.MessageObjectAttachmentsVariant1Item? Type1248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant1Event? Type1249 { get; set; } + public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant2? Type1250 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant1? Type1250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant2Event? Type1251 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant1Event? Type1251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant3? Type1252 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant2? Type1252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant3Event? Type1253 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant2Event? Type1253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant4? Type1254 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant3? Type1254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant4Event? Type1255 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant3Event? Type1255 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant5? Type1256 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant4? Type1256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStreamEventVariant5Event? Type1257 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant4Event? Type1257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelObject? Type1258 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant5? Type1258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIds? Type1259 { get; set; } + public global::tryAGI.OpenAI.MessageStreamEventVariant5Event? Type1259 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsResponses? Type1260 { get; set; } + public global::tryAGI.OpenAI.ModelObject? Type1260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsCompaction? Type1261 { get; set; } + public global::tryAGI.OpenAI.ModelIds? Type1261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1262 { get; set; } + public global::tryAGI.OpenAI.ModelIdsResponses? Type1262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelIdsSharedEnum? Type1263 { get; set; } + public global::tryAGI.OpenAI.ModelIdsCompaction? Type1263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModelResponsePropertiesPromptCacheRetention2? Type1264 { get; set; } + public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequest? Type1265 { get; set; } + public global::tryAGI.OpenAI.ModelIdsSharedEnum? Type1265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResources2? Type1266 { get; set; } + public global::tryAGI.OpenAI.ModelResponsePropertiesPromptCacheRetention2? Type1266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type1267 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequest? Type1267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type1268 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResources2? Type1268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyCertificateRequest? Type1269 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesCodeInterpreter? Type1269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyMessageRequest? Type1270 { get; set; } + public global::tryAGI.OpenAI.ModifyAssistantRequestToolResourcesFileSearch? Type1270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyRunRequest? Type1271 { get; set; } + public global::tryAGI.OpenAI.ModifyCertificateRequest? Type1271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequest? Type1272 { get; set; } + public global::tryAGI.OpenAI.ModifyMessageRequest? Type1272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResources2? Type1273 { get; set; } + public global::tryAGI.OpenAI.ModifyRunRequest? Type1273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type1274 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequest? Type1274 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type1275 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResources2? Type1275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NoiseReductionType? Type1276 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesCodeInterpreter? Type1276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFileObject? Type1277 { get; set; } + public global::tryAGI.OpenAI.ModifyThreadRequestToolResourcesFileSearch? Type1277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFilePurpose? Type1278 { get; set; } + public global::tryAGI.OpenAI.NoiseReductionType? Type1278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OpenAIFileStatus? Type1279 { get; set; } + public global::tryAGI.OpenAI.OpenAIFileObject? Type1279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateObject? Type1280 { get; set; } + public global::tryAGI.OpenAI.OpenAIFilePurpose? Type1280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateCertificateDetails? Type1281 { get; set; } + public global::tryAGI.OpenAI.OpenAIFileStatus? Type1281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateActivationResponse? Type1282 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateObject? Type1282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateActivationResponseObject? Type1283 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateCertificateDetails? Type1283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponse? Type1284 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateActivationResponse? Type1284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponseObject? Type1285 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateActivationResponseObject? Type1285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationDataRetention? Type1286 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponse? Type1286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationDataRetentionObject? Type1287 { get; set; } + public global::tryAGI.OpenAI.OrganizationCertificateDeactivationResponseObject? Type1287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationDataRetentionType? Type1288 { get; set; } + public global::tryAGI.OpenAI.OrganizationDataRetention? Type1288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateObject? Type1289 { get; set; } + public global::tryAGI.OpenAI.OrganizationDataRetentionObject? Type1289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateCertificateDetails? Type1290 { get; set; } + public global::tryAGI.OpenAI.OrganizationDataRetentionType? Type1290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponse? Type1291 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateObject? Type1291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponseObject? Type1292 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateCertificateDetails? Type1292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponse? Type1293 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponse? Type1293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponseObject? Type1294 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateActivationResponseObject? Type1294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlert? Type1295 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponse? Type1295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertObject? Type1296 { get; set; } + public global::tryAGI.OpenAI.OrganizationProjectCertificateDeactivationResponseObject? Type1296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertCurrency? Type1297 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlert? Type1297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertInterval? Type1298 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertObject? Type1298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResource? Type1299 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertCurrency? Type1299 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResourceObject? Type1300 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertInterval? Type1300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertListResource? Type1301 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResource? Type1301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendAlertListResourceObject? Type1302 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertDeletedResourceObject? Type1302 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1303 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertListResource? Type1303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParam? Type1304 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendAlertListResourceObject? Type1304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParamType? Type1305 { get; set; } + public global::System.Collections.Generic.IList? Type1305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputAudio? Type1306 { get; set; } + public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParam? Type1306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputAudioType? Type1307 { get; set; } + public global::tryAGI.OpenAI.OtherChunkingStrategyResponseParamType? Type1307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputTextContent? Type1308 { get; set; } + public global::tryAGI.OpenAI.OutputAudio? Type1308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RefusalContent? Type1309 { get; set; } + public global::tryAGI.OpenAI.OutputAudioType? Type1309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningTextContent? Type1310 { get; set; } + public global::tryAGI.OpenAI.OutputTextContent? Type1310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputContentDiscriminator? Type1311 { get; set; } + public global::tryAGI.OpenAI.RefusalContent? Type1311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputContentDiscriminatorType? Type1312 { get; set; } + public global::tryAGI.OpenAI.ReasoningTextContent? Type1312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItem? Type1313 { get; set; } + public global::tryAGI.OpenAI.OutputContentDiscriminator? Type1313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItemDiscriminator? Type1314 { get; set; } + public global::tryAGI.OpenAI.OutputContentDiscriminatorType? Type1314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputItemDiscriminatorType? Type1315 { get; set; } + public global::tryAGI.OpenAI.OutputItem? Type1315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageType? Type1316 { get; set; } + public global::tryAGI.OpenAI.OutputItemDiscriminator? Type1316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageRole? Type1317 { get; set; } + public global::tryAGI.OpenAI.OutputItemDiscriminatorType? Type1317 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1318 { get; set; } + public global::tryAGI.OpenAI.OutputMessageType? Type1318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageContent? Type1319 { get; set; } + public global::tryAGI.OpenAI.OutputMessageRole? Type1319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageStatus? Type1320 { get; set; } + public global::System.Collections.Generic.IList? Type1320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageContentDiscriminator? Type1321 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContent? Type1321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputMessageContentDiscriminatorType? Type1322 { get; set; } + public global::tryAGI.OpenAI.OutputMessageStatus? Type1322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PredictionContentType? Type1323 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContentDiscriminator? Type1323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Project? Type1324 { get; set; } + public global::tryAGI.OpenAI.OutputMessageContentDiscriminatorType? Type1324 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectObject? Type1325 { get; set; } + public global::tryAGI.OpenAI.PredictionContentType? Type1325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKey? Type1326 { get; set; } + public global::tryAGI.OpenAI.Project? Type1326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1327 { get; set; } + public global::tryAGI.OpenAI.ProjectObject? Type1327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerProjectAccess? Type1328 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKey? Type1328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1329 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyObject? Type1329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1330 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerProjectAccess? Type1330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerUser? Type1331 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwner? Type1331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyOwnerServiceAccount? Type1332 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerType? Type1332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1333 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerUser? Type1333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1334 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyOwnerServiceAccount? Type1334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1335 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponse? Type1335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1336 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyDeleteResponseObject? Type1336 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1337 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyListResponse? Type1337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectCreateRequest? Type1338 { get; set; } + public global::tryAGI.OpenAI.ProjectApiKeyListResponseObject? Type1338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectDataRetention? Type1339 { get; set; } + public global::System.Collections.Generic.IList? Type1339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectDataRetentionObject? Type1340 { get; set; } + public global::tryAGI.OpenAI.ProjectCreateRequest? Type1340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectDataRetentionType? Type1341 { get; set; } + public global::tryAGI.OpenAI.ProjectDataRetention? Type1341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroup? Type1342 { get; set; } + public global::tryAGI.OpenAI.ProjectDataRetentionObject? Type1342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupObject? Type1343 { get; set; } + public global::tryAGI.OpenAI.ProjectDataRetentionType? Type1343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupGroupType? Type1344 { get; set; } + public global::tryAGI.OpenAI.ProjectGroup? Type1344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupDeletedResource? Type1345 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupObject? Type1345 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupDeletedResourceObject? Type1346 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupGroupType? Type1346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupListResource? Type1347 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupDeletedResource? Type1347 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectGroupListResourceObject? Type1348 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupDeletedResourceObject? Type1348 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1349 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupListResource? Type1349 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectHostedToolPermissions? Type1350 { get; set; } + public global::tryAGI.OpenAI.ProjectGroupListResourceObject? Type1350 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectHostedToolPermissionsUpdateRequest? Type1351 { get; set; } + public global::System.Collections.Generic.IList? Type1351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectListResponse? Type1352 { get; set; } + public global::tryAGI.OpenAI.ProjectHostedToolPermissions? Type1352 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectListResponseObject? Type1353 { get; set; } + public global::tryAGI.OpenAI.ProjectHostedToolPermissionsUpdateRequest? Type1353 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1354 { get; set; } + public global::tryAGI.OpenAI.ProjectListResponse? Type1354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissions? Type1355 { get; set; } + public global::tryAGI.OpenAI.ProjectListResponseObject? Type1355 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsObject? Type1356 { get; set; } + public global::System.Collections.Generic.IList? Type1356 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsMode? Type1357 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissions? Type1357 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponse? Type1358 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsObject? Type1358 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponseObject? Type1359 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsMode? Type1359 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequest? Type1360 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponse? Type1360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequestMode? Type1361 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsDeleteResponseObject? Type1361 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimit? Type1362 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequest? Type1362 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1363 { get; set; } + public global::tryAGI.OpenAI.ProjectModelPermissionsUpdateRequestMode? Type1363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1364 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimit? Type1364 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1365 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitObject? Type1365 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1366 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitListResponse? Type1366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1367 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitListResponseObject? Type1367 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccount? Type1368 { get; set; } + public global::System.Collections.Generic.IList? Type1368 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1369 { get; set; } + public global::tryAGI.OpenAI.ProjectRateLimitUpdateRequest? Type1369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1370 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccount? Type1370 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1371 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountObject? Type1371 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1372 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountRole? Type1372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1373 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountApiKey? Type1373 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1374 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountApiKeyObject? Type1374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1375 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateRequest? Type1375 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1376 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponse? Type1376 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1377 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseObject? Type1377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1378 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountCreateResponseRole? Type1378 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1379 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponse? Type1379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1380 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountDeleteResponseObject? Type1380 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1381 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountListResponse? Type1381 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlert? Type1382 { get; set; } + public global::tryAGI.OpenAI.ProjectServiceAccountListResponseObject? Type1382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertObject? Type1383 { get; set; } + public global::System.Collections.Generic.IList? Type1383 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertCurrency? Type1384 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlert? Type1384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertInterval? Type1385 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertObject? Type1385 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResource? Type1386 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertCurrency? Type1386 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResourceObject? Type1387 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertInterval? Type1387 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertListResource? Type1388 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResource? Type1388 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendAlertListResourceObject? Type1389 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertDeletedResourceObject? Type1389 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1390 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertListResource? Type1390 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1391 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendAlertListResourceObject? Type1391 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUser? Type1392 { get; set; } + public global::System.Collections.Generic.IList? Type1392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserObject? Type1393 { get; set; } + public global::tryAGI.OpenAI.ProjectUpdateRequest? Type1393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1394 { get; set; } + public global::tryAGI.OpenAI.ProjectUser? Type1394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1395 { get; set; } + public global::tryAGI.OpenAI.ProjectUserObject? Type1395 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1396 { get; set; } + public global::tryAGI.OpenAI.ProjectUserCreateRequest? Type1396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserListResponse? Type1397 { get; set; } + public global::tryAGI.OpenAI.ProjectUserDeleteResponse? Type1397 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1398 { get; set; } + public global::tryAGI.OpenAI.ProjectUserDeleteResponseObject? Type1398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1399 { get; set; } + public global::tryAGI.OpenAI.ProjectUserListResponse? Type1399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptVariant1? Type1400 { get; set; } + public global::System.Collections.Generic.IList? Type1400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicAssignOrganizationGroupRoleBody? Type1401 { get; set; } + public global::tryAGI.OpenAI.ProjectUserUpdateRequest? Type1401 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicCreateOrganizationRoleBody? Type1402 { get; set; } + public global::tryAGI.OpenAI.PromptVariant1? Type1402 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicRoleListResource? Type1403 { get; set; } + public global::tryAGI.OpenAI.PublicAssignOrganizationGroupRoleBody? Type1403 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicRoleListResourceObject? Type1404 { get; set; } + public global::tryAGI.OpenAI.PublicCreateOrganizationRoleBody? Type1404 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1405 { get; set; } + public global::tryAGI.OpenAI.PublicRoleListResource? Type1405 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PublicUpdateOrganizationRoleBody? Type1406 { get; set; } + public global::tryAGI.OpenAI.PublicRoleListResourceObject? Type1406 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1407 { get; set; } + public global::System.Collections.Generic.IList? Type1407 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormat? Type1408 { get; set; } + public global::tryAGI.OpenAI.PublicUpdateOrganizationRoleBody? Type1408 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormatType? Type1409 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormats? Type1409 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormat? Type1410 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormat? Type1410 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormatType? Type1411 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmAudioFormatType? Type1411 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormat? Type1412 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormat? Type1412 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormatType? Type1413 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmuAudioFormatType? Type1413 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1414 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormat? Type1414 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1415 { get; set; } + public global::tryAGI.OpenAI.RealtimeAudioFormatsPcmaAudioFormatType? Type1415 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItem? Type1416 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreate? Type1416 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1417 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemCreateType? Type1417 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1418 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItem? Type1418 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1419 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDelete? Type1419 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1420 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemDeleteType? Type1420 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1421 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieve? Type1421 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1422 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemRetrieveType? Type1422 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1423 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncate? Type1423 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1424 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventConversationItemTruncateType? Type1424 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1425 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppend? Type1425 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1426 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferAppendType? Type1426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1427 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClear? Type1427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1428 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferClearType? Type1428 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1429 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommit? Type1429 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1430 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventInputAudioBufferCommitType? Type1430 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1431 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClear? Type1431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1432 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventOutputAudioBufferClearType? Type1432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1433 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancel? Type1433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1434 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCancelType? Type1434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1435 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreate? Type1435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1436 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventResponseCreateType? Type1436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1437 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParams? Type1437 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1438 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdate? Type1438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1439 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventSessionUpdateType? Type1439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1440 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequest? Type1440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1441 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdate? Type1441 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1442 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaClientEventTranscriptionSessionUpdateType? Type1442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1443 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequest? Type1443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1444 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponse? Type1444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1445 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseObject? Type1445 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1446 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatus? Type1446 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1447 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetails? Type1447 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1448 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsType? Type1448 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1449 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsReason? Type1449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1450 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseStatusDetailsError? Type1450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1451 { get; set; } + public global::System.Collections.Generic.IList? Type1451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1452 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsage? Type1452 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1453 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetails? Type1453 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceIdsShared? Type1454 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageInputTokenDetailsCachedTokensDetails? Type1454 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1455 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseUsageOutputTokenDetails? Type1455 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1456 { get; set; } + public global::tryAGI.OpenAI.VoiceIdsShared? Type1456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1457 { get; set; } + public global::System.Collections.Generic.IList? Type1457 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1458 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseModalitie? Type1458 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1459 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseOutputAudioFormat? Type1459 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1460 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1460 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1461 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseMaxOutputTokens? Type1461 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1462 { get; set; } + public global::System.Collections.Generic.IList? Type1462 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1463 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsModalitie? Type1463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1464 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsOutputAudioFormat? Type1464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1465 { get; set; } + public global::System.Collections.Generic.IList? Type1465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1466 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsTool? Type1466 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceOptions? Type1467 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsToolType? Type1467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceFunction? Type1468 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceMCP? Type1469 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceOptions? Type1469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1470 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceFunction? Type1470 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1471 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceMCP? Type1471 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1472 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1473 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsMaxOutputTokens? Type1473 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1474 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1475 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaResponseCreateParamsConversation? Type1475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1476 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreated? Type1476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1477 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemCreatedType? Type1477 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1478 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeleted? Type1478 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1479 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemDeletedType? Type1479 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1480 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted? Type1480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1481 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType? Type1481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1482 { get; set; } + public global::System.Collections.Generic.IList? Type1482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1483 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDelta? Type1483 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1484 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionDeltaType? Type1484 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1485 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailed? Type1485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1486 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedType? Type1486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1487 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionFailedError? Type1487 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1488 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegment? Type1488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1489 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionSegmentType? Type1489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1490 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrieved? Type1490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1491 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemRetrievedType? Type1491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1492 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncated? Type1492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1493 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemTruncatedType? Type1493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1494 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventError? Type1494 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1495 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorType? Type1495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1496 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventErrorError? Type1496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1497 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCleared? Type1497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1498 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferClearedType? Type1498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1499 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommitted? Type1499 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1500 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferCommittedType? Type1500 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1501 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStarted? Type1501 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1502 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStartedType? Type1502 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1503 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStopped? Type1503 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1504 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventInputAudioBufferSpeechStoppedType? Type1504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1505 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompleted? Type1505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1506 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsCompletedType? Type1506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1507 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailed? Type1507 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1508 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsFailedType? Type1508 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1509 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgress? Type1509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1510 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventMCPListToolsInProgressType? Type1510 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1511 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdated? Type1511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1512 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedType? Type1512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1513 { get; set; } + public global::System.Collections.Generic.IList? Type1513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1514 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimit? Type1514 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1515 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventRateLimitsUpdatedRateLimitName? Type1515 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1516 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDelta? Type1516 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1517 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDeltaType? Type1517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1518 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDone? Type1518 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1519 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioDoneType? Type1519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1520 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDelta? Type1520 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1521 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDeltaType? Type1521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1522 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDone? Type1522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1523 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseAudioTranscriptDoneType? Type1523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1524 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAdded? Type1524 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1525 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedType? Type1525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1526 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPart? Type1526 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1527 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartAddedPartType? Type1527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1528 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDone? Type1528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1529 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDoneType? Type1529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1530 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePart? Type1530 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1531 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseContentPartDonePartType? Type1531 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1532 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreated? Type1532 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1533 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseCreatedType? Type1533 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1534 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDone? Type1534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1535 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseDoneType? Type1535 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1536 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta? Type1536 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1537 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDeltaType? Type1537 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1538 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDone? Type1538 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1539 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseFunctionCallArgumentsDoneType? Type1539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1540 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDelta? Type1540 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1541 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDeltaType? Type1541 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1542 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDone? Type1542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1543 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallArgumentsDoneType? Type1543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1544 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompleted? Type1544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1545 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallCompletedType? Type1545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1546 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailed? Type1546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1547 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallFailedType? Type1547 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1548 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgress? Type1548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1549 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseMCPCallInProgressType? Type1549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1550 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAdded? Type1550 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1551 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemAddedType? Type1551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1552 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDone? Type1552 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1553 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseOutputItemDoneType? Type1553 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1554 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDelta? Type1554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1555 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDeltaType? Type1555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1556 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDone? Type1556 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1557 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventResponseTextDoneType? Type1557 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSession? Type1558 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreated? Type1558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1559 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionCreatedType? Type1559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1560 { get; set; } + public global::tryAGI.OpenAI.RealtimeSession? Type1560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1561 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdated? Type1561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1562 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventSessionUpdatedType? Type1562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1563 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreated? Type1563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1564 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionCreatedType? Type1564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1565 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponse? Type1565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCallCreateRequest? Type1566 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdated? Type1566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1567 { get; set; } + public global::tryAGI.OpenAI.RealtimeBetaServerEventTranscriptionSessionUpdatedType? Type1567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCallReferRequest? Type1568 { get; set; } + public global::tryAGI.OpenAI.RealtimeCallCreateRequest? Type1568 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCallRejectRequest? Type1569 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGA? Type1569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEvent? Type1570 { get; set; } + public global::tryAGI.OpenAI.RealtimeCallReferRequest? Type1570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1571 { get; set; } + public global::tryAGI.OpenAI.RealtimeCallRejectRequest? Type1571 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1572 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEvent? Type1572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1573 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreate? Type1573 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1574 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDelete? Type1574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1575 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieve? Type1575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1576 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncate? Type1576 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1577 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppend? Type1577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1578 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClear? Type1578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1579 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClear? Type1579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1580 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommit? Type1580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1581 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCancel? Type1581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1582 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCreate? Type1582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventDiscriminatorType? Type1583 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdate? Type1583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1584 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventDiscriminator? Type1584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1585 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventDiscriminatorType? Type1585 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1586 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemCreateType? Type1586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1587 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemDeleteType? Type1587 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1588 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemRetrieveType? Type1588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1589 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventConversationItemTruncateType? Type1589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1590 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferAppendType? Type1590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1591 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferClearType? Type1591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1592 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventInputAudioBufferCommitType? Type1592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1593 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventOutputAudioBufferClearType? Type1593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1594 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCancelType? Type1594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1595 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventResponseCreateType? Type1595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1596 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParams? Type1596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1597 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventSessionUpdateType? Type1597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1598 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1599 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGA? Type1599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1600 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdate? Type1600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1601 { get; set; } + public global::tryAGI.OpenAI.RealtimeClientEventTranscriptionSessionUpdateType? Type1601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1602 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystem? Type1602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1603 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUser? Type1603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1604 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistant? Type1604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1605 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCall? Type1605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1606 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutput? Type1606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1607 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalResponse? Type1607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1608 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPListTools? Type1608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminator? Type1609 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolCall? Type1609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminatorType? Type1610 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalRequest? Type1610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1611 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminator? Type1611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1612 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemDiscriminatorType? Type1612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1613 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallObject? Type1613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1614 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallType? Type1614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1615 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallStatus? Type1615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1616 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputObject? Type1616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1617 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputType? Type1617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1618 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemFunctionCallOutputStatus? Type1618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1619 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantObject? Type1619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1620 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantType? Type1620 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1621 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantStatus? Type1621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1622 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantRole? Type1622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1623 { get; set; } + public global::System.Collections.Generic.IList? Type1623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1624 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItem? Type1624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1625 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageAssistantContentItemType? Type1625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1626 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemObject? Type1626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1627 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemType? Type1627 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1628 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemStatus? Type1628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1629 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemRole? Type1629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1630 { get; set; } + public global::System.Collections.Generic.IList? Type1630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1631 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItem? Type1631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1632 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageSystemContentItemType? Type1632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1633 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserObject? Type1633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1634 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserType? Type1634 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1635 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserStatus? Type1635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1636 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserRole? Type1636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1637 { get; set; } + public global::System.Collections.Generic.IList? Type1637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1638 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItem? Type1638 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1639 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemType? Type1639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1640 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemMessageUserContentItemDetail? Type1640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1641 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReference? Type1641 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1642 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceType? Type1642 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1643 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceObject? Type1643 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1644 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceStatus? Type1644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1645 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceRole? Type1645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1646 { get; set; } + public global::System.Collections.Generic.IList? Type1646 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1647 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItem? Type1647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1648 { get; set; } + public global::tryAGI.OpenAI.RealtimeConversationItemWithReferenceContentItemType? Type1648 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1649 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequest? Type1649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1650 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfter? Type1650 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Session2? Type1651 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretRequestExpiresAfterAnchor? Type1651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1652 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponse? Type1652 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1653 { get; set; } + public global::tryAGI.OpenAI.Session2? Type1653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1654 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGA? Type1654 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminatorType? Type1655 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGA? Type1655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1656 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminator? Type1656 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1657 { get; set; } + public global::tryAGI.OpenAI.RealtimeCreateClientSecretResponseSessionDiscriminatorType? Type1657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1658 { get; set; } + public global::tryAGI.OpenAI.RealtimeFunctionTool? Type1658 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1659 { get; set; } + public global::tryAGI.OpenAI.RealtimeFunctionToolType? Type1659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1660 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalRequestType? Type1660 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1661 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPApprovalResponseType? Type1661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1662 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPHTTPError? Type1662 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1663 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPHTTPErrorType? Type1663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1664 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPListToolsType? Type1664 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1665 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPProtocolError? Type1665 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1666 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPProtocolErrorType? Type1666 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1667 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolCallType? Type1667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1668 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeReasoning? Type1669 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolExecutionError? Type1669 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeReasoningEffort? Type1670 { get; set; } + public global::tryAGI.OpenAI.RealtimeMCPToolExecutionErrorType? Type1670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponse? Type1671 { get; set; } + public global::tryAGI.OpenAI.RealtimeReasoning? Type1671 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseObject? Type1672 { get; set; } + public global::tryAGI.OpenAI.RealtimeReasoningEffort? Type1672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1673 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponse? Type1673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetails? Type1674 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseObject? Type1674 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsType? Type1675 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatus? Type1675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsReason? Type1676 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetails? Type1676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsError? Type1677 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsType? Type1677 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudio? Type1678 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsReason? Type1678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseAudioOutput? Type1679 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseStatusDetailsError? Type1679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1680 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudio? Type1680 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetails? Type1681 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseAudioOutput? Type1681 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetailsCachedTokensDetails? Type1682 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsage? Type1682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseUsageOutputTokenDetails? Type1683 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetails? Type1683 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1684 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsageInputTokenDetailsCachedTokensDetails? Type1684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseOutputModalitie? Type1685 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseUsageOutputTokenDetails? Type1685 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1686 { get; set; } + public global::System.Collections.Generic.IList? Type1686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseMaxOutputTokens? Type1687 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseOutputModalitie? Type1687 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1688 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1688 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1689 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseMaxOutputTokens? Type1689 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1690 { get; set; } + public global::System.Collections.Generic.IList? Type1690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1691 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsOutputModalitie? Type1691 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1692 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudio? Type1692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1693 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsAudioOutput? Type1693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1694 { get; set; } + public global::System.Collections.Generic.IList>? Type1694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1695 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1695 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1696 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1697 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsMaxOutputTokens? Type1697 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEvent? Type1698 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1698 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1699 { get; set; } + public global::tryAGI.OpenAI.RealtimeResponseCreateParamsConversation? Type1699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1700 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEvent? Type1700 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1701 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreated? Type1701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1702 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreated? Type1702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1703 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeleted? Type1703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1704 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted? Type1704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1705 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type1705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1706 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type1706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventError? Type1707 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrieved? Type1707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1708 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncated? Type1708 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1709 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventError? Type1709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type1710 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCleared? Type1710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1711 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommitted? Type1711 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1712 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type1712 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1713 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStarted? Type1713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1714 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStopped? Type1714 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1715 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdated? Type1715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1716 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDelta? Type1716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1717 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDone? Type1717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1718 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDelta? Type1718 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1719 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDone? Type1719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1720 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAdded? Type1720 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1721 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDone? Type1721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1722 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseCreated? Type1722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1723 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseDone? Type1723 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1724 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type1724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1725 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDone? Type1725 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1726 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAdded? Type1726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1727 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDone? Type1727 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1728 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDelta? Type1728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1729 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDone? Type1729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1730 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionCreated? Type1730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1731 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdated? Type1731 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1732 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStarted? Type1732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1733 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStopped? Type1733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1734 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferCleared? Type1734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1735 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAdded? Type1735 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1736 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDone? Type1736 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1737 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type1737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1738 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type1738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1739 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgress? Type1739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1740 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompleted? Type1740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1741 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailed? Type1741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1742 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDelta? Type1742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1743 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDone? Type1743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1744 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgress? Type1744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventDiscriminator? Type1745 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompleted? Type1745 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventDiscriminatorType? Type1746 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailed? Type1746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1747 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventDiscriminator? Type1747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1748 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventDiscriminatorType? Type1748 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1749 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedType? Type1749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1750 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationCreatedConversation? Type1750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1751 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemAddedType? Type1751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1752 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemCreatedType? Type1752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1753 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDeletedType? Type1753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1754 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemDoneType? Type1754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1755 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType? Type1755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1756 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type1756 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1757 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type1757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1758 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type1758 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1759 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type1759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1760 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemRetrievedType? Type1760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1761 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventConversationItemTruncatedType? Type1761 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1762 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventErrorType? Type1762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1763 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventErrorError? Type1763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type1764 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferClearedType? Type1764 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1765 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferCommittedType? Type1765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1766 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type1766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1767 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStartedType? Type1767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1768 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type1768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1769 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type1769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1770 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsCompletedType? Type1770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1771 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsFailedType? Type1771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1772 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventMCPListToolsInProgressType? Type1772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1773 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferClearedType? Type1773 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1774 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStartedType? Type1774 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1775 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventOutputAudioBufferStoppedType? Type1775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1776 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedType? Type1776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1777 { get; set; } + public global::System.Collections.Generic.IList? Type1777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1778 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimit? Type1778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1779 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type1779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1780 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDeltaType? Type1780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1781 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioDoneType? Type1781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1782 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDeltaType? Type1782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1783 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseAudioTranscriptDoneType? Type1783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1784 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedType? Type1784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1785 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPart? Type1785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1786 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartAddedPartType? Type1786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1787 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDoneType? Type1787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1788 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePart? Type1788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1789 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseContentPartDonePartType? Type1789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1790 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseCreatedType? Type1790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1791 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseDoneType? Type1791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1792 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type1792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1793 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type1793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1794 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type1794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1795 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type1795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1796 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallCompletedType? Type1796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1797 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallFailedType? Type1797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1798 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseMCPCallInProgressType? Type1798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1799 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemAddedType? Type1799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1800 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseOutputItemDoneType? Type1800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1801 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDeltaType? Type1801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1802 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventResponseTextDoneType? Type1802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1803 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionCreatedType? Type1803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1804 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1805 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventSessionUpdatedType? Type1805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionObject? Type1806 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdated? Type1806 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1807 { get; set; } + public global::tryAGI.OpenAI.RealtimeServerEventTranscriptionSessionUpdatedType? Type1807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionModalitie? Type1808 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionObject? Type1808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1809 { get; set; } + public global::System.Collections.Generic.IList? Type1809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionModel? Type1810 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionModalitie? Type1810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionInputAudioFormat? Type1811 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1811 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionOutputAudioFormat? Type1812 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionModel? Type1812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1? Type1813 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionInputAudioFormat? Type1813 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionInputAudioNoiseReduction? Type1814 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionOutputAudioFormat? Type1814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1815 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1? Type1815 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum? Type1816 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionInputAudioNoiseReduction? Type1816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum2? Type1817 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1817 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1818 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum? Type1818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1819 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionTracingTracingConfigurationEnum2? Type1819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionMaxResponseOutputTokens? Type1820 { get; set; } + public global::System.Collections.Generic.IList? Type1820 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1821 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1821 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionIncludeVariant1Item? Type1822 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionMaxResponseOutputTokens? Type1822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1823 { get; set; } + public global::System.Collections.Generic.IList? Type1823 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1824 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionIncludeVariant1Item? Type1824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1825 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestClientSecret? Type1825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1826 { get; set; } + public global::System.Collections.Generic.IList? Type1826 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1827 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestModalitie? Type1827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1828 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestInputAudioTranscription? Type1828 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1829 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1830 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum? Type1830 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1831 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTracingEnum2? Type1831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1832 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTurnDetection? Type1832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1833 { get; set; } + public global::System.Collections.Generic.IList? Type1833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1834 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestTool? Type1834 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1835 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestToolType? Type1835 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncation? Type1836 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1837 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestMaxResponseOutputTokens? Type1837 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1838 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncation? Type1838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1839 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAType? Type1839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1840 { get; set; } + public global::System.Collections.Generic.IList? Type1840 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1841 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAOutputModalitie? Type1841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1842 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1843 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAModel? Type1843 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1844 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudio? Type1844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1845 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInput? Type1845 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1846 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type1846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1847 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAAudioOutput? Type1847 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1848 { get; set; } + public global::System.Collections.Generic.IList? Type1848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1849 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAIncludeItem? Type1849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1850 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1851 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum? Type1851 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1852 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGATracingEnum2? Type1852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type1853 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1853 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1854 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateRequestGAMaxOutputTokens? Type1854 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type1855 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponse? Type1855 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1856 { get; set; } + public global::System.Collections.Generic.IList? Type1856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type1857 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseIncludeItem? Type1857 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type1858 { get; set; } + public global::System.Collections.Generic.IList? Type1858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type1859 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseOutputModalitie? Type1859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type1860 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudio? Type1860 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type1861 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInput? Type1861 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type1862 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputNoiseReduction? Type1862 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1863 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioInputTurnDetection? Type1863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type1864 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseAudioOutput? Type1864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type1865 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1865 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type1866 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum? Type1866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1867 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTracingEnum2? Type1867 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type1868 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseTurnDetection? Type1868 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1869 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAObject? Type1870 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseMaxOutputTokens? Type1870 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1871 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAType? Type1871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1872 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAObject? Type1872 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type1873 { get; set; } + public global::System.Collections.Generic.IList? Type1873 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1874 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAOutputModalitie? Type1874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1875 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type1875 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1876 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAModel? Type1876 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1877 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudio? Type1877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1878 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInput? Type1878 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1879 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type1879 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1880 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAAudioOutput? Type1880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type1881 { get; set; } + public global::System.Collections.Generic.IList? Type1881 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type1882 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAIncludeItem? Type1882 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type1883 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type1883 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1884 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type1884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1885 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type1885 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1886 { get; set; } + public global::tryAGI.OpenAI.RealtimeSessionCreateResponseGAMaxOutputTokens? Type1886 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1887 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type1887 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1888 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type1888 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1889 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type1889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1890 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type1890 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1891 { get; set; } + public global::System.Collections.Generic.IList? Type1891 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1892 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type1892 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1893 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAType? Type1893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1894 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudio? Type1894 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1895 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type1895 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1896 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type1896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1897 { get; set; } + public global::System.Collections.Generic.IList? Type1897 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1898 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type1898 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1899 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseClientSecret? Type1899 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1900 { get; set; } + public global::System.Collections.Generic.IList? Type1900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1901 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseModalitie? Type1901 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1902 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type1902 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1903 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAType? Type1903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1904 { get; set; } + public global::System.Collections.Generic.IList? Type1904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1905 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type1905 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1906 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudio? Type1906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection2? Type1907 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type1907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEvent? Type1908 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type1908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdate? Type1909 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection2? Type1909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppend? Type1910 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEvent? Type1910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionClose? Type1911 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdate? Type1911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminator? Type1912 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppend? Type1912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminatorType? Type1913 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionClose? Type1913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppendType? Type1914 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminator? Type1914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionCloseType? Type1915 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventDiscriminatorType? Type1915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdateType? Type1916 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventInputAudioBufferAppendType? Type1916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequest? Type1917 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionCloseType? Type1917 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequest? Type1918 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientEventSessionUpdateType? Type1918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfter? Type1919 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequest? Type1919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfterAnchor? Type1920 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequest? Type1920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequest? Type1921 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfter? Type1921 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateResponse? Type1922 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateRequestExpiresAfterAnchor? Type1922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSession? Type1923 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequest? Type1923 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEvent? Type1924 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationClientSecretCreateResponse? Type1924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreated? Type1925 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSession? Type1925 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdated? Type1926 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEvent? Type1926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosed? Type1927 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreated? Type1927 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDelta? Type1928 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdated? Type1928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDelta? Type1929 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosed? Type1929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDelta? Type1930 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDelta? Type1930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminator? Type1931 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDelta? Type1931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminatorType? Type1932 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDelta? Type1932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosedType? Type1933 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminator? Type1933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreatedType? Type1934 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventDiscriminatorType? Type1934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDeltaType? Type1935 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionClosedType? Type1935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaType? Type1936 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionCreatedType? Type1936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaFormat? Type1937 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionInputTranscriptDeltaType? Type1937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDeltaType? Type1938 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaType? Type1938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdatedType? Type1939 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputAudioDeltaFormat? Type1939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionType? Type1940 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionOutputTranscriptDeltaType? Type1940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudio? Type1941 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationServerEventSessionUpdatedType? Type1941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInput? Type1942 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionType? Type1942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputTranscription2? Type1943 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudio? Type1943 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputNoiseReduction2? Type1944 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInput? Type1944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioOutput? Type1945 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputTranscription2? Type1945 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudio? Type1946 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioInputNoiseReduction2? Type1946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInput? Type1947 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionAudioOutput? Type1947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputTranscription2? Type1948 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudio? Type1948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputNoiseReduction2? Type1949 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInput? Type1949 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioOutput? Type1950 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputTranscription2? Type1950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudio? Type1951 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioInputNoiseReduction2? Type1951 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInput? Type1952 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionCreateRequestAudioOutput? Type1952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputTranscription2? Type1953 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudio? Type1953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputNoiseReduction2? Type1954 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInput? Type1954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioOutput? Type1955 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputTranscription2? Type1955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1956 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioInputNoiseReduction2? Type1956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1957 { get; set; } + public global::tryAGI.OpenAI.RealtimeTranslationSessionUpdateRequestAudioOutput? Type1957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1958 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnum? Type1958 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTruncationEnumTokenLimits? Type1959 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnum2? Type1959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type1960 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnumType? Type1960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type1961 { get; set; } + public global::tryAGI.OpenAI.RealtimeTruncationEnumTokenLimits? Type1961 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type1962 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type1962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type1963 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type1963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1DiscriminatorType? Type1964 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type1964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningModeEnum? Type1965 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type1965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningSummary2? Type1966 { get; set; } + public global::tryAGI.OpenAI.RealtimeTurnDetectionRealtimeTurnDetection1DiscriminatorType? Type1966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningContext2? Type1967 { get; set; } + public global::tryAGI.OpenAI.ReasoningModeEnum? Type1967 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1968 { get; set; } + public global::tryAGI.OpenAI.ReasoningSummary2? Type1968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemType? Type1969 { get; set; } + public global::tryAGI.OpenAI.ReasoningContext2? Type1969 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1970 { get; set; } + public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SummaryTextContent? Type1971 { get; set; } + public global::tryAGI.OpenAI.ReasoningItemType? Type1971 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1972 { get; set; } + public global::System.Collections.Generic.IList? Type1972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningItemStatus? Type1973 { get; set; } + public global::tryAGI.OpenAI.SummaryTextContent? Type1973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Response? Type1974 { get; set; } + public global::System.Collections.Generic.IList? Type1974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3? Type1975 { get; set; } + public global::tryAGI.OpenAI.ReasoningItemStatus? Type1975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Truncation2? Type1976 { get; set; } + public global::tryAGI.OpenAI.Response? Type1976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Object? Type1977 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3? Type1977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3Status? Type1978 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Truncation2? Type1978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorVariant1? Type1979 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Object? Type1979 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails2? Type1980 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3Status? Type1980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type1981 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorVariant1? Type1981 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1982 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetails2? Type1982 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type1983 { get; set; } + public global::tryAGI.OpenAI.ResponseVariant3IncompleteDetailsReason? Type1983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsage? Type1984 { get; set; } + public global::System.Collections.Generic.IList? Type1984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheOptions? Type1985 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type1985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Moderation? Type1986 { get; set; } + public global::tryAGI.OpenAI.ResponseUsage? Type1986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Conversation22? Type1987 { get; set; } + public global::tryAGI.OpenAI.PromptCacheOptions? Type1987 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type1988 { get; set; } + public global::tryAGI.OpenAI.Moderation? Type1988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type1989 { get; set; } + public global::tryAGI.OpenAI.Conversation22? Type1989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type1990 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDeltaEvent? Type1990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type1991 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDeltaEventType? Type1991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type1992 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDoneEvent? Type1992 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type1993 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioDoneEventType? Type1993 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type1994 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEvent? Type1994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type1995 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDeltaEventType? Type1995 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type1996 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEvent? Type1996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type1997 { get; set; } + public global::tryAGI.OpenAI.ResponseAudioTranscriptDoneEventType? Type1997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type1998 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEvent? Type1998 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type1999 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDeltaEventType? Type1999 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type2000 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEvent? Type2000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type2001 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCodeDoneEventType? Type2001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type2002 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEvent? Type2002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type2003 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallCompletedEventType? Type2003 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type2004 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEvent? Type2004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type2005 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInProgressEventType? Type2005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCompletedEvent? Type2006 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEvent? Type2006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCompletedEventType? Type2007 { get; set; } + public global::tryAGI.OpenAI.ResponseCodeInterpreterCallInterpretingEventType? Type2007 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type2008 { get; set; } + public global::tryAGI.OpenAI.ResponseCompletedEvent? Type2008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type2009 { get; set; } + public global::tryAGI.OpenAI.ResponseCompletedEventType? Type2009 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type2010 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartAddedEvent? Type2010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type2011 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartAddedEventType? Type2011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCreatedEvent? Type2012 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartDoneEvent? Type2012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCreatedEventType? Type2013 { get; set; } + public global::tryAGI.OpenAI.ResponseContentPartDoneEventType? Type2013 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type2014 { get; set; } + public global::tryAGI.OpenAI.ResponseCreatedEvent? Type2014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type2015 { get; set; } + public global::tryAGI.OpenAI.ResponseCreatedEventType? Type2015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type2016 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEvent? Type2016 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type2017 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDeltaEventType? Type2017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorCode? Type2018 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEvent? Type2018 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorEvent? Type2019 { get; set; } + public global::tryAGI.OpenAI.ResponseCustomToolCallInputDoneEventType? Type2019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseErrorEventType? Type2020 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorCode? Type2020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFailedEvent? Type2021 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorEvent? Type2021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFailedEventType? Type2022 { get; set; } + public global::tryAGI.OpenAI.ResponseErrorEventType? Type2022 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type2023 { get; set; } + public global::tryAGI.OpenAI.ResponseFailedEvent? Type2023 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type2024 { get; set; } + public global::tryAGI.OpenAI.ResponseFailedEventType? Type2024 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type2025 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEvent? Type2025 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type2026 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallCompletedEventType? Type2026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type2027 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEvent? Type2027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type2028 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallInProgressEventType? Type2028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonObjectType? Type2029 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEvent? Type2029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonSchemaType? Type2030 { get; set; } + public global::tryAGI.OpenAI.ResponseFileSearchCallSearchingEventType? Type2030 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonSchemaJsonSchema? Type2031 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonObjectType? Type2031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatJsonSchemaSchema? Type2032 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonSchemaType? Type2032 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextType? Type2033 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonSchemaJsonSchema? Type2033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type2034 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatJsonSchemaSchema? Type2034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type2035 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextType? Type2035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextPython? Type2036 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextGrammar? Type2036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type2037 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextGrammarType? Type2037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type2038 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextPython? Type2038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type2039 { get; set; } + public global::tryAGI.OpenAI.ResponseFormatTextPythonType? Type2039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type2040 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEvent? Type2040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type2041 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDeltaEventType? Type2041 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type2042 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEvent? Type2042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type2043 { get; set; } + public global::tryAGI.OpenAI.ResponseFunctionCallArgumentsDoneEventType? Type2043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type2044 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEvent? Type2044 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type2045 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallCompletedEventType? Type2045 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type2046 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEvent? Type2046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type2047 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallGeneratingEventType? Type2047 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type2048 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEvent? Type2048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type2049 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallInProgressEventType? Type2049 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseInProgressEvent? Type2050 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEvent? Type2050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseInProgressEventType? Type2051 { get; set; } + public global::tryAGI.OpenAI.ResponseImageGenCallPartialImageEventType? Type2051 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type2052 { get; set; } + public global::tryAGI.OpenAI.ResponseInProgressEvent? Type2052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type2053 { get; set; } + public global::tryAGI.OpenAI.ResponseInProgressEventType? Type2053 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseItemList? Type2054 { get; set; } + public global::tryAGI.OpenAI.ResponseIncompleteEvent? Type2054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseItemListObject? Type2055 { get; set; } + public global::tryAGI.OpenAI.ResponseIncompleteEventType? Type2055 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2056 { get; set; } + public global::tryAGI.OpenAI.ResponseItemList? Type2056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseLogProb? Type2057 { get; set; } + public global::tryAGI.OpenAI.ResponseItemListObject? Type2057 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2058 { get; set; } + public global::System.Collections.Generic.IList? Type2058 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type2059 { get; set; } + public global::tryAGI.OpenAI.ResponseLogProb? Type2059 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type2060 { get; set; } + public global::System.Collections.Generic.IList? Type2060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type2061 { get; set; } + public global::tryAGI.OpenAI.ResponseLogProbTopLogprob? Type2061 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type2062 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEvent? Type2062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type2063 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDeltaEventType? Type2063 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type2064 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEvent? Type2064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type2065 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallArgumentsDoneEventType? Type2065 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type2066 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallCompletedEvent? Type2066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type2067 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallCompletedEventType? Type2067 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type2068 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallFailedEvent? Type2068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type2069 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallFailedEventType? Type2069 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type2070 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallInProgressEvent? Type2070 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type2071 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPCallInProgressEventType? Type2071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type2072 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEvent? Type2072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type2073 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsCompletedEventType? Type2073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type2074 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEvent? Type2074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type2075 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsFailedEventType? Type2075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type2076 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEvent? Type2076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type2077 { get; set; } + public global::tryAGI.OpenAI.ResponseMCPListToolsInProgressEventType? Type2077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type2078 { get; set; } + public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type2078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type2079 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemAddedEvent? Type2079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type2080 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemAddedEventType? Type2080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type2081 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemDoneEvent? Type2081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type2082 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputItemDoneEventType? Type2082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2083 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEvent? Type2083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextParam? Type2084 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationAddedEventType? Type2084 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceParam? Type2085 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseQueuedEvent? Type2086 { get; set; } + public global::tryAGI.OpenAI.ResponseTextParam? Type2086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseQueuedEventType? Type2087 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceParam? Type2087 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type2088 { get; set; } + public global::tryAGI.OpenAI.ResponseQueuedEvent? Type2088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type2089 { get; set; } + public global::tryAGI.OpenAI.ResponseQueuedEventType? Type2089 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type2090 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEvent? Type2090 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type2091 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventType? Type2091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type2092 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPart? Type2092 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type2093 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartAddedEventPartType? Type2093 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventStatus? Type2094 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEvent? Type2094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type2095 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventType? Type2095 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type2096 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventStatus? Type2096 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type2097 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPart? Type2097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type2098 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryPartDoneEventPartType? Type2098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type2099 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEvent? Type2099 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type2100 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDeltaEventType? Type2100 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type2101 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEvent? Type2101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type2102 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningSummaryTextDoneEventType? Type2102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type2103 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEvent? Type2103 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type2104 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDeltaEventType? Type2104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type2105 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDoneEvent? Type2105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type2106 { get; set; } + public global::tryAGI.OpenAI.ResponseReasoningTextDoneEventType? Type2106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type2107 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDeltaEvent? Type2107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type2108 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDeltaEventType? Type2108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEvent? Type2109 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDoneEvent? Type2109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type2110 { get; set; } + public global::tryAGI.OpenAI.ResponseRefusalDoneEventType? Type2110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type2111 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEvent? Type2111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type2112 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDeltaEvent? Type2112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type2113 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDoneEvent? Type2113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type2114 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEvent? Type2114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type2115 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEvent? Type2115 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseStreamEventDiscriminatorType? Type2116 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEvent? Type2116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type2117 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEventDiscriminator? Type2117 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2118 { get; set; } + public global::tryAGI.OpenAI.ResponseStreamEventDiscriminatorType? Type2118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type2119 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDeltaEventType? Type2119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type2120 { get; set; } + public global::System.Collections.Generic.IList? Type2120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type2121 { get; set; } + public global::tryAGI.OpenAI.ResponseTextDoneEventType? Type2121 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type2122 { get; set; } + public global::tryAGI.OpenAI.ResponseUsageInputTokensDetails? Type2122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type2123 { get; set; } + public global::tryAGI.OpenAI.ResponseUsageOutputTokensDetails? Type2123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type2124 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallCompletedEventType? Type2124 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEvent? Type2125 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallInProgressEventType? Type2125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventResponseCreate? Type2126 { get; set; } + public global::tryAGI.OpenAI.ResponseWebSearchCallSearchingEventType? Type2126 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventDiscriminator? Type2127 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEvent? Type2127 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1? Type2128 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventResponseCreate? Type2128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1Type? Type2129 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventDiscriminator? Type2129 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesServerEvent? Type2130 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1? Type2130 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponsesServerEventDiscriminator? Type2131 { get; set; } + public global::tryAGI.OpenAI.ResponsesClientEventResponseCreateVariant1Type? Type2131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleObject? Type2132 { get; set; } + public global::tryAGI.OpenAI.ResponsesServerEvent? Type2132 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleDeletedResource? Type2133 { get; set; } + public global::tryAGI.OpenAI.ResponsesServerEventDiscriminator? Type2133 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleDeletedResourceObject? Type2134 { get; set; } + public global::tryAGI.OpenAI.RoleObject? Type2134 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleListResource? Type2135 { get; set; } + public global::tryAGI.OpenAI.RoleDeletedResource? Type2135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RoleListResourceObject? Type2136 { get; set; } + public global::tryAGI.OpenAI.RoleDeletedResourceObject? Type2136 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2137 { get; set; } + public global::tryAGI.OpenAI.RoleListResource? Type2137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunCompletionUsageVariant1? Type2138 { get; set; } + public global::tryAGI.OpenAI.RoleListResourceObject? Type2138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderRequest? Type2139 { get; set; } + public global::System.Collections.Generic.IList? Type2139 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponse? Type2140 { get; set; } + public global::tryAGI.OpenAI.RunCompletionUsageVariant1? Type2140 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type2141 { get; set; } + public global::tryAGI.OpenAI.RunGraderRequest? Type2141 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type2142 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponse? Type2142 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectObject? Type2143 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponseMetadata? Type2143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectStatus? Type2144 { get; set; } + public global::tryAGI.OpenAI.RunGraderResponseMetadataErrors? Type2144 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectRequiredAction? Type2145 { get; set; } + public global::tryAGI.OpenAI.RunObjectObject? Type2145 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectRequiredActionType? Type2146 { get; set; } + public global::tryAGI.OpenAI.RunObjectStatus? Type2146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type2147 { get; set; } + public global::tryAGI.OpenAI.RunObjectRequiredAction? Type2147 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2148 { get; set; } + public global::tryAGI.OpenAI.RunObjectRequiredActionType? Type2148 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunToolCallObject? Type2149 { get; set; } + public global::tryAGI.OpenAI.RunObjectRequiredActionSubmitToolOutputs? Type2149 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectLastError? Type2150 { get; set; } + public global::System.Collections.Generic.IList? Type2150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectLastErrorCode? Type2151 { get; set; } + public global::tryAGI.OpenAI.RunToolCallObject? Type2151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectIncompleteDetails? Type2152 { get; set; } + public global::tryAGI.OpenAI.RunObjectLastError? Type2152 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunObjectIncompleteDetailsReason? Type2153 { get; set; } + public global::tryAGI.OpenAI.RunObjectLastErrorCode? Type2153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepCompletionUsageVariant1? Type2154 { get; set; } + public global::tryAGI.OpenAI.RunObjectIncompleteDetails? Type2154 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaObject? Type2155 { get; set; } + public global::tryAGI.OpenAI.RunObjectIncompleteDetailsReason? Type2155 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaObjectObject? Type2156 { get; set; } + public global::tryAGI.OpenAI.RunStepCompletionUsageVariant1? Type2156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaObjectDelta? Type2157 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaObject? Type2157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2158 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaObjectObject? Type2158 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObject? Type2159 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaObjectDelta? Type2159 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObject? Type2160 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type2161 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObject? Type2161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type2162 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObject? Type2162 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObject? Type2163 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectType? Type2163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectType? Type2164 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsMessageCreationObjectMessageCreation? Type2164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter? Type2165 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObject? Type2165 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2166 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectType? Type2166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject? Type2167 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter? Type2167 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObject? Type2168 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2168 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType? Type2169 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject? Type2169 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage? Type2170 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObject? Type2170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType? Type2171 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectType? Type2171 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObject? Type2172 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage? Type2172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType? Type2173 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectType? Type2173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObject? Type2174 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObject? Type2174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType? Type2175 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFileSearchObjectType? Type2175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectFunction? Type2176 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObject? Type2176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType? Type2177 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectType? Type2177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObject? Type2178 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsFunctionObjectFunction? Type2178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType? Type2179 { get; set; } + public global::tryAGI.OpenAI.RunStepDeltaStepDetailsToolCallsObjectType? Type2179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type2180 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObject? Type2180 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObject? Type2181 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectType? Type2181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectType? Type2182 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsMessageCreationObjectMessageCreation? Type2182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectCodeInterpreter? Type2183 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObject? Type2183 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type2184 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectType? Type2184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2185 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeObjectCodeInterpreter? Type2185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObject? Type2186 { get; set; } + public global::System.Collections.Generic.IList>? Type2186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObject? Type2187 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectType? Type2188 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObject? Type2188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectImage? Type2189 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObject? Type2189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObjectType? Type2190 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectType? Type2190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObject? Type2191 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputImageObjectImage? Type2191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectType? Type2192 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsCodeOutputLogsObjectType? Type2192 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectFileSearch? Type2193 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObject? Type2193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchRankingOptionsObject? Type2194 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectType? Type2194 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2195 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchObjectFileSearch? Type2195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObject? Type2196 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchRankingOptionsObject? Type2196 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2197 { get; set; } + public global::System.Collections.Generic.IList? Type2197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItem? Type2198 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObject? Type2198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItemType? Type2199 { get; set; } + public global::System.Collections.Generic.IList? Type2199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObject? Type2200 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItem? Type2200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectType? Type2201 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentItemType? Type2201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectFunction? Type2202 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObject? Type2202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsObject? Type2203 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectType? Type2203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepDetailsToolCallsObjectType? Type2204 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsFunctionObjectFunction? Type2204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectObject? Type2205 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsObject? Type2205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectType? Type2206 { get; set; } + public global::tryAGI.OpenAI.RunStepDetailsToolCallsObjectType? Type2206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectStatus? Type2207 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectObject? Type2207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2208 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectType? Type2208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectLastError2? Type2209 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectStatus? Type2209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepObjectLastErrorCode? Type2210 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant1? Type2211 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectLastError2? Type2211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant1Event? Type2212 { get; set; } + public global::tryAGI.OpenAI.RunStepObjectLastErrorCode? Type2212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant2? Type2213 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant1? Type2213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant2Event? Type2214 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant1Event? Type2214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant3? Type2215 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant2? Type2215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant3Event? Type2216 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant2Event? Type2216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant4? Type2217 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant3? Type2217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant4Event? Type2218 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant3Event? Type2218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant5? Type2219 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant4? Type2219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant5Event? Type2220 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant4Event? Type2220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant6? Type2221 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant5? Type2221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant6Event? Type2222 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant5Event? Type2222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant7? Type2223 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant6? Type2223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStepStreamEventVariant7Event? Type2224 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant6Event? Type2224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant1? Type2225 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant7? Type2225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant1Event? Type2226 { get; set; } + public global::tryAGI.OpenAI.RunStepStreamEventVariant7Event? Type2226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant2? Type2227 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant1? Type2227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant2Event? Type2228 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant1Event? Type2228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant3? Type2229 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant2? Type2229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant3Event? Type2230 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant2Event? Type2230 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant4? Type2231 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant3? Type2231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant4Event? Type2232 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant3Event? Type2232 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant5? Type2233 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant4? Type2233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant5Event? Type2234 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant4Event? Type2234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant6? Type2235 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant5? Type2235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant6Event? Type2236 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant5Event? Type2236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant7? Type2237 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant6? Type2237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant7Event? Type2238 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant6Event? Type2238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant8? Type2239 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant7? Type2239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant8Event? Type2240 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant7Event? Type2240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant9? Type2241 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant8? Type2241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant9Event? Type2242 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant8Event? Type2242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant10? Type2243 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant9? Type2243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunStreamEventVariant10Event? Type2244 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant9Event? Type2244 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunToolCallObjectType? Type2245 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant10? Type2245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RunToolCallObjectFunction? Type2246 { get; set; } + public global::tryAGI.OpenAI.RunStreamEventVariant10Event? Type2246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type2247 { get; set; } + public global::tryAGI.OpenAI.RunToolCallObjectType? Type2247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type2248 { get; set; } + public global::tryAGI.OpenAI.RunToolCallObjectFunction? Type2248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type2249 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDeltaEventType? Type2249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendAlertNotificationChannelType? Type2250 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEventType? Type2250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategy? Type2251 { get; set; } + public global::tryAGI.OpenAI.SpeechAudioDoneEventUsage? Type2251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategyRequestParamType? Type2252 { get; set; } + public global::tryAGI.OpenAI.SpendAlertNotificationChannelType? Type2252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParam? Type2253 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategy? Type2253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParamType? Type2254 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategyRequestParamType? Type2254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2255 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParam? Type2255 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2256 { get; set; } + public global::tryAGI.OpenAI.StaticChunkingStrategyResponseParamType? Type2256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2257 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequest? Type2257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type2258 { get; set; } + public global::System.Collections.Generic.IList? Type2258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type2259 { get; set; } + public global::tryAGI.OpenAI.SubmitToolOutputsRunRequestToolOutput? Type2259 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObject? Type2260 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type2260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectObject? Type2261 { get; set; } + public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type2261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectToolResources2? Type2262 { get; set; } + public global::tryAGI.OpenAI.ThreadObject? Type2262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type2263 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectObject? Type2263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadObjectToolResourcesFileSearch? Type2264 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectToolResources2? Type2264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadStreamEventVariant1? Type2265 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectToolResourcesCodeInterpreter? Type2265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadStreamEventVariant1Event? Type2266 { get; set; } + public global::tryAGI.OpenAI.ThreadObjectToolResourcesFileSearch? Type2266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2267 { get; set; } + public global::tryAGI.OpenAI.ThreadStreamEventVariant1? Type2267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionTool? Type2268 { get; set; } + public global::tryAGI.OpenAI.ThreadStreamEventVariant1Event? Type2268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchTool? Type2269 { get; set; } + public global::tryAGI.OpenAI.ToggleCertificatesRequest? Type2269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerTool? Type2270 { get; set; } + public global::tryAGI.OpenAI.FunctionTool? Type2270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type2271 { get; set; } + public global::tryAGI.OpenAI.FileSearchTool? Type2271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchTool? Type2272 { get; set; } + public global::tryAGI.OpenAI.ComputerTool? Type2272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgrammaticToolCallingParam? Type2273 { get; set; } + public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type2273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolParam? Type2274 { get; set; } + public global::tryAGI.OpenAI.WebSearchTool? Type2274 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParam? Type2275 { get; set; } + public global::tryAGI.OpenAI.ProgrammaticToolCallingParam? Type2275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParam? Type2276 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolParam? Type2276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParam? Type2277 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParam? Type2277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchToolParam? Type2278 { get; set; } + public global::tryAGI.OpenAI.CustomToolParam? Type2278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchPreviewTool? Type2279 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParam? Type2279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolParam? Type2280 { get; set; } + public global::tryAGI.OpenAI.ToolSearchToolParam? Type2280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolDiscriminator? Type2281 { get; set; } + public global::tryAGI.OpenAI.WebSearchPreviewTool? Type2281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolDiscriminatorType? Type2282 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolParam? Type2282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowed? Type2283 { get; set; } + public global::tryAGI.OpenAI.ToolDiscriminator? Type2283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type2284 { get; set; } + public global::tryAGI.OpenAI.ToolDiscriminatorType? Type2284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type2285 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowed? Type2285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceCustom? Type2286 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type2286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceCustomType? Type2287 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type2287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type2288 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceCustom? Type2288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceMCPType? Type2289 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceCustomType? Type2289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceTypes? Type2290 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type2290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParam? Type2291 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceMCPType? Type2291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type2292 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceTypes? Type2292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type2293 { get; set; } + public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParam? Type2293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoiceTypesType? Type2294 { get; set; } + public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type2294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type2295 { get; set; } + public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type2295 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2296 { get; set; } + public global::tryAGI.OpenAI.ToolChoiceTypesType? Type2296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type2297 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEventType? Type2297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type2298 { get; set; } + public global::System.Collections.Generic.IList? Type2298 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2299 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDeltaEventLogprob? Type2299 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type2300 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEventType? Type2300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextSegmentEventType? Type2301 { get; set; } + public global::System.Collections.Generic.IList? Type2301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type2302 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextDoneEventLogprob? Type2302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type2303 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextSegmentEventType? Type2303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type2304 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageDurationType? Type2304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionChunkingStrategy? Type2305 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokensType? Type2305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionChunkingStrategyEnum? Type2306 { get; set; } + public global::tryAGI.OpenAI.TranscriptTextUsageTokensInputTokenDetails? Type2306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TranscriptionDiarizedSegmentType? Type2307 { get; set; } + public global::tryAGI.OpenAI.TranscriptionChunkingStrategy? Type2307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TruncationObjectType? Type2308 { get; set; } + public global::tryAGI.OpenAI.TranscriptionChunkingStrategyEnum? Type2308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateGroupBody? Type2309 { get; set; } + public global::tryAGI.OpenAI.TranscriptionDiarizedSegmentType? Type2309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBody? Type2310 { get; set; } + public global::tryAGI.OpenAI.TruncationObjectType? Type2310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBodyRetentionType? Type2311 { get; set; } + public global::tryAGI.OpenAI.UpdateGroupBody? Type2311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectDataRetentionBody? Type2312 { get; set; } + public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBody? Type2312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectDataRetentionBodyRetentionType? Type2313 { get; set; } + public global::tryAGI.OpenAI.UpdateOrganizationDataRetentionBodyRetentionType? Type2313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectServiceAccountBody? Type2314 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectDataRetentionBody? Type2314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectServiceAccountBodyRole? Type2315 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectDataRetentionBodyRetentionType? Type2315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2316 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectServiceAccountBody? Type2316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2317 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectServiceAccountBodyRole? Type2317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AllOf? Type2318 { get; set; } + public global::tryAGI.OpenAI.UpdateVectorStoreFileAttributesRequest? Type2318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateVoiceConsentRequest? Type2319 { get; set; } + public global::tryAGI.OpenAI.UpdateVectorStoreRequest? Type2319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Upload? Type2320 { get; set; } + public global::tryAGI.OpenAI.AllOf? Type2320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadStatus? Type2321 { get; set; } + public global::tryAGI.OpenAI.UpdateVoiceConsentRequest? Type2321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadObject? Type2322 { get; set; } + public global::tryAGI.OpenAI.Upload? Type2322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AllOf? Type2323 { get; set; } + public global::tryAGI.OpenAI.UploadStatus? Type2323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadCertificateRequest? Type2324 { get; set; } + public global::tryAGI.OpenAI.UploadObject? Type2324 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadPart? Type2325 { get; set; } + public global::tryAGI.OpenAI.AllOf? Type2325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UploadPartObject? Type2326 { get; set; } + public global::tryAGI.OpenAI.UploadCertificateRequest? Type2326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2327 { get; set; } + public global::tryAGI.OpenAI.UploadPart? Type2327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2328 { get; set; } + public global::tryAGI.OpenAI.UploadPartObject? Type2328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2329 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesResult? Type2329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2330 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesResultObject? Type2330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2331 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsResult? Type2331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2332 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsResultObject? Type2332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsResult? Type2333 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResult? Type2333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2334 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsResultObject? Type2334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2335 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsResult? Type2335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2336 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsResultObject? Type2336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsResult? Type2337 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsResult? Type2337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsResultObject? Type2338 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsResultObject? Type2338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesResult? Type2339 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsResult? Type2339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesResultObject? Type2340 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsResultObject? Type2340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsResult? Type2341 { get; set; } + public global::tryAGI.OpenAI.UsageImagesResult? Type2341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2342 { get; set; } + public global::tryAGI.OpenAI.UsageImagesResultObject? Type2342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageResponse? Type2343 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsResult? Type2343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageResponseObject? Type2344 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsResultObject? Type2344 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2345 { get; set; } + public global::tryAGI.OpenAI.UsageResponse? Type2345 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucket? Type2346 { get; set; } + public global::tryAGI.OpenAI.UsageResponseObject? Type2346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2347 { get; set; } + public global::System.Collections.Generic.IList? Type2347 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2348 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucket? Type2348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResultsItem? Type2349 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketObject? Type2349 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2350 { get; set; } + public global::System.Collections.Generic.IList? Type2350 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsResult? Type2351 { get; set; } + public global::tryAGI.OpenAI.ResultsItem? Type2351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminator? Type2352 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresResult? Type2352 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminatorObject? Type2353 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsResult? Type2353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2354 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminator? Type2354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsResultObject? Type2355 { get; set; } + public global::tryAGI.OpenAI.UsageTimeBucketResultDiscriminatorObject? Type2355 { get; set; } /// /// /// - public global::tryAGI.OpenAI.User? Type2356 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresResultObject? Type2356 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserObject? Type2357 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsResultObject? Type2357 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserUser1? Type2358 { get; set; } + public global::tryAGI.OpenAI.User? Type2358 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserUser1Object? Type2359 { get; set; } + public global::tryAGI.OpenAI.UserObject? Type2359 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserProjects2? Type2360 { get; set; } + public global::tryAGI.OpenAI.UserUser1? Type2360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserProjectsObject? Type2361 { get; set; } + public global::tryAGI.OpenAI.UserUser1Object? Type2361 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2362 { get; set; } + public global::tryAGI.OpenAI.UserProjects2? Type2362 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserProjectsDataItem? Type2363 { get; set; } + public global::tryAGI.OpenAI.UserProjectsObject? Type2363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserDeleteResponse? Type2364 { get; set; } + public global::System.Collections.Generic.IList? Type2364 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserDeleteResponseObject? Type2365 { get; set; } + public global::tryAGI.OpenAI.UserProjectsDataItem? Type2365 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResource? Type2366 { get; set; } + public global::tryAGI.OpenAI.UserDeleteResponse? Type2366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResourceObject? Type2367 { get; set; } + public global::tryAGI.OpenAI.UserDeleteResponseObject? Type2367 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2368 { get; set; } + public global::tryAGI.OpenAI.UserListResource? Type2368 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResponse? Type2369 { get; set; } + public global::tryAGI.OpenAI.UserListResourceObject? Type2369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserListResponseObject? Type2370 { get; set; } + public global::System.Collections.Generic.IList? Type2370 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2371 { get; set; } + public global::tryAGI.OpenAI.UserListResponse? Type2371 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleAssignment? Type2372 { get; set; } + public global::tryAGI.OpenAI.UserListResponseObject? Type2372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleAssignmentObject? Type2373 { get; set; } + public global::System.Collections.Generic.IList? Type2373 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserRoleUpdateRequest? Type2374 { get; set; } + public global::tryAGI.OpenAI.UserRoleAssignment? Type2374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VadConfigType? Type2375 { get; set; } + public global::tryAGI.OpenAI.UserRoleAssignmentObject? Type2375 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ValidateGraderRequest? Type2376 { get; set; } + public global::tryAGI.OpenAI.UserRoleUpdateRequest? Type2376 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ValidateGraderResponse? Type2377 { get; set; } + public global::tryAGI.OpenAI.VadConfigType? Type2377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type2378 { get; set; } + public global::tryAGI.OpenAI.ValidateGraderRequest? Type2378 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2379 { get; set; } + public global::tryAGI.OpenAI.ValidateGraderResponse? Type2379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2380 { get; set; } + public global::tryAGI.OpenAI.VectorStoreExpirationAfterAnchor? Type2380 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2381 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2381 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2382 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObject? Type2382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2383 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectObject? Type2383 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2384 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectStatus? Type2384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2385 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileBatchObjectFileCounts? Type2385 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2386 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponse? Type2386 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2387 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponseObject? Type2387 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type2388 { get; set; } + public global::System.Collections.Generic.IList? Type2388 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type2389 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileContentResponseDataItem? Type2389 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectLastError2? Type2390 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectObject? Type2390 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type2391 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectStatus? Type2391 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2392 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectLastError2? Type2392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectObject? Type2393 { get; set; } + public global::tryAGI.OpenAI.VectorStoreFileObjectLastErrorCode? Type2393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type2394 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type2395 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectObject? Type2395 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2396 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectFileCounts? Type2396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type2397 { get; set; } + public global::tryAGI.OpenAI.VectorStoreObjectStatus? Type2397 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2398 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequest? Type2398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2399 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type2399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2400 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2401 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptions? Type2401 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2402 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchRequestRankingOptionsRanker? Type2402 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2403 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultContentObject? Type2403 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2404 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultContentObjectType? Type2404 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2405 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultItem? Type2405 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2406 { get; set; } + public global::System.Collections.Generic.IList? Type2406 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2407 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultsPage? Type2407 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentDeletedResource? Type2408 { get; set; } + public global::tryAGI.OpenAI.VectorStoreSearchResultsPageObject? Type2408 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentDeletedResourceObject? Type2409 { get; set; } + public global::System.Collections.Generic.IList? Type2409 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentListResource? Type2410 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentDeletedResource? Type2410 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentListResourceObject? Type2411 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentDeletedResourceObject? Type2411 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2412 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentListResource? Type2412 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentResource? Type2413 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentListResourceObject? Type2413 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceConsentResourceObject? Type2414 { get; set; } + public global::System.Collections.Generic.IList? Type2414 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type2415 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentResource? Type2415 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type2416 { get; set; } + public global::tryAGI.OpenAI.VoiceConsentResourceObject? Type2416 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceResource? Type2417 { get; set; } + public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type2417 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VoiceResourceObject? Type2418 { get; set; } + public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type2418 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionFind? Type2419 { get; set; } + public global::tryAGI.OpenAI.VoiceResource? Type2419 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionFindType? Type2420 { get; set; } + public global::tryAGI.OpenAI.VoiceResourceObject? Type2420 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type2421 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionFind? Type2421 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type2422 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionFindType? Type2422 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearch? Type2423 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type2423 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchType? Type2424 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type2424 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2425 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearch? Type2425 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type2426 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchType? Type2426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type2427 { get; set; } + public global::System.Collections.Generic.IList? Type2427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type2428 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type2428 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type2429 { get; set; } + public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type2429 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolType? Type2430 { get; set; } + public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type2430 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolFilters2? Type2431 { get; set; } + public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type2431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type2432 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolType? Type2432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallType? Type2433 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolFilters2? Type2433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type2434 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type2434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallAction? Type2435 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallType? Type2435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type2436 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type2436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminatorType? Type2437 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallAction? Type2437 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2438 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type2438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2439 { get; set; } + public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminatorType? Type2439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2440 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelled? Type2440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2441 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledData? Type2441 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2442 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledObject? Type2442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2443 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCancelledType? Type2443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2444 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompleted? Type2444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2445 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedData? Type2445 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpired? Type2446 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedObject? Type2446 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2447 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchCompletedType? Type2447 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2448 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpired? Type2448 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2449 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredData? Type2449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailed? Type2450 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredObject? Type2450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2451 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchExpiredType? Type2451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2452 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailed? Type2452 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2453 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedData? Type2453 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2454 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedObject? Type2454 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2455 { get; set; } + public global::tryAGI.OpenAI.WebhookBatchFailedType? Type2455 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2456 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceled? Type2456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2457 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledData? Type2457 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2458 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledObject? Type2458 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2459 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunCanceledType? Type2459 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2460 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailed? Type2460 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2461 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedData? Type2461 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2462 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedObject? Type2462 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2463 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunFailedType? Type2463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2464 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceeded? Type2464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2465 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededData? Type2465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2466 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededObject? Type2466 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2467 { get; set; } + public global::tryAGI.OpenAI.WebhookEvalRunSucceededType? Type2467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2468 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelled? Type2468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2469 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledData? Type2469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2470 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledObject? Type2470 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2471 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobCancelledType? Type2471 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2472 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailed? Type2472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2473 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedData? Type2473 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2474 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedObject? Type2474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2475 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobFailedType? Type2475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2476 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceeded? Type2476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2477 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededData? Type2477 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2478 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededObject? Type2478 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2479 { get; set; } + public global::tryAGI.OpenAI.WebhookFineTuningJobSucceededType? Type2479 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2480 { get; set; } + public global::tryAGI.OpenAI.WebhookLiveCallIncoming? Type2480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2481 { get; set; } + public global::tryAGI.OpenAI.WebhookLiveCallIncomingData? Type2481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2482 { get; set; } + public global::System.Collections.Generic.IList? Type2482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2483 { get; set; } + public global::tryAGI.OpenAI.WebhookLiveCallIncomingDataSipHeader? Type2483 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2484 { get; set; } + public global::tryAGI.OpenAI.WebhookLiveCallIncomingObject? Type2484 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2485 { get; set; } + public global::tryAGI.OpenAI.WebhookLiveCallIncomingType? Type2485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2486 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncoming? Type2486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2487 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingData? Type2487 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2488 { get; set; } + public global::System.Collections.Generic.IList? Type2488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2489 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingDataSipHeader? Type2489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2490 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingObject? Type2490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2491 { get; set; } + public global::tryAGI.OpenAI.WebhookRealtimeCallIncomingType? Type2491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailed? Type2492 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelled? Type2492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2493 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledData? Type2493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2494 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledObject? Type2494 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2495 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCancelledType? Type2495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2496 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompleted? Type2496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2497 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedData? Type2497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2498 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedObject? Type2498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2499 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseCompletedType? Type2499 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationInputType? Type2500 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailed? Type2500 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationResultBodyType? Type2501 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedData? Type2501 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type2502 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedObject? Type2502 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type2503 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseFailedType? Type2503 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2504 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncomplete? Type2504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheTTLEnum? Type2505 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteData? Type2505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheModeEnum? Type2506 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteObject? Type2506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheBreakpointParamMode? Type2507 { get; set; } + public global::tryAGI.OpenAI.WebhookResponseIncompleteType? Type2507 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationMode? Type2508 { get; set; } + public global::tryAGI.OpenAI.ModerationInputType? Type2508 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationConfigParam? Type2509 { get; set; } + public global::tryAGI.OpenAI.ModerationResultBodyType? Type2509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationPolicyParam? Type2510 { get; set; } + public global::System.Collections.Generic.Dictionary? Type2510 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillReferenceParamType? Type2511 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type2511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillSourceParam? Type2512 { get; set; } + public global::System.Collections.Generic.IList? Type2512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type2513 { get; set; } + public global::tryAGI.OpenAI.PromptCacheTTLEnum? Type2513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type2514 { get; set; } + public global::tryAGI.OpenAI.PromptCacheModeEnum? Type2514 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InlineSkillParamType? Type2515 { get; set; } + public global::tryAGI.OpenAI.PromptCacheBreakpointParamMode? Type2515 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParamType? Type2516 { get; set; } + public global::tryAGI.OpenAI.ModerationMode? Type2516 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyDomainSecretParam? Type2517 { get; set; } + public global::tryAGI.OpenAI.ModerationConfigParam? Type2517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParamType? Type2518 { get; set; } + public global::tryAGI.OpenAI.ModerationPolicyParam? Type2518 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2519 { get; set; } + public global::tryAGI.OpenAI.SkillReferenceParamType? Type2519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageStatus? Type2520 { get; set; } + public global::tryAGI.OpenAI.InlineSkillSourceParam? Type2520 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageRole? Type2521 { get; set; } + public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type2521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheBreakpointConfig? Type2522 { get; set; } + public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type2522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheBreakpointConfigMode? Type2523 { get; set; } + public global::tryAGI.OpenAI.InlineSkillParamType? Type2523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContentType? Type2524 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyDisabledParamType? Type2524 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationBody? Type2525 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyDomainSecretParam? Type2525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationBodyType? Type2526 { get; set; } + public global::tryAGI.OpenAI.ContainerNetworkPolicyAllowlistParamType? Type2526 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationBody? Type2527 { get; set; } + public global::System.Collections.Generic.IList? Type2527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationBodyType? Type2528 { get; set; } + public global::tryAGI.OpenAI.MessageStatus? Type2528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationBody? Type2529 { get; set; } + public global::tryAGI.OpenAI.MessageRole? Type2529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type2530 { get; set; } + public global::tryAGI.OpenAI.PromptCacheBreakpointConfig? Type2530 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Annotation? Type2531 { get; set; } + public global::tryAGI.OpenAI.PromptCacheBreakpointConfigMode? Type2531 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationDiscriminator? Type2532 { get; set; } + public global::tryAGI.OpenAI.InputTextContentType? Type2532 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationDiscriminatorType? Type2533 { get; set; } + public global::tryAGI.OpenAI.FileCitationBody? Type2533 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TopLogProb? Type2534 { get; set; } + public global::tryAGI.OpenAI.FileCitationBodyType? Type2534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LogProb? Type2535 { get; set; } + public global::tryAGI.OpenAI.UrlCitationBody? Type2535 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2536 { get; set; } + public global::tryAGI.OpenAI.UrlCitationBodyType? Type2536 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputTextContentType? Type2537 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationBody? Type2537 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2538 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type2538 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2539 { get; set; } + public global::tryAGI.OpenAI.Annotation? Type2539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextContent? Type2540 { get; set; } + public global::tryAGI.OpenAI.AnnotationDiscriminator? Type2540 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TextContentType? Type2541 { get; set; } + public global::tryAGI.OpenAI.AnnotationDiscriminatorType? Type2541 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SummaryTextContentType? Type2542 { get; set; } + public global::tryAGI.OpenAI.TopLogProb? Type2542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningTextContentType? Type2543 { get; set; } + public global::tryAGI.OpenAI.LogProb? Type2543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RefusalContentType? Type2544 { get; set; } + public global::System.Collections.Generic.IList? Type2544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageDetail? Type2545 { get; set; } + public global::tryAGI.OpenAI.OutputTextContentType? Type2545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContentType? Type2546 { get; set; } + public global::System.Collections.Generic.IList? Type2546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerScreenshotContent? Type2547 { get; set; } + public global::System.Collections.Generic.IList? Type2547 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type2548 { get; set; } + public global::tryAGI.OpenAI.TextContent? Type2548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileInputDetail? Type2549 { get; set; } + public global::tryAGI.OpenAI.TextContentType? Type2549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContentType? Type2550 { get; set; } + public global::tryAGI.OpenAI.SummaryTextContentType? Type2550 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessagePhase2? Type2551 { get; set; } + public global::tryAGI.OpenAI.ReasoningTextContentType? Type2551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageType? Type2552 { get; set; } + public global::tryAGI.OpenAI.RefusalContentType? Type2552 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2553 { get; set; } + public global::tryAGI.OpenAI.ImageDetail? Type2553 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem3? Type2554 { get; set; } + public global::tryAGI.OpenAI.InputImageContentType? Type2554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type2555 { get; set; } + public global::tryAGI.OpenAI.ComputerScreenshotContent? Type2555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MessageContentItemDiscriminatorType? Type2556 { get; set; } + public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type2556 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCaller? Type2557 { get; set; } + public global::tryAGI.OpenAI.FileInputDetail? Type2557 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCallerType? Type2558 { get; set; } + public global::tryAGI.OpenAI.InputFileContentType? Type2558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCaller? Type2559 { get; set; } + public global::tryAGI.OpenAI.MessagePhase2? Type2559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCallerType? Type2560 { get; set; } + public global::tryAGI.OpenAI.MessageType? Type2560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerDiscriminator? Type2561 { get; set; } + public global::System.Collections.Generic.IList? Type2561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerDiscriminatorType? Type2562 { get; set; } + public global::tryAGI.OpenAI.ContentItem3? Type2562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCallerParam? Type2563 { get; set; } + public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type2563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DirectToolCallCallerParamType? Type2564 { get; set; } + public global::tryAGI.OpenAI.MessageContentItemDiscriminatorType? Type2564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCallerParam? Type2565 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCaller? Type2565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramToolCallCallerParamType? Type2566 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCallerType? Type2566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminator? Type2567 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCaller? Type2567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminatorType? Type2568 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCallerType? Type2568 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClickButtonType? Type2569 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerDiscriminator? Type2569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClickParamType? Type2570 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerDiscriminatorType? Type2570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DoubleClickActionType? Type2571 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCallerParam? Type2571 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CoordParam? Type2572 { get; set; } + public global::tryAGI.OpenAI.DirectToolCallCallerParamType? Type2572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DragParamType? Type2573 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCallerParam? Type2573 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2574 { get; set; } + public global::tryAGI.OpenAI.ProgramToolCallCallerParamType? Type2574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.KeyPressActionType? Type2575 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminator? Type2575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.MoveParamType? Type2576 { get; set; } + public global::tryAGI.OpenAI.ToolCallCallerParamDiscriminatorType? Type2576 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ScreenshotParamType? Type2577 { get; set; } + public global::tryAGI.OpenAI.ClickButtonType? Type2577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ScrollParamType? Type2578 { get; set; } + public global::tryAGI.OpenAI.ClickParamType? Type2578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TypeParamType? Type2579 { get; set; } + public global::tryAGI.OpenAI.DoubleClickActionType? Type2579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WaitParamType? Type2580 { get; set; } + public global::tryAGI.OpenAI.CoordParam? Type2580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchExecutionType? Type2581 { get; set; } + public global::tryAGI.OpenAI.DragParamType? Type2581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchCallType? Type2582 { get; set; } + public global::System.Collections.Generic.IList? Type2582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolType? Type2583 { get; set; } + public global::tryAGI.OpenAI.KeyPressActionType? Type2583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RankerVersionType? Type2584 { get; set; } + public global::tryAGI.OpenAI.MoveParamType? Type2584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HybridSearchOptions? Type2585 { get; set; } + public global::tryAGI.OpenAI.ScreenshotParamType? Type2585 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RankingOptions? Type2586 { get; set; } + public global::tryAGI.OpenAI.ScrollParamType? Type2586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Filters2? Type2587 { get; set; } + public global::tryAGI.OpenAI.TypeParamType? Type2587 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileSearchToolType? Type2588 { get; set; } + public global::tryAGI.OpenAI.WaitParamType? Type2588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerToolType? Type2589 { get; set; } + public global::tryAGI.OpenAI.ToolSearchExecutionType? Type2589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerEnvironment? Type2590 { get; set; } + public global::tryAGI.OpenAI.ToolSearchCallType? Type2590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type2591 { get; set; } + public global::tryAGI.OpenAI.FunctionToolType? Type2591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerMemoryLimit? Type2592 { get; set; } + public global::tryAGI.OpenAI.RankerVersionType? Type2592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamType? Type2593 { get; set; } + public global::tryAGI.OpenAI.HybridSearchOptions? Type2593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy2? Type2594 { get; set; } + public global::tryAGI.OpenAI.RankingOptions? Type2594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type2595 { get; set; } + public global::tryAGI.OpenAI.Filters2? Type2595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type2596 { get; set; } + public global::tryAGI.OpenAI.FileSearchToolType? Type2596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgrammaticToolCallingParamType? Type2597 { get; set; } + public global::tryAGI.OpenAI.ComputerToolType? Type2597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellToolParamType? Type2598 { get; set; } + public global::tryAGI.OpenAI.ComputerEnvironment? Type2598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParam? Type2599 { get; set; } + public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type2599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamType? Type2600 { get; set; } + public global::tryAGI.OpenAI.ContainerMemoryLimit? Type2600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy3? Type2601 { get; set; } + public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamType? Type2601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type2602 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy2? Type2602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminatorType? Type2603 { get; set; } + public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type2603 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2604 { get; set; } + public global::tryAGI.OpenAI.AutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type2604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillsItem2? Type2605 { get; set; } + public global::tryAGI.OpenAI.ProgrammaticToolCallingParamType? Type2605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type2606 { get; set; } + public global::tryAGI.OpenAI.LocalShellToolParamType? Type2606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminatorType? Type2607 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParam? Type2607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalSkillParam? Type2608 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamType? Type2608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentParam? Type2609 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy3? Type2609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type2610 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type2610 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2611 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminatorType? Type2611 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceParam? Type2612 { get; set; } + public global::System.Collections.Generic.IList? Type2612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceParamType? Type2613 { get; set; } + public global::tryAGI.OpenAI.SkillsItem2? Type2613 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParamType? Type2614 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type2614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant1? Type2615 { get; set; } + public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminatorType? Type2615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type2616 { get; set; } + public global::tryAGI.OpenAI.LocalSkillParam? Type2616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type2617 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentParam? Type2617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomTextFormatParam? Type2618 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type2618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomTextFormatParamType? Type2619 { get; set; } + public global::System.Collections.Generic.IList? Type2619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GrammarSyntax1? Type2620 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceParam? Type2620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type2621 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceParamType? Type2621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type2622 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParamType? Type2622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParamType? Type2623 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant1? Type2623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Format2? Type2624 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type2624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type2625 { get; set; } + public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type2625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminatorType? Type2626 { get; set; } + public global::tryAGI.OpenAI.CustomTextFormatParam? Type2626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EmptyModelParam? Type2627 { get; set; } + public global::tryAGI.OpenAI.CustomTextFormatParamType? Type2627 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolParam? Type2628 { get; set; } + public global::tryAGI.OpenAI.GrammarSyntax1? Type2628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionToolParamType? Type2629 { get; set; } + public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type2629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParamType? Type2630 { get; set; } + public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type2630 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2631 { get; set; } + public global::tryAGI.OpenAI.CustomToolParamType? Type2631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolsItem13? Type2632 { get; set; } + public global::tryAGI.OpenAI.Format2? Type2632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type2633 { get; set; } + public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type2633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminatorType? Type2634 { get; set; } + public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminatorType? Type2634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchToolParamType? Type2635 { get; set; } + public global::tryAGI.OpenAI.EmptyModelParam? Type2635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApproximateLocation? Type2636 { get; set; } + public global::tryAGI.OpenAI.FunctionToolParam? Type2636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApproximateLocationType? Type2637 { get; set; } + public global::tryAGI.OpenAI.FunctionToolParamType? Type2637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SearchContextSize? Type2638 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParamType? Type2638 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SearchContentType? Type2639 { get; set; } + public global::System.Collections.Generic.IList? Type2639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type2640 { get; set; } + public global::tryAGI.OpenAI.ToolsItem13? Type2640 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2641 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type2641 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type2642 { get; set; } + public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminatorType? Type2642 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchOutputType? Type2643 { get; set; } + public global::tryAGI.OpenAI.ToolSearchToolParamType? Type2643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsType? Type2644 { get; set; } + public global::tryAGI.OpenAI.ApproximateLocation? Type2644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramType? Type2645 { get; set; } + public global::tryAGI.OpenAI.ApproximateLocationType? Type2645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputStatus? Type2646 { get; set; } + public global::tryAGI.OpenAI.SearchContextSize? Type2646 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputType? Type2647 { get; set; } + public global::tryAGI.OpenAI.SearchContentType? Type2647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionBodyType? Type2648 { get; set; } + public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type2648 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CodeInterpreterOutputLogsType? Type2649 { get; set; } + public global::System.Collections.Generic.IList? Type2649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CodeInterpreterOutputImageType? Type2650 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type2650 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalShellExecActionType? Type2651 { get; set; } + public global::tryAGI.OpenAI.ToolSearchOutputType? Type2651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellAction? Type2652 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsType? Type2652 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallStatus? Type2653 { get; set; } + public global::tryAGI.OpenAI.ProgramType? Type2653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentResource? Type2654 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputStatus? Type2654 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type2655 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputType? Type2655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceResource? Type2656 { get; set; } + public global::tryAGI.OpenAI.CompactionBodyType? Type2656 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type2657 { get; set; } + public global::tryAGI.OpenAI.CodeInterpreterOutputLogsType? Type2657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallType? Type2658 { get; set; } + public global::tryAGI.OpenAI.CodeInterpreterOutputImageType? Type2658 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant12? Type2659 { get; set; } + public global::tryAGI.OpenAI.LocalShellExecActionType? Type2659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type2660 { get; set; } + public global::tryAGI.OpenAI.FunctionShellAction? Type2660 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1DiscriminatorType? Type2661 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallStatus? Type2661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputStatusEnum? Type2662 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentResource? Type2662 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type2663 { get; set; } + public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type2663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type2664 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceResource? Type2664 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type2665 { get; set; } + public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type2665 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type2666 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallType? Type2666 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type2667 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant12? Type2667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Outcome? Type2668 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type2668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type2669 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1DiscriminatorType? Type2669 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminatorType? Type2670 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputStatusEnum? Type2670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type2671 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type2671 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2672 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type2672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type2673 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type2673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type2674 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type2674 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type2675 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type2675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type2676 { get; set; } + public global::tryAGI.OpenAI.Outcome? Type2676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type2677 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type2677 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type2678 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminatorType? Type2678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type2679 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type2679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type2680 { get; set; } + public global::System.Collections.Generic.IList? Type2680 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Operation? Type2681 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type2681 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type2682 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type2682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminatorType? Type2683 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type2683 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type2684 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type2684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type2685 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type2685 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DetailEnum? Type2686 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type2686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallItemStatus? Type2687 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type2687 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type2688 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type2688 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContentParam? Type2689 { get; set; } + public global::tryAGI.OpenAI.Operation? Type2689 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputTextContentParamType? Type2690 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type2690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type2691 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminatorType? Type2691 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type2692 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type2692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileDetailEnum? Type2693 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type2693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContentParam? Type2694 { get; set; } + public global::tryAGI.OpenAI.DetailEnum? Type2694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InputFileContentParamType? Type2695 { get; set; } + public global::tryAGI.OpenAI.FunctionCallItemStatus? Type2695 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type2696 { get; set; } + public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type2696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type2697 { get; set; } + public global::tryAGI.OpenAI.InputTextContentParam? Type2697 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2698 { get; set; } + public global::tryAGI.OpenAI.InputTextContentParamType? Type2698 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputVariant2Item? Type2699 { get; set; } + public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type2699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type2700 { get; set; } + public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type2700 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type2701 { get; set; } + public global::tryAGI.OpenAI.FileDetailEnum? Type2701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationParam? Type2702 { get; set; } + public global::tryAGI.OpenAI.InputFileContentParam? Type2702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileCitationParamType? Type2703 { get; set; } + public global::tryAGI.OpenAI.InputFileContentParamType? Type2703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationParam? Type2704 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type2704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlCitationParamType? Type2705 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type2705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationParam? Type2706 { get; set; } + public global::System.Collections.Generic.IList? Type2706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContainerFileCitationParamType? Type2707 { get; set; } + public global::tryAGI.OpenAI.OutputVariant2Item? Type2707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type2708 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type2708 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type2709 { get; set; } + public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type2709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsItemParamType? Type2710 { get; set; } + public global::tryAGI.OpenAI.FileCitationParam? Type2710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdditionalToolsItemParamRole? Type2711 { get; set; } + public global::tryAGI.OpenAI.FileCitationParamType? Type2711 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type2712 { get; set; } + public global::tryAGI.OpenAI.UrlCitationParam? Type2712 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellActionParam? Type2713 { get; set; } + public global::tryAGI.OpenAI.UrlCitationParamType? Type2713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type2714 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationParam? Type2714 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type2715 { get; set; } + public global::tryAGI.OpenAI.ContainerFileCitationParamType? Type2715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant13? Type2716 { get; set; } + public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type2716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type2717 { get; set; } + public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type2717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type2718 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsItemParamType? Type2718 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type2719 { get; set; } + public global::tryAGI.OpenAI.AdditionalToolsItemParamRole? Type2719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type2720 { get; set; } + public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type2720 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type2721 { get; set; } + public global::tryAGI.OpenAI.FunctionShellActionParam? Type2721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type2722 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type2722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type2723 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type2723 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type2724 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant13? Type2724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminatorType? Type2725 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type2725 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type2726 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type2726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type2727 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type2727 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2728 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type2728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type2729 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type2729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type2730 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type2730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type2731 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type2731 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type2732 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type2732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type2733 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminatorType? Type2733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type2734 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type2734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type2735 { get; set; } + public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type2735 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type2736 { get; set; } + public global::System.Collections.Generic.IList? Type2736 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type2737 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type2737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminatorType? Type2738 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type2738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type2739 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type2739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type2740 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type2740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type2741 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type2741 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactionTriggerItemParamType? Type2742 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type2742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemReferenceParamType2? Type2743 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type2743 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramItemParamType? Type2744 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type2744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputItemStatus? Type2745 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type2745 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProgramOutputItemParamType? Type2746 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminatorType? Type2746 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ConversationResource? Type2747 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type2747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ConversationResourceObject? Type2748 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type2748 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenOutputTokensDetails? Type2749 { get; set; } + public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type2749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type2750 { get; set; } + public global::tryAGI.OpenAI.CompactionTriggerItemParamType? Type2750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParamType? Type2751 { get; set; } + public global::tryAGI.OpenAI.ItemReferenceParamType2? Type2751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type2752 { get; set; } + public global::tryAGI.OpenAI.ProgramItemParamType? Type2752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type2753 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputItemStatus? Type2753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ReasoningModeEnumEnum? Type2754 { get; set; } + public global::tryAGI.OpenAI.ProgramOutputItemParamType? Type2754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationErrorBody? Type2755 { get; set; } + public global::tryAGI.OpenAI.ConversationResource? Type2755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationErrorBodyType? Type2756 { get; set; } + public global::tryAGI.OpenAI.ConversationResourceObject? Type2756 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Input4? Type2757 { get; set; } + public global::tryAGI.OpenAI.ImageGenOutputTokensDetails? Type2757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationInputDiscriminator? Type2758 { get; set; } + public global::tryAGI.OpenAI.ImageGenInputUsageDetails? Type2758 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationInputDiscriminatorType? Type2759 { get; set; } + public global::tryAGI.OpenAI.SpecificProgrammaticToolCallingParamType? Type2759 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Output5? Type2760 { get; set; } + public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type2760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationOutputDiscriminator? Type2761 { get; set; } + public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type2761 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ModerationOutputDiscriminatorType? Type2762 { get; set; } + public global::tryAGI.OpenAI.ReasoningModeEnumEnum? Type2762 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateConversationBody? Type2763 { get; set; } + public global::tryAGI.OpenAI.ModerationErrorBody? Type2763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateConversationBody? Type2764 { get; set; } + public global::tryAGI.OpenAI.ModerationErrorBodyType? Type2764 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type2765 { get; set; } + public global::tryAGI.OpenAI.Input4? Type2765 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendLimitCurrency? Type2766 { get; set; } + public global::tryAGI.OpenAI.ModerationInputDiscriminator? Type2766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendLimitCurrencyEnum? Type2767 { get; set; } + public global::tryAGI.OpenAI.ModerationInputDiscriminatorType? Type2767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendLimitInterval? Type2768 { get; set; } + public global::tryAGI.OpenAI.Output5? Type2768 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendLimitIntervalEnum? Type2769 { get; set; } + public global::tryAGI.OpenAI.ModerationOutputDiscriminator? Type2769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendLimitEnforcementStatus? Type2770 { get; set; } + public global::tryAGI.OpenAI.ModerationOutputDiscriminatorType? Type2770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendLimitEnforcementStatusEnum? Type2771 { get; set; } + public global::tryAGI.OpenAI.CreateConversationBody? Type2771 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SpendLimitEnforcement? Type2772 { get; set; } + public global::tryAGI.OpenAI.UpdateConversationBody? Type2772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendLimitResource? Type2773 { get; set; } + public global::tryAGI.OpenAI.DeletedConversationResourceObject? Type2773 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendLimitResourceObject? Type2774 { get; set; } + public global::tryAGI.OpenAI.SpendLimitCurrency? Type2774 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateOrganizationSpendLimitBody? Type2775 { get; set; } + public global::tryAGI.OpenAI.SpendLimitCurrencyEnum? Type2775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateOrganizationSpendLimitBodyCurrency? Type2776 { get; set; } + public global::tryAGI.OpenAI.SpendLimitInterval? Type2776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateOrganizationSpendLimitBodyInterval? Type2777 { get; set; } + public global::tryAGI.OpenAI.SpendLimitIntervalEnum? Type2777 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendLimitDeletedResource? Type2778 { get; set; } + public global::tryAGI.OpenAI.SpendLimitEnforcementStatus? Type2778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrganizationSpendLimitDeletedResourceObject? Type2779 { get; set; } + public global::tryAGI.OpenAI.SpendLimitEnforcementStatusEnum? Type2779 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendLimitResource? Type2780 { get; set; } + public global::tryAGI.OpenAI.SpendLimitEnforcement? Type2780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendLimitResourceObject? Type2781 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendLimitResource? Type2781 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectSpendLimitBody? Type2782 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendLimitResourceObject? Type2782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectSpendLimitBodyCurrency? Type2783 { get; set; } + public global::tryAGI.OpenAI.UpdateOrganizationSpendLimitBody? Type2783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateProjectSpendLimitBodyInterval? Type2784 { get; set; } + public global::tryAGI.OpenAI.UpdateOrganizationSpendLimitBodyCurrency? Type2784 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendLimitDeletedResource? Type2785 { get; set; } + public global::tryAGI.OpenAI.UpdateOrganizationSpendLimitBodyInterval? Type2785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ProjectSpendLimitDeletedResourceObject? Type2786 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendLimitDeletedResource? Type2786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody? Type2787 { get; set; } + public global::tryAGI.OpenAI.OrganizationSpendLimitDeletedResourceObject? Type2787 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ServiceAccountApiKeyBody? Type2788 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendLimitResource? Type2788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject? Type2789 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendLimitResourceObject? Type2789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OrderEnum? Type2790 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectSpendLimitBody? Type2790 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoModel? Type2791 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectSpendLimitBodyCurrency? Type2791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoModelEnum? Type2792 { get; set; } + public global::tryAGI.OpenAI.UpdateProjectSpendLimitBodyInterval? Type2792 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoStatus? Type2793 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendLimitDeletedResource? Type2793 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoSize? Type2794 { get; set; } + public global::tryAGI.OpenAI.ProjectSpendLimitDeletedResourceObject? Type2794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Error2? Type2795 { get; set; } + public global::tryAGI.OpenAI.CreateProjectServiceAccountApiKeyBody? Type2795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoResource? Type2796 { get; set; } + public global::tryAGI.OpenAI.ServiceAccountApiKeyBody? Type2796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoResourceObject? Type2797 { get; set; } + public global::tryAGI.OpenAI.ServiceAccountApiKeyBodyObject? Type2797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoListResource? Type2798 { get; set; } + public global::tryAGI.OpenAI.OrderEnum? Type2798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoListResourceObject? Type2799 { get; set; } + public global::tryAGI.OpenAI.VideoModel? Type2799 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2800 { get; set; } + public global::tryAGI.OpenAI.VideoModelEnum? Type2800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ImageRefParam2? Type2801 { get; set; } + public global::tryAGI.OpenAI.VideoStatus? Type2801 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoSeconds? Type2802 { get; set; } + public global::tryAGI.OpenAI.VideoSize? Type2802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoMultipartBody? Type2803 { get; set; } + public global::tryAGI.OpenAI.Error2? Type2803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2804 { get; set; } + public global::tryAGI.OpenAI.VideoResource? Type2804 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoJsonBody? Type2805 { get; set; } + public global::tryAGI.OpenAI.VideoResourceObject? Type2805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoCharacterBody? Type2806 { get; set; } + public global::tryAGI.OpenAI.VideoListResource? Type2806 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoCharacterResource? Type2807 { get; set; } + public global::tryAGI.OpenAI.VideoListResourceObject? Type2807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoReferenceInputParam? Type2808 { get; set; } + public global::System.Collections.Generic.IList? Type2808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoEditMultipartBody? Type2809 { get; set; } + public global::tryAGI.OpenAI.ImageRefParam2? Type2809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2810 { get; set; } + public global::tryAGI.OpenAI.VideoSeconds? Type2810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoEditJsonBody? Type2811 { get; set; } + public global::tryAGI.OpenAI.CreateVideoMultipartBody? Type2811 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoExtendMultipartBody? Type2812 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2813 { get; set; } + public global::tryAGI.OpenAI.CreateVideoJsonBody? Type2813 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoExtendJsonBody? Type2814 { get; set; } + public global::tryAGI.OpenAI.CreateVideoCharacterBody? Type2814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedVideoResource? Type2815 { get; set; } + public global::tryAGI.OpenAI.VideoCharacterResource? Type2815 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedVideoResourceObject? Type2816 { get; set; } + public global::tryAGI.OpenAI.VideoReferenceInputParam? Type2816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.VideoContentVariant? Type2817 { get; set; } + public global::tryAGI.OpenAI.CreateVideoEditMultipartBody? Type2817 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateVideoRemixBody? Type2818 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TruncationEnum? Type2819 { get; set; } + public global::tryAGI.OpenAI.CreateVideoEditJsonBody? Type2819 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PersonalityEnum? Type2820 { get; set; } + public global::tryAGI.OpenAI.CreateVideoExtendMultipartBody? Type2820 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PersonalityEnumEnum? Type2821 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2821 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TokenCountsBody? Type2822 { get; set; } + public global::tryAGI.OpenAI.CreateVideoExtendJsonBody? Type2822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TokenCountsResource? Type2823 { get; set; } + public global::tryAGI.OpenAI.DeletedVideoResource? Type2823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TokenCountsResourceObject? Type2824 { get; set; } + public global::tryAGI.OpenAI.DeletedVideoResourceObject? Type2824 { get; set; } /// /// /// - public global::tryAGI.OpenAI.PromptCacheRetentionEnum? Type2825 { get; set; } + public global::tryAGI.OpenAI.VideoContentVariant? Type2825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ServiceTierEnum2? Type2826 { get; set; } + public global::tryAGI.OpenAI.CreateVideoRemixBody? Type2826 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactResponseMethodPublicBody? Type2827 { get; set; } + public global::tryAGI.OpenAI.TruncationEnum? Type2827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemField? Type2828 { get; set; } + public global::tryAGI.OpenAI.PersonalityEnum? Type2828 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemFieldDiscriminator? Type2829 { get; set; } + public global::tryAGI.OpenAI.PersonalityEnumEnum? Type2829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ItemFieldDiscriminatorType? Type2830 { get; set; } + public global::tryAGI.OpenAI.TokenCountsBody? Type2830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactResource? Type2831 { get; set; } + public global::tryAGI.OpenAI.TokenCountsResource? Type2831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CompactResourceObject? Type2832 { get; set; } + public global::tryAGI.OpenAI.TokenCountsResourceObject? Type2832 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2833 { get; set; } + public global::tryAGI.OpenAI.PromptCacheRetentionEnum? Type2833 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillResource? Type2834 { get; set; } + public global::tryAGI.OpenAI.ServiceTierEnum2? Type2834 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillResourceObject? Type2835 { get; set; } + public global::tryAGI.OpenAI.CompactResponseMethodPublicBody? Type2835 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillListResource? Type2836 { get; set; } + public global::tryAGI.OpenAI.ItemField? Type2836 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillListResourceObject? Type2837 { get; set; } + public global::tryAGI.OpenAI.ItemFieldDiscriminator? Type2837 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2838 { get; set; } + public global::tryAGI.OpenAI.ItemFieldDiscriminatorType? Type2838 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSkillBody? Type2839 { get; set; } + public global::tryAGI.OpenAI.CompactResource? Type2839 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, byte[]>? Type2840 { get; set; } + public global::tryAGI.OpenAI.CompactResourceObject? Type2840 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SetDefaultSkillVersionBody? Type2841 { get; set; } + public global::System.Collections.Generic.IList? Type2841 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillResource? Type2842 { get; set; } + public global::tryAGI.OpenAI.SkillResource? Type2842 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillResourceObject? Type2843 { get; set; } + public global::tryAGI.OpenAI.SkillResourceObject? Type2843 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionResource? Type2844 { get; set; } + public global::tryAGI.OpenAI.SkillListResource? Type2844 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionResourceObject? Type2845 { get; set; } + public global::tryAGI.OpenAI.SkillListResourceObject? Type2845 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionListResource? Type2846 { get; set; } + public global::System.Collections.Generic.IList? Type2846 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillVersionListResourceObject? Type2847 { get; set; } + public global::tryAGI.OpenAI.CreateSkillBody? Type2847 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2848 { get; set; } + public global::tryAGI.OpenAI.OneOf, byte[]>? Type2848 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateSkillVersionBody? Type2849 { get; set; } + public global::tryAGI.OpenAI.SetDefaultSkillVersionBody? Type2849 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillVersionResource? Type2850 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillResource? Type2850 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedSkillVersionResourceObject? Type2851 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillResourceObject? Type2851 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatkitWorkflowTracing? Type2852 { get; set; } + public global::tryAGI.OpenAI.SkillVersionResource? Type2852 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatkitWorkflow? Type2853 { get; set; } + public global::tryAGI.OpenAI.SkillVersionResourceObject? Type2853 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type2854 { get; set; } + public global::tryAGI.OpenAI.SkillVersionListResource? Type2854 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionRateLimits? Type2855 { get; set; } + public global::tryAGI.OpenAI.SkillVersionListResourceObject? Type2855 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionStatus? Type2856 { get; set; } + public global::System.Collections.Generic.IList? Type2856 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionAutomaticThreadTitling? Type2857 { get; set; } + public global::tryAGI.OpenAI.CreateSkillVersionBody? Type2857 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionFileUpload? Type2858 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillVersionResource? Type2858 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionHistory? Type2859 { get; set; } + public global::tryAGI.OpenAI.DeletedSkillVersionResourceObject? Type2859 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionChatkitConfiguration? Type2860 { get; set; } + public global::tryAGI.OpenAI.ChatkitWorkflowTracing? Type2860 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionResource? Type2861 { get; set; } + public global::tryAGI.OpenAI.ChatkitWorkflow? Type2861 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatSessionResourceObject? Type2862 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type2862 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WorkflowTracingParam? Type2863 { get; set; } + public global::tryAGI.OpenAI.ChatSessionRateLimits? Type2863 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WorkflowParam? Type2864 { get; set; } + public global::tryAGI.OpenAI.ChatSessionStatus? Type2864 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ExpiresAfterParam? Type2865 { get; set; } + public global::tryAGI.OpenAI.ChatSessionAutomaticThreadTitling? Type2865 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ExpiresAfterParamAnchor? Type2866 { get; set; } + public global::tryAGI.OpenAI.ChatSessionFileUpload? Type2866 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RateLimitsParam? Type2867 { get; set; } + public global::tryAGI.OpenAI.ChatSessionHistory? Type2867 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AutomaticThreadTitlingParam? Type2868 { get; set; } + public global::tryAGI.OpenAI.ChatSessionChatkitConfiguration? Type2868 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileUploadParam? Type2869 { get; set; } + public global::tryAGI.OpenAI.ChatSessionResource? Type2869 { get; set; } /// /// /// - public global::tryAGI.OpenAI.HistoryParam? Type2870 { get; set; } + public global::tryAGI.OpenAI.ChatSessionResourceObject? Type2870 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ChatkitConfigurationParam? Type2871 { get; set; } + public global::tryAGI.OpenAI.WorkflowTracingParam? Type2871 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateChatSessionBody? Type2872 { get; set; } + public global::tryAGI.OpenAI.WorkflowParam? Type2872 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageInputText? Type2873 { get; set; } + public global::tryAGI.OpenAI.ExpiresAfterParam? Type2873 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageInputTextType? Type2874 { get; set; } + public global::tryAGI.OpenAI.ExpiresAfterParamAnchor? Type2874 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageQuotedText? Type2875 { get; set; } + public global::tryAGI.OpenAI.RateLimitsParam? Type2875 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageQuotedTextType? Type2876 { get; set; } + public global::tryAGI.OpenAI.AutomaticThreadTitlingParam? Type2876 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AttachmentType? Type2877 { get; set; } + public global::tryAGI.OpenAI.FileUploadParam? Type2877 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Attachment? Type2878 { get; set; } + public global::tryAGI.OpenAI.HistoryParam? Type2878 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolChoice8? Type2879 { get; set; } + public global::tryAGI.OpenAI.ChatkitConfigurationParam? Type2879 { get; set; } /// /// /// - public global::tryAGI.OpenAI.InferenceOptions? Type2880 { get; set; } + public global::tryAGI.OpenAI.CreateChatSessionBody? Type2880 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItem? Type2881 { get; set; } + public global::tryAGI.OpenAI.UserMessageInputText? Type2881 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemObject? Type2882 { get; set; } + public global::tryAGI.OpenAI.UserMessageInputTextType? Type2882 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemType? Type2883 { get; set; } + public global::tryAGI.OpenAI.UserMessageQuotedText? Type2883 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2884 { get; set; } + public global::tryAGI.OpenAI.UserMessageQuotedTextType? Type2884 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem4? Type2885 { get; set; } + public global::tryAGI.OpenAI.AttachmentType? Type2885 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminator? Type2886 { get; set; } + public global::tryAGI.OpenAI.Attachment? Type2886 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminatorType? Type2887 { get; set; } + public global::tryAGI.OpenAI.ToolChoice8? Type2887 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2888 { get; set; } + public global::tryAGI.OpenAI.InferenceOptions? Type2888 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotationSource? Type2889 { get; set; } + public global::tryAGI.OpenAI.UserMessageItem? Type2889 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotationSourceType? Type2890 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemObject? Type2890 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotation? Type2891 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemType? Type2891 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FileAnnotationType? Type2892 { get; set; } + public global::System.Collections.Generic.IList? Type2892 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotationSource? Type2893 { get; set; } + public global::tryAGI.OpenAI.ContentItem4? Type2893 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotationSourceType? Type2894 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminator? Type2894 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotation? Type2895 { get; set; } + public global::tryAGI.OpenAI.UserMessageItemContentItemDiscriminatorType? Type2895 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UrlAnnotationType? Type2896 { get; set; } + public global::System.Collections.Generic.IList? Type2896 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputText? Type2897 { get; set; } + public global::tryAGI.OpenAI.FileAnnotationSource? Type2897 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextType? Type2898 { get; set; } + public global::tryAGI.OpenAI.FileAnnotationSourceType? Type2898 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2899 { get; set; } + public global::tryAGI.OpenAI.FileAnnotation? Type2899 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationsItem3? Type2900 { get; set; } + public global::tryAGI.OpenAI.FileAnnotationType? Type2900 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminator? Type2901 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotationSource? Type2901 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminatorType? Type2902 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotationSourceType? Type2902 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AssistantMessageItem? Type2903 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotation? Type2903 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AssistantMessageItemObject? Type2904 { get; set; } + public global::tryAGI.OpenAI.UrlAnnotationType? Type2904 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AssistantMessageItemType? Type2905 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputText? Type2905 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2906 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextType? Type2906 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WidgetMessageItem? Type2907 { get; set; } + public global::System.Collections.Generic.IList? Type2907 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WidgetMessageItemObject? Type2908 { get; set; } + public global::tryAGI.OpenAI.AnnotationsItem3? Type2908 { get; set; } /// /// /// - public global::tryAGI.OpenAI.WidgetMessageItemType? Type2909 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminator? Type2909 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallStatus? Type2910 { get; set; } + public global::tryAGI.OpenAI.ResponseOutputTextAnnotationDiscriminatorType? Type2910 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallItem? Type2911 { get; set; } + public global::tryAGI.OpenAI.AssistantMessageItem? Type2911 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallItemObject? Type2912 { get; set; } + public global::tryAGI.OpenAI.AssistantMessageItemObject? Type2912 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClientToolCallItemType? Type2913 { get; set; } + public global::tryAGI.OpenAI.AssistantMessageItemType? Type2913 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskType? Type2914 { get; set; } + public global::System.Collections.Generic.IList? Type2914 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskItem? Type2915 { get; set; } + public global::tryAGI.OpenAI.WidgetMessageItem? Type2915 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskItemObject? Type2916 { get; set; } + public global::tryAGI.OpenAI.WidgetMessageItemObject? Type2916 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskItemType? Type2917 { get; set; } + public global::tryAGI.OpenAI.WidgetMessageItemType? Type2917 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupTask? Type2918 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallStatus? Type2918 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupItem? Type2919 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallItem? Type2919 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupItemObject? Type2920 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallItemObject? Type2920 { get; set; } /// /// /// - public global::tryAGI.OpenAI.TaskGroupItemType? Type2921 { get; set; } + public global::tryAGI.OpenAI.ClientToolCallItemType? Type2921 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2922 { get; set; } + public global::tryAGI.OpenAI.TaskType? Type2922 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItem? Type2923 { get; set; } + public global::tryAGI.OpenAI.TaskItem? Type2923 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemDiscriminator? Type2924 { get; set; } + public global::tryAGI.OpenAI.TaskItemObject? Type2924 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemDiscriminatorType? Type2925 { get; set; } + public global::tryAGI.OpenAI.TaskItemType? Type2925 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemListResource? Type2926 { get; set; } + public global::tryAGI.OpenAI.TaskGroupTask? Type2926 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadItemListResourceObject? Type2927 { get; set; } + public global::tryAGI.OpenAI.TaskGroupItem? Type2927 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2928 { get; set; } + public global::tryAGI.OpenAI.TaskGroupItemObject? Type2928 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ActiveStatus? Type2929 { get; set; } + public global::tryAGI.OpenAI.TaskGroupItemType? Type2929 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ActiveStatusType? Type2930 { get; set; } + public global::System.Collections.Generic.IList? Type2930 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LockedStatus? Type2931 { get; set; } + public global::tryAGI.OpenAI.ThreadItem? Type2931 { get; set; } /// /// /// - public global::tryAGI.OpenAI.LockedStatusType? Type2932 { get; set; } + public global::tryAGI.OpenAI.ThreadItemDiscriminator? Type2932 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClosedStatus? Type2933 { get; set; } + public global::tryAGI.OpenAI.ThreadItemDiscriminatorType? Type2933 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ClosedStatusType? Type2934 { get; set; } + public global::tryAGI.OpenAI.ThreadItemListResource? Type2934 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResource? Type2935 { get; set; } + public global::tryAGI.OpenAI.ThreadItemListResourceObject? Type2935 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResourceObject? Type2936 { get; set; } + public global::System.Collections.Generic.IList? Type2936 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Status? Type2937 { get; set; } + public global::tryAGI.OpenAI.ActiveStatus? Type2937 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminator? Type2938 { get; set; } + public global::tryAGI.OpenAI.ActiveStatusType? Type2938 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminatorType? Type2939 { get; set; } + public global::tryAGI.OpenAI.LockedStatus? Type2939 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedThreadResource? Type2940 { get; set; } + public global::tryAGI.OpenAI.LockedStatusType? Type2940 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeletedThreadResourceObject? Type2941 { get; set; } + public global::tryAGI.OpenAI.ClosedStatus? Type2941 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadListResource? Type2942 { get; set; } + public global::tryAGI.OpenAI.ClosedStatusType? Type2942 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ThreadListResourceObject? Type2943 { get; set; } + public global::tryAGI.OpenAI.ThreadResource? Type2943 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2944 { get; set; } + public global::tryAGI.OpenAI.ThreadResourceObject? Type2944 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DragPoint? Type2945 { get; set; } + public global::tryAGI.OpenAI.Status? Type2945 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTokenCountsResource? Type2946 { get; set; } + public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminator? Type2946 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTokenCountsResourceObject? Type2947 { get; set; } + public global::tryAGI.OpenAI.ThreadResourceStatusDiscriminatorType? Type2947 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTokenCountsBody? Type2948 { get; set; } + public global::tryAGI.OpenAI.DeletedThreadResource? Type2948 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type2949 { get; set; } + public global::tryAGI.OpenAI.DeletedThreadResourceObject? Type2949 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2950 { get; set; } + public global::tryAGI.OpenAI.ThreadListResource? Type2950 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputItem? Type2951 { get; set; } + public global::tryAGI.OpenAI.ThreadListResourceObject? Type2951 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2952 { get; set; } + public global::System.Collections.Generic.IList? Type2952 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTool? Type2953 { get; set; } + public global::tryAGI.OpenAI.DragPoint? Type2953 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextParam? Type2954 { get; set; } + public global::tryAGI.OpenAI.BetaTokenCountsResource? Type2954 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoning? Type2955 { get; set; } + public global::tryAGI.OpenAI.BetaTokenCountsResourceObject? Type2955 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTruncationEnum? Type2956 { get; set; } + public global::tryAGI.OpenAI.BetaTokenCountsBody? Type2956 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPersonalityEnum? Type2957 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type2957 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaConversationParam? Type2958 { get; set; } + public global::System.Collections.Generic.IList? Type2958 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceParam? Type2959 { get; set; } + public global::tryAGI.OpenAI.BetaInputItem? Type2959 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceOptions? Type2960 { get; set; } + public global::System.Collections.Generic.IList? Type2960 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceAllowed? Type2961 { get; set; } + public global::tryAGI.OpenAI.BetaTool? Type2961 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceTypes? Type2962 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextParam? Type2962 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceFunction? Type2963 { get; set; } + public global::tryAGI.OpenAI.BetaReasoning? Type2963 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceMCP? Type2964 { get; set; } + public global::tryAGI.OpenAI.BetaTruncationEnum? Type2964 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceCustom? Type2965 { get; set; } + public global::tryAGI.OpenAI.BetaPersonalityEnum? Type2965 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParam? Type2966 { get; set; } + public global::tryAGI.OpenAI.BetaConversationParam? Type2966 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificApplyPatchParam? Type2967 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceParam? Type2967 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificFunctionShellParam? Type2968 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceOptions? Type2968 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificFunctionShellParamType? Type2969 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceAllowed? Type2969 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificApplyPatchParamType? Type2970 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceTypes? Type2970 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParamType? Type2971 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceFunction? Type2971 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceCustomType? Type2972 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceMCP? Type2972 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceMCPType? Type2973 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceCustom? Type2973 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceFunctionType? Type2974 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParam? Type2974 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceTypesType? Type2975 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificApplyPatchParam? Type2975 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceAllowedType? Type2976 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificFunctionShellParam? Type2976 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolChoiceAllowedMode? Type2977 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificFunctionShellParamType? Type2977 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaConversationParam2? Type2978 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificApplyPatchParamType? Type2978 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPersonalityEnumEnum? Type2979 { get; set; } + public global::tryAGI.OpenAI.BetaSpecificProgrammaticToolCallingParamType? Type2979 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningModeEnum? Type2980 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceCustomType? Type2980 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningEffortEnum? Type2981 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceMCPType? Type2981 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningSummary2? Type2982 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceFunctionType? Type2982 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningContext2? Type2983 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceTypesType? Type2983 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningGenerateSummary2? Type2984 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceAllowedType? Type2984 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningModeEnumEnum? Type2985 { get; set; } + public global::tryAGI.OpenAI.BetaToolChoiceAllowedMode? Type2985 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextResponseFormatConfiguration? Type2986 { get; set; } + public global::tryAGI.OpenAI.BetaConversationParam2? Type2986 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaVerbosityEnum? Type2987 { get; set; } + public global::tryAGI.OpenAI.BetaPersonalityEnumEnum? Type2987 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatText? Type2988 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningModeEnum? Type2988 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchema? Type2989 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningEffortEnum? Type2989 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatJsonObject? Type2990 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningSummary2? Type2990 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatJsonObjectType? Type2991 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningContext2? Type2991 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchemaType? Type2992 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningGenerateSummary2? Type2992 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatJsonSchemaSchema? Type2993 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningModeEnumEnum? Type2993 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFormatTextType? Type2994 { get; set; } + public global::tryAGI.OpenAI.BetaTextResponseFormatConfiguration? Type2994 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionTool? Type2995 { get; set; } + public global::tryAGI.OpenAI.BetaVerbosityEnum? Type2995 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchTool? Type2996 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatText? Type2996 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerTool? Type2997 { get; set; } + public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchema? Type2997 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerUsePreviewTool? Type2998 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatJsonObject? Type2998 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchTool? Type2999 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatJsonObjectType? Type2999 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPTool? Type3000 { get; set; } + public global::tryAGI.OpenAI.BetaTextResponseFormatJsonSchemaType? Type3000 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterTool? Type3001 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatJsonSchemaSchema? Type3001 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParam? Type3002 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFormatTextType? Type3002 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenTool? Type3003 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionTool? Type3003 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolParam? Type3004 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchTool? Type3004 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParam? Type3005 { get; set; } + public global::tryAGI.OpenAI.BetaComputerTool? Type3005 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParam? Type3006 { get; set; } + public global::tryAGI.OpenAI.BetaComputerUsePreviewTool? Type3006 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParam? Type3007 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchTool? Type3007 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchToolParam? Type3008 { get; set; } + public global::tryAGI.OpenAI.BetaMCPTool? Type3008 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchPreviewTool? Type3009 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterTool? Type3009 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolParam? Type3010 { get; set; } + public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParam? Type3010 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolDiscriminator? Type3011 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenTool? Type3011 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolDiscriminatorType? Type3012 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolParam? Type3012 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolParamType? Type3013 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParam? Type3013 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3014 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParam? Type3014 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCallableToolAllowedCaller? Type3015 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParam? Type3015 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchPreviewToolType? Type3016 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchToolParam? Type3016 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApproximateLocation? Type3017 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchPreviewTool? Type3017 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSearchContextSize? Type3018 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolParam? Type3018 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3019 { get; set; } + public global::tryAGI.OpenAI.BetaToolDiscriminator? Type3019 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSearchContentType? Type3020 { get; set; } + public global::tryAGI.OpenAI.BetaToolDiscriminatorType? Type3020 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApproximateLocationType? Type3021 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolParamType? Type3021 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchToolParamType? Type3022 { get; set; } + public global::System.Collections.Generic.IList? Type3022 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchExecutionType? Type3023 { get; set; } + public global::tryAGI.OpenAI.BetaCallableToolAllowedCaller? Type3023 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEmptyModelParam? Type3024 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchPreviewToolType? Type3024 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParamType? Type3025 { get; set; } + public global::tryAGI.OpenAI.BetaApproximateLocation? Type3025 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3026 { get; set; } + public global::tryAGI.OpenAI.BetaSearchContextSize? Type3026 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ToolsItem14? Type3027 { get; set; } + public global::System.Collections.Generic.IList? Type3027 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolParam? Type3028 { get; set; } + public global::tryAGI.OpenAI.BetaSearchContentType? Type3028 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminator? Type3029 { get; set; } + public global::tryAGI.OpenAI.BetaApproximateLocationType? Type3029 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminatorType? Type3030 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchToolParamType? Type3030 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParamType? Type3031 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchExecutionType? Type3031 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Format3? Type3032 { get; set; } + public global::tryAGI.OpenAI.BetaEmptyModelParam? Type3032 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomTextFormatParam? Type3033 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParamType? Type3033 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomGrammarFormatParam? Type3034 { get; set; } + public global::System.Collections.Generic.IList? Type3034 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminator? Type3035 { get; set; } + public global::tryAGI.OpenAI.ToolsItem14? Type3035 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminatorType? Type3036 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolParam? Type3036 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomGrammarFormatParamType? Type3037 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminator? Type3037 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaGrammarSyntax1? Type3038 { get; set; } + public global::tryAGI.OpenAI.BetaNamespaceToolParamToolDiscriminatorType? Type3038 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomTextFormatParamType? Type3039 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParamType? Type3039 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolParamType? Type3040 { get; set; } + public global::tryAGI.OpenAI.Format3? Type3040 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParamType? Type3041 { get; set; } + public global::tryAGI.OpenAI.BetaCustomTextFormatParam? Type3041 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant14? Type3042 { get; set; } + public global::tryAGI.OpenAI.BetaCustomGrammarFormatParam? Type3042 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParam? Type3043 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminator? Type3043 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentParam? Type3044 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolParamFormatDiscriminatorType? Type3044 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceParam? Type3045 { get; set; } + public global::tryAGI.OpenAI.BetaCustomGrammarFormatParamType? Type3045 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1Discriminator? Type3046 { get; set; } + public global::tryAGI.OpenAI.BetaGrammarSyntax1? Type3046 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type3047 { get; set; } + public global::tryAGI.OpenAI.BetaCustomTextFormatParamType? Type3047 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceParamType? Type3048 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolParamType? Type3048 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentParamType? Type3049 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParamType? Type3049 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3050 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant14? Type3050 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalSkillParam? Type3051 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParam? Type3051 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamType? Type3052 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentParam? Type3052 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerMemoryLimit? Type3053 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceParam? Type3053 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy4? Type3054 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1Discriminator? Type3054 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParam? Type3055 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellToolParamEnvironmentVariant1DiscriminatorType? Type3055 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParam? Type3056 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceParamType? Type3056 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminator? Type3057 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentParamType? Type3057 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminatorType? Type3058 { get; set; } + public global::System.Collections.Generic.IList? Type3058 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3059 { get; set; } + public global::tryAGI.OpenAI.BetaLocalSkillParam? Type3059 { get; set; } /// /// /// - public global::tryAGI.OpenAI.SkillsItem3? Type3060 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamType? Type3060 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSkillReferenceParam? Type3061 { get; set; } + public global::tryAGI.OpenAI.BetaContainerMemoryLimit? Type3061 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillParam? Type3062 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy4? Type3062 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminator? Type3063 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParam? Type3063 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminatorType? Type3064 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParam? Type3064 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillParamType? Type3065 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminator? Type3065 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillSourceParam? Type3066 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamNetworkPolicyDiscriminatorType? Type3066 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillSourceParamType? Type3067 { get; set; } + public global::System.Collections.Generic.IList? Type3067 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInlineSkillSourceParamMediaType? Type3068 { get; set; } + public global::tryAGI.OpenAI.SkillsItem3? Type3068 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSkillReferenceParamType? Type3069 { get; set; } + public global::tryAGI.OpenAI.BetaSkillReferenceParam? Type3069 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParamType? Type3070 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillParam? Type3070 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3071 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminator? Type3071 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDomainSecretParam? Type3072 { get; set; } + public global::tryAGI.OpenAI.BetaContainerAutoParamSkillDiscriminatorType? Type3072 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParamType? Type3073 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillParamType? Type3073 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolParamType? Type3074 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillSourceParam? Type3074 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolType? Type3075 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillSourceParamType? Type3075 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type3076 { get; set; } + public global::tryAGI.OpenAI.BetaInlineSkillSourceParamMediaType? Type3076 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolModel? Type3077 { get; set; } + public global::tryAGI.OpenAI.BetaSkillReferenceParamType? Type3077 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolQuality? Type3078 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyAllowlistParamType? Type3078 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnyOf? Type3079 { get; set; } + public global::System.Collections.Generic.IList? Type3079 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolSize? Type3080 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDomainSecretParam? Type3080 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolOutputFormat? Type3081 { get; set; } + public global::tryAGI.OpenAI.BetaContainerNetworkPolicyDisabledParamType? Type3081 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolModeration? Type3082 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolParamType? Type3082 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolBackground? Type3083 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolType? Type3083 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFidelity? Type3084 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type3084 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolInputImageMask? Type3085 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolModel? Type3085 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenActionEnum? Type3086 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolQuality? Type3086 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParamType? Type3087 { get; set; } + public global::tryAGI.OpenAI.AnyOf? Type3087 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolType? Type3088 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolSize? Type3088 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3089 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolOutputFormat? Type3089 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParam? Type3090 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolModeration? Type3090 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamType? Type3091 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolBackground? Type3091 { get; set; } /// /// /// - public global::tryAGI.OpenAI.NetworkPolicy5? Type3092 { get; set; } + public global::tryAGI.OpenAI.BetaInputFidelity? Type3092 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type3093 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolInputImageMask? Type3093 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type3094 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenActionEnum? Type3094 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolType? Type3095 { get; set; } + public global::tryAGI.OpenAI.BetaProgrammaticToolCallingParamType? Type3095 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolConnectorId? Type3096 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolType? Type3096 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.BetaMCPToolFilter>? Type3097 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type3097 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolFilter? Type3098 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParam? Type3098 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3099 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamType? Type3099 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum? Type3100 { get; set; } + public global::tryAGI.OpenAI.NetworkPolicy5? Type3100 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum2? Type3101 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminator? Type3101 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolType? Type3102 { get; set; } + public global::tryAGI.OpenAI.BetaAutoCodeInterpreterToolParamNetworkPolicyDiscriminatorType? Type3102 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolFilters2? Type3103 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolType? Type3103 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocation? Type3104 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolConnectorId? Type3104 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolSearchContextSize? Type3105 { get; set; } + public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.BetaMCPToolFilter>? Type3105 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocationType? Type3106 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolFilter? Type3106 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerUsePreviewToolType? Type3107 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type3107 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerEnvironment? Type3108 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum? Type3108 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolType? Type3109 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolRequireApprovalVariant1Enum2? Type3109 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolType? Type3110 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolType? Type3110 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRankingOptions? Type3111 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolFilters2? Type3111 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFilters? Type3112 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocation? Type3112 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComparisonFilter? Type3113 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolSearchContextSize? Type3113 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompoundFilter? Type3114 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchApproximateLocationWebSearchApproximateLocationType? Type3114 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompoundFilterType? Type3115 { get; set; } + public global::tryAGI.OpenAI.BetaComputerUsePreviewToolType? Type3115 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3116 { get; set; } + public global::tryAGI.OpenAI.BetaComputerEnvironment? Type3116 { get; set; } /// /// /// - public global::tryAGI.OpenAI.FiltersItem2? Type3117 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolType? Type3117 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompoundFilterFilterDiscriminator? Type3118 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolType? Type3118 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComparisonFilterType? Type3119 { get; set; } + public global::tryAGI.OpenAI.BetaRankingOptions? Type3119 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRankerVersionType? Type3120 { get; set; } + public global::tryAGI.OpenAI.BetaFilters? Type3120 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaHybridSearchOptions? Type3121 { get; set; } + public global::tryAGI.OpenAI.BetaComparisonFilter? Type3121 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolType? Type3122 { get; set; } + public global::tryAGI.OpenAI.BetaCompoundFilter? Type3122 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEasyInputMessage? Type3123 { get; set; } + public global::tryAGI.OpenAI.BetaCompoundFilterType? Type3123 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItem? Type3124 { get; set; } + public global::System.Collections.Generic.IList? Type3124 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionTriggerItemParam? Type3125 { get; set; } + public global::tryAGI.OpenAI.FiltersItem2? Type3125 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemReferenceParam? Type3126 { get; set; } + public global::tryAGI.OpenAI.BetaCompoundFilterFilterDiscriminator? Type3126 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramItemParam? Type3127 { get; set; } + public global::tryAGI.OpenAI.BetaComparisonFilterType? Type3127 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputItemParam? Type3128 { get; set; } + public global::tryAGI.OpenAI.BetaRankerVersionType? Type3128 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputItemDiscriminator? Type3129 { get; set; } + public global::tryAGI.OpenAI.BetaHybridSearchOptions? Type3129 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputItemDiscriminatorType? Type3130 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolType? Type3130 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentTagParam? Type3131 { get; set; } + public global::tryAGI.OpenAI.BetaEasyInputMessage? Type3131 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputItemParamType? Type3132 { get; set; } + public global::tryAGI.OpenAI.BetaItem? Type3132 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputItemStatus? Type3133 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionTriggerItemParam? Type3133 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramItemParamType? Type3134 { get; set; } + public global::tryAGI.OpenAI.BetaItemReferenceParam? Type3134 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemReferenceParamType2? Type3135 { get; set; } + public global::tryAGI.OpenAI.BetaProgramItemParam? Type3135 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionTriggerItemParamType? Type3136 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputItemParam? Type3136 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessage? Type3137 { get; set; } + public global::tryAGI.OpenAI.BetaInputItemDiscriminator? Type3137 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessage? Type3138 { get; set; } + public global::tryAGI.OpenAI.BetaInputItemDiscriminatorType? Type3138 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCall? Type3139 { get; set; } + public global::tryAGI.OpenAI.BetaAgentTagParam? Type3139 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCall? Type3140 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputItemParamType? Type3140 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallOutputItemParam? Type3141 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputItemStatus? Type3141 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCall? Type3142 { get; set; } + public global::tryAGI.OpenAI.BetaProgramItemParamType? Type3142 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCall? Type3143 { get; set; } + public global::tryAGI.OpenAI.BetaItemReferenceParamType2? Type3143 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParam? Type3144 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionTriggerItemParamType? Type3144 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParam? Type3145 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessage? Type3145 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallItemParam? Type3146 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessage? Type3146 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParam? Type3147 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCall? Type3147 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCallItemParam? Type3148 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCall? Type3148 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutputItemParam? Type3149 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallOutputItemParam? Type3149 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsItemParam? Type3150 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCall? Type3150 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningItem? Type3151 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCall? Type3151 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionSummaryItemParam? Type3152 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParam? Type3152 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolCall? Type3153 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParam? Type3153 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCall? Type3154 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallItemParam? Type3154 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCall? Type3155 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParam? Type3155 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallOutput? Type3156 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCallItemParam? Type3156 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParam? Type3157 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutputItemParam? Type3157 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParam? Type3158 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsItemParam? Type3158 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParam? Type3159 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningItem? Type3159 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParam? Type3160 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionSummaryItemParam? Type3160 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPListTools? Type3161 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolCall? Type3161 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalRequest? Type3162 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCall? Type3162 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponse? Type3163 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCall? Type3163 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolCall? Type3164 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallOutput? Type3164 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutput? Type3165 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParam? Type3165 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCall? Type3166 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParam? Type3166 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemDiscriminator? Type3167 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParam? Type3167 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemDiscriminatorType? Type3168 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParam? Type3168 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentTag? Type3169 { get; set; } + public global::tryAGI.OpenAI.BetaMCPListTools? Type3169 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallType? Type3170 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalRequest? Type3170 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCaller? Type3171 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponse? Type3171 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCaller? Type3172 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolCall? Type3172 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCaller? Type3173 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutput? Type3173 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminator? Type3174 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCall? Type3174 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminatorType? Type3175 { get; set; } + public global::tryAGI.OpenAI.BetaItemDiscriminator? Type3175 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCallerType? Type3176 { get; set; } + public global::tryAGI.OpenAI.BetaItemDiscriminatorType? Type3176 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCallerType? Type3177 { get; set; } + public global::tryAGI.OpenAI.BetaAgentTag? Type3177 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutputType? Type3178 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallType? Type3178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerParam? Type3179 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCaller? Type3179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type3180 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCaller? Type3180 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3181 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCaller? Type3181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutput? Type3182 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminator? Type3182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContent? Type3183 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerDiscriminatorType? Type3183 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContent? Type3184 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCallerType? Type3184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContent? Type3185 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCallerType? Type3185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminator? Type3186 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutputType? Type3186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminatorType? Type3187 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerParam? Type3187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContentType? Type3188 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type3188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfig? Type3189 { get; set; } + public global::System.Collections.Generic.IList? Type3189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileInputDetail? Type3190 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutput? Type3190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfigMode? Type3191 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContent? Type3191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContentType? Type3192 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContent? Type3192 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageDetail? Type3193 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContent? Type3193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContentType? Type3194 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminator? Type3194 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCallerParam? Type3195 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionAndCustomToolCallOutputDiscriminatorType? Type3195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCallerParam? Type3196 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContentType? Type3196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminator? Type3197 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfig? Type3197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminatorType? Type3198 { get; set; } + public global::tryAGI.OpenAI.BetaFileInputDetail? Type3198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramToolCallCallerParamType? Type3199 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointConfigMode? Type3199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDirectToolCallCallerParamType? Type3200 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContentType? Type3200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolCallType? Type3201 { get; set; } + public global::tryAGI.OpenAI.BetaImageDetail? Type3201 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPToolCallStatus? Type3202 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContentType? Type3202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponseType? Type3203 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCallerParam? Type3203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalRequestType? Type3204 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCallerParam? Type3204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPListToolsType? Type3205 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminator? Type3205 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3206 { get; set; } + public global::tryAGI.OpenAI.BetaToolCallCallerParamDiscriminatorType? Type3206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPListToolsTool? Type3207 { get; set; } + public global::tryAGI.OpenAI.BetaProgramToolCallCallerParamType? Type3207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParamType? Type3208 { get; set; } + public global::tryAGI.OpenAI.BetaDirectToolCallCallerParamType? Type3208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatusParam? Type3209 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolCallType? Type3209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParamType? Type3210 { get; set; } + public global::tryAGI.OpenAI.BetaMCPToolCallStatus? Type3210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallStatusParam? Type3211 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponseType? Type3211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchOperationParam? Type3212 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalRequestType? Type3212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParam? Type3213 { get; set; } + public global::tryAGI.OpenAI.BetaMCPListToolsType? Type3213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParam? Type3214 { get; set; } + public global::System.Collections.Generic.IList? Type3214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParam? Type3215 { get; set; } + public global::tryAGI.OpenAI.BetaMCPListToolsTool? Type3215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminator? Type3216 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputItemParamType? Type3216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminatorType? Type3217 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatusParam? Type3217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParamType? Type3218 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallItemParamType? Type3218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParamType? Type3219 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallStatusParam? Type3219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParamType? Type3220 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchOperationParam? Type3220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParamType? Type3221 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParam? Type3221 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3222 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParam? Type3222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentParam? Type3223 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParam? Type3223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemStatus? Type3224 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminator? Type3224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParam? Type3225 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchOperationParamDiscriminatorType? Type3225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParam? Type3226 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationParamType? Type3226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParam? Type3227 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationParamType? Type3227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminator? Type3228 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationParamType? Type3228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminatorType? Type3229 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputItemParamType? Type3229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParamType? Type3230 { get; set; } + public global::System.Collections.Generic.IList? Type3230 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParamType? Type3231 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentParam? Type3231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamType? Type3232 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemStatus? Type3232 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellActionParam? Type3233 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParam? Type3233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant15? Type3234 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParam? Type3234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1Discriminator? Type3235 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParam? Type3235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type3236 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminator? Type3236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputType? Type3237 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputOutcomeParamDiscriminatorType? Type3237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputStatus2? Type3238 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeParamType? Type3238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallType? Type3239 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeParamType? Type3239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellExecAction? Type3240 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamType? Type3240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellToolCallStatus? Type3241 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellActionParam? Type3241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalShellExecActionType? Type3242 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant15? Type3242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallType? Type3243 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1Discriminator? Type3243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallStatus? Type3244 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallItemParamEnvironmentVariant1DiscriminatorType? Type3244 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3245 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputType? Type3245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputsVariant1Item2? Type3246 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallOutputStatus2? Type3246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogs? Type3247 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallType? Type3247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImage? Type3248 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellExecAction? Type3248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminator? Type3249 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellToolCallStatus? Type3249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminatorType? Type3250 { get; set; } + public global::tryAGI.OpenAI.BetaLocalShellExecActionType? Type3250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImageType? Type3251 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallType? Type3251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogsType? Type3252 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallStatus? Type3252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolCallType? Type3253 { get; set; } + public global::System.Collections.Generic.IList? Type3253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaImageGenToolCallStatus? Type3254 { get; set; } + public global::tryAGI.OpenAI.OutputsVariant1Item2? Type3254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionSummaryItemParamType? Type3255 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogs? Type3255 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningItemType? Type3256 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImage? Type3256 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3257 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminator? Type3257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSummaryTextContent? Type3258 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterToolCallOutputsVariant1ItemDiscriminatorType? Type3258 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3259 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputImageType? Type3259 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningTextContent? Type3260 { get; set; } + public global::tryAGI.OpenAI.BetaCodeInterpreterOutputLogsType? Type3260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningItemStatus? Type3261 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolCallType? Type3261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaReasoningTextContentType? Type3262 { get; set; } + public global::tryAGI.OpenAI.BetaImageGenToolCallStatus? Type3262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaSummaryTextContentType? Type3263 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionSummaryItemParamType? Type3263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamType? Type3264 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningItemType? Type3264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamRole? Type3265 { get; set; } + public global::System.Collections.Generic.IList? Type3265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutputItemParamType? Type3266 { get; set; } + public global::tryAGI.OpenAI.BetaSummaryTextContent? Type3266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallItemStatus? Type3267 { get; set; } + public global::System.Collections.Generic.IList? Type3267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCallItemParamType? Type3268 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningTextContent? Type3268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParamType? Type3269 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningItemStatus? Type3269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentAction1? Type3270 { get; set; } + public global::tryAGI.OpenAI.BetaReasoningTextContentType? Type3270 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3271 { get; set; } + public global::tryAGI.OpenAI.BetaSummaryTextContentType? Type3271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParam? Type3272 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamType? Type3272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParamType? Type3273 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsItemParamRole? Type3273 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3274 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutputItemParamType? Type3274 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AnnotationsItem4? Type3275 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallItemStatus? Type3275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationParam? Type3276 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCallItemParamType? Type3276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationParam? Type3277 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutputItemParamType? Type3277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationParam? Type3278 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentAction1? Type3278 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminator? Type3279 { get; set; } + public global::System.Collections.Generic.IList? Type3279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminatorType? Type3280 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParam? Type3280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationParamType? Type3281 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParamType? Type3281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationParamType? Type3282 { get; set; } + public global::System.Collections.Generic.IList? Type3282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationParamType? Type3283 { get; set; } + public global::tryAGI.OpenAI.AnnotationsItem4? Type3283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallItemParamType? Type3284 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationParam? Type3284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParamType? Type3285 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationParam? Type3285 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3286 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationParam? Type3286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem5? Type3287 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminator? Type3287 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContentParam? Type3288 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentParamAnnotationDiscriminatorType? Type3288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParam? Type3289 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationParamType? Type3289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContentParam? Type3290 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationParamType? Type3290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminator? Type3291 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationParamType? Type3291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminatorType? Type3292 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallItemParamType? Type3292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContentParamType? Type3293 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParamType? Type3293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParamType? Type3294 { get; set; } + public global::System.Collections.Generic.IList? Type3294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDetailEnum? Type3295 { get; set; } + public global::tryAGI.OpenAI.ContentItem5? Type3295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParam? Type3296 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContentParam? Type3296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParamMode? Type3297 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParam? Type3297 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputTextContentParamType? Type3298 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContentParam? Type3298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamType? Type3299 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminator? Type3299 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type3300 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageItemParamContentItemDiscriminatorType? Type3300 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3301 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContentParamType? Type3301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OutputVariant2Item2? Type3302 { get; set; } + public global::tryAGI.OpenAI.BetaInputImageContentParamAutoParamType? Type3302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContentParam? Type3303 { get; set; } + public global::tryAGI.OpenAI.BetaDetailEnum? Type3303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type3304 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParam? Type3304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type3305 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheBreakpointParamMode? Type3305 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputFileContentParamType? Type3306 { get; set; } + public global::tryAGI.OpenAI.BetaInputTextContentParamType? Type3306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileDetailEnum? Type3307 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamType? Type3307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallType? Type3308 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type3308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallStatus? Type3309 { get; set; } + public global::System.Collections.Generic.IList? Type3309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallType? Type3310 { get; set; } + public global::tryAGI.OpenAI.OutputVariant2Item2? Type3310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallStatus? Type3311 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContentParam? Type3311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallAction? Type3312 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type3312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearch? Type3313 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputItemParamOutputVariant2ItemDiscriminatorType? Type3313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionOpenPage? Type3314 { get; set; } + public global::tryAGI.OpenAI.BetaInputFileContentParamType? Type3314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionFind? Type3315 { get; set; } + public global::tryAGI.OpenAI.BetaFileDetailEnum? Type3315 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminator? Type3316 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallType? Type3316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminatorType? Type3317 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallStatus? Type3317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionFindType? Type3318 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallType? Type3318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionOpenPageType? Type3319 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallStatus? Type3319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearchType? Type3320 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallAction? Type3320 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3321 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearch? Type3321 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearchSource? Type3322 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionOpenPage? Type3322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWebSearchActionSearchSourceType? Type3323 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionFind? Type3323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallOutputItemParamType? Type3324 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminator? Type3324 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotImage? Type3325 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchToolCallActionDiscriminatorType? Type3325 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3326 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionFindType? Type3326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallSafetyCheckParam? Type3327 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionOpenPageType? Type3327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotImageType? Type3328 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearchType? Type3328 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallType? Type3329 { get; set; } + public global::System.Collections.Generic.IList? Type3329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerAction? Type3330 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearchSource? Type3330 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3331 { get; set; } + public global::tryAGI.OpenAI.BetaWebSearchActionSearchSourceType? Type3331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallStatus? Type3332 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallOutputItemParamType? Type3332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaClickParam? Type3333 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotImage? Type3333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDoubleClickAction? Type3334 { get; set; } + public global::System.Collections.Generic.IList? Type3334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDragParam? Type3335 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallSafetyCheckParam? Type3335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaKeyPressAction? Type3336 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotImageType? Type3336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMoveParam? Type3337 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallType? Type3337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScreenshotParam? Type3338 { get; set; } + public global::tryAGI.OpenAI.BetaComputerAction? Type3338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScrollParam? Type3339 { get; set; } + public global::System.Collections.Generic.IList? Type3339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTypeParam? Type3340 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallStatus? Type3340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWaitParam? Type3341 { get; set; } + public global::tryAGI.OpenAI.BetaClickParam? Type3341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerActionDiscriminator? Type3342 { get; set; } + public global::tryAGI.OpenAI.BetaDoubleClickAction? Type3342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerActionDiscriminatorType? Type3343 { get; set; } + public global::tryAGI.OpenAI.BetaDragParam? Type3343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaWaitParamType? Type3344 { get; set; } + public global::tryAGI.OpenAI.BetaKeyPressAction? Type3344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTypeParamType? Type3345 { get; set; } + public global::tryAGI.OpenAI.BetaMoveParam? Type3345 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScrollParamType? Type3346 { get; set; } + public global::tryAGI.OpenAI.BetaScreenshotParam? Type3346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaScreenshotParamType? Type3347 { get; set; } + public global::tryAGI.OpenAI.BetaScrollParam? Type3347 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMoveParamType? Type3348 { get; set; } + public global::tryAGI.OpenAI.BetaTypeParam? Type3348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaKeyPressActionType? Type3349 { get; set; } + public global::tryAGI.OpenAI.BetaWaitParam? Type3349 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDragParamType? Type3350 { get; set; } + public global::tryAGI.OpenAI.BetaComputerActionDiscriminator? Type3350 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3351 { get; set; } + public global::tryAGI.OpenAI.BetaComputerActionDiscriminatorType? Type3351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCoordParam? Type3352 { get; set; } + public global::tryAGI.OpenAI.BetaWaitParamType? Type3352 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDoubleClickActionType? Type3353 { get; set; } + public global::tryAGI.OpenAI.BetaTypeParamType? Type3353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaClickParamType? Type3354 { get; set; } + public global::tryAGI.OpenAI.BetaScrollParamType? Type3354 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaClickButtonType? Type3355 { get; set; } + public global::tryAGI.OpenAI.BetaScreenshotParamType? Type3355 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCallType? Type3356 { get; set; } + public global::tryAGI.OpenAI.BetaMoveParamType? Type3356 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCallStatus? Type3357 { get; set; } + public global::tryAGI.OpenAI.BetaKeyPressActionType? Type3357 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3358 { get; set; } + public global::tryAGI.OpenAI.BetaDragParamType? Type3358 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileSearchToolCallResultsVariant1Item? Type3359 { get; set; } + public global::System.Collections.Generic.IList? Type3359 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageType? Type3360 { get; set; } + public global::tryAGI.OpenAI.BetaCoordParam? Type3360 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageRole? Type3361 { get; set; } + public global::tryAGI.OpenAI.BetaDoubleClickActionType? Type3361 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3362 { get; set; } + public global::tryAGI.OpenAI.BetaClickParamType? Type3362 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageContent? Type3363 { get; set; } + public global::tryAGI.OpenAI.BetaClickButtonType? Type3363 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessagePhase? Type3364 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCallType? Type3364 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageStatus? Type3365 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCallStatus? Type3365 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContent? Type3366 { get; set; } + public global::System.Collections.Generic.IList? Type3366 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRefusalContent? Type3367 { get; set; } + public global::tryAGI.OpenAI.BetaFileSearchToolCallResultsVariant1Item? Type3367 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminator? Type3368 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageType? Type3368 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminatorType? Type3369 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageRole? Type3369 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaRefusalContentType? Type3370 { get; set; } + public global::System.Collections.Generic.IList? Type3370 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputTextContentType? Type3371 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageContent? Type3371 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3372 { get; set; } + public global::tryAGI.OpenAI.BetaMessagePhase? Type3372 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAnnotation? Type3373 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageStatus? Type3373 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3374 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContent? Type3374 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLogProb? Type3375 { get; set; } + public global::tryAGI.OpenAI.BetaRefusalContent? Type3375 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3376 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminator? Type3376 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTopLogProb? Type3377 { get; set; } + public global::tryAGI.OpenAI.BetaOutputMessageContentDiscriminatorType? Type3377 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationBody? Type3378 { get; set; } + public global::tryAGI.OpenAI.BetaRefusalContentType? Type3378 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationBody? Type3379 { get; set; } + public global::tryAGI.OpenAI.BetaOutputTextContentType? Type3379 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationBody? Type3380 { get; set; } + public global::System.Collections.Generic.IList? Type3380 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFilePath? Type3381 { get; set; } + public global::tryAGI.OpenAI.BetaAnnotation? Type3381 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAnnotationDiscriminator? Type3382 { get; set; } + public global::System.Collections.Generic.IList? Type3382 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAnnotationDiscriminatorType? Type3383 { get; set; } + public global::tryAGI.OpenAI.BetaLogProb? Type3383 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFilePathType? Type3384 { get; set; } + public global::System.Collections.Generic.IList? Type3384 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerFileCitationBodyType? Type3385 { get; set; } + public global::tryAGI.OpenAI.BetaTopLogProb? Type3385 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaUrlCitationBodyType? Type3386 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationBody? Type3386 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFileCitationBodyType? Type3387 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationBody? Type3387 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageType? Type3388 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationBody? Type3388 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageRole? Type3389 { get; set; } + public global::tryAGI.OpenAI.BetaFilePath? Type3389 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageStatus? Type3390 { get; set; } + public global::tryAGI.OpenAI.BetaAnnotationDiscriminator? Type3390 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3391 { get; set; } + public global::tryAGI.OpenAI.BetaAnnotationDiscriminatorType? Type3391 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputContent? Type3392 { get; set; } + public global::tryAGI.OpenAI.BetaFilePathType? Type3392 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputContentDiscriminator? Type3393 { get; set; } + public global::tryAGI.OpenAI.BetaContainerFileCitationBodyType? Type3393 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputContentDiscriminatorType? Type3394 { get; set; } + public global::tryAGI.OpenAI.BetaUrlCitationBodyType? Type3394 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEasyInputMessageRole? Type3395 { get; set; } + public global::tryAGI.OpenAI.BetaFileCitationBodyType? Type3395 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? Type3396 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageType? Type3396 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEasyInputMessageType? Type3397 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageRole? Type3397 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactResponseMethodPublicBody? Type3398 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageStatus? Type3398 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsCompaction? Type3399 { get; set; } + public global::System.Collections.Generic.IList? Type3399 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheRetentionEnum? Type3400 { get; set; } + public global::tryAGI.OpenAI.BetaInputContent? Type3400 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheOptionsParam? Type3401 { get; set; } + public global::tryAGI.OpenAI.BetaInputContentDiscriminator? Type3401 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaServiceTierEnum? Type3402 { get; set; } + public global::tryAGI.OpenAI.BetaInputContentDiscriminatorType? Type3402 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheTTLEnum? Type3403 { get; set; } + public global::tryAGI.OpenAI.BetaEasyInputMessageRole? Type3403 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheModeEnum? Type3404 { get; set; } + public global::tryAGI.OpenAI.OneOf>? Type3404 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsResponses? Type3405 { get; set; } + public global::tryAGI.OpenAI.BetaEasyInputMessageType? Type3405 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsShared? Type3406 { get; set; } + public global::tryAGI.OpenAI.BetaCompactResponseMethodPublicBody? Type3406 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsResponsesEnum? Type3407 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsCompaction? Type3407 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelIdsSharedEnum? Type3408 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheRetentionEnum? Type3408 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaError? Type3409 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheOptionsParam? Type3409 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseItemList? Type3410 { get; set; } + public global::tryAGI.OpenAI.BetaServiceTierEnum? Type3410 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseItemListObject? Type3411 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheTTLEnum? Type3411 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3412 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheModeEnum? Type3412 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemResource? Type3413 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsResponses? Type3413 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageResource? Type3414 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsShared? Type3414 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputResource? Type3415 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsResponsesEnum? Type3415 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallResource? Type3416 { get; set; } + public global::tryAGI.OpenAI.BetaModelIdsSharedEnum? Type3416 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResource? Type3417 { get; set; } + public global::tryAGI.OpenAI.BetaError? Type3417 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessage? Type3418 { get; set; } + public global::tryAGI.OpenAI.BetaResponseItemList? Type3418 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCall? Type3419 { get; set; } + public global::tryAGI.OpenAI.BetaResponseItemListObject? Type3419 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutput? Type3420 { get; set; } + public global::System.Collections.Generic.IList? Type3420 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCall? Type3421 { get; set; } + public global::tryAGI.OpenAI.BetaItemResource? Type3421 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutput? Type3422 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageResource? Type3422 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalTools? Type3423 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputResource? Type3423 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgram? Type3424 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallResource? Type3424 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutput? Type3425 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResource? Type3425 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionBody? Type3426 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessage? Type3426 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCall? Type3427 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCall? Type3427 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutput? Type3428 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutput? Type3428 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCall? Type3429 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCall? Type3429 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutput? Type3430 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutput? Type3430 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponseResource? Type3431 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalTools? Type3431 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallResource? Type3432 { get; set; } + public global::tryAGI.OpenAI.BetaProgram? Type3432 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutputResource? Type3433 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutput? Type3433 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemResourceDiscriminator? Type3434 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionBody? Type3434 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemResourceDiscriminatorType? Type3435 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCall? Type3435 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallOutputResourceVariant2? Type3436 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutput? Type3436 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallOutputStatusEnum? Type3437 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCall? Type3437 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCustomToolCallResourceVariant2? Type3438 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutput? Type3438 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionCallStatus? Type3439 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponseResource? Type3439 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMCPApprovalResponseResourceType? Type3440 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallResource? Type3440 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputType? Type3441 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutputResource? Type3441 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatus? Type3442 { get; set; } + public global::tryAGI.OpenAI.BetaItemResourceDiscriminator? Type3442 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallType? Type3443 { get; set; } + public global::tryAGI.OpenAI.BetaItemResourceDiscriminatorType? Type3443 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCallStatus? Type3444 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallOutputResourceVariant2? Type3444 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Operation2? Type3445 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallOutputStatusEnum? Type3445 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperation? Type3446 { get; set; } + public global::tryAGI.OpenAI.BetaCustomToolCallResourceVariant2? Type3446 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperation? Type3447 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionCallStatus? Type3447 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperation? Type3448 { get; set; } + public global::tryAGI.OpenAI.BetaMCPApprovalResponseResourceType? Type3448 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminator? Type3449 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOutputType? Type3449 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminatorType? Type3450 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallOutputStatus? Type3450 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationType? Type3451 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallType? Type3451 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationType? Type3452 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCallStatus? Type3452 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationType? Type3453 { get; set; } + public global::tryAGI.OpenAI.Operation2? Type3453 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputType? Type3454 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperation? Type3454 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputStatusEnum? Type3455 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperation? Type3455 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3456 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperation? Type3456 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContent? Type3457 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminator? Type3457 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Outcome2? Type3458 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchToolCallOperationDiscriminatorType? Type3458 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcome? Type3459 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchUpdateFileOperationType? Type3459 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcome? Type3460 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchDeleteFileOperationType? Type3460 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminator? Type3461 { get; set; } + public global::tryAGI.OpenAI.BetaApplyPatchCreateFileOperationType? Type3461 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminatorType? Type3462 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputType? Type3462 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeType? Type3463 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputStatusEnum? Type3463 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeType? Type3464 { get; set; } + public global::System.Collections.Generic.IList? Type3464 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallType? Type3465 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContent? Type3465 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellAction? Type3466 { get; set; } + public global::tryAGI.OpenAI.Outcome2? Type3466 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallStatus? Type3467 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcome? Type3467 { get; set; } /// /// /// - public global::tryAGI.OpenAI.EnvironmentVariant16? Type3468 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcome? Type3468 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentResource? Type3469 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminator? Type3469 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceResource? Type3470 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputContentOutcomeDiscriminatorType? Type3470 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1Discriminator? Type3471 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputExitOutcomeType? Type3471 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1DiscriminatorType? Type3472 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallOutputTimeoutOutcomeType? Type3472 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContainerReferenceResourceType? Type3473 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallType? Type3473 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaLocalEnvironmentResourceType? Type3474 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellAction? Type3474 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactionBodyType? Type3475 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallStatus? Type3475 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputType? Type3476 { get; set; } + public global::tryAGI.OpenAI.EnvironmentVariant16? Type3476 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramOutputStatus? Type3477 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentResource? Type3477 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaProgramType? Type3478 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceResource? Type3478 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAdditionalToolsType? Type3479 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1Discriminator? Type3479 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageRole? Type3480 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionShellCallEnvironmentVariant1DiscriminatorType? Type3480 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchOutputType? Type3481 { get; set; } + public global::tryAGI.OpenAI.BetaContainerReferenceResourceType? Type3481 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaToolSearchCallType? Type3482 { get; set; } + public global::tryAGI.OpenAI.BetaLocalEnvironmentResourceType? Type3482 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallOutputType? Type3483 { get; set; } + public global::tryAGI.OpenAI.BetaCompactionBodyType? Type3483 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentAction? Type3484 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputType? Type3484 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3485 { get; set; } + public global::tryAGI.OpenAI.BetaProgramOutputStatus? Type3485 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentCallType? Type3486 { get; set; } + public global::tryAGI.OpenAI.BetaProgramType? Type3486 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageType? Type3487 { get; set; } + public global::tryAGI.OpenAI.BetaAdditionalToolsType? Type3487 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3488 { get; set; } + public global::tryAGI.OpenAI.BetaMessageRole? Type3488 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem6? Type3489 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchOutputType? Type3489 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextContent? Type3490 { get; set; } + public global::tryAGI.OpenAI.BetaToolSearchCallType? Type3490 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotContent? Type3491 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallOutputType? Type3491 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContent? Type3492 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentAction? Type3492 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminator? Type3493 { get; set; } + public global::System.Collections.Generic.IList? Type3493 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminatorType? Type3494 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentCallType? Type3494 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaEncryptedContentType? Type3495 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageType? Type3495 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerScreenshotContentType? Type3496 { get; set; } + public global::System.Collections.Generic.IList? Type3496 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaTextContentType? Type3497 { get; set; } + public global::tryAGI.OpenAI.ContentItem6? Type3497 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutput? Type3498 { get; set; } + public global::tryAGI.OpenAI.BetaTextContent? Type3498 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResourceVariant2? Type3499 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotContent? Type3499 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputType? Type3500 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContent? Type3500 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallOutputStatus? Type3501 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminator? Type3501 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaFunctionToolCallResourceVariant2? Type3502 { get; set; } + public global::tryAGI.OpenAI.BetaAgentMessageContentItemDiscriminatorType? Type3502 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutput? Type3503 { get; set; } + public global::tryAGI.OpenAI.BetaEncryptedContentType? Type3503 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputResourceVariant2? Type3504 { get; set; } + public global::tryAGI.OpenAI.BetaComputerScreenshotContentType? Type3504 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerCallOutputStatus? Type3505 { get; set; } + public global::tryAGI.OpenAI.BetaTextContentType? Type3505 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputType? Type3506 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutput? Type3506 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaComputerToolCallOutputStatus? Type3507 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputResourceVariant2? Type3507 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputMessageResourceVariant2? Type3508 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputType? Type3508 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactResource? Type3509 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallOutputStatus? Type3509 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactResourceObject? Type3510 { get; set; } + public global::tryAGI.OpenAI.BetaFunctionToolCallResourceVariant2? Type3510 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3511 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutput? Type3511 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemField? Type3512 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputResourceVariant2? Type3512 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseUsage? Type3513 { get; set; } + public global::tryAGI.OpenAI.BetaComputerCallOutputStatus? Type3513 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseUsageInputTokensDetails? Type3514 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputType? Type3514 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseUsageOutputTokensDetails? Type3515 { get; set; } + public global::tryAGI.OpenAI.BetaComputerToolCallOutputStatus? Type3515 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessage? Type3516 { get; set; } + public global::tryAGI.OpenAI.BetaInputMessageResourceVariant2? Type3516 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemFieldDiscriminator? Type3517 { get; set; } + public global::tryAGI.OpenAI.BetaCompactResource? Type3517 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaItemFieldDiscriminatorType? Type3518 { get; set; } + public global::tryAGI.OpenAI.BetaCompactResourceObject? Type3518 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageType? Type3519 { get; set; } + public global::System.Collections.Generic.IList? Type3519 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageStatus? Type3520 { get; set; } + public global::tryAGI.OpenAI.BetaItemField? Type3520 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3521 { get; set; } + public global::tryAGI.OpenAI.BetaResponseUsage? Type3521 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ContentItem7? Type3522 { get; set; } + public global::tryAGI.OpenAI.BetaResponseUsageInputTokensDetails? Type3522 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminator? Type3523 { get; set; } + public global::tryAGI.OpenAI.BetaResponseUsageOutputTokensDetails? Type3523 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminatorType? Type3524 { get; set; } + public global::tryAGI.OpenAI.BetaMessage? Type3524 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMessagePhase22? Type3525 { get; set; } + public global::tryAGI.OpenAI.BetaItemFieldDiscriminator? Type3525 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEvent? Type3526 { get; set; } + public global::tryAGI.OpenAI.BetaItemFieldDiscriminatorType? Type3526 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEventType? Type3527 { get; set; } + public global::tryAGI.OpenAI.BetaMessageType? Type3527 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEvent? Type3528 { get; set; } + public global::tryAGI.OpenAI.BetaMessageStatus? Type3528 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEventType? Type3529 { get; set; } + public global::System.Collections.Generic.IList? Type3529 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseQueuedEvent? Type3530 { get; set; } + public global::tryAGI.OpenAI.ContentItem7? Type3530 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseQueuedEventType? Type3531 { get; set; } + public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminator? Type3531 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponse? Type3532 { get; set; } + public global::tryAGI.OpenAI.BetaMessageContentItemDiscriminatorType? Type3532 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelResponseProperties? Type3533 { get; set; } + public global::tryAGI.OpenAI.BetaMessagePhase22? Type3533 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseProperties? Type3534 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEvent? Type3534 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3? Type3535 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDoneEventType? Type3535 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3Truncation2? Type3536 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEvent? Type3536 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3Object? Type3537 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCustomToolCallInputDeltaEventType? Type3537 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3Status? Type3538 { get; set; } + public global::tryAGI.OpenAI.BetaResponseQueuedEvent? Type3538 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorVariant1? Type3539 { get; set; } + public global::tryAGI.OpenAI.BetaResponseQueuedEventType? Type3539 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetails2? Type3540 { get; set; } + public global::tryAGI.OpenAI.BetaResponse? Type3540 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetailsReason? Type3541 { get; set; } + public global::tryAGI.OpenAI.BetaModelResponseProperties? Type3541 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3542 { get; set; } + public global::tryAGI.OpenAI.BetaResponseProperties? Type3542 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputItem? Type3543 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3? Type3543 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptCacheOptions? Type3544 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3Truncation2? Type3544 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModeration? Type3545 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3Object? Type3545 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaConversation2? Type3546 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3Status? Type3546 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Input5? Type3547 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorVariant1? Type3547 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationResultBody? Type3548 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetails2? Type3548 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationErrorBody? Type3549 { get; set; } + public global::tryAGI.OpenAI.BetaResponseVariant3IncompleteDetailsReason? Type3549 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationInputDiscriminator? Type3550 { get; set; } + public global::System.Collections.Generic.IList? Type3550 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationInputDiscriminatorType? Type3551 { get; set; } + public global::tryAGI.OpenAI.BetaOutputItem? Type3551 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Output9? Type3552 { get; set; } + public global::tryAGI.OpenAI.BetaPromptCacheOptions? Type3552 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationOutputDiscriminator? Type3553 { get; set; } + public global::tryAGI.OpenAI.BetaModeration? Type3553 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationOutputDiscriminatorType? Type3554 { get; set; } + public global::tryAGI.OpenAI.BetaConversation2? Type3554 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationErrorBodyType? Type3555 { get; set; } + public global::tryAGI.OpenAI.Input5? Type3555 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationResultBodyType? Type3556 { get; set; } + public global::tryAGI.OpenAI.BetaModerationResultBody? Type3556 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type3557 { get; set; } + public global::tryAGI.OpenAI.BetaModerationErrorBody? Type3557 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3558 { get; set; } + public global::tryAGI.OpenAI.BetaModerationInputDiscriminator? Type3558 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationInputType? Type3559 { get; set; } + public global::tryAGI.OpenAI.BetaModerationInputDiscriminatorType? Type3559 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputItemDiscriminator? Type3560 { get; set; } + public global::tryAGI.OpenAI.Output9? Type3560 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputItemDiscriminatorType? Type3561 { get; set; } + public global::tryAGI.OpenAI.BetaModerationOutputDiscriminator? Type3561 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorCode? Type3562 { get; set; } + public global::tryAGI.OpenAI.BetaModerationOutputDiscriminatorType? Type3562 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaPromptVariant1? Type3563 { get; set; } + public global::tryAGI.OpenAI.BetaModerationErrorBodyType? Type3563 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3564 { get; set; } + public global::tryAGI.OpenAI.BetaModerationResultBodyType? Type3564 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaServiceTierEnum2? Type3565 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type3565 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModelResponsePropertiesPromptCacheRetention2? Type3566 { get; set; } + public global::System.Collections.Generic.IList? Type3566 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEvent? Type3567 { get; set; } + public global::tryAGI.OpenAI.BetaModerationInputType? Type3567 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEventType? Type3568 { get; set; } + public global::tryAGI.OpenAI.BetaOutputItemDiscriminator? Type3568 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEvent? Type3569 { get; set; } + public global::tryAGI.OpenAI.BetaOutputItemDiscriminatorType? Type3569 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEventType? Type3570 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorCode? Type3570 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEvent? Type3571 { get; set; } + public global::tryAGI.OpenAI.BetaPromptVariant1? Type3571 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEventType? Type3572 { get; set; } + public global::tryAGI.OpenAI.OneOf? Type3572 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEvent? Type3573 { get; set; } + public global::tryAGI.OpenAI.BetaServiceTierEnum2? Type3573 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEventType? Type3574 { get; set; } + public global::tryAGI.OpenAI.BetaModelResponsePropertiesPromptCacheRetention2? Type3574 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEvent? Type3575 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEvent? Type3575 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEventType? Type3576 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputTextAnnotationAddedEventType? Type3576 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEvent? Type3577 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEvent? Type3577 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEventType? Type3578 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsInProgressEventType? Type3578 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEvent? Type3579 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEvent? Type3579 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEventType? Type3580 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsFailedEventType? Type3580 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEvent? Type3581 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEvent? Type3581 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEventType? Type3582 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPListToolsCompletedEventType? Type3582 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEvent? Type3583 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEvent? Type3583 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEventType? Type3584 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallInProgressEventType? Type3584 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEvent? Type3585 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEvent? Type3585 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEventType? Type3586 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallFailedEventType? Type3586 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEvent? Type3587 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEvent? Type3587 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEventType? Type3588 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallCompletedEventType? Type3588 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEvent? Type3589 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEvent? Type3589 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEventType? Type3590 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDoneEventType? Type3590 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEvent? Type3591 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEvent? Type3591 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEventType? Type3592 { get; set; } + public global::tryAGI.OpenAI.BetaResponseMCPCallArgumentsDeltaEventType? Type3592 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEvent? Type3593 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEvent? Type3593 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEventType? Type3594 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallPartialImageEventType? Type3594 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEvent? Type3595 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEvent? Type3595 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEventType? Type3596 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallInProgressEventType? Type3596 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEvent? Type3597 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEvent? Type3597 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEventType? Type3598 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallGeneratingEventType? Type3598 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEvent? Type3599 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEvent? Type3599 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEventType? Type3600 { get; set; } + public global::tryAGI.OpenAI.BetaResponseImageGenCallCompletedEventType? Type3600 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEvent? Type3601 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEvent? Type3601 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventType? Type3602 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDoneEventType? Type3602 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventStatus? Type3603 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEvent? Type3603 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPart? Type3604 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningTextDeltaEventType? Type3604 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPartType? Type3605 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEvent? Type3605 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEvent? Type3606 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDoneEventType? Type3606 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventType? Type3607 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEvent? Type3607 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPart? Type3608 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryTextDeltaEventType? Type3608 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPartType? Type3609 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEvent? Type3609 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDoneEvent? Type3610 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventType? Type3610 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDoneEventType? Type3611 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventStatus? Type3611 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3612 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPart? Type3612 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseLogProb? Type3613 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartDoneEventPartType? Type3613 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3614 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEvent? Type3614 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseLogProbTopLogprob? Type3615 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventType? Type3615 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDeltaEvent? Type3616 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPart? Type3616 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseTextDeltaEventType? Type3617 { get; set; } + public global::tryAGI.OpenAI.BetaResponseReasoningSummaryPartAddedEventPartType? Type3617 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDoneEvent? Type3618 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDoneEvent? Type3618 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDoneEventType? Type3619 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDoneEventType? Type3619 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEvent? Type3620 { get; set; } + public global::System.Collections.Generic.IList? Type3620 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEventType? Type3621 { get; set; } + public global::tryAGI.OpenAI.BetaResponseLogProb? Type3621 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEvent? Type3622 { get; set; } + public global::System.Collections.Generic.IList? Type3622 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEventType? Type3623 { get; set; } + public global::tryAGI.OpenAI.BetaResponseLogProbTopLogprob? Type3623 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEvent? Type3624 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDeltaEvent? Type3624 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEventType? Type3625 { get; set; } + public global::tryAGI.OpenAI.BetaResponseTextDeltaEventType? Type3625 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInProgressEvent? Type3626 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDoneEvent? Type3626 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInProgressEventType? Type3627 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDoneEventType? Type3627 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEvent? Type3628 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEvent? Type3628 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEventType? Type3629 { get; set; } + public global::tryAGI.OpenAI.BetaResponseRefusalDeltaEventType? Type3629 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEvent? Type3630 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEvent? Type3630 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEventType? Type3631 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemDoneEventType? Type3631 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEvent? Type3632 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEvent? Type3632 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEventType? Type3633 { get; set; } + public global::tryAGI.OpenAI.BetaResponseOutputItemAddedEventType? Type3633 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEvent? Type3634 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInProgressEvent? Type3634 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEventType? Type3635 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInProgressEventType? Type3635 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEvent? Type3636 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEvent? Type3636 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEventType? Type3637 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDoneEventType? Type3637 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorEvent? Type3638 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEvent? Type3638 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseErrorEventType? Type3639 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFunctionCallArgumentsDeltaEventType? Type3639 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCreatedEvent? Type3640 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEvent? Type3640 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCreatedEventType? Type3641 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallSearchingEventType? Type3641 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartDoneEvent? Type3642 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEvent? Type3642 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartDoneEventType? Type3643 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallInProgressEventType? Type3643 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputContent? Type3644 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEvent? Type3644 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputContentDiscriminator? Type3645 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFileSearchCallCompletedEventType? Type3645 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputContentDiscriminatorType? Type3646 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorEvent? Type3646 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartAddedEvent? Type3647 { get; set; } + public global::tryAGI.OpenAI.BetaResponseErrorEventType? Type3647 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseContentPartAddedEventType? Type3648 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCreatedEvent? Type3648 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCompletedEvent? Type3649 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCreatedEventType? Type3649 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCompletedEventType? Type3650 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartDoneEvent? Type3650 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEvent? Type3651 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartDoneEventType? Type3651 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEventType? Type3652 { get; set; } + public global::tryAGI.OpenAI.BetaOutputContent? Type3652 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEvent? Type3653 { get; set; } + public global::tryAGI.OpenAI.BetaOutputContentDiscriminator? Type3653 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEventType? Type3654 { get; set; } + public global::tryAGI.OpenAI.BetaOutputContentDiscriminatorType? Type3654 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEvent? Type3655 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartAddedEvent? Type3655 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEventType? Type3656 { get; set; } + public global::tryAGI.OpenAI.BetaResponseContentPartAddedEventType? Type3656 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEvent? Type3657 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCompletedEvent? Type3657 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEventType? Type3658 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCompletedEventType? Type3658 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEvent? Type3659 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEvent? Type3659 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEventType? Type3660 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInterpretingEventType? Type3660 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEvent? Type3661 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEvent? Type3661 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEventType? Type3662 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallInProgressEventType? Type3662 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEvent? Type3663 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEvent? Type3663 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEventType? Type3664 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCompletedEventType? Type3664 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDoneEvent? Type3665 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEvent? Type3665 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDoneEventType? Type3666 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDoneEventType? Type3666 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDeltaEvent? Type3667 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEvent? Type3667 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseAudioDeltaEventType? Type3668 { get; set; } + public global::tryAGI.OpenAI.BetaResponseCodeInterpreterCallCodeDeltaEventType? Type3668 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseIncompleteEvent? Type3669 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEvent? Type3669 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseIncompleteEventType? Type3670 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDoneEventType? Type3670 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFailedEvent? Type3671 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEvent? Type3671 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseFailedEventType? Type3672 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioTranscriptDeltaEventType? Type3672 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEvent? Type3673 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDoneEvent? Type3673 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEventType? Type3674 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDoneEventType? Type3674 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEvent? Type3675 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDeltaEvent? Type3675 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEventType? Type3676 { get; set; } + public global::tryAGI.OpenAI.BetaResponseAudioDeltaEventType? Type3676 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEvent? Type3677 { get; set; } + public global::tryAGI.OpenAI.BetaResponseIncompleteEvent? Type3677 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEventType? Type3678 { get; set; } + public global::tryAGI.OpenAI.BetaResponseIncompleteEventType? Type3678 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputAudio? Type3679 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFailedEvent? Type3679 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaOutputAudioType? Type3680 { get; set; } + public global::tryAGI.OpenAI.BetaResponseFailedEventType? Type3680 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudio? Type3681 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEvent? Type3681 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudioType? Type3682 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallCompletedEventType? Type3682 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudioInputAudio? Type3683 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEvent? Type3683 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputAudioInputAudioFormat? Type3684 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallSearchingEventType? Type3684 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaInputParam? Type3685 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEvent? Type3685 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContent? Type3686 { get; set; } + public global::tryAGI.OpenAI.BetaResponseWebSearchCallInProgressEventType? Type3686 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaIncludeEnum? Type3687 { get; set; } + public global::tryAGI.OpenAI.BetaOutputAudio? Type3687 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesServerEvent? Type3688 { get; set; } + public global::tryAGI.OpenAI.BetaOutputAudioType? Type3688 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamEvent? Type3689 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudio? Type3689 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectCreatedEvent? Type3690 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudioType? Type3690 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEvent? Type3691 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudioInputAudio? Type3691 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminator? Type3692 { get; set; } + public global::tryAGI.OpenAI.BetaInputAudioInputAudioFormat? Type3692 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminatorType? Type3693 { get; set; } + public global::tryAGI.OpenAI.BetaInputParam? Type3693 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEventType? Type3694 { get; set; } + public global::tryAGI.OpenAI.BetaContent? Type3694 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEventError? Type3695 { get; set; } + public global::tryAGI.OpenAI.BetaIncludeEnum? Type3695 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectFailedEventErrorCode? Type3696 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesServerEvent? Type3696 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectCreatedEventType? Type3697 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamEvent? Type3697 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminator? Type3698 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectCreatedEvent? Type3698 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminatorType? Type3699 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEvent? Type3699 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEvent? Type3700 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminator? Type3700 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreate? Type3701 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesServerEventDiscriminatorType? Type3701 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectEvent? Type3702 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEventType? Type3702 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminator? Type3703 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEventError? Type3703 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminatorType? Type3704 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectFailedEventErrorCode? Type3704 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseInjectEventType? Type3705 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectCreatedEventType? Type3705 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1? Type3706 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminator? Type3706 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1Type? Type3707 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamEventDiscriminatorType? Type3707 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponse? Type3708 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEvent? Type3708 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateModelResponseProperties? Type3709 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreate? Type3709 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponseVariant3? Type3710 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectEvent? Type3710 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponseVariant3Truncation2? Type3711 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminator? Type3711 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3712 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventDiscriminatorType? Type3712 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationParam? Type3713 { get; set; } + public global::tryAGI.OpenAI.BetaResponseInjectEventType? Type3713 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaResponseStreamOptionsVariant1? Type3714 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1? Type3714 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3715 { get; set; } + public global::tryAGI.OpenAI.BetaResponsesClientEventResponseCreateVariant1Type? Type3715 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaContextManagementParam? Type3716 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponse? Type3716 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaMultiAgentParam? Type3717 { get; set; } + public global::tryAGI.OpenAI.BetaCreateModelResponseProperties? Type3717 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationPolicyParam? Type3718 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponseVariant3? Type3718 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationConfigParam? Type3719 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponseVariant3Truncation2? Type3719 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaModerationMode? Type3720 { get; set; } + public global::System.Collections.Generic.IList? Type3720 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateModelResponsePropertiesVariant2? Type3721 { get; set; } + public global::tryAGI.OpenAI.BetaModerationParam? Type3721 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateChatCompletionRequest? Type3722 { get; set; } + public global::tryAGI.OpenAI.BetaResponseStreamOptionsVariant1? Type3722 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateConversationItemsRequest? Type3723 { get; set; } + public global::System.Collections.Generic.IList? Type3723 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UpdateEvalRequest? Type3724 { get; set; } + public global::tryAGI.OpenAI.BetaContextManagementParam? Type3724 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysCreateRequest? Type3725 { get; set; } + public global::tryAGI.OpenAI.BetaMultiAgentParam? Type3725 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAssistantsOrder? Type3726 { get; set; } + public global::tryAGI.OpenAI.BetaModerationPolicyParam? Type3726 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListChatCompletionsOrder? Type3727 { get; set; } + public global::tryAGI.OpenAI.BetaModerationConfigParam? Type3727 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetChatCompletionMessagesOrder? Type3728 { get; set; } + public global::tryAGI.OpenAI.BetaModerationMode? Type3728 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListContainersOrder? Type3729 { get; set; } + public global::tryAGI.OpenAI.BetaCreateModelResponsePropertiesVariant2? Type3729 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListContainerFilesOrder? Type3730 { get; set; } + public global::tryAGI.OpenAI.UpdateChatCompletionRequest? Type3730 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListConversationItemsOrder? Type3731 { get; set; } + public global::tryAGI.OpenAI.CreateConversationItemsRequest? Type3731 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListEvalsOrder? Type3732 { get; set; } + public global::tryAGI.OpenAI.UpdateEvalRequest? Type3732 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListEvalsOrderBy? Type3733 { get; set; } + public global::tryAGI.OpenAI.AdminApiKeysCreateRequest? Type3733 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunsOrder? Type3734 { get; set; } + public global::tryAGI.OpenAI.ListAssistantsOrder? Type3734 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunsStatus? Type3735 { get; set; } + public global::tryAGI.OpenAI.ListChatCompletionsOrder? Type3735 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunOutputItemsStatus? Type3736 { get; set; } + public global::tryAGI.OpenAI.GetChatCompletionMessagesOrder? Type3736 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetEvalRunOutputItemsOrder? Type3737 { get; set; } + public global::tryAGI.OpenAI.ListContainersOrder? Type3737 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesOrder? Type3738 { get; set; } + public global::tryAGI.OpenAI.ListContainerFilesOrder? Type3738 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionsOrder? Type3739 { get; set; } + public global::tryAGI.OpenAI.ListConversationItemsOrder? Type3739 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysListOrder? Type3740 { get; set; } + public global::tryAGI.OpenAI.ListEvalsOrder? Type3740 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListAuditLogsEffectiveAt? Type3741 { get; set; } + public global::tryAGI.OpenAI.ListEvalsOrderBy? Type3741 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3742 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunsOrder? Type3742 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListOrganizationCertificatesOrder? Type3743 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunsStatus? Type3743 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3744 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunOutputItemsStatus? Type3744 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetCertificateIncludeItem? Type3745 { get; set; } + public global::tryAGI.OpenAI.GetEvalRunOutputItemsOrder? Type3745 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCostsBucketWidth? Type3746 { get; set; } + public global::tryAGI.OpenAI.ListFilesOrder? Type3746 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3747 { get; set; } + public global::tryAGI.OpenAI.ListFineTuningCheckpointPermissionsOrder? Type3747 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCostsGroupByItem? Type3748 { get; set; } + public global::tryAGI.OpenAI.AdminApiKeysListOrder? Type3748 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListGroupsOrder? Type3749 { get; set; } + public global::tryAGI.OpenAI.ListAuditLogsEffectiveAt? Type3749 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListGroupRoleAssignmentsOrder? Type3750 { get; set; } + public global::System.Collections.Generic.IList? Type3750 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListGroupUsersOrder? Type3751 { get; set; } + public global::tryAGI.OpenAI.ListOrganizationCertificatesOrder? Type3751 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectApiKeysOwnerProjectAccess? Type3752 { get; set; } + public global::System.Collections.Generic.IList? Type3752 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectCertificatesOrder? Type3753 { get; set; } + public global::tryAGI.OpenAI.GetCertificateIncludeItem? Type3753 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectGroupsOrder? Type3754 { get; set; } + public global::tryAGI.OpenAI.UsageCostsBucketWidth? Type3754 { get; set; } /// /// /// - public global::tryAGI.OpenAI.RetrieveProjectGroupGroupType? Type3755 { get; set; } + public global::System.Collections.Generic.IList? Type3755 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectSpendAlertsOrder? Type3756 { get; set; } + public global::tryAGI.OpenAI.UsageCostsGroupByItem? Type3756 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRolesOrder? Type3757 { get; set; } + public global::tryAGI.OpenAI.ListGroupsOrder? Type3757 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListOrganizationSpendAlertsOrder? Type3758 { get; set; } + public global::tryAGI.OpenAI.ListGroupRoleAssignmentsOrder? Type3758 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesBucketWidth? Type3759 { get; set; } + public global::tryAGI.OpenAI.ListGroupUsersOrder? Type3759 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3760 { get; set; } + public global::tryAGI.OpenAI.ListProjectApiKeysOwnerProjectAccess? Type3760 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioSpeechesGroupByItem? Type3761 { get; set; } + public global::tryAGI.OpenAI.ListProjectCertificatesOrder? Type3761 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? Type3762 { get; set; } + public global::tryAGI.OpenAI.ListProjectGroupsOrder? Type3762 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3763 { get; set; } + public global::tryAGI.OpenAI.RetrieveProjectGroupGroupType? Type3763 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem? Type3764 { get; set; } + public global::tryAGI.OpenAI.ListProjectSpendAlertsOrder? Type3764 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsBucketWidth? Type3765 { get; set; } + public global::tryAGI.OpenAI.ListRolesOrder? Type3765 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3766 { get; set; } + public global::tryAGI.OpenAI.ListOrganizationSpendAlertsOrder? Type3766 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsGroupByItem? Type3767 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesBucketWidth? Type3767 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsBucketWidth? Type3768 { get; set; } + public global::System.Collections.Generic.IList? Type3768 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3769 { get; set; } + public global::tryAGI.OpenAI.UsageAudioSpeechesGroupByItem? Type3769 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageCompletionsGroupByItem? Type3770 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsBucketWidth? Type3770 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsBucketWidth? Type3771 { get; set; } + public global::System.Collections.Generic.IList? Type3771 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3772 { get; set; } + public global::tryAGI.OpenAI.UsageAudioTranscriptionsGroupByItem? Type3772 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageEmbeddingsGroupByItem? Type3773 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsBucketWidth? Type3773 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsBucketWidth? Type3774 { get; set; } + public global::System.Collections.Generic.IList? Type3774 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3775 { get; set; } + public global::tryAGI.OpenAI.UsageCodeInterpreterSessionsGroupByItem? Type3775 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageFileSearchCallsGroupByItem? Type3776 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsBucketWidth? Type3776 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesBucketWidth? Type3777 { get; set; } + public global::System.Collections.Generic.IList? Type3777 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3778 { get; set; } + public global::tryAGI.OpenAI.UsageCompletionsGroupByItem? Type3778 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesSource? Type3779 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsBucketWidth? Type3779 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3780 { get; set; } + public global::System.Collections.Generic.IList? Type3780 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesSize? Type3781 { get; set; } + public global::tryAGI.OpenAI.UsageEmbeddingsGroupByItem? Type3781 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3782 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsBucketWidth? Type3782 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageImagesGroupByItem? Type3783 { get; set; } + public global::System.Collections.Generic.IList? Type3783 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsBucketWidth? Type3784 { get; set; } + public global::tryAGI.OpenAI.UsageFileSearchCallsGroupByItem? Type3784 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3785 { get; set; } + public global::tryAGI.OpenAI.UsageImagesBucketWidth? Type3785 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageModerationsGroupByItem? Type3786 { get; set; } + public global::System.Collections.Generic.IList? Type3786 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresBucketWidth? Type3787 { get; set; } + public global::tryAGI.OpenAI.UsageImagesSource? Type3787 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3788 { get; set; } + public global::System.Collections.Generic.IList? Type3788 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageVectorStoresGroupByItem? Type3789 { get; set; } + public global::tryAGI.OpenAI.UsageImagesSize? Type3789 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsBucketWidth? Type3790 { get; set; } + public global::System.Collections.Generic.IList? Type3790 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3791 { get; set; } + public global::tryAGI.OpenAI.UsageImagesGroupByItem? Type3791 { get; set; } /// /// /// - public global::tryAGI.OpenAI.UsageWebSearchCallsContextLevel? Type3792 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsBucketWidth? 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.UsageWebSearchCallsGroupByItem? Type3794 { get; set; } + public global::tryAGI.OpenAI.UsageModerationsGroupByItem? Type3794 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListUserRoleAssignmentsOrder? Type3795 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresBucketWidth? Type3795 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectGroupRoleAssignmentsOrder? Type3796 { get; set; } + public global::System.Collections.Generic.IList? Type3796 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectRolesOrder? Type3797 { get; set; } + public global::tryAGI.OpenAI.UsageVectorStoresGroupByItem? Type3797 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListProjectUserRoleAssignmentsOrder? Type3798 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsBucketWidth? Type3798 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListInputItemsOrder? Type3799 { get; set; } + public global::System.Collections.Generic.IList? Type3799 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListMessagesOrder? Type3800 { get; set; } + public global::tryAGI.OpenAI.UsageWebSearchCallsContextLevel? Type3800 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunsOrder? 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.UsageWebSearchCallsGroupByItem? Type3802 { get; set; } /// /// /// - public global::tryAGI.OpenAI.CreateRunIncludeItem? Type3803 { get; set; } + public global::tryAGI.OpenAI.ListUserRoleAssignmentsOrder? Type3803 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsOrder? Type3804 { get; set; } + public global::tryAGI.OpenAI.ListProjectGroupRoleAssignmentsOrder? Type3804 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3805 { get; set; } + public global::tryAGI.OpenAI.ListProjectRolesOrder? Type3805 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListRunStepsIncludeItem? Type3806 { get; set; } + public global::tryAGI.OpenAI.ListProjectUserRoleAssignmentsOrder? Type3806 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3807 { get; set; } + public global::tryAGI.OpenAI.ListInputItemsOrder? Type3807 { get; set; } /// /// /// - public global::tryAGI.OpenAI.GetRunStepIncludeItem? Type3808 { get; set; } + public global::tryAGI.OpenAI.ListMessagesOrder? Type3808 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoresOrder? Type3809 { get; set; } + public global::tryAGI.OpenAI.ListRunsOrder? Type3809 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchOrder? Type3810 { get; set; } + public global::System.Collections.Generic.IList? Type3810 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchFilter? Type3811 { get; set; } + public global::tryAGI.OpenAI.CreateRunIncludeItem? Type3811 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesOrder? Type3812 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsOrder? Type3812 { get; set; } /// /// /// - public global::tryAGI.OpenAI.ListVectorStoreFilesFilter? Type3813 { get; set; } + public global::System.Collections.Generic.IList? Type3813 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3814 { get; set; } + public global::tryAGI.OpenAI.ListRunStepsIncludeItem? Type3814 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCreateResponseOpenaiBetaItem? Type3815 { get; set; } + public global::System.Collections.Generic.IList? Type3815 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3816 { get; set; } + public global::tryAGI.OpenAI.GetRunStepIncludeItem? Type3816 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaGetResponseOpenaiBetaItem? Type3817 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoresOrder? Type3817 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3818 { get; set; } + public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchOrder? Type3818 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaDeleteResponseOpenaiBetaItem? Type3819 { get; set; } + public global::tryAGI.OpenAI.ListFilesInVectorStoreBatchFilter? Type3819 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3820 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesOrder? Type3820 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCancelResponseOpenaiBetaItem? Type3821 { get; set; } + public global::tryAGI.OpenAI.ListVectorStoreFilesFilter? Type3821 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3822 { get; set; } + public global::System.Collections.Generic.IList? Type3822 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaCompactconversationOpenaiBetaItem? Type3823 { get; set; } + public global::tryAGI.OpenAI.BetaCreateResponseOpenaiBetaItem? Type3823 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaListInputItemsOrder? Type3824 { get; set; } + public global::System.Collections.Generic.IList? Type3824 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3825 { get; set; } + public global::tryAGI.OpenAI.BetaGetResponseOpenaiBetaItem? Type3825 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaListInputItemsOpenaiBetaItem? Type3826 { get; set; } + public global::System.Collections.Generic.IList? Type3826 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type3827 { get; set; } + public global::tryAGI.OpenAI.BetaDeleteResponseOpenaiBetaItem? Type3827 { get; set; } /// /// /// - public global::tryAGI.OpenAI.BetaGetinputtokencountsOpenaiBetaItem? Type3828 { get; set; } + public global::System.Collections.Generic.IList? Type3828 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf? Type3829 { get; set; } + public global::tryAGI.OpenAI.BetaCancelResponseOpenaiBetaItem? Type3829 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteEvalResponse? Type3830 { get; set; } + public global::System.Collections.Generic.IList? Type3830 { get; set; } /// /// /// - public global::tryAGI.OpenAI.DeleteEvalRunResponse? Type3831 { get; set; } + public global::tryAGI.OpenAI.BetaCompactconversationOpenaiBetaItem? Type3831 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysDeleteResponse? Type3832 { get; set; } + public global::tryAGI.OpenAI.BetaListInputItemsOrder? Type3832 { get; set; } /// /// /// - public global::tryAGI.OpenAI.AdminApiKeysDeleteResponseObject? Type3833 { get; set; } + public global::System.Collections.Generic.IList? Type3833 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.BetaListInputItemsOpenaiBetaItem? Type3834 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.IList? Type3835 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.BetaGetinputtokencountsOpenaiBetaItem? Type3836 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.OneOf? Type3837 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.DeleteEvalResponse? Type3838 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.DeleteEvalRunResponse? Type3839 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.AdminApiKeysDeleteResponse? Type3840 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.AdminApiKeysDeleteResponseObject? Type3841 { get; set; } /// /// @@ -15729,874 +15761,882 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType91 { get; set; } + public global::System.Collections.Generic.List? ListType91 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.List? ListType92 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.List? ListType93 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType92 { get; set; } + public global::System.Collections.Generic.List? ListType94 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType93 { get; set; } + public global::System.Collections.Generic.List? ListType95 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType94 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType96 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType95 { get; set; } + public global::System.Collections.Generic.List? ListType97 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType96 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType98 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType97 { get; set; } + public global::System.Collections.Generic.List? ListType99 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType98 { get; set; } + public global::System.Collections.Generic.List? ListType100 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType99 { get; set; } + public global::System.Collections.Generic.List? ListType101 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType100 { get; set; } + public global::System.Collections.Generic.List>? ListType102 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType101 { get; set; } + public global::System.Collections.Generic.List? ListType103 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType102 { get; set; } + public global::System.Collections.Generic.List? ListType104 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType103 { get; set; } + public global::System.Collections.Generic.List? ListType105 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType104 { get; set; } + public global::System.Collections.Generic.List? ListType106 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType105 { get; set; } + public global::System.Collections.Generic.List? ListType107 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType106 { get; set; } + public global::System.Collections.Generic.List? ListType108 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType107 { get; set; } + public global::System.Collections.Generic.List? ListType109 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType108 { get; set; } + public global::System.Collections.Generic.List? ListType110 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType109 { get; set; } + public global::System.Collections.Generic.List? ListType111 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType110 { get; set; } + public global::System.Collections.Generic.List? ListType112 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType111 { get; set; } + public global::System.Collections.Generic.List? ListType113 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType112 { get; set; } + public global::System.Collections.Generic.List? ListType114 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType113 { get; set; } + public global::System.Collections.Generic.List? ListType115 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType114 { get; set; } + public global::System.Collections.Generic.List? ListType116 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType115 { get; set; } + public global::System.Collections.Generic.List? ListType117 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType116 { get; set; } + public global::System.Collections.Generic.List? ListType118 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType117 { get; set; } + public global::System.Collections.Generic.List? ListType119 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType118 { get; set; } + public global::System.Collections.Generic.List? ListType120 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType119 { get; set; } + public global::System.Collections.Generic.List? ListType121 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType120 { get; set; } + public global::System.Collections.Generic.List? ListType122 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType121 { get; set; } + public global::System.Collections.Generic.List? ListType123 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType122 { get; set; } + public global::System.Collections.Generic.List? ListType124 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType123 { get; set; } + public global::System.Collections.Generic.List? ListType125 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType124 { get; set; } + public global::System.Collections.Generic.List? ListType126 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType125 { get; set; } + public global::System.Collections.Generic.List? ListType127 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType126 { get; set; } + public global::System.Collections.Generic.List? ListType128 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType127 { get; set; } + public global::System.Collections.Generic.List? ListType129 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType128 { get; set; } + public global::System.Collections.Generic.List? ListType130 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType129 { get; set; } + public global::System.Collections.Generic.List? ListType131 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType130 { get; set; } + public global::System.Collections.Generic.List? ListType132 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType131 { get; set; } + public global::System.Collections.Generic.List? ListType133 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType132 { get; set; } + public global::System.Collections.Generic.List? ListType134 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType133 { get; set; } + public global::System.Collections.Generic.List? ListType135 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType134 { get; set; } + public global::System.Collections.Generic.List? ListType136 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType135 { get; set; } + public global::System.Collections.Generic.List? ListType137 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType136 { get; set; } + public global::System.Collections.Generic.List? ListType138 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType137 { get; set; } + public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? ListType139 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? ListType138 { get; set; } + public global::System.Collections.Generic.List>? ListType140 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType139 { get; set; } + public global::System.Collections.Generic.List>? ListType141 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType140 { get; set; } + public global::System.Collections.Generic.List? ListType142 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType141 { get; set; } + public global::System.Collections.Generic.List? ListType143 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType142 { get; set; } + public global::System.Collections.Generic.List? ListType144 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType143 { get; set; } + public global::System.Collections.Generic.List? ListType145 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType144 { get; set; } + public global::System.Collections.Generic.List? ListType146 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType145 { get; set; } + public global::System.Collections.Generic.List? ListType147 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType146 { get; set; } + public global::System.Collections.Generic.List? ListType148 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType147 { get; set; } + public global::System.Collections.Generic.List? ListType149 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType148 { get; set; } + public global::System.Collections.Generic.List? ListType150 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType149 { get; set; } + public global::System.Collections.Generic.List? ListType151 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType150 { get; set; } + public global::System.Collections.Generic.List? ListType152 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType151 { get; set; } + public global::System.Collections.Generic.List? ListType153 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType152 { get; set; } + public global::System.Collections.Generic.List? ListType154 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType153 { get; set; } + public global::System.Collections.Generic.List? ListType155 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType154 { get; set; } + public global::System.Collections.Generic.List? ListType156 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType155 { get; set; } + public global::System.Collections.Generic.List? ListType157 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType156 { get; set; } + public global::System.Collections.Generic.List? ListType158 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType157 { get; set; } + public global::System.Collections.Generic.List? ListType159 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType158 { get; set; } + public global::System.Collections.Generic.List? ListType160 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType159 { get; set; } + public global::System.Collections.Generic.List? ListType161 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType160 { get; set; } + public global::System.Collections.Generic.List? ListType162 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType161 { get; set; } + public global::System.Collections.Generic.List? ListType163 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType162 { get; set; } + public global::System.Collections.Generic.List? ListType164 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType163 { get; set; } + public global::System.Collections.Generic.List>? ListType165 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType164 { get; set; } + public global::System.Collections.Generic.List? ListType166 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType165 { get; set; } + public global::System.Collections.Generic.List? ListType167 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType166 { get; set; } + public global::System.Collections.Generic.List? ListType168 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType167 { get; set; } + public global::System.Collections.Generic.List? ListType169 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType168 { get; set; } + public global::System.Collections.Generic.List? ListType170 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType169 { get; set; } + public global::System.Collections.Generic.List? ListType171 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType170 { get; set; } + public global::System.Collections.Generic.List? ListType172 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType171 { get; set; } + public global::System.Collections.Generic.List? ListType173 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType172 { get; set; } + public global::System.Collections.Generic.List? ListType174 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType173 { get; set; } + public global::System.Collections.Generic.List? ListType175 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType174 { get; set; } + public global::System.Collections.Generic.List? ListType176 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType175 { get; set; } + public global::System.Collections.Generic.List? ListType177 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType176 { get; set; } + public global::System.Collections.Generic.List? ListType178 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType177 { get; set; } + public global::System.Collections.Generic.List? ListType179 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType178 { get; set; } + public global::System.Collections.Generic.List? ListType180 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType179 { get; set; } + public global::System.Collections.Generic.List? ListType181 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType180 { get; set; } + public global::System.Collections.Generic.List? ListType182 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType181 { get; set; } + public global::System.Collections.Generic.List? ListType183 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType182 { get; set; } + public global::System.Collections.Generic.List? ListType184 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType183 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType184 { get; set; } + public global::System.Collections.Generic.List? ListType186 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType185 { get; set; } + public global::System.Collections.Generic.List? ListType187 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType186 { get; set; } + public global::System.Collections.Generic.List? ListType188 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType187 { get; set; } + public global::System.Collections.Generic.List? ListType189 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType188 { get; set; } + public global::System.Collections.Generic.List? ListType190 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType189 { get; set; } + public global::System.Collections.Generic.List>? ListType191 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType190 { get; set; } + public global::System.Collections.Generic.List? ListType192 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType191 { get; set; } + public global::System.Collections.Generic.List? ListType193 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType192 { get; set; } + public global::System.Collections.Generic.List? ListType194 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType193 { get; set; } + public global::System.Collections.Generic.List? ListType195 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType194 { get; set; } + public global::System.Collections.Generic.List? ListType196 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType195 { get; set; } + public global::System.Collections.Generic.List? ListType197 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType196 { get; set; } + public global::System.Collections.Generic.List? ListType198 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType197 { get; set; } + public global::System.Collections.Generic.List? ListType199 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType198 { get; set; } + public global::System.Collections.Generic.List? ListType200 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType199 { get; set; } + public global::System.Collections.Generic.List? ListType201 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType200 { get; set; } + public global::System.Collections.Generic.List? ListType202 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType201 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType202 { get; set; } + public global::System.Collections.Generic.List? ListType204 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType203 { get; set; } + public global::System.Collections.Generic.List? ListType205 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType204 { get; set; } + public global::System.Collections.Generic.List? ListType206 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType205 { get; set; } + public global::System.Collections.Generic.List? ListType207 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType206 { get; set; } + public global::System.Collections.Generic.List? ListType208 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType207 { get; set; } + public global::System.Collections.Generic.List? ListType209 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? ListType208 { get; set; } + public global::System.Collections.Generic.Dictionary>? ListType210 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType209 { get; set; } + public global::System.Collections.Generic.List? ListType211 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType210 { get; set; } + public global::System.Collections.Generic.List? ListType212 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType211 { get; set; } + public global::System.Collections.Generic.List? ListType213 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType212 { get; set; } + public global::System.Collections.Generic.List? ListType214 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType213 { get; set; } + public global::System.Collections.Generic.List? ListType215 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType214 { get; set; } + public global::System.Collections.Generic.List? ListType216 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType215 { get; set; } + public global::System.Collections.Generic.List? ListType217 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType216 { get; set; } + public global::System.Collections.Generic.List? ListType218 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType217 { get; set; } + public global::System.Collections.Generic.List? ListType219 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType218 { get; set; } + public global::System.Collections.Generic.List? ListType220 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType219 { get; set; } + public global::System.Collections.Generic.List? ListType221 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType220 { get; set; } + public global::System.Collections.Generic.List? ListType222 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType221 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType223 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType222 { get; set; } + public global::System.Collections.Generic.List? ListType224 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType223 { get; set; } + public global::System.Collections.Generic.List? ListType225 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType224 { get; set; } + public global::System.Collections.Generic.List? ListType226 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType225 { get; set; } + public global::System.Collections.Generic.List? ListType227 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType226 { get; set; } + public global::System.Collections.Generic.List? ListType228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, byte[]>? ListType227 { get; set; } + public global::tryAGI.OpenAI.OneOf, byte[]>? ListType229 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType228 { get; set; } + public global::System.Collections.Generic.List? ListType230 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType229 { get; set; } + public global::System.Collections.Generic.List? ListType231 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType230 { get; set; } + public global::System.Collections.Generic.List? ListType232 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType231 { get; set; } + public global::System.Collections.Generic.List? ListType233 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType232 { get; set; } + public global::System.Collections.Generic.List? ListType234 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType233 { get; set; } + public global::System.Collections.Generic.List? ListType235 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType234 { get; set; } + public global::System.Collections.Generic.List? ListType236 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType235 { get; set; } + public global::System.Collections.Generic.List? ListType237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType236 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType238 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType237 { get; set; } + public global::System.Collections.Generic.List? ListType239 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType238 { get; set; } + public global::System.Collections.Generic.List? ListType240 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType239 { get; set; } + public global::System.Collections.Generic.List? ListType241 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType240 { get; set; } + public global::System.Collections.Generic.List? ListType242 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType241 { get; set; } + public global::System.Collections.Generic.List? ListType243 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType242 { get; set; } + public global::System.Collections.Generic.List? ListType244 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType243 { get; set; } + public global::System.Collections.Generic.List? ListType245 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType244 { get; set; } + public global::System.Collections.Generic.List? ListType246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.BetaMCPToolFilter>? ListType245 { get; set; } + public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.BetaMCPToolFilter>? ListType247 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType246 { get; set; } + public global::System.Collections.Generic.List? ListType248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType247 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType249 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType248 { get; set; } + public global::System.Collections.Generic.List? ListType250 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType249 { get; set; } + public global::System.Collections.Generic.List? ListType251 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType250 { get; set; } + public global::System.Collections.Generic.List? ListType252 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType251 { get; set; } + public global::System.Collections.Generic.List? ListType253 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType252 { get; set; } + public global::System.Collections.Generic.List? ListType254 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType253 { get; set; } + public global::System.Collections.Generic.List? ListType255 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType254 { get; set; } + public global::System.Collections.Generic.List? ListType256 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType255 { get; set; } + public global::System.Collections.Generic.List? ListType257 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType256 { get; set; } + public global::System.Collections.Generic.List? ListType258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType257 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType259 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType258 { get; set; } + public global::System.Collections.Generic.List? ListType260 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType259 { get; set; } + public global::System.Collections.Generic.List? ListType261 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType260 { get; set; } + public global::System.Collections.Generic.List? ListType262 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType261 { get; set; } + public global::System.Collections.Generic.List? ListType263 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType262 { get; set; } + public global::System.Collections.Generic.List? ListType264 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType263 { get; set; } + public global::System.Collections.Generic.List? ListType265 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType264 { get; set; } + public global::System.Collections.Generic.List? ListType266 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType265 { get; set; } + public global::System.Collections.Generic.List? ListType267 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType266 { get; set; } + public global::System.Collections.Generic.List? ListType268 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType267 { get; set; } + public global::System.Collections.Generic.List? ListType269 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType268 { get; set; } + public global::System.Collections.Generic.List? ListType270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.OneOf>? ListType269 { get; set; } + public global::tryAGI.OpenAI.OneOf>? ListType271 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType270 { get; set; } + public global::System.Collections.Generic.List? ListType272 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType271 { get; set; } + public global::System.Collections.Generic.List? ListType273 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType272 { get; set; } + public global::System.Collections.Generic.List? ListType274 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType273 { get; set; } + public global::System.Collections.Generic.List? ListType275 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType274 { get; set; } + public global::System.Collections.Generic.List? ListType276 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType275 { get; set; } + public global::System.Collections.Generic.List? ListType277 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType276 { get; set; } + public global::System.Collections.Generic.List? ListType278 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? ListType277 { get; set; } + public global::System.Collections.Generic.Dictionary>? ListType279 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType278 { get; set; } + public global::System.Collections.Generic.List? ListType280 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType279 { get; set; } + public global::System.Collections.Generic.List? ListType281 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType280 { get; set; } + public global::System.Collections.Generic.List? ListType282 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType281 { get; set; } + public global::System.Collections.Generic.List? ListType283 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType282 { get; set; } + public global::System.Collections.Generic.List? ListType284 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType283 { get; set; } + public global::System.Collections.Generic.List? ListType285 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType284 { get; set; } + public global::System.Collections.Generic.List? ListType286 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType285 { get; set; } + public global::System.Collections.Generic.List? ListType287 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType286 { get; set; } + public global::System.Collections.Generic.List? ListType288 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType287 { get; set; } + public global::System.Collections.Generic.List? ListType289 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType288 { get; set; } + public global::System.Collections.Generic.List? ListType290 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType289 { get; set; } + public global::System.Collections.Generic.List? ListType291 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType290 { get; set; } + public global::System.Collections.Generic.List? ListType292 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType291 { get; set; } + public global::System.Collections.Generic.List? ListType293 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType292 { get; set; } + public global::System.Collections.Generic.List? ListType294 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType293 { get; set; } + public global::System.Collections.Generic.List? ListType295 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType294 { get; set; } + public global::System.Collections.Generic.List? ListType296 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType295 { get; set; } + public global::System.Collections.Generic.List? ListType297 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType296 { get; set; } + public global::System.Collections.Generic.List? ListType298 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType297 { get; set; } + public global::System.Collections.Generic.List? ListType299 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType298 { get; set; } + public global::System.Collections.Generic.List? ListType300 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType299 { get; set; } + public global::System.Collections.Generic.List? ListType301 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType300 { get; set; } + public global::System.Collections.Generic.List? ListType302 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType301 { get; set; } + public global::System.Collections.Generic.List? ListType303 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType302 { get; set; } + public global::System.Collections.Generic.List? ListType304 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType303 { get; set; } + public global::System.Collections.Generic.List? ListType305 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType304 { get; set; } + public global::System.Collections.Generic.List? ListType306 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType305 { get; set; } + public global::System.Collections.Generic.List? ListType307 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType306 { get; set; } + public global::System.Collections.Generic.List? ListType308 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType307 { get; set; } + public global::System.Collections.Generic.List? ListType309 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType308 { get; set; } + public global::System.Collections.Generic.List? ListType310 { get; set; } } } \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscription.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscription.g.cs index a475b26f..7cc28c3b 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscription.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscription.g.cs @@ -9,7 +9,7 @@ namespace tryAGI.OpenAI public sealed partial class AudioTranscription { /// - /// The model to use for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. + /// The model to use for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. /// [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.AnyOfJsonConverter))] @@ -23,6 +23,18 @@ public sealed partial class AudioTranscription [global::System.Text.Json.Serialization.JsonPropertyName("language")] public string? Language { get; set; } + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("keywords")] + public global::System.Collections.Generic.IList? Keywords { get; set; } + /// /// An optional text to guide the model's style or continue a previous audio
/// segment.
@@ -52,13 +64,19 @@ public sealed partial class AudioTranscription /// Initializes a new instance of the class. ///
/// - /// The model to use for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. + /// The model to use for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. /// /// /// The language of the input audio. Supplying the input language in
/// [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format
/// will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio
/// segment.
@@ -77,11 +95,15 @@ public sealed partial class AudioTranscription public AudioTranscription( global::tryAGI.OpenAI.AnyOf? model, string? language, + global::System.Collections.Generic.IList? languages, + global::System.Collections.Generic.IList? keywords, string? prompt, global::tryAGI.OpenAI.AudioTranscriptionDelay? delay) { this.Model = model; this.Language = language; + this.Languages = languages; + this.Keywords = keywords; this.Prompt = prompt; this.Delay = delay; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionModel.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionModel.g.cs index 7f55b957..c0b0bc8c 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionModel.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionModel.g.cs @@ -27,10 +27,18 @@ public enum AudioTranscriptionModel /// /// /// + GptLiveTranscribe, + /// + /// + /// GptRealtimeWhisper, /// /// /// + GptTranscribe, + /// + /// + /// Whisper1, } @@ -50,7 +58,9 @@ public static string ToValueString(this AudioTranscriptionModel value) AudioTranscriptionModel.Gpt4oMiniTranscribe20251215 => "gpt-4o-mini-transcribe-2025-12-15", AudioTranscriptionModel.Gpt4oTranscribe => "gpt-4o-transcribe", AudioTranscriptionModel.Gpt4oTranscribeDiarize => "gpt-4o-transcribe-diarize", + AudioTranscriptionModel.GptLiveTranscribe => "gpt-live-transcribe", AudioTranscriptionModel.GptRealtimeWhisper => "gpt-realtime-whisper", + AudioTranscriptionModel.GptTranscribe => "gpt-transcribe", AudioTranscriptionModel.Whisper1 => "whisper-1", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -66,7 +76,9 @@ public static string ToValueString(this AudioTranscriptionModel value) "gpt-4o-mini-transcribe-2025-12-15" => AudioTranscriptionModel.Gpt4oMiniTranscribe20251215, "gpt-4o-transcribe" => AudioTranscriptionModel.Gpt4oTranscribe, "gpt-4o-transcribe-diarize" => AudioTranscriptionModel.Gpt4oTranscribeDiarize, + "gpt-live-transcribe" => AudioTranscriptionModel.GptLiveTranscribe, "gpt-realtime-whisper" => AudioTranscriptionModel.GptRealtimeWhisper, + "gpt-transcribe" => AudioTranscriptionModel.GptTranscribe, "whisper-1" => AudioTranscriptionModel.Whisper1, _ => null, }; diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponse.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponse.g.cs index f9e96b30..30302121 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponse.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponse.g.cs @@ -9,7 +9,7 @@ namespace tryAGI.OpenAI public sealed partial class AudioTranscriptionResponse { /// - /// The model used for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. + /// The model used for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. /// [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.AnyOfJsonConverter))] @@ -21,6 +21,12 @@ public sealed partial class AudioTranscriptionResponse [global::System.Text.Json.Serialization.JsonPropertyName("language")] public string? Language { get; set; } + /// + /// The possible input audio languages configured for transcription, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + /// /// The prompt configured for input audio transcription, when present. /// @@ -37,11 +43,14 @@ public sealed partial class AudioTranscriptionResponse /// Initializes a new instance of the class. ///
/// - /// The model used for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. + /// The model used for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. /// /// /// The language of the input audio. /// + /// + /// The possible input audio languages configured for transcription, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. + /// /// /// The prompt configured for input audio transcription, when present. /// @@ -51,10 +60,12 @@ public sealed partial class AudioTranscriptionResponse public AudioTranscriptionResponse( global::tryAGI.OpenAI.AnyOf? model, string? language, + global::System.Collections.Generic.IList? languages, string? prompt) { this.Model = model; this.Language = language; + this.Languages = languages; this.Prompt = prompt; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponseModel.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponseModel.g.cs index c548822f..2f82ab79 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponseModel.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.AudioTranscriptionResponseModel.g.cs @@ -27,10 +27,18 @@ public enum AudioTranscriptionResponseModel /// /// /// + GptLiveTranscribe, + /// + /// + /// GptRealtimeWhisper, /// /// /// + GptTranscribe, + /// + /// + /// Whisper1, } @@ -50,7 +58,9 @@ public static string ToValueString(this AudioTranscriptionResponseModel value) AudioTranscriptionResponseModel.Gpt4oMiniTranscribe20251215 => "gpt-4o-mini-transcribe-2025-12-15", AudioTranscriptionResponseModel.Gpt4oTranscribe => "gpt-4o-transcribe", AudioTranscriptionResponseModel.Gpt4oTranscribeDiarize => "gpt-4o-transcribe-diarize", + AudioTranscriptionResponseModel.GptLiveTranscribe => "gpt-live-transcribe", AudioTranscriptionResponseModel.GptRealtimeWhisper => "gpt-realtime-whisper", + AudioTranscriptionResponseModel.GptTranscribe => "gpt-transcribe", AudioTranscriptionResponseModel.Whisper1 => "whisper-1", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -66,7 +76,9 @@ public static string ToValueString(this AudioTranscriptionResponseModel value) "gpt-4o-mini-transcribe-2025-12-15" => AudioTranscriptionResponseModel.Gpt4oMiniTranscribe20251215, "gpt-4o-transcribe" => AudioTranscriptionResponseModel.Gpt4oTranscribe, "gpt-4o-transcribe-diarize" => AudioTranscriptionResponseModel.Gpt4oTranscribeDiarize, + "gpt-live-transcribe" => AudioTranscriptionResponseModel.GptLiveTranscribe, "gpt-realtime-whisper" => AudioTranscriptionResponseModel.GptRealtimeWhisper, + "gpt-transcribe" => AudioTranscriptionResponseModel.GptTranscribe, "whisper-1" => AudioTranscriptionResponseModel.Whisper1, _ => null, }; diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequest.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequest.g.cs index 14975458..b7420033 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequest.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequest.g.cs @@ -23,7 +23,7 @@ public sealed partial class CreateTranscriptionRequest public required string Filename { get; set; } /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe ///
/// gpt-4o-transcribe @@ -38,6 +38,18 @@ public sealed partial class CreateTranscriptionRequest [global::System.Text.Json.Serialization.JsonPropertyName("language")] public string? Language { get; set; } + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("keywords")] + public global::System.Collections.Generic.IList? Keywords { get; set; } + /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -117,12 +129,18 @@ public sealed partial class CreateTranscriptionRequest /// The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. /// /// - /// ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
+ /// ID of the model to use. The options are `gpt-transcribe`, `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered by our open source Whisper V2 model), and `gpt-4o-transcribe-diarize`.
/// Example: gpt-4o-transcribe /// /// /// The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language. This field is not supported when using `gpt-4o-transcribe-diarize`. /// @@ -162,6 +180,8 @@ public CreateTranscriptionRequest( string filename, global::tryAGI.OpenAI.AnyOf model, string? language, + global::System.Collections.Generic.IList? languages, + global::System.Collections.Generic.IList? keywords, string? prompt, global::tryAGI.OpenAI.AudioResponseFormat? responseFormat, double? temperature, @@ -176,6 +196,8 @@ public CreateTranscriptionRequest( this.Filename = filename ?? throw new global::System.ArgumentNullException(nameof(filename)); this.Model = model; this.Language = language; + this.Languages = languages; + this.Keywords = keywords; this.Prompt = prompt; this.ResponseFormat = responseFormat; this.Temperature = temperature; diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequestModel.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequestModel.g.cs index cba7a3e3..c09885cc 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequestModel.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionRequestModel.g.cs @@ -27,6 +27,10 @@ public enum CreateTranscriptionRequestModel /// /// /// + GptTranscribe, + /// + /// + /// Whisper1, } @@ -46,6 +50,7 @@ public static string ToValueString(this CreateTranscriptionRequestModel value) CreateTranscriptionRequestModel.Gpt4oMiniTranscribe20251215 => "gpt-4o-mini-transcribe-2025-12-15", CreateTranscriptionRequestModel.Gpt4oTranscribe => "gpt-4o-transcribe", CreateTranscriptionRequestModel.Gpt4oTranscribeDiarize => "gpt-4o-transcribe-diarize", + CreateTranscriptionRequestModel.GptTranscribe => "gpt-transcribe", CreateTranscriptionRequestModel.Whisper1 => "whisper-1", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -61,6 +66,7 @@ public static string ToValueString(this CreateTranscriptionRequestModel value) "gpt-4o-mini-transcribe-2025-12-15" => CreateTranscriptionRequestModel.Gpt4oMiniTranscribe20251215, "gpt-4o-transcribe" => CreateTranscriptionRequestModel.Gpt4oTranscribe, "gpt-4o-transcribe-diarize" => CreateTranscriptionRequestModel.Gpt4oTranscribeDiarize, + "gpt-transcribe" => CreateTranscriptionRequestModel.GptTranscribe, "whisper-1" => CreateTranscriptionRequestModel.Whisper1, _ => null, }; diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionResponseJson.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionResponseJson.g.cs index 60711cc7..6ca830e9 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionResponseJson.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.CreateTranscriptionResponseJson.g.cs @@ -15,6 +15,12 @@ public sealed partial class CreateTranscriptionResponseJson [global::System.Text.Json.Serialization.JsonRequired] public required string Text { get; set; } + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + /// /// The log probabilities of the tokens in the transcription. Only returned with the models `gpt-4o-transcribe` and `gpt-4o-mini-transcribe` if `logprobs` is added to the `include` array. /// @@ -40,6 +46,9 @@ public sealed partial class CreateTranscriptionResponseJson /// /// The transcribed text. /// + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// /// /// The log probabilities of the tokens in the transcription. Only returned with the models `gpt-4o-transcribe` and `gpt-4o-mini-transcribe` if `logprobs` is added to the `include` array. /// @@ -51,10 +60,12 @@ public sealed partial class CreateTranscriptionResponseJson #endif public CreateTranscriptionResponseJson( string text, + global::System.Collections.Generic.IList? languages, global::System.Collections.Generic.IList? logprobs, global::tryAGI.OpenAI.OneOf? usage) { this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text)); + this.Languages = languages; this.Logprobs = logprobs; this.Usage = usage; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted.g.cs index b80e438c..f1ac816a 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted.g.cs @@ -52,6 +52,12 @@ public sealed partial class RealtimeBetaServerEventConversationItemInputAudioTra [global::System.Text.Json.Serialization.JsonRequired] public required string Transcript { get; set; } + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + /// /// /// @@ -94,6 +100,9 @@ public sealed partial class RealtimeBetaServerEventConversationItemInputAudioTra /// The event type, must be
/// `conversation.item.input_audio_transcription.completed`. /// + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] @@ -105,6 +114,7 @@ public RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted( string transcript, global::tryAGI.OpenAI.OneOf usage, global::tryAGI.OpenAI.RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompletedType type, + global::System.Collections.Generic.IList? languages, global::System.Collections.Generic.IList? logprobs) { this.EventId = eventId ?? throw new global::System.ArgumentNullException(nameof(eventId)); @@ -112,6 +122,7 @@ public RealtimeBetaServerEventConversationItemInputAudioTranscriptionCompleted( this.ItemId = itemId ?? throw new global::System.ArgumentNullException(nameof(itemId)); this.ContentIndex = contentIndex; this.Transcript = transcript ?? throw new global::System.ArgumentNullException(nameof(transcript)); + this.Languages = languages; this.Logprobs = logprobs; this.Usage = usage; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs index 4e94b6c0..7f9f1a4d 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs @@ -52,6 +52,12 @@ public sealed partial class RealtimeServerEventConversationItemInputAudioTranscr [global::System.Text.Json.Serialization.JsonRequired] public required string Transcript { get; set; } + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + /// /// /// @@ -94,6 +100,9 @@ public sealed partial class RealtimeServerEventConversationItemInputAudioTranscr /// The event type, must be
/// `conversation.item.input_audio_transcription.completed`. /// + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] @@ -105,6 +114,7 @@ public RealtimeServerEventConversationItemInputAudioTranscriptionCompleted( string transcript, global::tryAGI.OpenAI.OneOf usage, global::tryAGI.OpenAI.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType type, + global::System.Collections.Generic.IList? languages, global::System.Collections.Generic.IList? logprobs) { this.EventId = eventId ?? throw new global::System.ArgumentNullException(nameof(eventId)); @@ -112,6 +122,7 @@ public RealtimeServerEventConversationItemInputAudioTranscriptionCompleted( this.ItemId = itemId ?? throw new global::System.ArgumentNullException(nameof(itemId)); this.ContentIndex = contentIndex; this.Transcript = transcript ?? throw new global::System.ArgumentNullException(nameof(transcript)); + this.Languages = languages; this.Logprobs = logprobs; this.Usage = usage; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptTextDoneEvent.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptTextDoneEvent.g.cs index d7faa913..7b4fc37c 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptTextDoneEvent.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptTextDoneEvent.g.cs @@ -22,6 +22,12 @@ public sealed partial class TranscriptTextDoneEvent [global::System.Text.Json.Serialization.JsonRequired] public required string Text { get; set; } + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + /// /// The log probabilities of the individual tokens in the transcription. Only included if you [create a transcription](/docs/api-reference/audio/create-transcription) with the `include[]` parameter set to `logprobs`. /// @@ -49,6 +55,9 @@ public sealed partial class TranscriptTextDoneEvent /// /// The type of the event. Always `transcript.text.done`. /// + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// /// /// The log probabilities of the individual tokens in the transcription. Only included if you [create a transcription](/docs/api-reference/audio/create-transcription) with the `include[]` parameter set to `logprobs`. /// @@ -61,11 +70,13 @@ public sealed partial class TranscriptTextDoneEvent public TranscriptTextDoneEvent( string text, global::tryAGI.OpenAI.TranscriptTextDoneEventType type, + global::System.Collections.Generic.IList? languages, global::System.Collections.Generic.IList? logprobs, global::tryAGI.OpenAI.TranscriptTextUsageTokens? usage) { this.Type = type; this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text)); + this.Languages = languages; this.Logprobs = logprobs; this.Usage = usage; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptionLanguage.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptionLanguage.Json.g.cs new file mode 100644 index 00000000..42e80e6c --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptionLanguage.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace tryAGI.OpenAI +{ + public sealed partial class TranscriptionLanguage + { + /// + /// 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.TranscriptionLanguage? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.TranscriptionLanguage), + jsonSerializerContext) as global::tryAGI.OpenAI.TranscriptionLanguage; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.TranscriptionLanguage? 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.TranscriptionLanguage? 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.TranscriptionLanguage), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.TranscriptionLanguage; + } + + /// + /// 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.TranscriptionLanguage.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptionLanguage.g.cs new file mode 100644 index 00000000..447ecebb --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.TranscriptionLanguage.g.cs @@ -0,0 +1,47 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// A language detected in transcribed audio. + /// + public sealed partial class TranscriptionLanguage + { + /// + /// The code of a language detected in the audio. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("code")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Code { 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 code of a language detected in the audio. + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public TranscriptionLanguage( + string code) + { + this.Code = code ?? throw new global::System.ArgumentNullException(nameof(code)); + } + + /// + /// Initializes a new instance of the class. + /// + public TranscriptionLanguage() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncoming.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncoming.Json.g.cs new file mode 100644 index 00000000..04529966 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncoming.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace tryAGI.OpenAI +{ + public sealed partial class WebhookLiveCallIncoming + { + /// + /// 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.WebhookLiveCallIncoming? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.WebhookLiveCallIncoming), + jsonSerializerContext) as global::tryAGI.OpenAI.WebhookLiveCallIncoming; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.WebhookLiveCallIncoming? 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.WebhookLiveCallIncoming? 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.WebhookLiveCallIncoming), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.WebhookLiveCallIncoming; + } + + /// + /// 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.WebhookLiveCallIncoming.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncoming.g.cs new file mode 100644 index 00000000..37b69bbb --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncoming.g.cs @@ -0,0 +1,97 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// Sent when an incoming API SIP session is available for Live acceptance. The
+ /// same pending session can also emit `realtime.call.incoming`; the first
+ /// successful Realtime or Live accept endpoint selects the runtime surface. + ///
+ public sealed partial class WebhookLiveCallIncoming + { + /// + /// The Unix timestamp (in seconds) of when the event was created. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("created_at")] + [global::System.Text.Json.Serialization.JsonRequired] + public required int CreatedAt { get; set; } + + /// + /// The unique ID of the event. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Id { get; set; } + + /// + /// Event data payload. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("data")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::tryAGI.OpenAI.WebhookLiveCallIncomingData Data { get; set; } + + /// + /// The object of the event. Always `event`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("object")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingObjectJsonConverter))] + public global::tryAGI.OpenAI.WebhookLiveCallIncomingObject? Object { get; set; } + + /// + /// The type of the event. Always `live.call.incoming`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.WebhookLiveCallIncomingTypeJsonConverter))] + public global::tryAGI.OpenAI.WebhookLiveCallIncomingType Type { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// + /// The Unix timestamp (in seconds) of when the event was created. + /// + /// + /// The unique ID of the event. + /// + /// + /// Event data payload. + /// + /// + /// The object of the event. Always `event`. + /// + /// + /// The type of the event. Always `live.call.incoming`. + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public WebhookLiveCallIncoming( + int createdAt, + string id, + global::tryAGI.OpenAI.WebhookLiveCallIncomingData data, + global::tryAGI.OpenAI.WebhookLiveCallIncomingObject? @object, + global::tryAGI.OpenAI.WebhookLiveCallIncomingType type) + { + this.CreatedAt = createdAt; + this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id)); + this.Data = data ?? throw new global::System.ArgumentNullException(nameof(data)); + this.Object = @object; + this.Type = type; + } + + /// + /// Initializes a new instance of the class. + /// + public WebhookLiveCallIncoming() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingData.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingData.Json.g.cs new file mode 100644 index 00000000..76aff54f --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingData.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace tryAGI.OpenAI +{ + public sealed partial class WebhookLiveCallIncomingData + { + /// + /// 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.WebhookLiveCallIncomingData? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingData), + jsonSerializerContext) as global::tryAGI.OpenAI.WebhookLiveCallIncomingData; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.WebhookLiveCallIncomingData? 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.WebhookLiveCallIncomingData? 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.WebhookLiveCallIncomingData), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.WebhookLiveCallIncomingData; + } + + /// + /// 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.WebhookLiveCallIncomingData.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingData.g.cs new file mode 100644 index 00000000..7a9dd01b --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingData.g.cs @@ -0,0 +1,61 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// Event data payload. + /// + public sealed partial class WebhookLiveCallIncomingData + { + /// + /// The Transceiver `rtc_...` ID of the pending SIP session. The same
+ /// value appears as `call_id` in `realtime.call.incoming`. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("session_id")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string SessionId { get; set; } + + /// + /// Headers from the SIP Invite. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("sip_headers")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Collections.Generic.IList SipHeaders { 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 Transceiver `rtc_...` ID of the pending SIP session. The same
+ /// value appears as `call_id` in `realtime.call.incoming`. + /// + /// + /// Headers from the SIP Invite. + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public WebhookLiveCallIncomingData( + string sessionId, + global::System.Collections.Generic.IList sipHeaders) + { + this.SessionId = sessionId ?? throw new global::System.ArgumentNullException(nameof(sessionId)); + this.SipHeaders = sipHeaders ?? throw new global::System.ArgumentNullException(nameof(sipHeaders)); + } + + /// + /// Initializes a new instance of the class. + /// + public WebhookLiveCallIncomingData() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingDataSipHeader.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingDataSipHeader.Json.g.cs new file mode 100644 index 00000000..9238c3e5 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingDataSipHeader.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace tryAGI.OpenAI +{ + public sealed partial class WebhookLiveCallIncomingDataSipHeader + { + /// + /// 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.WebhookLiveCallIncomingDataSipHeader? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.WebhookLiveCallIncomingDataSipHeader), + jsonSerializerContext) as global::tryAGI.OpenAI.WebhookLiveCallIncomingDataSipHeader; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.WebhookLiveCallIncomingDataSipHeader? 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.WebhookLiveCallIncomingDataSipHeader? 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.WebhookLiveCallIncomingDataSipHeader), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.WebhookLiveCallIncomingDataSipHeader; + } + + /// + /// 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.WebhookLiveCallIncomingDataSipHeader.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingDataSipHeader.g.cs new file mode 100644 index 00000000..ee8f0241 --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingDataSipHeader.g.cs @@ -0,0 +1,59 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// A header from the SIP Invite. + /// + public sealed partial class WebhookLiveCallIncomingDataSipHeader + { + /// + /// Name of the SIP Header. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Name { get; set; } + + /// + /// Value of the SIP Header. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("value")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Value { 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. + /// + /// + /// Name of the SIP Header. + /// + /// + /// Value of the SIP Header. + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public WebhookLiveCallIncomingDataSipHeader( + string name, + string value) + { + this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name)); + this.Value = value ?? throw new global::System.ArgumentNullException(nameof(value)); + } + + /// + /// Initializes a new instance of the class. + /// + public WebhookLiveCallIncomingDataSipHeader() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingObject.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingObject.g.cs new file mode 100644 index 00000000..7cf4506e --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingObject.g.cs @@ -0,0 +1,45 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// The object of the event. Always `event`. + /// + public enum WebhookLiveCallIncomingObject + { + /// + /// + /// + Event, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class WebhookLiveCallIncomingObjectExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this WebhookLiveCallIncomingObject value) + { + return value switch + { + WebhookLiveCallIncomingObject.Event => "event", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static WebhookLiveCallIncomingObject? ToEnum(string value) + { + return value switch + { + "event" => WebhookLiveCallIncomingObject.Event, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingType.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingType.g.cs new file mode 100644 index 00000000..cc07378f --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookLiveCallIncomingType.g.cs @@ -0,0 +1,45 @@ + +#nullable enable + +namespace tryAGI.OpenAI +{ + /// + /// The type of the event. Always `live.call.incoming`. + /// + public enum WebhookLiveCallIncomingType + { + /// + /// + /// + LiveCallIncoming, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class WebhookLiveCallIncomingTypeExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this WebhookLiveCallIncomingType value) + { + return value switch + { + WebhookLiveCallIncomingType.LiveCallIncoming => "live.call.incoming", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static WebhookLiveCallIncomingType? ToEnum(string value) + { + return value switch + { + "live.call.incoming" => WebhookLiveCallIncomingType.LiveCallIncoming, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncoming.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncoming.g.cs index 174ce7e7..86758338 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncoming.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncoming.g.cs @@ -4,7 +4,9 @@ namespace tryAGI.OpenAI { /// - /// Sent when Realtime API Receives a incoming SIP call. + /// Sent when an incoming API SIP session is available for Realtime acceptance.
+ /// The same pending session can also emit `live.call.incoming`; the first
+ /// successful Realtime or Live accept endpoint selects the runtime surface. ///
public sealed partial class WebhookRealtimeCallIncoming { diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncomingData.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncomingData.g.cs index 148784bf..cb203d31 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncomingData.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Models.WebhookRealtimeCallIncomingData.g.cs @@ -9,7 +9,8 @@ namespace tryAGI.OpenAI public sealed partial class WebhookRealtimeCallIncomingData { /// - /// The unique ID of this call. + /// The Transceiver `rtc_...` ID of the pending SIP session. The same
+ /// value appears as `session_id` in `live.call.incoming`. ///
[global::System.Text.Json.Serialization.JsonPropertyName("call_id")] [global::System.Text.Json.Serialization.JsonRequired] @@ -32,7 +33,8 @@ public sealed partial class WebhookRealtimeCallIncomingData /// Initializes a new instance of the class. /// /// - /// The unique ID of this call. + /// The Transceiver `rtc_...` ID of the pending SIP session. The same
+ /// value appears as `session_id` in `live.call.incoming`. /// /// /// Headers from the SIP Invite. diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContext.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContext.g.cs index 17240e66..0c7961bd 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContext.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContext.g.cs @@ -690,6 +690,7 @@ namespace tryAGI.OpenAI.Realtime [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.AnyOf), TypeInfoPropertyName = "AnyOfStringAudioTranscriptionModel2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(string))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.AudioTranscriptionModel), TypeInfoPropertyName = "AudioTranscriptionModel2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.AudioTranscriptionDelay), TypeInfoPropertyName = "AudioTranscriptionDelay2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.AudioTranscriptionResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.AnyOf), TypeInfoPropertyName = "AnyOfStringAudioTranscriptionResponseModel2")] @@ -715,7 +716,6 @@ namespace tryAGI.OpenAI.Realtime [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.MCPToolConnectorId), TypeInfoPropertyName = "MCPToolConnectorId2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.OneOf, global::tryAGI.OpenAI.Realtime.MCPToolFilter>))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.MCPToolFilter))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.OneOf))] @@ -864,6 +864,8 @@ namespace tryAGI.OpenAI.Realtime [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemDoneType), TypeInfoPropertyName = "RealtimeServerEventConversationItemDoneType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType), TypeInfoPropertyName = "RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.TranscriptionLanguage))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.OneOf), TypeInfoPropertyName = "OneOfTranscriptTextUsageTokensTranscriptTextUsageDuration2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.TranscriptTextUsageTokens))] @@ -1042,9 +1044,9 @@ namespace tryAGI.OpenAI.Realtime [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.ServerEvent), TypeInfoPropertyName = "ServerEvent2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.ServerEventDiscriminator))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::tryAGI.OpenAI.Realtime.ServerEventDiscriminatorType), TypeInfoPropertyName = "ServerEventDiscriminatorType2")] + [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.Realtime.OneOf, global::tryAGI.OpenAI.Realtime.MCPToolFilter>))] - [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))] @@ -1054,6 +1056,7 @@ namespace tryAGI.OpenAI.Realtime [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))] diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContextTypes.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContextTypes.g.cs index 12bfa036..ec28a718 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContextTypes.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.JsonSerializerContextTypes.g.cs @@ -44,107 +44,107 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::tryAGI.OpenAI.Realtime.AudioTranscriptionDelay? Type4 { get; set; } + public global::System.Collections.Generic.IList? Type4 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.AudioTranscriptionResponse? Type5 { get; set; } + public global::tryAGI.OpenAI.Realtime.AudioTranscriptionDelay? Type5 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.AnyOf? Type6 { get; set; } + public global::tryAGI.OpenAI.Realtime.AudioTranscriptionResponse? Type6 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.AudioTranscriptionResponseModel? Type7 { get; set; } + public global::tryAGI.OpenAI.Realtime.AnyOf? Type7 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.CallableToolAllowedCaller? Type8 { get; set; } + public global::tryAGI.OpenAI.Realtime.AudioTranscriptionResponseModel? Type8 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.FileInputDetail? Type9 { get; set; } + public global::tryAGI.OpenAI.Realtime.CallableToolAllowedCaller? Type9 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.ImageDetail? Type10 { get; set; } + public global::tryAGI.OpenAI.Realtime.FileInputDetail? Type10 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.InputFileContent? Type11 { get; set; } + public global::tryAGI.OpenAI.Realtime.ImageDetail? Type11 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.InputFileContentType? Type12 { get; set; } + public global::tryAGI.OpenAI.Realtime.InputFileContent? Type12 { get; set; } /// /// /// - public object? Type13 { get; set; } + public global::tryAGI.OpenAI.Realtime.InputFileContentType? Type13 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.PromptCacheBreakpointConfig? Type14 { get; set; } + public object? Type14 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.InputImageContent? Type15 { get; set; } + public global::tryAGI.OpenAI.Realtime.PromptCacheBreakpointConfig? Type15 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.InputImageContentType? Type16 { get; set; } + public global::tryAGI.OpenAI.Realtime.InputImageContent? Type16 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.InputTextContent? Type17 { get; set; } + public global::tryAGI.OpenAI.Realtime.InputImageContentType? Type17 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.InputTextContentType? Type18 { get; set; } + public global::tryAGI.OpenAI.Realtime.InputTextContent? Type18 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.LogProbProperties? Type19 { get; set; } + public global::tryAGI.OpenAI.Realtime.InputTextContentType? Type19 { get; set; } /// /// /// - public double? Type20 { get; set; } + public global::tryAGI.OpenAI.Realtime.LogProbProperties? Type20 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type21 { get; set; } + public double? Type21 { get; set; } /// /// /// - public int? Type22 { get; set; } + public global::System.Collections.Generic.IList? Type22 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.MCPListToolsTool? Type23 { get; set; } + public int? Type23 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.MCPTool? Type24 { get; set; } + public global::tryAGI.OpenAI.Realtime.MCPListToolsTool? Type24 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.MCPToolType? Type25 { get; set; } + public global::tryAGI.OpenAI.Realtime.MCPTool? Type25 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.MCPToolConnectorId? Type26 { get; set; } + public global::tryAGI.OpenAI.Realtime.MCPToolType? Type26 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type27 { get; set; } + public global::tryAGI.OpenAI.Realtime.MCPToolConnectorId? Type27 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf, global::tryAGI.OpenAI.Realtime.MCPToolFilter>? Type28 { get; set; } + public global::System.Collections.Generic.Dictionary? Type28 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type29 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf, global::tryAGI.OpenAI.Realtime.MCPToolFilter>? Type29 { get; set; } /// /// /// @@ -740,724 +740,732 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.IList? Type178 { get; set; } + public global::System.Collections.Generic.IList? Type178 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf? Type179 { get; set; } + public global::tryAGI.OpenAI.Realtime.TranscriptionLanguage? Type179 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageTokens? Type180 { get; set; } + public global::System.Collections.Generic.IList? Type180 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageDuration? Type181 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf? Type181 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type182 { get; set; } + public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageTokens? Type182 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type183 { get; set; } + public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageDuration? Type183 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type184 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionDelta? Type184 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type185 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionDeltaType? Type185 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type186 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionFailed? Type186 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type187 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionFailedType? Type187 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type188 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionFailedError? Type188 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemRetrieved? Type189 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionSegment? Type189 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemRetrievedType? Type190 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionSegmentType? Type190 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemTruncated? Type191 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemRetrieved? Type191 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemTruncatedType? Type192 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemRetrievedType? Type192 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventError? Type193 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemTruncated? Type193 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventErrorType? Type194 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemTruncatedType? Type194 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventErrorError? Type195 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventError? Type195 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferCleared? Type196 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventErrorType? Type196 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferClearedType? Type197 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventErrorError? Type197 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferCommitted? Type198 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferCleared? Type198 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferCommittedType? Type199 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferClearedType? Type199 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type200 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferCommitted? Type200 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type201 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferCommittedType? Type201 { get; set; } /// /// /// - public global::System.DateTimeOffset? Type202 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferDtmfEventReceived? Type202 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStarted? Type203 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferDtmfEventReceivedType? Type203 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStartedType? Type204 { get; set; } + public global::System.DateTimeOffset? Type204 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStopped? Type205 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStarted? Type205 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type206 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStartedType? Type206 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type207 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStopped? Type207 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type208 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferSpeechStoppedType? Type208 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsCompleted? Type209 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferTimeoutTriggered? Type209 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsCompletedType? Type210 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventInputAudioBufferTimeoutTriggeredType? Type210 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsFailed? Type211 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsCompleted? Type211 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsFailedType? Type212 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsCompletedType? Type212 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsInProgress? Type213 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsFailed? Type213 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsInProgressType? Type214 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsFailedType? Type214 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferCleared? Type215 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsInProgress? Type215 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferClearedType? Type216 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventMCPListToolsInProgressType? Type216 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStarted? Type217 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferCleared? Type217 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStartedType? Type218 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferClearedType? Type218 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStopped? Type219 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStarted? Type219 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStoppedType? Type220 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStartedType? Type220 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdated? Type221 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStopped? Type221 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdatedType? Type222 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventOutputAudioBufferStoppedType? Type222 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type223 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdated? Type223 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdatedRateLimit? Type224 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdatedType? Type224 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type225 { get; set; } + public global::System.Collections.Generic.IList? Type225 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDelta? Type226 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdatedRateLimit? Type226 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDeltaType? Type227 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventRateLimitsUpdatedRateLimitName? Type227 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDone? Type228 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDelta? Type228 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDoneType? Type229 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDeltaType? Type229 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDelta? Type230 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDone? Type230 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDeltaType? Type231 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioDoneType? Type231 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDone? Type232 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDelta? Type232 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDoneType? Type233 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDeltaType? Type233 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAdded? Type234 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDone? Type234 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAddedType? Type235 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseAudioTranscriptDoneType? Type235 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAddedPart? Type236 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAdded? Type236 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAddedPartType? Type237 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAddedType? Type237 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDone? Type238 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAddedPart? Type238 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDoneType? Type239 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartAddedPartType? Type239 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDonePart? Type240 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDone? Type240 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDonePartType? Type241 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDoneType? Type241 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseCreated? Type242 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDonePart? Type242 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseCreatedType? Type243 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseContentPartDonePartType? Type243 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseDone? Type244 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseCreated? Type244 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseDoneType? Type245 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseCreatedType? Type245 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type246 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseDone? Type246 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type247 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseDoneType? Type247 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDone? Type248 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDelta? Type248 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type249 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDeltaType? Type249 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDelta? Type250 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDone? Type250 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type251 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseFunctionCallArgumentsDoneType? Type251 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDone? Type252 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDelta? Type252 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type253 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDeltaType? Type253 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallCompleted? Type254 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDone? Type254 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallCompletedType? Type255 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallArgumentsDoneType? Type255 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallFailed? Type256 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallCompleted? Type256 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallFailedType? Type257 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallCompletedType? Type257 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallInProgress? Type258 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallFailed? Type258 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallInProgressType? Type259 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallFailedType? Type259 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemAdded? Type260 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallInProgress? Type260 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemAddedType? Type261 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseMCPCallInProgressType? Type261 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemDone? Type262 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemAdded? Type262 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemDoneType? Type263 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemAddedType? Type263 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDelta? Type264 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemDone? Type264 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDeltaType? Type265 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseOutputItemDoneType? Type265 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDone? Type266 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDelta? Type266 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDoneType? Type267 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDeltaType? Type267 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionCreated? Type268 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDone? Type268 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionCreatedType? Type269 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventResponseTextDoneType? Type269 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf? Type270 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionCreated? Type270 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGA? Type271 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionCreatedType? Type271 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGA? Type272 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf? Type272 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionUpdated? Type273 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGA? Type273 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionUpdatedType? Type274 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGA? Type274 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventTranscriptionSessionUpdated? Type275 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionUpdated? Type275 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeServerEventTranscriptionSessionUpdatedType? Type276 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventSessionUpdatedType? Type276 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponse? Type277 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventTranscriptionSessionUpdated? Type277 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAType? Type278 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeServerEventTranscriptionSessionUpdatedType? Type278 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type279 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponse? Type279 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAOutputModalitie? Type280 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAType? Type280 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.AnyOf? Type281 { get; set; } + public global::System.Collections.Generic.IList? Type281 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAModel? Type282 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAOutputModalitie? Type282 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudio? Type283 { get; set; } + public global::tryAGI.OpenAI.Realtime.AnyOf? Type283 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudioInput? Type284 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAModel? Type284 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type285 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudio? Type285 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1? Type286 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudioInput? Type286 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudioOutput? Type287 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudioInputNoiseReduction? Type287 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type288 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1? Type288 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAIncludeItem? Type289 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAAudioOutput? Type289 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf? Type290 { get; set; } + public global::System.Collections.Generic.IList? Type290 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGATracingEnum? Type291 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAIncludeItem? Type291 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGATracingEnum2? Type292 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf? Type292 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf? Type293 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGATracingEnum? Type293 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAMaxOutputTokens? Type294 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGATracingEnum2? Type294 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTruncation? Type295 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf? Type295 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAType? Type296 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateRequestGAMaxOutputTokens? Type296 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAObject? Type297 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTruncation? Type297 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type298 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAType? Type298 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAOutputModalitie? Type299 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAObject? Type299 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.AnyOf? Type300 { get; set; } + public global::System.Collections.Generic.IList? Type300 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAModel? Type301 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAOutputModalitie? Type301 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudio? Type302 { get; set; } + public global::tryAGI.OpenAI.Realtime.AnyOf? Type302 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudioInput? Type303 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAModel? Type303 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type304 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudio? Type304 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudioOutput? Type305 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudioInput? Type305 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type306 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudioInputNoiseReduction? Type306 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAIncludeItem? Type307 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAAudioOutput? Type307 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type308 { get; set; } + public global::System.Collections.Generic.IList? Type308 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type309 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAIncludeItem? Type309 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf? Type310 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum? Type310 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAMaxOutputTokens? Type311 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGATracingTracingConfigurationEnum2? Type311 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type312 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf? Type312 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type313 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeSessionCreateResponseGAMaxOutputTokens? Type313 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type314 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestTurnDetection? Type314 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type315 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestTurnDetectionType? Type315 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type316 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction? Type316 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type317 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestInputAudioFormat? Type317 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAType? Type318 { get; set; } + public global::System.Collections.Generic.IList? Type318 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAAudio? Type319 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestIncludeItem? Type319 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type320 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAType? Type320 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type321 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAAudio? Type321 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type322 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAAudioInput? Type322 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type323 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAAudioInputNoiseReduction? Type323 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseClientSecret? Type324 { get; set; } + public global::System.Collections.Generic.IList? Type324 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type325 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateRequestGAIncludeItem? Type325 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseModalitie? Type326 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseClientSecret? Type326 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type327 { get; set; } + public global::System.Collections.Generic.IList? Type327 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAType? Type328 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseModalitie? Type328 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type329 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseTurnDetection? Type329 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type330 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAType? Type330 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudio? Type331 { get; set; } + public global::System.Collections.Generic.IList? Type331 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type332 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAIncludeItem? Type332 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type333 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudio? Type333 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection2? Type334 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudioInput? Type334 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnum? Type335 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudioInputNoiseReduction? Type335 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnum2? Type336 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTranscriptionSessionCreateResponseGAAudioInputTurnDetection2? Type336 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnumType? Type337 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnum? Type337 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnumTokenLimits? Type338 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnum2? Type338 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type339 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnumType? Type339 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type340 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTruncationEnumTokenLimits? Type340 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type341 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1ServerVad? Type341 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type342 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVad? Type342 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1DiscriminatorType? Type343 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1SemanticVadEagerness? Type343 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf? Type344 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1Discriminator? Type344 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.ToolChoiceFunctionType? Type345 { get; set; } + public global::tryAGI.OpenAI.Realtime.RealtimeTurnDetectionRealtimeTurnDetection1DiscriminatorType? Type345 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.ToolChoiceMCPType? Type346 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf? Type346 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageDurationType? Type347 { get; set; } + public global::tryAGI.OpenAI.Realtime.ToolChoiceFunctionType? Type347 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageTokensType? Type348 { get; set; } + public global::tryAGI.OpenAI.Realtime.ToolChoiceMCPType? Type348 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageTokensInputTokenDetails? Type349 { get; set; } + public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageDurationType? Type349 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.VoiceIdsOrCustomVoiceVariant2? Type350 { get; set; } + public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageTokensType? Type350 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.VoiceIdsSharedEnum? Type351 { get; set; } + public global::tryAGI.OpenAI.Realtime.TranscriptTextUsageTokensInputTokenDetails? Type351 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.ServerEvent? Type352 { get; set; } + public global::tryAGI.OpenAI.Realtime.VoiceIdsOrCustomVoiceVariant2? Type352 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.ServerEventDiscriminator? Type353 { get; set; } + public global::tryAGI.OpenAI.Realtime.VoiceIdsSharedEnum? Type353 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.ServerEventDiscriminatorType? Type354 { get; set; } + public global::tryAGI.OpenAI.Realtime.ServerEvent? Type354 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.Realtime.ServerEventDiscriminator? Type355 { get; set; } + /// + /// + /// + public global::tryAGI.OpenAI.Realtime.ServerEventDiscriminatorType? Type356 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType0 { get; set; } + public global::System.Collections.Generic.List? ListType0 { get; set; } /// /// /// - public global::tryAGI.OpenAI.Realtime.OneOf, global::tryAGI.OpenAI.Realtime.MCPToolFilter>? ListType1 { get; set; } + public global::System.Collections.Generic.List? ListType1 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType2 { get; set; } + public global::tryAGI.OpenAI.Realtime.OneOf, global::tryAGI.OpenAI.Realtime.MCPToolFilter>? ListType2 { get; set; } /// /// /// @@ -1497,42 +1505,46 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType12 { get; set; } + public global::System.Collections.Generic.List? ListType12 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.List? ListType13 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType13 { get; set; } + public global::System.Collections.Generic.List? ListType14 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType14 { get; set; } + public global::System.Collections.Generic.List? ListType15 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType15 { get; set; } + public global::System.Collections.Generic.List? ListType16 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType16 { get; set; } + public global::System.Collections.Generic.List? ListType17 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType17 { get; set; } + public global::System.Collections.Generic.List? ListType18 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType18 { get; set; } + public global::System.Collections.Generic.List? ListType19 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType19 { get; set; } + public global::System.Collections.Generic.List? ListType20 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType20 { get; set; } + public global::System.Collections.Generic.List? ListType21 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType21 { get; set; } + public global::System.Collections.Generic.List? ListType22 { get; set; } } } \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscription.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscription.g.cs index 1e7ad7ce..fc0130e6 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscription.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscription.g.cs @@ -9,7 +9,7 @@ namespace tryAGI.OpenAI.Realtime public sealed partial class AudioTranscription { /// - /// The model to use for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. + /// The model to use for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. /// [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.Realtime.JsonConverters.AnyOfJsonConverter))] @@ -23,6 +23,18 @@ public sealed partial class AudioTranscription [global::System.Text.Json.Serialization.JsonPropertyName("language")] public string? Language { get; set; } + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("keywords")] + public global::System.Collections.Generic.IList? Keywords { get; set; } + /// /// An optional text to guide the model's style or continue a previous audio
/// segment.
@@ -52,13 +64,19 @@ public sealed partial class AudioTranscription /// Initializes a new instance of the class. ///
/// - /// The model to use for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. + /// The model to use for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels. /// /// /// The language of the input audio. Supplying the input language in
/// [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format
/// will improve accuracy and latency. /// + /// + /// Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// + /// + /// Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + /// /// /// An optional text to guide the model's style or continue a previous audio
/// segment.
@@ -77,11 +95,15 @@ public sealed partial class AudioTranscription public AudioTranscription( global::tryAGI.OpenAI.Realtime.AnyOf? model, string? language, + global::System.Collections.Generic.IList? languages, + global::System.Collections.Generic.IList? keywords, string? prompt, global::tryAGI.OpenAI.Realtime.AudioTranscriptionDelay? delay) { this.Model = model; this.Language = language; + this.Languages = languages; + this.Keywords = keywords; this.Prompt = prompt; this.Delay = delay; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionModel.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionModel.g.cs index 40a9b8f6..48d66c40 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionModel.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionModel.g.cs @@ -27,10 +27,18 @@ public enum AudioTranscriptionModel /// /// /// + GptLiveTranscribe, + /// + /// + /// GptRealtimeWhisper, /// /// /// + GptTranscribe, + /// + /// + /// Whisper1, } @@ -50,7 +58,9 @@ public static string ToValueString(this AudioTranscriptionModel value) AudioTranscriptionModel.Gpt4oMiniTranscribe20251215 => "gpt-4o-mini-transcribe-2025-12-15", AudioTranscriptionModel.Gpt4oTranscribe => "gpt-4o-transcribe", AudioTranscriptionModel.Gpt4oTranscribeDiarize => "gpt-4o-transcribe-diarize", + AudioTranscriptionModel.GptLiveTranscribe => "gpt-live-transcribe", AudioTranscriptionModel.GptRealtimeWhisper => "gpt-realtime-whisper", + AudioTranscriptionModel.GptTranscribe => "gpt-transcribe", AudioTranscriptionModel.Whisper1 => "whisper-1", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -66,7 +76,9 @@ public static string ToValueString(this AudioTranscriptionModel value) "gpt-4o-mini-transcribe-2025-12-15" => AudioTranscriptionModel.Gpt4oMiniTranscribe20251215, "gpt-4o-transcribe" => AudioTranscriptionModel.Gpt4oTranscribe, "gpt-4o-transcribe-diarize" => AudioTranscriptionModel.Gpt4oTranscribeDiarize, + "gpt-live-transcribe" => AudioTranscriptionModel.GptLiveTranscribe, "gpt-realtime-whisper" => AudioTranscriptionModel.GptRealtimeWhisper, + "gpt-transcribe" => AudioTranscriptionModel.GptTranscribe, "whisper-1" => AudioTranscriptionModel.Whisper1, _ => null, }; diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponse.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponse.g.cs index 64a02616..b261d825 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponse.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponse.g.cs @@ -9,7 +9,7 @@ namespace tryAGI.OpenAI.Realtime public sealed partial class AudioTranscriptionResponse { /// - /// The model used for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. + /// The model used for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. /// [global::System.Text.Json.Serialization.JsonPropertyName("model")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.Realtime.JsonConverters.AnyOfJsonConverter))] @@ -21,6 +21,12 @@ public sealed partial class AudioTranscriptionResponse [global::System.Text.Json.Serialization.JsonPropertyName("language")] public string? Language { get; set; } + /// + /// The possible input audio languages configured for transcription, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + /// /// The prompt configured for input audio transcription, when present. /// @@ -37,11 +43,14 @@ public sealed partial class AudioTranscriptionResponse /// Initializes a new instance of the class. /// /// - /// The model used for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. + /// The model used for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. /// /// /// The language of the input audio. /// + /// + /// The possible input audio languages configured for transcription, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. + /// /// /// The prompt configured for input audio transcription, when present. /// @@ -51,10 +60,12 @@ public sealed partial class AudioTranscriptionResponse public AudioTranscriptionResponse( global::tryAGI.OpenAI.Realtime.AnyOf? model, string? language, + global::System.Collections.Generic.IList? languages, string? prompt) { this.Model = model; this.Language = language; + this.Languages = languages; this.Prompt = prompt; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponseModel.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponseModel.g.cs index c59ab8b3..88694075 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponseModel.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.AudioTranscriptionResponseModel.g.cs @@ -27,10 +27,18 @@ public enum AudioTranscriptionResponseModel /// /// /// + GptLiveTranscribe, + /// + /// + /// GptRealtimeWhisper, /// /// /// + GptTranscribe, + /// + /// + /// Whisper1, } @@ -50,7 +58,9 @@ public static string ToValueString(this AudioTranscriptionResponseModel value) AudioTranscriptionResponseModel.Gpt4oMiniTranscribe20251215 => "gpt-4o-mini-transcribe-2025-12-15", AudioTranscriptionResponseModel.Gpt4oTranscribe => "gpt-4o-transcribe", AudioTranscriptionResponseModel.Gpt4oTranscribeDiarize => "gpt-4o-transcribe-diarize", + AudioTranscriptionResponseModel.GptLiveTranscribe => "gpt-live-transcribe", AudioTranscriptionResponseModel.GptRealtimeWhisper => "gpt-realtime-whisper", + AudioTranscriptionResponseModel.GptTranscribe => "gpt-transcribe", AudioTranscriptionResponseModel.Whisper1 => "whisper-1", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -66,7 +76,9 @@ public static string ToValueString(this AudioTranscriptionResponseModel value) "gpt-4o-mini-transcribe-2025-12-15" => AudioTranscriptionResponseModel.Gpt4oMiniTranscribe20251215, "gpt-4o-transcribe" => AudioTranscriptionResponseModel.Gpt4oTranscribe, "gpt-4o-transcribe-diarize" => AudioTranscriptionResponseModel.Gpt4oTranscribeDiarize, + "gpt-live-transcribe" => AudioTranscriptionResponseModel.GptLiveTranscribe, "gpt-realtime-whisper" => AudioTranscriptionResponseModel.GptRealtimeWhisper, + "gpt-transcribe" => AudioTranscriptionResponseModel.GptTranscribe, "whisper-1" => AudioTranscriptionResponseModel.Whisper1, _ => null, }; diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs index 61966cf0..dbc25455 100644 --- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.RealtimeServerEventConversationItemInputAudioTranscriptionCompleted.g.cs @@ -52,6 +52,12 @@ public sealed partial class RealtimeServerEventConversationItemInputAudioTranscr [global::System.Text.Json.Serialization.JsonRequired] public required string Transcript { get; set; } + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("languages")] + public global::System.Collections.Generic.IList? Languages { get; set; } + /// /// /// @@ -94,6 +100,9 @@ public sealed partial class RealtimeServerEventConversationItemInputAudioTranscr /// The event type, must be
/// `conversation.item.input_audio_transcription.completed`. /// + /// + /// The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected. + /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] @@ -105,6 +114,7 @@ public RealtimeServerEventConversationItemInputAudioTranscriptionCompleted( string transcript, global::tryAGI.OpenAI.Realtime.OneOf usage, global::tryAGI.OpenAI.Realtime.RealtimeServerEventConversationItemInputAudioTranscriptionCompletedType type, + global::System.Collections.Generic.IList? languages, global::System.Collections.Generic.IList? logprobs) { this.EventId = eventId ?? throw new global::System.ArgumentNullException(nameof(eventId)); @@ -112,6 +122,7 @@ public RealtimeServerEventConversationItemInputAudioTranscriptionCompleted( this.ItemId = itemId ?? throw new global::System.ArgumentNullException(nameof(itemId)); this.ContentIndex = contentIndex; this.Transcript = transcript ?? throw new global::System.ArgumentNullException(nameof(transcript)); + this.Languages = languages; this.Logprobs = logprobs; this.Usage = usage; } diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.TranscriptionLanguage.Json.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.TranscriptionLanguage.Json.g.cs new file mode 100644 index 00000000..940fd31d --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.TranscriptionLanguage.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace tryAGI.OpenAI.Realtime +{ + public sealed partial class TranscriptionLanguage + { + /// + /// 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.Realtime.RealtimeSourceGenerationContext.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.Realtime.RealtimeSourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.Realtime.TranscriptionLanguage? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::tryAGI.OpenAI.Realtime.TranscriptionLanguage), + jsonSerializerContext) as global::tryAGI.OpenAI.Realtime.TranscriptionLanguage; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::tryAGI.OpenAI.Realtime.TranscriptionLanguage? FromJson( + string json) + { + return FromJson( + json, + global::tryAGI.OpenAI.Realtime.RealtimeSourceGenerationContext.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.Realtime.TranscriptionLanguage? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::tryAGI.OpenAI.Realtime.RealtimeSourceGenerationContext.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.Realtime.TranscriptionLanguage), + jsonSerializerContext).ConfigureAwait(false)) as global::tryAGI.OpenAI.Realtime.TranscriptionLanguage; + } + + /// + /// 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.Realtime.RealtimeSourceGenerationContext.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.Realtime.RealtimeSourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.TranscriptionLanguage.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.TranscriptionLanguage.g.cs new file mode 100644 index 00000000..a54352ef --- /dev/null +++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.Realtime.Models.TranscriptionLanguage.g.cs @@ -0,0 +1,47 @@ + +#nullable enable + +namespace tryAGI.OpenAI.Realtime +{ + /// + /// A language detected in transcribed audio. + /// + public sealed partial class TranscriptionLanguage + { + /// + /// The code of a language detected in the audio. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("code")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string Code { 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 code of a language detected in the audio. + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public TranscriptionLanguage( + string code) + { + this.Code = code ?? throw new global::System.ArgumentNullException(nameof(code)); + } + + /// + /// Initializes a new instance of the class. + /// + public TranscriptionLanguage() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/tryAGI.OpenAI/asyncapi.json b/src/libs/tryAGI.OpenAI/asyncapi.json index 5191a59f..e69ed05d 100644 --- a/src/libs/tryAGI.OpenAI/asyncapi.json +++ b/src/libs/tryAGI.OpenAI/asyncapi.json @@ -1300,7 +1300,7 @@ "type": "object", "properties": { "model": { - "description": "The model to use for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels.\n", + "description": "The model to use for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you need diarization with speaker labels.\n", "anyOf": [ { "type": "string" @@ -1309,6 +1309,8 @@ "type": "string", "enum": [ "whisper-1", + "gpt-transcribe", + "gpt-live-transcribe", "gpt-4o-mini-transcribe", "gpt-4o-mini-transcribe-2025-12-15", "gpt-4o-transcribe", @@ -1322,6 +1324,21 @@ "type": "string", "description": "The language of the input audio. Supplying the input language in\n[ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format\nwill improve accuracy and latency.\n" }, + "languages": { + "type": "array", + "description": "Possible languages of the input audio, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. Supported by `gpt-transcribe` and `gpt-live-transcribe`.\n", + "minItems": 1, + "items": { + "type": "string" + } + }, + "keywords": { + "type": "array", + "description": "Words or phrases to guide transcription of the input audio. Supported by `gpt-transcribe` and `gpt-live-transcribe`.\n", + "items": { + "type": "string" + } + }, "prompt": { "type": "string", "description": "An optional text to guide the model's style or continue a previous audio\nsegment.\nFor `whisper-1`, the [prompt is a list of keywords](/docs/guides/speech-to-text#prompting).\nFor `gpt-4o-transcribe` models (excluding `gpt-4o-transcribe-diarize`), the prompt is a free text string, for example \"expect words related to technology\".\nPrompt is not supported with `gpt-realtime-whisper` in GA Realtime sessions.\n" @@ -1343,7 +1360,7 @@ "type": "object", "properties": { "model": { - "description": "The model used for transcription. Current options are `whisper-1`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`.\n", + "description": "The model used for transcription. Current options are `whisper-1`, `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`.\n", "anyOf": [ { "type": "string" @@ -1352,6 +1369,8 @@ "type": "string", "enum": [ "whisper-1", + "gpt-transcribe", + "gpt-live-transcribe", "gpt-4o-mini-transcribe", "gpt-4o-mini-transcribe-2025-12-15", "gpt-4o-transcribe", @@ -1365,6 +1384,14 @@ "type": "string", "description": "The language of the input audio.\n" }, + "languages": { + "type": "array", + "description": "The possible input audio languages configured for transcription, in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.\n", + "minItems": 1, + "items": { + "type": "string" + } + }, "prompt": { "type": "string", "description": "The prompt configured for input audio transcription, when present.\n" @@ -3513,6 +3540,13 @@ "type": "string", "description": "The transcribed text." }, + "languages": { + "type": "array", + "description": "The languages detected in the audio. Returned by `gpt-transcribe`. An empty array indicates that no language could be reliably detected.\n", + "items": { + "$ref": "#/components/schemas/TranscriptionLanguage" + } + }, "logprobs": { "anyOf": [ { @@ -6487,6 +6521,19 @@ "total_tokens" ] }, + "TranscriptionLanguage": { + "type": "object", + "description": "A language detected in transcribed audio.", + "properties": { + "code": { + "type": "string", + "description": "The code of a language detected in the audio." + } + }, + "required": [ + "code" + ] + }, "VoiceIdsOrCustomVoice": { "title": "Voice", "description": "A built-in voice name or a custom voice reference.\n", diff --git a/src/libs/tryAGI.OpenAI/openapi.yaml b/src/libs/tryAGI.OpenAI/openapi.yaml index 73aa312a..b1e0b8a4 100644 --- a/src/libs/tryAGI.OpenAI/openapi.yaml +++ b/src/libs/tryAGI.OpenAI/openapi.yaml @@ -45624,10 +45624,28 @@ webhooks: Non-200 status codes will be retried. - realtime_call_incoming: + live_call_incoming: post: description: | - Sent when Realtime API Receives a incoming SIP call. + Sent when an incoming API SIP session is available for Live acceptance. + requestBody: + description: The event payload sent by the API. + content: + application/json: + schema: + $ref: '#/components/schemas/WebhookLiveCallIncoming' + responses: + '200': + description: > + Return a 200 status code to acknowledge receipt of the event. + Non-200 + + status codes will be retried. + realtime_call_incoming: + post: + description: > + Sent when an incoming API SIP session is available for Realtime + acceptance. requestBody: description: The event payload sent by the API. content: @@ -46398,15 +46416,18 @@ components: model: description: > The model to use for transcription. Current options are `whisper-1`, - `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, - `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and - `gpt-realtime-whisper`. Use `gpt-4o-transcribe-diarize` when you - need diarization with speaker labels. + `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, + `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, + `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. Use + `gpt-4o-transcribe-diarize` when you need diarization with speaker + labels. anyOf: - type: string - type: string enum: - whisper-1 + - gpt-transcribe + - gpt-live-transcribe - gpt-4o-mini-transcribe - gpt-4o-mini-transcribe-2025-12-15 - gpt-4o-transcribe @@ -46421,6 +46442,22 @@ components: (e.g. `en`) format will improve accuracy and latency. + languages: + type: array + description: > + Possible languages of the input audio, in + [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) + format. Supported by `gpt-transcribe` and `gpt-live-transcribe`. + minItems: 1 + items: + type: string + keywords: + type: array + description: > + Words or phrases to guide transcription of the input audio. + Supported by `gpt-transcribe` and `gpt-live-transcribe`. + items: + type: string prompt: type: string description: > @@ -46460,14 +46497,16 @@ components: model: description: > The model used for transcription. Current options are `whisper-1`, - `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, - `gpt-4o-transcribe`, `gpt-4o-transcribe-diarize`, and - `gpt-realtime-whisper`. + `gpt-transcribe`, `gpt-live-transcribe`, `gpt-4o-mini-transcribe`, + `gpt-4o-mini-transcribe-2025-12-15`, `gpt-4o-transcribe`, + `gpt-4o-transcribe-diarize`, and `gpt-realtime-whisper`. anyOf: - type: string - type: string enum: - whisper-1 + - gpt-transcribe + - gpt-live-transcribe - gpt-4o-mini-transcribe - gpt-4o-mini-transcribe-2025-12-15 - gpt-4o-transcribe @@ -46477,6 +46516,15 @@ components: type: string description: | The language of the input audio. + languages: + type: array + description: > + The possible input audio languages configured for transcription, in + [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) + format. + minItems: 1 + items: + type: string prompt: type: string description: | @@ -54350,16 +54398,18 @@ components: format: binary model: description: > - ID of the model to use. The options are `gpt-4o-transcribe`, - `gpt-4o-mini-transcribe`, `gpt-4o-mini-transcribe-2025-12-15`, - `whisper-1` (which is powered by our open source Whisper V2 model), - and `gpt-4o-transcribe-diarize`. + ID of the model to use. The options are `gpt-transcribe`, + `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, + `gpt-4o-mini-transcribe-2025-12-15`, `whisper-1` (which is powered + by our open source Whisper V2 model), and + `gpt-4o-transcribe-diarize`. example: gpt-4o-transcribe anyOf: - type: string - type: string enum: - whisper-1 + - gpt-transcribe - gpt-4o-transcribe - gpt-4o-mini-transcribe - gpt-4o-mini-transcribe-2025-12-15 @@ -54372,6 +54422,22 @@ components: [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency. type: string + languages: + description: > + Possible languages of the input audio, in + [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) + format. Supported by `gpt-transcribe`. + type: array + minItems: 1 + items: + type: string + keywords: + description: > + Words or phrases to guide transcription of the input audio. + Supported by `gpt-transcribe`. + type: array + items: + type: string prompt: description: > An optional text to guide the model's style or continue a previous @@ -54574,6 +54640,14 @@ components: text: type: string description: The transcribed text. + languages: + type: array + description: > + The languages detected in the audio. Returned by `gpt-transcribe`. + An empty array indicates that no language could be reliably + detected. + items: + $ref: '#/components/schemas/TranscriptionLanguage' logprobs: type: array optional: true @@ -65343,6 +65417,14 @@ components: transcript: type: string description: The transcribed text. + languages: + type: array + description: > + The languages detected in the audio. Returned by `gpt-transcribe`. + An empty array indicates that no language could be reliably + detected. + items: + $ref: '#/components/schemas/TranscriptionLanguage' logprobs: anyOf: - type: array @@ -69618,6 +69700,14 @@ components: transcript: type: string description: The transcribed text. + languages: + type: array + description: > + The languages detected in the audio. Returned by `gpt-transcribe`. + An empty array indicates that no language could be reliably + detected. + items: + $ref: '#/components/schemas/TranscriptionLanguage' logprobs: anyOf: - type: array @@ -80381,6 +80471,14 @@ components: type: string description: | The text that was transcribed. + languages: + type: array + description: > + The languages detected in the audio. Returned by `gpt-transcribe`. + An empty array indicates that no language could be reliably + detected. + items: + $ref: '#/components/schemas/TranscriptionLanguage' logprobs: type: array description: > @@ -80598,6 +80696,15 @@ components: enum: - logprobs default: [] + TranscriptionLanguage: + type: object + description: A language detected in transcribed audio. + properties: + code: + type: string + description: The code of a language detected in the audio. + required: + - code TranscriptionSegment: type: object properties: @@ -83591,11 +83698,107 @@ components: "id": "ftjob_abc123" } } + WebhookLiveCallIncoming: + type: object + title: live.call.incoming + description: > + Sent when an incoming API SIP session is available for Live acceptance. + The + + same pending session can also emit `realtime.call.incoming`; the first + + successful Realtime or Live accept endpoint selects the runtime surface. + required: + - created_at + - id + - data + - type + properties: + created_at: + type: integer + format: unixtime + description: | + The Unix timestamp (in seconds) of when the event was created. + id: + type: string + description: | + The unique ID of the event. + data: + type: object + description: | + Event data payload. + required: + - session_id + - sip_headers + properties: + session_id: + type: string + description: > + The Transceiver `rtc_...` ID of the pending SIP session. The + same + + value appears as `call_id` in `realtime.call.incoming`. + sip_headers: + type: array + description: | + Headers from the SIP Invite. + items: + type: object + description: | + A header from the SIP Invite. + required: + - name + - value + properties: + name: + type: string + description: | + Name of the SIP Header. + value: + type: string + description: | + Value of the SIP Header. + object: + type: string + description: | + The object of the event. Always `event`. + enum: + - event + x-stainless-const: true + type: + type: string + description: | + The type of the event. Always `live.call.incoming`. + enum: + - live.call.incoming + x-stainless-const: true + x-oaiMeta: + name: live.call.incoming + group: webhook-events + example: | + { + "id": "evt_abc123", + "type": "live.call.incoming", + "created_at": 1719168000, + "data": { + "session_id": "rtc_479a275623b54bdb9b6fbae2f7cbd408", + "sip_headers": [ + {"name": "Max-Forwards", "value": "63"}, + {"name": "CSeq", "value": "851287 INVITE"}, + {"name": "Content-Type", "value": "application/sdp"}, + ] + } + } WebhookRealtimeCallIncoming: type: object title: realtime.call.incoming - description: | - Sent when Realtime API Receives a incoming SIP call. + description: > + Sent when an incoming API SIP session is available for Realtime + acceptance. + + The same pending session can also emit `live.call.incoming`; the first + + successful Realtime or Live accept endpoint selects the runtime surface. required: - created_at - id @@ -83622,8 +83825,11 @@ components: properties: call_id: type: string - description: | - The unique ID of this call. + description: > + The Transceiver `rtc_...` ID of the pending SIP session. The + same + + value appears as `session_id` in `live.call.incoming`. sip_headers: type: array description: | @@ -101830,6 +102036,9 @@ x-oaiMeta: - type: object key: WebhookRealtimeCallIncoming path: + - type: object + key: WebhookLiveCallIncoming + path: - id: images-streaming title: Image Streaming description: >