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 2658754d..9e7113e1 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI..JsonSerializerContext.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI..JsonSerializerContext.g.cs
@@ -353,8 +353,6 @@ namespace tryAGI.OpenAI
typeof(global::tryAGI.OpenAI.JsonConverters.ImageDetailNullableJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.InputFileContentTypeJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.InputFileContentTypeNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.FileInputDetailJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.FileInputDetailNullableJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.OutputTextContentTypeJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.OutputTextContentTypeNullableJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.FileCitationBodyTypeJsonConverter),
@@ -853,8 +851,6 @@ namespace tryAGI.OpenAI
typeof(global::tryAGI.OpenAI.JsonConverters.DetailEnumNullableJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.InputFileContentParamTypeJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.InputFileContentParamTypeNullableJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.FileDetailEnumJsonConverter),
- typeof(global::tryAGI.OpenAI.JsonConverters.FileDetailEnumNullableJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.ToolSearchCallItemParamTypeJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.ToolSearchCallItemParamTypeNullableJsonConverter),
typeof(global::tryAGI.OpenAI.JsonConverters.ToolSearchOutputItemParamTypeJsonConverter),
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileDetailEnum.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileDetailEnum.g.cs
deleted file mode 100644
index c7699059..00000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileDetailEnum.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class FileDetailEnumJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.FileDetailEnum 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.FileDetailEnumExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.FileDetailEnum)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.FileDetailEnum);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.FileDetailEnum value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::tryAGI.OpenAI.FileDetailEnumExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileDetailEnumNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileDetailEnumNullable.g.cs
deleted file mode 100644
index 6706f985..00000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileDetailEnumNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class FileDetailEnumNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.FileDetailEnum? 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.FileDetailEnumExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.FileDetailEnum)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.FileDetailEnum?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.FileDetailEnum? 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.FileDetailEnumExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileInputDetail.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileInputDetail.g.cs
deleted file mode 100644
index f71e817b..00000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileInputDetail.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class FileInputDetailJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.FileInputDetail 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.FileInputDetailExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.FileInputDetail)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.FileInputDetail);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.FileInputDetail value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::tryAGI.OpenAI.FileInputDetailExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileInputDetailNullable.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileInputDetailNullable.g.cs
deleted file mode 100644
index 70fdcf31..00000000
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonConverters.FileInputDetailNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace tryAGI.OpenAI.JsonConverters
-{
- ///
- public sealed class FileInputDetailNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::tryAGI.OpenAI.FileInputDetail? 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.FileInputDetailExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::tryAGI.OpenAI.FileInputDetail)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::tryAGI.OpenAI.FileInputDetail?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::tryAGI.OpenAI.FileInputDetail? 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.FileInputDetailExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs
index 3dbb50cb..6cf98ac1 100644
--- a/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs
+++ b/src/libs/tryAGI.OpenAI/Generated/tryAGI.OpenAI.JsonSerializerContextTypes.g.cs
@@ -2328,8867 +2328,8859 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::tryAGI.OpenAI.FileInputDetail? Type575 { get; set; }
+ public global::tryAGI.OpenAI.InputContentDiscriminator? Type575 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputContentDiscriminator? Type576 { get; set; }
+ public global::tryAGI.OpenAI.OutputContent? Type576 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputContent? Type577 { get; set; }
+ public global::tryAGI.OpenAI.OutputTextContent? Type577 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputTextContent? Type578 { get; set; }
+ public global::tryAGI.OpenAI.OutputTextContentType? Type578 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputTextContentType? Type579 { get; set; }
+ public global::System.Collections.Generic.IList? Type579 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type580 { get; set; }
+ public global::tryAGI.OpenAI.Annotation? Type580 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Annotation? Type581 { get; set; }
+ public global::tryAGI.OpenAI.FileCitationBody? Type581 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileCitationBody? Type582 { get; set; }
+ public global::tryAGI.OpenAI.FileCitationBodyType? Type582 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileCitationBodyType? Type583 { get; set; }
+ public global::tryAGI.OpenAI.UrlCitationBody? Type583 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UrlCitationBody? Type584 { get; set; }
+ public global::tryAGI.OpenAI.UrlCitationBodyType? Type584 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.UrlCitationBodyType? Type585 { get; set; }
+ public global::tryAGI.OpenAI.ContainerFileCitationBody? Type585 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerFileCitationBody? Type586 { get; set; }
+ public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type586 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerFileCitationBodyType? Type587 { get; set; }
+ public global::tryAGI.OpenAI.FilePath? Type587 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FilePath? Type588 { get; set; }
+ public global::tryAGI.OpenAI.FilePathType? Type588 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FilePathType? Type589 { get; set; }
+ public global::tryAGI.OpenAI.AnnotationDiscriminator? Type589 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnnotationDiscriminator? Type590 { get; set; }
+ public global::System.Collections.Generic.IList? Type590 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type591 { get; set; }
+ public global::tryAGI.OpenAI.LogProb? Type591 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LogProb? Type592 { get; set; }
+ public global::System.Collections.Generic.IList? Type592 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type593 { get; set; }
+ public global::tryAGI.OpenAI.TopLogProb? Type593 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TopLogProb? Type594 { get; set; }
+ public global::tryAGI.OpenAI.RefusalContent? Type594 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RefusalContent? Type595 { get; set; }
+ public global::tryAGI.OpenAI.RefusalContentType? Type595 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RefusalContentType? Type596 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningTextContent? Type596 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningTextContent? Type597 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningTextContentType? Type597 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningTextContentType? Type598 { get; set; }
+ public global::tryAGI.OpenAI.OutputContentDiscriminator? Type598 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputContentDiscriminator? Type599 { get; set; }
+ public global::tryAGI.OpenAI.ConversationItem? Type599 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationItem? Type600 { get; set; }
+ public global::tryAGI.OpenAI.Message? Type600 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Message? Type601 { get; set; }
+ public global::tryAGI.OpenAI.MessageType? Type601 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageType? Type602 { get; set; }
+ public global::tryAGI.OpenAI.MessageStatus? Type602 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageStatus? Type603 { get; set; }
+ public global::tryAGI.OpenAI.MessageRole? Type603 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageRole? Type604 { get; set; }
+ public global::System.Collections.Generic.IList? Type604 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type605 { get; set; }
+ public global::tryAGI.OpenAI.ContentItem3? Type605 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContentItem3? Type606 { get; set; }
+ public global::tryAGI.OpenAI.TextContent? Type606 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextContent? Type607 { get; set; }
+ public global::tryAGI.OpenAI.TextContentType? Type607 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextContentType? Type608 { get; set; }
+ public global::tryAGI.OpenAI.SummaryTextContent? Type608 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SummaryTextContent? Type609 { get; set; }
+ public global::tryAGI.OpenAI.SummaryTextContentType? Type609 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SummaryTextContentType? Type610 { get; set; }
+ public global::tryAGI.OpenAI.ComputerScreenshotContent? Type610 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerScreenshotContent? Type611 { get; set; }
+ public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type611 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerScreenshotContentType? Type612 { get; set; }
+ public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type612 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageContentItemDiscriminator? Type613 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallResource? Type613 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallResource? Type614 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCall? Type614 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCall? Type615 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallType? Type615 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallType? Type616 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallStatus? Type616 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallStatus? Type617 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type617 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallResourceVariant2? Type618 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallOutputResource? Type618 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallOutputResource? Type619 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallOutput? Type619 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallOutput? Type620 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type620 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallOutputType? Type621 { get; set; }
+ public global::tryAGI.OpenAI.OneOf>? Type621 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf>? Type622 { get; set; }
+ public global::System.Collections.Generic.IList? Type622 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type623 { get; set; }
+ public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutput? Type623 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutput? Type624 { get; set; }
+ public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminator? Type624 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionAndCustomToolCallOutputDiscriminator? Type625 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type625 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallOutputStatus? Type626 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type626 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolCallOutputResourceVariant2? Type627 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchToolCall? Type627 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchToolCall? Type628 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchToolCallType? Type628 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchToolCallType? Type629 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type629 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchToolCallStatus? Type630 { get; set; }
+ public global::System.Collections.Generic.IList? Type630 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type631 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchToolCallResultsVariant1Item? Type631 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchToolCallResultsVariant1Item? Type632 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type632 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type633 { get; set; }
+ public float? Type633 { get; set; }
///
///
///
- public float? Type634 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCall? Type634 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCall? Type635 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallType? Type635 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallType? Type636 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type636 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallStatus? Type637 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallAction? Type637 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallAction? Type638 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearch? Type638 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearch? Type639 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearchType? Type639 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearchType? Type640 { get; set; }
+ public global::System.Collections.Generic.IList? Type640 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type641 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type641 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearchSource? Type642 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type642 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionSearchSourceType? Type643 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type643 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionOpenPage? Type644 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type644 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionOpenPageType? Type645 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionFind? Type645 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionFind? Type646 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchActionFindType? Type646 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchActionFindType? Type647 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type647 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolCallActionDiscriminator? Type648 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolCall? Type648 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolCall? Type649 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolCallType? Type649 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolCallType? Type650 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type650 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolCallStatus? Type651 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchCall? Type651 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchCall? Type652 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchCallType? Type652 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchCallType? Type653 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchExecutionType? Type653 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchExecutionType? Type654 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallStatus? Type654 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallStatus? Type655 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchOutput? Type655 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchOutput? Type656 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchOutputType? Type656 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchOutputType? Type657 { get; set; }
+ public global::System.Collections.Generic.IList? Type657 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type658 { get; set; }
+ public global::tryAGI.OpenAI.Tool? Type658 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Tool? Type659 { get; set; }
+ public global::tryAGI.OpenAI.FunctionTool? Type659 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionTool? Type660 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolType? Type660 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolType? Type661 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchTool? Type661 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchTool? Type662 { get; set; }
+ public global::tryAGI.OpenAI.FileSearchToolType? Type662 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileSearchToolType? Type663 { get; set; }
+ public global::tryAGI.OpenAI.RankingOptions? Type663 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RankingOptions? Type664 { get; set; }
+ public global::tryAGI.OpenAI.RankerVersionType? Type664 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.RankerVersionType? Type665 { get; set; }
+ public global::tryAGI.OpenAI.HybridSearchOptions? Type665 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.HybridSearchOptions? Type666 { get; set; }
+ public global::tryAGI.OpenAI.Filters2? Type666 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Filters2? Type667 { get; set; }
+ public global::tryAGI.OpenAI.ComputerTool? Type667 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerTool? Type668 { get; set; }
+ public global::tryAGI.OpenAI.ComputerToolType? Type668 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerToolType? Type669 { get; set; }
+ public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type669 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerUsePreviewTool? Type670 { get; set; }
+ public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type670 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerUsePreviewToolType? Type671 { get; set; }
+ public global::tryAGI.OpenAI.ComputerEnvironment? Type671 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerEnvironment? Type672 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchTool? Type672 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchTool? Type673 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolType? Type673 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolType? Type674 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolFilters2? Type674 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolFilters2? Type675 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type675 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1? Type676 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type676 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchApproximateLocationWebSearchApproximateLocation1Type? Type677 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type677 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchToolSearchContextSize? Type678 { get; set; }
+ public global::tryAGI.OpenAI.MCPTool? Type678 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPTool? Type679 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolType? Type679 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolType? Type680 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolConnectorId? Type680 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolConnectorId? Type681 { get; set; }
+ public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? Type681 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf, global::tryAGI.OpenAI.MCPToolFilter>? Type682 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolFilter? Type682 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolFilter? Type683 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type683 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type684 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum? Type684 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum? Type685 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum2? Type685 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolRequireApprovalVariant1Enum2? Type686 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenTool? Type686 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenTool? Type687 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolType? Type687 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolType? Type688 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type688 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type689 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolModel? Type689 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolModel? Type690 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolQuality? Type690 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolQuality? Type691 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolSize? Type691 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolSize? Type692 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type692 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolOutputFormat? Type693 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolModeration? Type693 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolModeration? Type694 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolBackground? Type694 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolBackground? Type695 { get; set; }
+ public global::tryAGI.OpenAI.InputFidelity? Type695 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputFidelity? Type696 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type696 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenToolInputImageMask? Type697 { get; set; }
+ public global::tryAGI.OpenAI.ImageGenActionEnum? Type697 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ImageGenActionEnum? Type698 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolParam? Type698 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolParam? Type699 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolParamType? Type699 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolParamType? Type700 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellToolParam? Type700 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellToolParam? Type701 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellToolParamType? Type701 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellToolParamType? Type702 { get; set; }
+ public global::tryAGI.OpenAI.EnvironmentVariant1? Type702 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EnvironmentVariant1? Type703 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParam? Type703 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParam? Type704 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParamType? Type704 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParamType? Type705 { get; set; }
+ public global::tryAGI.OpenAI.NetworkPolicy3? Type705 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NetworkPolicy3? Type706 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type706 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParamNetworkPolicyDiscriminator? Type707 { get; set; }
+ public global::System.Collections.Generic.IList? Type707 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type708 { get; set; }
+ public global::tryAGI.OpenAI.SkillsItem2? Type708 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SkillsItem2? Type709 { get; set; }
+ public global::tryAGI.OpenAI.SkillReferenceParam? Type709 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SkillReferenceParam? Type710 { get; set; }
+ public global::tryAGI.OpenAI.SkillReferenceParamType? Type710 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SkillReferenceParamType? Type711 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillParam? Type711 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillParam? Type712 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillParamType? Type712 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillParamType? Type713 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillSourceParam? Type713 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillSourceParam? Type714 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type714 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillSourceParamType? Type715 { get; set; }
+ public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type715 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InlineSkillSourceParamMediaType? Type716 { get; set; }
+ public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type716 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerAutoParamSkillDiscriminator? Type717 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentParam? Type717 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentParam? Type718 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type718 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentParamType? Type719 { get; set; }
+ public global::System.Collections.Generic.IList? Type719 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type720 { get; set; }
+ public global::tryAGI.OpenAI.LocalSkillParam? Type720 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalSkillParam? Type721 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceParam? Type721 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceParam? Type722 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceParamType? Type722 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceParamType? Type723 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type723 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellToolParamEnvironmentVariant1Discriminator? Type724 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolParam? Type724 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolParam? Type725 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolParamType? Type725 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolParamType? Type726 { get; set; }
+ public global::tryAGI.OpenAI.Format2? Type726 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Format2? Type727 { get; set; }
+ public global::tryAGI.OpenAI.CustomTextFormatParam? Type727 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomTextFormatParam? Type728 { get; set; }
+ public global::tryAGI.OpenAI.CustomTextFormatParamType? Type728 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomTextFormatParamType? Type729 { get; set; }
+ public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type729 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomGrammarFormatParam? Type730 { get; set; }
+ public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type730 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomGrammarFormatParamType? Type731 { get; set; }
+ public global::tryAGI.OpenAI.GrammarSyntax1? Type731 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GrammarSyntax1? Type732 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type732 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolParamFormatDiscriminator? Type733 { get; set; }
+ public global::tryAGI.OpenAI.NamespaceToolParam? Type733 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NamespaceToolParam? Type734 { get; set; }
+ public global::tryAGI.OpenAI.NamespaceToolParamType? Type734 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NamespaceToolParamType? Type735 { get; set; }
+ public global::System.Collections.Generic.IList? Type735 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type736 { get; set; }
+ public global::tryAGI.OpenAI.ToolsItem13? Type736 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolsItem13? Type737 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolParam? Type737 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolParam? Type738 { get; set; }
+ public global::tryAGI.OpenAI.FunctionToolParamType? Type738 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionToolParamType? Type739 { get; set; }
+ public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type739 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NamespaceToolParamToolDiscriminator? Type740 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchToolParam? Type740 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchToolParam? Type741 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchToolParamType? Type741 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchToolParamType? Type742 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchPreviewTool? Type742 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchPreviewTool? Type743 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type743 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchPreviewToolType? Type744 { get; set; }
+ public global::tryAGI.OpenAI.ApproximateLocation? Type744 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApproximateLocation? Type745 { get; set; }
+ public global::tryAGI.OpenAI.ApproximateLocationType? Type745 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApproximateLocationType? Type746 { get; set; }
+ public global::tryAGI.OpenAI.SearchContextSize? Type746 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SearchContextSize? Type747 { get; set; }
+ public global::System.Collections.Generic.IList? Type747 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type748 { get; set; }
+ public global::tryAGI.OpenAI.SearchContentType? Type748 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SearchContentType? Type749 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolParam? Type749 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolParam? Type750 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type750 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolParamType? Type751 { get; set; }
+ public global::tryAGI.OpenAI.ToolDiscriminator? Type751 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolDiscriminator? Type752 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallOutputStatusEnum? Type752 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallOutputStatusEnum? Type753 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningItem? Type753 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningItem? Type754 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningItemType? Type754 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningItemType? Type755 { get; set; }
+ public global::System.Collections.Generic.IList? Type755 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type756 { get; set; }
+ public global::System.Collections.Generic.IList? Type756 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type757 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningItemStatus? Type757 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningItemStatus? Type758 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolCall? Type758 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolCall? Type759 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolCallType? Type759 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolCallType? Type760 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellExecAction? Type760 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellExecAction? Type761 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellExecActionType? Type761 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellExecActionType? Type762 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolCallStatus? Type762 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolCallStatus? Type763 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolCallOutput? Type763 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolCallOutput? Type764 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolCallOutputType? Type764 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolCallOutputType? Type765 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellToolCallOutputStatus2? Type765 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellToolCallOutputStatus2? Type766 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCall? Type766 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCall? Type767 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallType? Type767 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallType? Type768 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellAction? Type768 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellAction? Type769 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellCallStatus? Type769 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellCallStatus? Type770 { get; set; }
+ public global::tryAGI.OpenAI.EnvironmentVariant12? Type770 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EnvironmentVariant12? Type771 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentResource? Type771 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentResource? Type772 { get; set; }
+ public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type772 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalEnvironmentResourceType? Type773 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceResource? Type773 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceResource? Type774 { get; set; }
+ public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type774 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContainerReferenceResourceType? Type775 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type775 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallEnvironmentVariant1Discriminator? Type776 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutput? Type776 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutput? Type777 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type777 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputType? Type778 { get; set; }
+ public global::tryAGI.OpenAI.LocalShellCallOutputStatusEnum? Type778 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.LocalShellCallOutputStatusEnum? Type779 { get; set; }
+ public global::System.Collections.Generic.IList? Type779 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type780 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type780 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputContent? Type781 { get; set; }
+ public global::tryAGI.OpenAI.Outcome? Type781 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Outcome? Type782 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type782 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcome? Type783 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type783 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeType? Type784 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type784 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcome? Type785 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type785 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeType? Type786 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type786 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputContentOutcomeDiscriminator? Type787 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCall? Type787 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCall? Type788 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type788 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallType? Type789 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type789 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallStatus? Type790 { get; set; }
+ public global::tryAGI.OpenAI.Operation? Type790 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Operation? Type791 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type791 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperation? Type792 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type792 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationType? Type793 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type793 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperation? Type794 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type794 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationType? Type795 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type795 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperation? Type796 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type796 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationType? Type797 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type797 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOperationDiscriminator? Type798 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOutput? Type798 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOutput? Type799 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type799 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOutputType? Type800 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type800 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallOutputStatus? Type801 { get; set; }
+ public global::tryAGI.OpenAI.MCPListTools? Type801 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPListTools? Type802 { get; set; }
+ public global::tryAGI.OpenAI.MCPListToolsType? Type802 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPListToolsType? Type803 { get; set; }
+ public global::System.Collections.Generic.IList? Type803 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type804 { get; set; }
+ public global::tryAGI.OpenAI.MCPListToolsTool? Type804 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPListToolsTool? Type805 { get; set; }
+ public global::tryAGI.OpenAI.MCPApprovalRequest? Type805 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPApprovalRequest? Type806 { get; set; }
+ public global::tryAGI.OpenAI.MCPApprovalRequestType? Type806 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPApprovalRequestType? Type807 { get; set; }
+ public global::tryAGI.OpenAI.MCPApprovalResponseResource? Type807 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPApprovalResponseResource? Type808 { get; set; }
+ public global::tryAGI.OpenAI.MCPApprovalResponseResourceType? Type808 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPApprovalResponseResourceType? Type809 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolCall? Type809 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolCall? Type810 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolCallType? Type810 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolCallType? Type811 { get; set; }
+ public global::tryAGI.OpenAI.MCPToolCallStatus? Type811 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPToolCallStatus? Type812 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolCall? Type812 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolCall? Type813 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolCallType? Type813 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolCallType? Type814 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolCallOutput? Type814 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolCallOutput? Type815 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolCallOutputType? Type815 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolCallOutputType? Type816 { get; set; }
+ public global::tryAGI.OpenAI.ConversationItemDiscriminator? Type816 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationItemDiscriminator? Type817 { get; set; }
+ public global::tryAGI.OpenAI.ConversationItemList? Type817 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationItemList? Type818 { get; set; }
+ public global::tryAGI.OpenAI.ConversationItemListObject? Type818 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationItemListObject? Type819 { get; set; }
+ public global::System.Collections.Generic.IList? Type819 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type820 { get; set; }
+ public global::tryAGI.OpenAI.ConversationParam? Type820 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationParam? Type821 { get; set; }
+ public global::tryAGI.OpenAI.ConversationParam2? Type821 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ConversationParam2? Type822 { get; set; }
+ public global::tryAGI.OpenAI.CostsResult? Type822 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CostsResult? Type823 { get; set; }
+ public global::tryAGI.OpenAI.CostsResultObject? Type823 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CostsResultObject? Type824 { get; set; }
+ public global::tryAGI.OpenAI.CostsResultAmount? Type824 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CostsResultAmount? Type825 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequest? Type825 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequest? Type826 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type826 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type827 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningEffortEnum? Type827 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningEffortEnum? Type828 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResources2? Type828 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResources2? Type829 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesCodeInterpreter? Type829 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesCodeInterpreter? Type830 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearch? Type830 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearch? Type831 { get; set; }
+ public global::System.Collections.Generic.IList? Type831 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type832 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStore? Type832 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStore? Type833 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type833 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type834 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategy? Type834 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategy? Type835 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategyType? Type835 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyAutoChunkingStrategyType? Type836 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategy? Type836 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategy? Type837 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType? Type837 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyType? Type838 { get; set; }
+ public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyStatic? Type838 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateAssistantRequestToolResourcesFileSearchVectorStoreChunkingStrategyStaticChunkingStrategyStatic? Type839 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequest? Type839 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequest? Type840 { get; set; }
+ public global::tryAGI.OpenAI.CreateModelResponseProperties? Type840 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModelResponseProperties? Type841 { get; set; }
+ public global::tryAGI.OpenAI.ModelResponseProperties? Type841 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ModelResponseProperties? Type842 { get; set; }
+ public global::tryAGI.OpenAI.ModelResponsePropertiesPromptCacheRetention2? Type842 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ModelResponsePropertiesPromptCacheRetention2? Type843 { get; set; }
+ public global::tryAGI.OpenAI.CreateModelResponsePropertiesVariant2? Type843 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModelResponsePropertiesVariant2? Type844 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2? Type844 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2? Type845 { get; set; }
+ public global::System.Collections.Generic.IList? Type845 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type846 { get; set; }
+ public global::tryAGI.OpenAI.ModelIdsShared? Type846 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ModelIdsShared? Type847 { get; set; }
+ public global::tryAGI.OpenAI.ModelIdsSharedEnum? Type847 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ModelIdsSharedEnum? Type848 { get; set; }
+ public global::System.Collections.Generic.IList? Type848 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type849 { get; set; }
+ public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type849 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseModalitiesVariant1Item? Type850 { get; set; }
+ public global::tryAGI.OpenAI.VerbosityEnum? Type850 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VerbosityEnum? Type851 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptions? Type851 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptions? Type852 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocation? Type852 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocation? Type853 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationType? Type853 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2WebSearchOptionsUserLocationType? Type854 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchLocation? Type854 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchLocation? Type855 { get; set; }
+ public global::tryAGI.OpenAI.WebSearchContextSize? Type855 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.WebSearchContextSize? Type856 { get; set; }
+ public global::tryAGI.OpenAI.ResponseFormat? Type856 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseFormat? Type857 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2ResponseFormatDiscriminator? Type857 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2ResponseFormatDiscriminator? Type858 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2Audio? Type858 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2Audio? Type859 { get; set; }
+ public global::tryAGI.OpenAI.VoiceIdsOrCustomVoice? Type859 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceIdsOrCustomVoice? Type860 { get; set; }
+ public global::tryAGI.OpenAI.VoiceIdsShared? Type860 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceIdsShared? Type861 { get; set; }
+ public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type861 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceIdsSharedEnum? Type862 { get; set; }
+ public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type862 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.VoiceIdsOrCustomVoiceVariant2? Type863 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2AudioFormat? Type863 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2AudioFormat? Type864 { get; set; }
+ public global::tryAGI.OpenAI.StopConfiguration? Type864 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.StopConfiguration? Type865 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type865 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type866 { get; set; }
+ public global::tryAGI.OpenAI.PredictionContent? Type866 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PredictionContent? Type867 { get; set; }
+ public global::tryAGI.OpenAI.PredictionContentType? Type867 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PredictionContentType? Type868 { get; set; }
+ public global::System.Collections.Generic.IList>? Type868 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type869 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type869 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type870 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletions? Type870 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletions? Type871 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsType? Type871 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsType? Type872 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsCustom? Type872 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsCustom? Type873 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type873 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type874 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormat? Type874 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormat? Type875 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormatType? Type875 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatTextFormatType? Type876 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormat? Type876 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormat? Type877 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatType? Type877 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatType? Type878 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammar? Type878 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammar? Type879 { get; set; }
+ public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammarSyntax? Type879 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CustomToolChatCompletionsCustomFormatGrammarFormatGrammarSyntax? Type880 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type880 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type881 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2FunctionCall? Type881 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionRequestVariant2FunctionCall? Type882 { get; set; }
+ public global::System.Collections.Generic.IList? Type882 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type883 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionStreamResponse? Type883 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionStreamResponse? Type884 { get; set; }
+ public global::System.Collections.Generic.IList? Type884 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type885 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoice? Type885 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoice? Type886 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceLogprobs? Type886 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceLogprobs? Type887 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceFinishReason? Type887 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseChoiceFinishReason? Type888 { get; set; }
+ public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseObject? Type888 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateChatCompletionStreamResponseObject? Type889 { get; set; }
+ public global::tryAGI.OpenAI.CreateCompletionRequest? Type889 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateCompletionRequest? Type890 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type890 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type891 { get; set; }
+ public global::tryAGI.OpenAI.CreateCompletionRequestModel? Type891 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateCompletionRequestModel? Type892 { get; set; }
+ public global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Type892 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.IList, global::System.Collections.Generic.IList>>? Type893 { get; set; }
+ public global::System.Collections.Generic.IList>? Type893 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type894 { get; set; }
+ public global::tryAGI.OpenAI.CreateCompletionResponse? Type894 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateCompletionResponse? Type895 { get; set; }
+ public global::System.Collections.Generic.IList? Type895 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type896 { get; set; }
+ public global::tryAGI.OpenAI.CreateCompletionResponseChoice? Type896 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateCompletionResponseChoice? Type897 { get; set; }
+ public global::tryAGI.OpenAI.CreateCompletionResponseChoiceFinishReason? Type897 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateCompletionResponseChoiceFinishReason? Type898 { get; set; }
+ public global::tryAGI.OpenAI.CreateCompletionResponseChoiceLogprobs2? Type898 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateCompletionResponseChoiceLogprobs2? Type899 { get; set; }
+ public global::System.Collections.Generic.IList? Type899 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type900 { get; set; }
+ public global::System.Collections.Generic.IList>? Type900 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type901 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type901 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type902 { get; set; }
+ public global::tryAGI.OpenAI.CreateCompletionResponseObject? Type902 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateCompletionResponseObject? Type903 { get; set; }
+ public global::tryAGI.OpenAI.CreateContainerBody? Type903 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateContainerBody? Type904 { get; set; }
+ public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfter? Type904 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfter? Type905 { get; set; }
+ public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfterAnchor? Type905 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateContainerBodyExpiresAfterAnchor? Type906 { get; set; }
+ public global::System.Collections.Generic.IList? Type906 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type907 { get; set; }
+ public global::tryAGI.OpenAI.SkillsItem? Type907 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SkillsItem? Type908 { get; set; }
+ public global::tryAGI.OpenAI.CreateContainerBodySkillDiscriminator? Type908 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateContainerBodySkillDiscriminator? Type909 { get; set; }
+ public global::tryAGI.OpenAI.CreateContainerBodyMemoryLimit? Type909 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateContainerBodyMemoryLimit? Type910 { get; set; }
+ public global::tryAGI.OpenAI.NetworkPolicy? Type910 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.NetworkPolicy? Type911 { get; set; }
+ public global::tryAGI.OpenAI.CreateContainerBodyNetworkPolicyDiscriminator? Type911 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateContainerBodyNetworkPolicyDiscriminator? Type912 { get; set; }
+ public global::tryAGI.OpenAI.CreateContainerFileBody? Type912 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateContainerFileBody? Type913 { get; set; }
+ public global::tryAGI.OpenAI.CreateEmbeddingRequest? Type913 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEmbeddingRequest? Type914 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type914 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type915 { get; set; }
+ public global::tryAGI.OpenAI.CreateEmbeddingRequestModel? Type915 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEmbeddingRequestModel? Type916 { get; set; }
+ public global::tryAGI.OpenAI.CreateEmbeddingRequestEncodingFormat? Type916 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEmbeddingRequestEncodingFormat? Type917 { get; set; }
+ public global::tryAGI.OpenAI.CreateEmbeddingResponse? Type917 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEmbeddingResponse? Type918 { get; set; }
+ public global::System.Collections.Generic.IList? Type918 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type919 { get; set; }
+ public global::tryAGI.OpenAI.Embedding? Type919 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Embedding? Type920 { get; set; }
+ public global::System.Collections.Generic.IList? Type920 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type921 { get; set; }
+ public global::tryAGI.OpenAI.EmbeddingObject? Type921 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EmbeddingObject? Type922 { get; set; }
+ public global::tryAGI.OpenAI.CreateEmbeddingResponseObject? Type922 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEmbeddingResponseObject? Type923 { get; set; }
+ public global::tryAGI.OpenAI.CreateEmbeddingResponseUsage? Type923 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEmbeddingResponseUsage? Type924 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSource? Type924 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSource? Type925 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceType? Type925 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceType? Type926 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type926 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type927 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessages? Type927 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessages? Type928 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessagesType? Type928 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesTemplateInputMessagesType? Type929 { get; set; }
+ public global::System.Collections.Generic.IList>? Type929 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type930 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type930 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type931 { get; set; }
+ public global::tryAGI.OpenAI.EasyInputMessage? Type931 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EasyInputMessage? Type932 { get; set; }
+ public global::tryAGI.OpenAI.EasyInputMessageRole? Type932 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EasyInputMessageRole? Type933 { get; set; }
+ public global::tryAGI.OpenAI.OneOf>? Type933 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf>? Type934 { get; set; }
+ public global::System.Collections.Generic.IList? Type934 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type935 { get; set; }
+ public global::tryAGI.OpenAI.MessagePhase? Type935 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessagePhase? Type936 { get; set; }
+ public global::tryAGI.OpenAI.EasyInputMessageType? Type936 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EasyInputMessageType? Type937 { get; set; }
+ public global::tryAGI.OpenAI.EvalItem? Type937 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItem? Type938 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemRole? Type938 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemRole? Type939 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemContent? Type939 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemContent? Type940 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemContentItem? Type940 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemContentItem? Type941 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemContentOutputText? Type941 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemContentOutputText? Type942 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemContentOutputTextType? Type942 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemContentOutputTextType? Type943 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemInputImage? Type943 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemInputImage? Type944 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemInputImageType? Type944 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemInputImageType? Type945 { get; set; }
+ public global::tryAGI.OpenAI.InputAudio? Type945 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputAudio? Type946 { get; set; }
+ public global::tryAGI.OpenAI.InputAudioType? Type946 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputAudioType? Type947 { get; set; }
+ public global::tryAGI.OpenAI.InputAudioInputAudio1? Type947 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputAudioInputAudio1? Type948 { get; set; }
+ public global::tryAGI.OpenAI.InputAudioInputAudio1Format? Type948 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputAudioInputAudio1Format? Type949 { get; set; }
+ public global::System.Collections.Generic.IList? Type949 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type950 { get; set; }
+ public global::tryAGI.OpenAI.EvalItemType? Type950 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalItemType? Type951 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessages? Type951 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessages? Type952 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessagesType? Type952 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceInputMessagesItemReferenceInputMessagesType? Type953 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSamplingParams? Type953 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCompletionsRunDataSourceSamplingParams? Type954 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type954 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type955 { get; set; }
+ public global::System.Collections.Generic.IList? Type955 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type956 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type956 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type957 { get; set; }
+ public global::tryAGI.OpenAI.EvalJsonlFileContentSource? Type957 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalJsonlFileContentSource? Type958 { get; set; }
+ public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type958 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalJsonlFileContentSourceType? Type959 { get; set; }
+ public global::System.Collections.Generic.IList? Type959 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type960 { get; set; }
+ public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type960 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalJsonlFileContentSourceContentItem? Type961 { get; set; }
+ public global::tryAGI.OpenAI.EvalJsonlFileIdSource? Type961 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalJsonlFileIdSource? Type962 { get; set; }
+ public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type962 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalJsonlFileIdSourceType? Type963 { get; set; }
+ public global::tryAGI.OpenAI.EvalStoredCompletionsSource? Type963 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalStoredCompletionsSource? Type964 { get; set; }
+ public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type964 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalStoredCompletionsSourceType? Type965 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfig? Type965 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfig? Type966 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfigType? Type966 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalCustomDataSourceConfigType? Type967 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalItem? Type967 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalItem? Type968 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalItemSimpleInputMessage? Type968 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalItemSimpleInputMessage? Type969 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSource? Type969 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSource? Type970 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceType? Type970 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalJsonlRunDataSourceType? Type971 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type971 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type972 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalLabelModelGrader? Type972 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalLabelModelGrader? Type973 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalLabelModelGraderType? Type973 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalLabelModelGraderType? Type974 { get; set; }
+ public global::System.Collections.Generic.IList? Type974 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type975 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfig? Type975 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfig? Type976 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfigType? Type976 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalLogsDataSourceConfigType? Type977 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalRequest? Type977 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalRequest? Type978 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type978 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type979 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfig? Type979 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfig? Type980 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfigType? Type980 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalStoredCompletionsDataSourceConfigType? Type981 { get; set; }
+ public global::System.Collections.Generic.IList>? Type981 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type982 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type982 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type983 { get; set; }
+ public global::tryAGI.OpenAI.EvalGraderStringCheck? Type983 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalGraderStringCheck? Type984 { get; set; }
+ public global::tryAGI.OpenAI.GraderStringCheck? Type984 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderStringCheck? Type985 { get; set; }
+ public global::tryAGI.OpenAI.GraderStringCheckType? Type985 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderStringCheckType? Type986 { get; set; }
+ public global::tryAGI.OpenAI.GraderStringCheckOperation? Type986 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderStringCheckOperation? Type987 { get; set; }
+ public global::tryAGI.OpenAI.EvalGraderTextSimilarity? Type987 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalGraderTextSimilarity? Type988 { get; set; }
+ public global::tryAGI.OpenAI.GraderTextSimilarity? Type988 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderTextSimilarity? Type989 { get; set; }
+ public global::tryAGI.OpenAI.GraderTextSimilarityType? Type989 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderTextSimilarityType? Type990 { get; set; }
+ public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type990 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderTextSimilarityEvaluationMetric? Type991 { get; set; }
+ public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type991 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalGraderTextSimilarityVariant2? Type992 { get; set; }
+ public global::tryAGI.OpenAI.EvalGraderPython? Type992 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalGraderPython? Type993 { get; set; }
+ public global::tryAGI.OpenAI.GraderPython? Type993 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderPython? Type994 { get; set; }
+ public global::tryAGI.OpenAI.GraderPythonType? Type994 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderPythonType? Type995 { get; set; }
+ public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type995 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalGraderPythonVariant2? Type996 { get; set; }
+ public global::tryAGI.OpenAI.EvalGraderScoreModel? Type996 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalGraderScoreModel? Type997 { get; set; }
+ public global::tryAGI.OpenAI.GraderScoreModel? Type997 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderScoreModel? Type998 { get; set; }
+ public global::tryAGI.OpenAI.GraderScoreModelType? Type998 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderScoreModelType? Type999 { get; set; }
+ public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type999 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderScoreModelSamplingParams? Type1000 { get; set; }
+ public global::System.Collections.Generic.IList? Type1000 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1001 { get; set; }
+ public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type1001 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalGraderScoreModelVariant2? Type1002 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSource? Type1002 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSource? Type1003 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceType? Type1003 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceType? Type1004 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1004 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1005 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplate? Type1005 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplate? Type1006 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateType? Type1006 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateType? Type1007 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1007 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1008 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1008 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1009 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateTemplateItem? Type1009 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesTemplateTemplateItem? Type1010 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReference? Type1010 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReference? Type1011 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReferenceType? Type1011 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceInputMessagesInputMessagesItemReferenceType? Type1012 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParams? Type1012 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParams? Type1013 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParamsText? Type1013 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalResponsesRunDataSourceSamplingParamsText? Type1014 { get; set; }
+ public global::tryAGI.OpenAI.TextResponseFormatConfiguration? Type1014 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextResponseFormatConfiguration? Type1015 { get; set; }
+ public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type1015 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextResponseFormatJsonSchema? Type1016 { get; set; }
+ public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type1016 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.TextResponseFormatJsonSchemaType? Type1017 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1017 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1018 { get; set; }
+ public global::tryAGI.OpenAI.EvalResponsesSource? Type1018 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalResponsesSource? Type1019 { get; set; }
+ public global::tryAGI.OpenAI.EvalResponsesSourceType? Type1019 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EvalResponsesSourceType? Type1020 { get; set; }
+ public global::tryAGI.OpenAI.CreateEvalRunRequest? Type1020 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateEvalRunRequest? Type1021 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1021 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1022 { get; set; }
+ public global::tryAGI.OpenAI.CreateFileRequest? Type1022 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFileRequest? Type1023 { get; set; }
+ public global::tryAGI.OpenAI.CreateFileRequestPurpose? Type1023 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFileRequestPurpose? Type1024 { get; set; }
+ public global::tryAGI.OpenAI.FileExpirationAfter? Type1024 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileExpirationAfter? Type1025 { get; set; }
+ public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type1025 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileExpirationAfterAnchor? Type1026 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningCheckpointPermissionRequest? Type1026 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningCheckpointPermissionRequest? Type1027 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequest? Type1027 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequest? Type1028 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1028 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1029 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestModel? Type1029 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestModel? Type1030 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparameters? Type1030 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparameters? Type1031 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1031 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1032 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersBatchSize? Type1032 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersBatchSize? Type1033 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1033 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1034 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier? Type1034 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier? Type1035 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1035 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1036 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersNEpochs? Type1036 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestHyperparametersNEpochs? Type1037 { get; set; }
+ public global::System.Collections.Generic.IList? Type1037 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1038 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegration? Type1038 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegration? Type1039 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationType? Type1039 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationType? Type1040 { get; set; }
+ public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationWandb? Type1040 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateFineTuningJobRequestIntegrationWandb? Type1041 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneMethod? Type1041 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneMethod? Type1042 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneMethodType? Type1042 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneMethodType? Type1043 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type1043 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneSupervisedMethod? Type1044 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type1044 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneSupervisedHyperparameters? Type1045 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1045 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1046 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type1046 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersBatchSize? Type1047 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1047 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1048 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type1048 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersLearningRateMultiplier? Type1049 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1049 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1050 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type1050 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneSupervisedHyperparametersNEpochs? Type1051 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneDPOMethod? Type1051 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneDPOMethod? Type1052 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type1052 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneDPOHyperparameters? Type1053 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1053 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1054 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type1054 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBeta? Type1055 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1055 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1056 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type1056 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneDPOHyperparametersBatchSize? Type1057 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1057 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1058 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type1058 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneDPOHyperparametersLearningRateMultiplier? Type1059 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1059 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1060 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type1060 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneDPOHyperparametersNEpochs? Type1061 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type1061 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementMethod? Type1062 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1062 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1063 { get; set; }
+ public global::tryAGI.OpenAI.GraderMulti? Type1063 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderMulti? Type1064 { get; set; }
+ public global::tryAGI.OpenAI.GraderMultiType? Type1064 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderMultiType? Type1065 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1065 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1066 { get; set; }
+ public global::tryAGI.OpenAI.GraderLabelModel? Type1066 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderLabelModel? Type1067 { get; set; }
+ public global::tryAGI.OpenAI.GraderLabelModelType? Type1067 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.GraderLabelModelType? Type1068 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type1068 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparameters? Type1069 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1069 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1070 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type1070 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersBatchSize? Type1071 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1071 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1072 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type1072 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersLearningRateMultiplier? Type1073 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1073 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1074 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type1074 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersNEpochs? Type1075 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type1075 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersReasoningEffort? Type1076 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1076 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1077 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type1077 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersComputeMultiplier? Type1078 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1078 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1079 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type1079 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalInterval? Type1080 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1080 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1081 { get; set; }
+ public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type1081 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FineTuneReinforcementHyperparametersEvalSamples? Type1082 { get; set; }
+ public global::tryAGI.OpenAI.CreateGroupBody? Type1082 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateGroupBody? Type1083 { get; set; }
+ public global::tryAGI.OpenAI.CreateGroupUserBody? Type1083 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateGroupUserBody? Type1084 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageEditRequest? Type1084 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageEditRequest? Type1085 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf>? Type1085 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf>? Type1086 { get; set; }
+ public global::System.Collections.Generic.IList? Type1086 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1087 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageEditRequestBackground? Type1087 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageEditRequestBackground? Type1088 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1088 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1089 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageEditRequestModel? Type1089 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageEditRequestModel? Type1090 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageEditRequestSize? Type1090 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageEditRequestSize? Type1091 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? Type1091 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? Type1092 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? Type1092 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? Type1093 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageEditRequestQuality? Type1093 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageEditRequestQuality? Type1094 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequest? Type1094 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequest? Type1095 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1095 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1096 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestModel? Type1096 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestModel? Type1097 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestQuality? Type1097 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestQuality? Type1098 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestResponseFormat? Type1098 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestResponseFormat? Type1099 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestOutputFormat? Type1099 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestOutputFormat? Type1100 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestSize? Type1100 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestSize? Type1101 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestModeration? Type1101 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestModeration? Type1102 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestBackground? Type1102 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestBackground? Type1103 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageRequestStyle? Type1103 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageRequestStyle? Type1104 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageVariationRequest? Type1104 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageVariationRequest? Type1105 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1105 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1106 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageVariationRequestModel? Type1106 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageVariationRequestModel? Type1107 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageVariationRequestResponseFormat? Type1107 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageVariationRequestResponseFormat? Type1108 { get; set; }
+ public global::tryAGI.OpenAI.CreateImageVariationRequestSize? Type1108 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateImageVariationRequestSize? Type1109 { get; set; }
+ public global::tryAGI.OpenAI.CreateMessageRequest? Type1109 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateMessageRequest? Type1110 { get; set; }
+ public global::tryAGI.OpenAI.CreateMessageRequestRole? Type1110 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateMessageRequestRole? Type1111 { get; set; }
+ public global::tryAGI.OpenAI.OneOf>>? Type1111 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf>>? Type1112 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1112 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1113 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1113 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1114 { get; set; }
+ public global::tryAGI.OpenAI.MessageRequestContentTextObject? Type1114 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageRequestContentTextObject? Type1115 { get; set; }
+ public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1115 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MessageRequestContentTextObjectType? Type1116 { get; set; }
+ public global::System.Collections.Generic.IList? Type1116 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1117 { get; set; }
+ public global::tryAGI.OpenAI.CreateMessageRequestAttachmentsVariant1Item? Type1117 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateMessageRequestAttachmentsVariant1Item? Type1118 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationRequest? Type1118 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationRequest? Type1119 { get; set; }
+ public global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.IList>>? Type1119 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf, global::System.Collections.Generic.IList>>? Type1120 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1120 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1121 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1121 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1122 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1? Type1122 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1? Type1123 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1Type? Type1123 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1Type? Type1124 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1ImageUrl? Type1124 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant1ImageUrl? Type1125 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2? Type1125 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2? Type1126 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2Type? Type1126 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationRequestInputVariant3ItemVariant2Type? Type1127 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf? Type1127 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.AnyOf? Type1128 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationRequestModel? Type1128 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationRequestModel? Type1129 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponse? Type1129 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponse? Type1130 { get; set; }
+ public global::System.Collections.Generic.IList? Type1130 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1131 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResult? Type1131 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResult? Type1132 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategories? Type1132 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategories? Type1133 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryScores? Type1133 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryScores? Type1134 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypes? Type1134 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypes? Type1135 { get; set; }
+ public global::System.Collections.Generic.IList? Type1135 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1136 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateItem? Type1136 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateItem? Type1137 { get; set; }
+ public global::System.Collections.Generic.IList? Type1137 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1138 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateThreateningItem? Type1138 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHateThreateningItem? 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.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentItem? Type1140 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentItem? Type1141 { get; set; }
+ public global::System.Collections.Generic.IList? Type1141 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1142 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentThreateningItem? Type1142 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesHarassmentThreateningItem? Type1143 { get; set; }
+ public global::System.Collections.Generic.IList? Type1143 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1144 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitItem? Type1144 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitItem? 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.CreateModerationResponseResultCategoryAppliedInputTypesIllicitViolentItem? Type1146 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesIllicitViolentItem? Type1147 { get; set; }
+ public global::System.Collections.Generic.IList? Type1147 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1148 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmItem? Type1148 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmItem? Type1149 { get; set; }
+ public global::System.Collections.Generic.IList? Type1149 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1150 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntentItem? Type1150 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntentItem? Type1151 { get; set; }
+ public global::System.Collections.Generic.IList? Type1151 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1152 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction? Type1152 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction? Type1153 { get; set; }
+ public global::System.Collections.Generic.IList? Type1153 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1154 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualItem? Type1154 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualItem? 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.CreateModerationResponseResultCategoryAppliedInputTypesSexualMinor? Type1156 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesSexualMinor? Type1157 { get; set; }
+ public global::System.Collections.Generic.IList? Type1157 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1158 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceItem? Type1158 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceItem? Type1159 { get; set; }
+ public global::System.Collections.Generic.IList? Type1159 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1160 { get; set; }
+ public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphicItem? Type1160 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphicItem? Type1161 { get; set; }
+ public global::tryAGI.OpenAI.CreateResponse? Type1161 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateResponse? Type1162 { get; set; }
+ public global::tryAGI.OpenAI.ResponseProperties? Type1162 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseProperties? Type1163 { get; set; }
+ public global::tryAGI.OpenAI.ModelIdsResponses? Type1163 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ModelIdsResponses? Type1164 { get; set; }
+ public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1164 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ModelIdsResponsesEnum? Type1165 { get; set; }
+ public global::tryAGI.OpenAI.Reasoning? Type1165 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Reasoning? Type1166 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningSummary2? Type1166 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningSummary2? Type1167 { get; set; }
+ public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1167 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ReasoningGenerateSummary2? Type1168 { get; set; }
+ public global::tryAGI.OpenAI.ResponseTextParam? Type1168 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseTextParam? Type1169 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceParam? Type1169 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceParam? Type1170 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceOptions? Type1170 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceOptions? Type1171 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceAllowed? Type1171 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceAllowed? Type1172 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type1172 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceAllowedType? Type1173 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type1173 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceAllowedMode? Type1174 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceTypes? Type1174 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceTypes? Type1175 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceTypesType? Type1175 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceTypesType? Type1176 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceFunction? Type1176 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceFunction? Type1177 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type1177 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceFunctionType? Type1178 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceMCP? Type1178 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceMCP? Type1179 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceMCPType? Type1179 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceMCPType? Type1180 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceCustom? Type1180 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceCustom? Type1181 { get; set; }
+ public global::tryAGI.OpenAI.ToolChoiceCustomType? Type1181 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolChoiceCustomType? Type1182 { get; set; }
+ public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type1182 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificApplyPatchParam? Type1183 { get; set; }
+ public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type1183 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificApplyPatchParamType? Type1184 { get; set; }
+ public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type1184 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificFunctionShellParam? Type1185 { get; set; }
+ public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type1185 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.SpecificFunctionShellParamType? Type1186 { get; set; }
+ public global::tryAGI.OpenAI.PromptVariant1? Type1186 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.PromptVariant1? Type1187 { get; set; }
+ public global::tryAGI.OpenAI.OneOf? Type1187 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf? Type1188 { get; set; }
+ public global::tryAGI.OpenAI.ResponsePropertiesTruncation2? Type1188 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponsePropertiesTruncation2? Type1189 { get; set; }
+ public global::tryAGI.OpenAI.CreateResponseVariant3? Type1189 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateResponseVariant3? Type1190 { get; set; }
+ public global::tryAGI.OpenAI.InputParam? Type1190 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputParam? Type1191 { get; set; }
+ public global::System.Collections.Generic.IList? Type1191 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1192 { get; set; }
+ public global::tryAGI.OpenAI.InputItem? Type1192 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputItem? Type1193 { get; set; }
+ public global::tryAGI.OpenAI.Item? Type1193 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.Item? Type1194 { get; set; }
+ public global::tryAGI.OpenAI.InputMessage? Type1194 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputMessage? Type1195 { get; set; }
+ public global::tryAGI.OpenAI.InputMessageType? Type1195 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputMessageType? Type1196 { get; set; }
+ public global::tryAGI.OpenAI.InputMessageRole? Type1196 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputMessageRole? Type1197 { get; set; }
+ public global::tryAGI.OpenAI.InputMessageStatus? Type1197 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputMessageStatus? Type1198 { get; set; }
+ public global::tryAGI.OpenAI.OutputMessage? Type1198 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputMessage? Type1199 { get; set; }
+ public global::tryAGI.OpenAI.OutputMessageType? Type1199 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputMessageType? Type1200 { get; set; }
+ public global::tryAGI.OpenAI.OutputMessageRole? Type1200 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputMessageRole? Type1201 { get; set; }
+ public global::System.Collections.Generic.IList? Type1201 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1202 { get; set; }
+ public global::tryAGI.OpenAI.OutputMessageContent? Type1202 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputMessageContent? Type1203 { get; set; }
+ public global::tryAGI.OpenAI.OutputMessageContentDiscriminator? Type1203 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputMessageContentDiscriminator? Type1204 { get; set; }
+ public global::tryAGI.OpenAI.OutputMessageStatus? Type1204 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputMessageStatus? Type1205 { get; set; }
+ public global::tryAGI.OpenAI.ComputerCallOutputItemParam? Type1205 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerCallOutputItemParam? Type1206 { get; set; }
+ public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type1206 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ComputerCallOutputItemParamType? Type1207 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallItemStatus? Type1207 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallItemStatus? Type1208 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type1208 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallOutputItemParam? Type1209 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type1209 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallOutputItemParamType? Type1210 { get; set; }
+ public global::tryAGI.OpenAI.OneOf>? Type1210 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OneOf>? Type1211 { get; set; }
+ public global::System.Collections.Generic.IList? Type1211 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1212 { get; set; }
+ public global::tryAGI.OpenAI.OutputVariant2Item? Type1212 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.OutputVariant2Item? Type1213 { get; set; }
+ public global::tryAGI.OpenAI.InputTextContentParam? Type1213 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputTextContentParam? Type1214 { get; set; }
+ public global::tryAGI.OpenAI.InputTextContentParamType? Type1214 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputTextContentParamType? Type1215 { get; set; }
+ public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type1215 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputImageContentParamAutoParam? Type1216 { get; set; }
+ public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type1216 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputImageContentParamAutoParamType? Type1217 { get; set; }
+ public global::tryAGI.OpenAI.DetailEnum? Type1217 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.DetailEnum? Type1218 { get; set; }
+ public global::tryAGI.OpenAI.InputFileContentParam? Type1218 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputFileContentParam? Type1219 { get; set; }
+ public global::tryAGI.OpenAI.InputFileContentParamType? Type1219 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputFileContentParamType? Type1220 { get; set; }
+ public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type1220 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FileDetailEnum? Type1221 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchCallItemParam? Type1221 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionCallOutputItemParamOutputVariant2ItemDiscriminator? Type1222 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type1222 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchCallItemParam? Type1223 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchOutputItemParam? Type1223 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchCallItemParamType? Type1224 { get; set; }
+ public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type1224 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchOutputItemParam? Type1225 { get; set; }
+ public global::tryAGI.OpenAI.CompactionSummaryItemParam? Type1225 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ToolSearchOutputItemParamType? Type1226 { get; set; }
+ public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type1226 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CompactionSummaryItemParam? Type1227 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallItemParam? Type1227 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CompactionSummaryItemParamType? Type1228 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type1228 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallItemParam? Type1229 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellActionParam? Type1229 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallItemParamType? Type1230 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type1230 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellActionParam? Type1231 { get; set; }
+ public global::tryAGI.OpenAI.EnvironmentVariant13? Type1231 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallItemStatus? Type1232 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type1232 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.EnvironmentVariant13? Type1233 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputItemParam? Type1233 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallItemParamEnvironmentVariant1Discriminator? Type1234 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type1234 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputItemParam? Type1235 { get; set; }
+ public global::System.Collections.Generic.IList? Type1235 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputItemParamType? Type1236 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type1236 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1237 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type1237 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputContentParam? Type1238 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type1238 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParam? Type1239 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type1239 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParam? Type1240 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type1240 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputTimeoutOutcomeParamType? Type1241 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type1241 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParam? Type1242 { get; set; }
+ public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type1242 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputExitOutcomeParamType? Type1243 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallItemParam? Type1243 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.FunctionShellCallOutputOutcomeParamDiscriminator? Type1244 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type1244 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallItemParam? Type1245 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type1245 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallItemParamType? Type1246 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type1246 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallStatusParam? Type1247 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type1247 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchOperationParam? Type1248 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type1248 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParam? Type1249 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type1249 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCreateFileOperationParamType? Type1250 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type1250 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParam? Type1251 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type1251 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchDeleteFileOperationParamType? Type1252 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type1252 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParam? Type1253 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type1253 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchUpdateFileOperationParamType? Type1254 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParam? Type1254 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchOperationParamDiscriminator? Type1255 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type1255 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParam? Type1256 { get; set; }
+ public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type1256 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchToolCallOutputItemParamType? Type1257 { get; set; }
+ public global::tryAGI.OpenAI.MCPApprovalResponse? Type1257 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ApplyPatchCallOutputStatusParam? Type1258 { get; set; }
+ public global::tryAGI.OpenAI.MCPApprovalResponseType? Type1258 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPApprovalResponse? Type1259 { get; set; }
+ public global::tryAGI.OpenAI.ItemDiscriminator? Type1259 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.MCPApprovalResponseType? Type1260 { get; set; }
+ public global::tryAGI.OpenAI.ItemReferenceParam? Type1260 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ItemDiscriminator? Type1261 { get; set; }
+ public global::tryAGI.OpenAI.ItemReferenceParamType2? Type1261 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ItemReferenceParam? Type1262 { get; set; }
+ public global::tryAGI.OpenAI.InputItemDiscriminator? Type1262 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ItemReferenceParamType2? Type1263 { get; set; }
+ public global::System.Collections.Generic.IList? Type1263 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.InputItemDiscriminator? Type1264 { get; set; }
+ public global::tryAGI.OpenAI.IncludeEnum? Type1264 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1265 { get; set; }
+ public global::tryAGI.OpenAI.ResponseStreamOptionsVariant1? Type1265 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.IncludeEnum? Type1266 { get; set; }
+ public global::System.Collections.Generic.IList? Type1266 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ResponseStreamOptionsVariant1? Type1267 { get; set; }
+ public global::tryAGI.OpenAI.ContextManagementParam? Type1267 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1268 { get; set; }
+ public global::tryAGI.OpenAI.CreateRunRequest? Type1268 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.ContextManagementParam? Type1269 { get; set; }
+ public global::System.Collections.Generic.IList? Type1269 { get; set; }
///
///
///
- public global::tryAGI.OpenAI.CreateRunRequest? Type1270 { get; set; }
+ public global::tryAGI.OpenAI.CreateSpeechRequest? Type1270 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1271 { get; set; }
+ public global::tryAGI.OpenAI.AnyOf