From 19813e4a15ab8dcc3bde35cdee49a78993a631e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 7 May 2025 12:46:28 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../Generated/Cohere.Models.ImageContent.g.cs | 6 +- .../Generated/Cohere.Models.ImageUrl.g.cs | 22 +- .../Cohere.Models.ImageUrlDetail.g.cs | 57 + .../JsonConverters.ImageUrlDetail.g.cs | 49 + ...JsonConverters.ImageUrlDetailNullable.g.cs | 56 + .../Generated/JsonSerializerContext.g.cs | 2 + .../Generated/JsonSerializerContextTypes.g.cs | 1280 +++++++++-------- src/libs/Cohere/openapi.yaml | 9 +- 8 files changed, 834 insertions(+), 647 deletions(-) create mode 100644 src/libs/Cohere/Generated/Cohere.Models.ImageUrlDetail.g.cs create mode 100644 src/libs/Cohere/Generated/JsonConverters.ImageUrlDetail.g.cs create mode 100644 src/libs/Cohere/Generated/JsonConverters.ImageUrlDetailNullable.g.cs diff --git a/src/libs/Cohere/Generated/Cohere.Models.ImageContent.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ImageContent.g.cs index 2965440d..e44ac31d 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.ImageContent.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.ImageContent.g.cs @@ -9,7 +9,7 @@ namespace Cohere public sealed partial class ImageContent { /// - /// Base64 url of image. + /// /// [global::System.Text.Json.Serialization.JsonPropertyName("image_url")] [global::System.Text.Json.Serialization.JsonRequired] @@ -32,9 +32,7 @@ public sealed partial class ImageContent /// /// Initializes a new instance of the class. /// - /// - /// Base64 url of image. - /// + /// /// /// Type of message content /// diff --git a/src/libs/Cohere/Generated/Cohere.Models.ImageUrl.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ImageUrl.g.cs index 4a1a5690..c99cd82d 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.ImageUrl.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.ImageUrl.g.cs @@ -4,12 +4,19 @@ namespace Cohere { /// - /// Base64 url of image. + /// /// public sealed partial class ImageUrl { /// - /// + /// Controls the level of detail in image processing. `"auto"` is the default and lets the system choose, `"low"` is faster but less detailed, and `"high"` preserves maximum detail. You can save tokens and speed up responses by using detail: `"low"`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("detail")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Cohere.JsonConverters.ImageUrlDetailJsonConverter))] + public global::Cohere.ImageUrlDetail? Detail { get; set; } + + /// + /// URL of an image. Can be either a base64 data URI or a web URL. /// [global::System.Text.Json.Serialization.JsonPropertyName("url")] [global::System.Text.Json.Serialization.JsonRequired] @@ -24,14 +31,21 @@ public sealed partial class ImageUrl /// /// Initializes a new instance of the class. /// - /// + /// + /// Controls the level of detail in image processing. `"auto"` is the default and lets the system choose, `"low"` is faster but less detailed, and `"high"` preserves maximum detail. You can save tokens and speed up responses by using detail: `"low"`. + /// + /// + /// URL of an image. Can be either a base64 data URI or a web URL. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ImageUrl( - string url) + string url, + global::Cohere.ImageUrlDetail? detail) { this.Url = url ?? throw new global::System.ArgumentNullException(nameof(url)); + this.Detail = detail; } /// diff --git a/src/libs/Cohere/Generated/Cohere.Models.ImageUrlDetail.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ImageUrlDetail.g.cs new file mode 100644 index 00000000..84c07b14 --- /dev/null +++ b/src/libs/Cohere/Generated/Cohere.Models.ImageUrlDetail.g.cs @@ -0,0 +1,57 @@ + +#nullable enable + +namespace Cohere +{ + /// + /// Controls the level of detail in image processing. `"auto"` is the default and lets the system choose, `"low"` is faster but less detailed, and `"high"` preserves maximum detail. You can save tokens and speed up responses by using detail: `"low"`. + /// + public enum ImageUrlDetail + { + /// + /// `"low"`. + /// + Auto, + /// + /// `"low"`. + /// + Low, + /// + /// `"low"`. + /// + High, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class ImageUrlDetailExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this ImageUrlDetail value) + { + return value switch + { + ImageUrlDetail.Auto => "auto", + ImageUrlDetail.Low => "low", + ImageUrlDetail.High => "high", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static ImageUrlDetail? ToEnum(string value) + { + return value switch + { + "auto" => ImageUrlDetail.Auto, + "low" => ImageUrlDetail.Low, + "high" => ImageUrlDetail.High, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Cohere/Generated/JsonConverters.ImageUrlDetail.g.cs b/src/libs/Cohere/Generated/JsonConverters.ImageUrlDetail.g.cs new file mode 100644 index 00000000..c83662ea --- /dev/null +++ b/src/libs/Cohere/Generated/JsonConverters.ImageUrlDetail.g.cs @@ -0,0 +1,49 @@ +#nullable enable + +namespace Cohere.JsonConverters +{ + /// + public sealed class ImageUrlDetailJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Cohere.ImageUrlDetail 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::Cohere.ImageUrlDetailExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Cohere.ImageUrlDetail)numValue; + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Cohere.ImageUrlDetail value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Cohere.ImageUrlDetailExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Cohere/Generated/JsonConverters.ImageUrlDetailNullable.g.cs b/src/libs/Cohere/Generated/JsonConverters.ImageUrlDetailNullable.g.cs new file mode 100644 index 00000000..58e0279b --- /dev/null +++ b/src/libs/Cohere/Generated/JsonConverters.ImageUrlDetailNullable.g.cs @@ -0,0 +1,56 @@ +#nullable enable + +namespace Cohere.JsonConverters +{ + /// + public sealed class ImageUrlDetailNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Cohere.ImageUrlDetail? 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::Cohere.ImageUrlDetailExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Cohere.ImageUrlDetail)numValue; + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Cohere.ImageUrlDetail? 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::Cohere.ImageUrlDetailExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs index 1c37ba4a..5fc62027 100644 --- a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs +++ b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs @@ -47,6 +47,8 @@ namespace Cohere typeof(global::Cohere.JsonConverters.ChatRoleNullableJsonConverter), typeof(global::Cohere.JsonConverters.ChatMessageStartEventVariant2DeltaMessageRoleJsonConverter), typeof(global::Cohere.JsonConverters.ChatMessageStartEventVariant2DeltaMessageRoleNullableJsonConverter), + typeof(global::Cohere.JsonConverters.ImageUrlDetailJsonConverter), + typeof(global::Cohere.JsonConverters.ImageUrlDetailNullableJsonConverter), typeof(global::Cohere.JsonConverters.ContentTypeJsonConverter), typeof(global::Cohere.JsonConverters.ContentTypeNullableJsonConverter), typeof(global::Cohere.JsonConverters.ContentDiscriminatorTypeJsonConverter), diff --git a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs index 57b465ee..97dec1d9 100644 --- a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs +++ b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs @@ -402,2554 +402,2558 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Cohere.ContentType? Type94 { get; set; } + public global::Cohere.ImageUrlDetail? Type94 { get; set; } /// /// /// - public global::Cohere.ContentDiscriminator? Type95 { get; set; } + public global::Cohere.ContentType? Type95 { get; set; } /// /// /// - public global::Cohere.ContentDiscriminatorType? Type96 { get; set; } + public global::Cohere.ContentDiscriminator? Type96 { get; set; } /// /// /// - public global::Cohere.UserMessageRole? Type97 { get; set; } + public global::Cohere.ContentDiscriminatorType? Type97 { get; set; } /// /// /// - public global::Cohere.SystemMessage? Type98 { get; set; } + public global::Cohere.UserMessageRole? Type98 { get; set; } /// /// /// - public global::Cohere.OneOf>? Type99 { get; set; } + public global::Cohere.SystemMessage? Type99 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type100 { get; set; } + public global::Cohere.OneOf>? Type100 { get; set; } /// /// /// - public global::Cohere.ContentVariant2Item2? Type101 { get; set; } + public global::System.Collections.Generic.IList? Type101 { get; set; } /// /// /// - public global::Cohere.SystemMessageContentVariant2ItemDiscriminator? Type102 { get; set; } + public global::Cohere.ContentVariant2Item2? Type102 { get; set; } /// /// /// - public global::Cohere.SystemMessageContentVariant2ItemDiscriminatorType? Type103 { get; set; } + public global::Cohere.SystemMessageContentVariant2ItemDiscriminator? Type103 { get; set; } /// /// /// - public global::Cohere.SystemMessageRole? Type104 { get; set; } + public global::Cohere.SystemMessageContentVariant2ItemDiscriminatorType? Type104 { get; set; } /// /// /// - public global::Cohere.ToolMessageV2? Type105 { get; set; } + public global::Cohere.SystemMessageRole? Type105 { get; set; } /// /// /// - public global::Cohere.OneOf>? Type106 { get; set; } + public global::Cohere.ToolMessageV2? Type106 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type107 { get; set; } + public global::Cohere.OneOf>? Type107 { get; set; } /// /// /// - public global::Cohere.ToolContent? Type108 { get; set; } + public global::System.Collections.Generic.IList? Type108 { get; set; } /// /// /// - public global::Cohere.DocumentContent? Type109 { get; set; } + public global::Cohere.ToolContent? Type109 { get; set; } /// /// /// - public global::Cohere.Document? Type110 { get; set; } + public global::Cohere.DocumentContent? Type110 { get; set; } /// /// /// - public global::Cohere.DocumentContentType? Type111 { get; set; } + public global::Cohere.Document? Type111 { get; set; } /// /// /// - public global::Cohere.ToolContentDiscriminator? Type112 { get; set; } + public global::Cohere.DocumentContentType? Type112 { get; set; } /// /// /// - public global::Cohere.ToolContentDiscriminatorType? Type113 { get; set; } + public global::Cohere.ToolContentDiscriminator? Type113 { get; set; } /// /// /// - public global::Cohere.ToolMessageV2Role? Type114 { get; set; } + public global::Cohere.ToolContentDiscriminatorType? Type114 { get; set; } /// /// /// - public global::Cohere.ChatMessageV2Discriminator? Type115 { get; set; } + public global::Cohere.ToolMessageV2Role? Type115 { get; set; } /// /// /// - public global::Cohere.ChatMessageV2DiscriminatorRole? Type116 { get; set; } + public global::Cohere.ChatMessageV2Discriminator? Type116 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type117 { get; set; } + public global::Cohere.ChatMessageV2DiscriminatorRole? Type117 { get; set; } /// /// /// - public global::Cohere.ChatResponse? Type118 { get; set; } + public global::System.Collections.Generic.IList? Type118 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type119 { get; set; } + public global::Cohere.ChatResponse? Type119 { get; set; } /// /// /// - public global::Cohere.ChatSearchQueriesGenerationEvent? Type120 { get; set; } + public global::System.Collections.Generic.IList? Type120 { get; set; } /// /// /// - public global::Cohere.ChatSearchQueriesGenerationEventVariant2? Type121 { get; set; } + public global::Cohere.ChatSearchQueriesGenerationEvent? Type121 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type122 { get; set; } + public global::Cohere.ChatSearchQueriesGenerationEventVariant2? Type122 { get; set; } /// /// /// - public global::Cohere.ChatSearchQuery? Type123 { get; set; } + public global::System.Collections.Generic.IList? Type123 { get; set; } /// /// /// - public global::System.Guid? Type124 { get; set; } + public global::Cohere.ChatSearchQuery? Type124 { get; set; } /// /// /// - public global::Cohere.ChatSearchResult? Type125 { get; set; } + public global::System.Guid? Type125 { get; set; } /// /// /// - public global::Cohere.ChatSearchResultConnector? Type126 { get; set; } + public global::Cohere.ChatSearchResult? Type126 { get; set; } /// /// /// - public global::Cohere.ChatSearchResultsEvent? Type127 { get; set; } + public global::Cohere.ChatSearchResultConnector? Type127 { get; set; } /// /// /// - public global::Cohere.ChatSearchResultsEventVariant2? Type128 { get; set; } + public global::Cohere.ChatSearchResultsEvent? Type128 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type129 { get; set; } + public global::Cohere.ChatSearchResultsEventVariant2? Type129 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type130 { get; set; } + public global::System.Collections.Generic.IList? Type130 { get; set; } /// /// /// - public global::Cohere.ChatStreamEndEvent? Type131 { get; set; } + public global::System.Collections.Generic.IList? Type131 { get; set; } /// /// /// - public global::Cohere.ChatStreamEndEventVariant2? Type132 { get; set; } + public global::Cohere.ChatStreamEndEvent? Type132 { get; set; } /// /// /// - public global::Cohere.ChatStreamEndEventVariant2FinishReason? Type133 { get; set; } + public global::Cohere.ChatStreamEndEventVariant2? Type133 { get; set; } /// /// /// - public global::Cohere.NonStreamedChatResponse? Type134 { get; set; } + public global::Cohere.ChatStreamEndEventVariant2FinishReason? Type134 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type135 { get; set; } + public global::Cohere.NonStreamedChatResponse? Type135 { get; set; } /// /// /// - public global::Cohere.Message? Type136 { get; set; } + public global::System.Collections.Generic.IList? Type136 { get; set; } /// /// /// - public global::Cohere.ToolMessage? Type137 { get; set; } + public global::Cohere.Message? Type137 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type138 { get; set; } + public global::Cohere.ToolMessage? Type138 { get; set; } /// /// /// - public global::Cohere.ToolResult? Type139 { get; set; } + public global::System.Collections.Generic.IList? Type139 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type140 { get; set; } + public global::Cohere.ToolResult? Type140 { get; set; } /// /// /// - public global::Cohere.MessageDiscriminator? Type141 { get; set; } + public global::System.Collections.Generic.IList? Type141 { get; set; } /// /// /// - public global::Cohere.MessageDiscriminatorRole? Type142 { get; set; } + public global::Cohere.MessageDiscriminator? Type142 { get; set; } /// /// /// - public global::Cohere.FinishReason? Type143 { get; set; } + public global::Cohere.MessageDiscriminatorRole? Type143 { get; set; } /// /// /// - public global::Cohere.ChatStreamStartEvent? Type144 { get; set; } + public global::Cohere.FinishReason? Type144 { get; set; } /// /// /// - public global::Cohere.ChatStreamStartEventVariant2? Type145 { get; set; } + public global::Cohere.ChatStreamStartEvent? Type145 { get; set; } /// /// /// - public global::Cohere.ChatTextGenerationEvent? Type146 { get; set; } + public global::Cohere.ChatStreamStartEventVariant2? Type146 { get; set; } /// /// /// - public global::Cohere.ChatTextGenerationEventVariant2? Type147 { get; set; } + public global::Cohere.ChatTextGenerationEvent? Type147 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEvent? Type148 { get; set; } + public global::Cohere.ChatTextGenerationEventVariant2? Type148 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2? Type149 { get; set; } + public global::Cohere.ChatToolCallDeltaEvent? Type149 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type150 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2? Type150 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessage? Type151 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type151 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCalls? Type152 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessage? Type152 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCallsFunction? Type153 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCalls? Type153 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEvent? Type154 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCallsFunction? Type154 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEventVariant2? Type155 { get; set; } + public global::Cohere.ChatToolCallEndEvent? Type155 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEvent? Type156 { get; set; } + public global::Cohere.ChatToolCallEndEventVariant2? Type156 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2? Type157 { get; set; } + public global::Cohere.ChatToolCallStartEvent? Type157 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2Delta? Type158 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2? Type158 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaMessage? Type159 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2Delta? Type159 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsChunkEvent? Type160 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaMessage? Type160 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsChunkEventVariant2? Type161 { get; set; } + public global::Cohere.ChatToolCallsChunkEvent? Type161 { get; set; } /// /// /// - public global::Cohere.ToolCallDelta? Type162 { get; set; } + public global::Cohere.ChatToolCallsChunkEventVariant2? Type162 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsGenerationEvent? Type163 { get; set; } + public global::Cohere.ToolCallDelta? Type163 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsGenerationEventVariant2? Type164 { get; set; } + public global::Cohere.ChatToolCallsGenerationEvent? Type164 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEvent? Type165 { get; set; } + public global::Cohere.ChatToolCallsGenerationEventVariant2? Type165 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2? Type166 { get; set; } + public global::Cohere.ChatToolPlanDeltaEvent? Type166 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type167 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2? Type167 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2DeltaMessage? Type168 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type168 { get; set; } /// /// /// - public global::Cohere.CitationEndEvent? Type169 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2DeltaMessage? Type169 { get; set; } /// /// /// - public global::Cohere.CitationEndEventVariant2? Type170 { get; set; } + public global::Cohere.CitationEndEvent? Type170 { get; set; } /// /// /// - public global::Cohere.CitationOptions? Type171 { get; set; } + public global::Cohere.CitationEndEventVariant2? Type171 { get; set; } /// /// /// - public global::Cohere.CitationOptionsMode? Type172 { get; set; } + public global::Cohere.CitationOptions? Type172 { get; set; } /// /// /// - public global::Cohere.CitationStartEvent? Type173 { get; set; } + public global::Cohere.CitationOptionsMode? Type173 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2? Type174 { get; set; } + public global::Cohere.CitationStartEvent? Type174 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2Delta? Type175 { get; set; } + public global::Cohere.CitationStartEventVariant2? Type175 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2DeltaMessage? Type176 { get; set; } + public global::Cohere.CitationStartEventVariant2Delta? Type176 { get; set; } /// /// /// - public global::Cohere.ClassifyDataMetrics? Type177 { get; set; } + public global::Cohere.CitationStartEventVariant2DeltaMessage? Type177 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type178 { get; set; } + public global::Cohere.ClassifyDataMetrics? Type178 { get; set; } /// /// /// - public global::Cohere.LabelMetric? Type179 { get; set; } + public global::System.Collections.Generic.IList? Type179 { get; set; } /// /// /// - public global::Cohere.ClassifyExample? Type180 { get; set; } + public global::Cohere.LabelMetric? Type180 { get; set; } /// /// /// - public global::Cohere.Cluster? Type181 { get; set; } + public global::Cohere.ClassifyExample? Type181 { get; set; } /// /// /// - public global::Cohere.CompatibleEndpoint? Type182 { get; set; } + public global::Cohere.Cluster? Type182 { get; set; } /// /// /// - public global::Cohere.Connector? Type183 { get; set; } + public global::Cohere.CompatibleEndpoint? Type183 { get; set; } /// /// /// - public global::Cohere.ConnectorAuthStatus? Type184 { get; set; } + public global::Cohere.Connector? Type184 { get; set; } /// /// /// - public global::System.DateTime? Type185 { get; set; } + public global::Cohere.ConnectorAuthStatus? Type185 { get; set; } /// /// /// - public global::Cohere.ConnectorOAuth? Type186 { get; set; } + public global::System.DateTime? Type186 { get; set; } /// /// /// - public global::Cohere.ConnectorLog? Type187 { get; set; } + public global::Cohere.ConnectorOAuth? Type187 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobRequest? Type188 { get; set; } + public global::Cohere.ConnectorLog? Type188 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobResponse? Type189 { get; set; } + public global::Cohere.CreateClusterJobRequest? Type189 { get; set; } /// /// /// - public global::Cohere.CreateConnectorOAuth? Type190 { get; set; } + public global::Cohere.CreateClusterJobResponse? Type190 { get; set; } /// /// /// - public global::Cohere.CreateConnectorRequest? Type191 { get; set; } + public global::Cohere.CreateConnectorOAuth? Type191 { get; set; } /// /// /// - public global::Cohere.CreateConnectorServiceAuth? Type192 { get; set; } + public global::Cohere.CreateConnectorRequest? Type192 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse? Type193 { get; set; } + public global::Cohere.CreateConnectorServiceAuth? Type193 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequest? Type194 { get; set; } + public global::Cohere.CreateConnectorResponse? Type194 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type195 { get; set; } + public global::Cohere.CreateEmbedJobRequest? Type195 { get; set; } /// /// /// - public global::Cohere.EmbeddingType? Type196 { get; set; } + public global::System.Collections.Generic.IList? Type196 { get; set; } /// /// /// - public global::Cohere.EmbedInputType? Type197 { get; set; } + public global::Cohere.EmbeddingType? Type197 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequestTruncate? Type198 { get; set; } + public global::Cohere.EmbedInputType? Type198 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse? Type199 { get; set; } + public global::Cohere.CreateEmbedJobRequestTruncate? Type199 { get; set; } /// /// /// - public global::Cohere.CreateFinetunedModelResponse? Type200 { get; set; } + public global::Cohere.CreateEmbedJobResponse? Type200 { get; set; } /// /// /// - public global::Cohere.FinetunedModel? Type201 { get; set; } + public global::Cohere.CreateFinetunedModelResponse? Type201 { get; set; } /// /// /// - public global::Cohere.Settings? Type202 { get; set; } + public global::Cohere.FinetunedModel? Type202 { get; set; } /// /// /// - public global::Cohere.Hyperparameters? Type203 { get; set; } + public global::Cohere.Settings? Type203 { get; set; } /// /// /// - public global::Cohere.LoraTargetModules? Type204 { get; set; } + public global::Cohere.Hyperparameters? Type204 { get; set; } /// /// /// - public global::Cohere.WandbConfig? Type205 { get; set; } + public global::Cohere.LoraTargetModules? Type205 { get; set; } /// /// /// - public global::Cohere.Status? Type206 { get; set; } + public global::Cohere.WandbConfig? Type206 { get; set; } /// /// /// - public global::Cohere.Dataset? Type207 { get; set; } + public global::Cohere.Status? Type207 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type208 { get; set; } + public global::Cohere.Dataset? Type208 { get; set; } /// /// /// - public global::Cohere.DatasetPart? Type209 { get; set; } + public global::System.Collections.Generic.IList? Type209 { get; set; } /// /// /// - public global::Cohere.DatasetType? Type210 { get; set; } + public global::Cohere.DatasetPart? Type210 { get; set; } /// /// /// - public global::Cohere.Metrics? Type211 { get; set; } + public global::Cohere.DatasetType? Type211 { get; set; } /// /// /// - public global::Cohere.FinetuneDatasetMetrics? Type212 { get; set; } + public global::Cohere.Metrics? Type212 { get; set; } /// /// /// - public global::Cohere.RerankerDataMetrics? Type213 { get; set; } + public global::Cohere.FinetuneDatasetMetrics? Type213 { get; set; } /// /// /// - public global::Cohere.ParseInfo? Type214 { get; set; } + public global::Cohere.RerankerDataMetrics? Type214 { get; set; } /// /// /// - public global::Cohere.DatasetValidationStatus? Type215 { get; set; } + public global::Cohere.ParseInfo? Type215 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponse? Type216 { get; set; } + public global::Cohere.DatasetValidationStatus? Type216 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseEmbeddings? Type217 { get; set; } + public global::Cohere.EmbedByTypeResponse? Type217 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type218 { get; set; } + public global::Cohere.EmbedByTypeResponseEmbeddings? Type218 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type219 { get; set; } + public global::System.Collections.Generic.IList? Type219 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type220 { get; set; } + public global::System.Collections.Generic.IList>? Type220 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type221 { get; set; } + public global::System.Collections.Generic.IList>? Type221 { get; set; } /// /// /// - public global::Cohere.Image? Type222 { get; set; } + public global::System.Collections.Generic.IList? Type222 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseResponseType? Type223 { get; set; } + public global::Cohere.Image? Type223 { get; set; } /// /// /// - public global::Cohere.EmbedContent? Type224 { get; set; } + public global::Cohere.EmbedByTypeResponseResponseType? Type224 { get; set; } /// /// /// - public global::Cohere.EmbedImage? Type225 { get; set; } + public global::Cohere.EmbedContent? Type225 { get; set; } /// /// /// - public global::Cohere.EmbedImageUrl? Type226 { get; set; } + public global::Cohere.EmbedImage? Type226 { get; set; } /// /// /// - public global::Cohere.EmbedContentType? Type227 { get; set; } + public global::Cohere.EmbedImageUrl? Type227 { get; set; } /// /// /// - public global::Cohere.EmbedText? Type228 { get; set; } + public global::Cohere.EmbedContentType? Type228 { get; set; } /// /// /// - public global::Cohere.EmbedContentDiscriminator? Type229 { get; set; } + public global::Cohere.EmbedText? Type229 { get; set; } /// /// /// - public global::Cohere.EmbedContentDiscriminatorType? Type230 { get; set; } + public global::Cohere.EmbedContentDiscriminator? Type230 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponse? Type231 { get; set; } + public global::Cohere.EmbedContentDiscriminatorType? Type231 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponseResponseType? Type232 { get; set; } + public global::Cohere.EmbedFloatsResponse? Type232 { get; set; } /// /// /// - public global::Cohere.EmbedInput? Type233 { get; set; } + public global::Cohere.EmbedFloatsResponseResponseType? Type233 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type234 { get; set; } + public global::Cohere.EmbedInput? Type234 { get; set; } /// /// /// - public global::Cohere.EmbedJob? Type235 { get; set; } + public global::System.Collections.Generic.IList? Type235 { get; set; } /// /// /// - public global::Cohere.EmbedJobStatus? Type236 { get; set; } + public global::Cohere.EmbedJob? Type236 { get; set; } /// /// /// - public global::Cohere.EmbedJobTruncate? Type237 { get; set; } + public global::Cohere.EmbedJobStatus? Type237 { get; set; } /// /// /// - public global::Cohere.Error? Type238 { get; set; } + public global::Cohere.EmbedJobTruncate? Type238 { get; set; } /// /// /// - public global::Cohere.Event? Type239 { get; set; } + public global::Cohere.Error? Type239 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEnd? Type240 { get; set; } + public global::Cohere.Event? Type240 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEvent? Type241 { get; set; } + public global::Cohere.GenerateStreamEnd? Type241 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEventEventType? Type242 { get; set; } + public global::Cohere.GenerateStreamEvent? Type242 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2? Type243 { get; set; } + public global::Cohere.GenerateStreamEventEventType? Type243 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2Response? Type244 { get; set; } + public global::Cohere.GenerateStreamEndVariant2? Type244 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type245 { get; set; } + public global::Cohere.GenerateStreamEndVariant2Response? Type245 { get; set; } /// /// /// - public global::Cohere.SingleGenerationInStream? Type246 { get; set; } + public global::System.Collections.Generic.IList? Type246 { get; set; } /// /// /// - public global::Cohere.GenerateStreamError? Type247 { get; set; } + public global::Cohere.SingleGenerationInStream? Type247 { get; set; } /// /// /// - public global::Cohere.GenerateStreamErrorVariant2? Type248 { get; set; } + public global::Cohere.GenerateStreamError? Type248 { get; set; } /// /// /// - public global::Cohere.GenerateStreamText? Type249 { get; set; } + public global::Cohere.GenerateStreamErrorVariant2? Type249 { get; set; } /// /// /// - public global::Cohere.GenerateStreamTextVariant2? Type250 { get; set; } + public global::Cohere.GenerateStreamText? Type250 { get; set; } /// /// /// - public global::Cohere.GenerateStreamedResponse? Type251 { get; set; } + public global::Cohere.GenerateStreamTextVariant2? Type251 { get; set; } /// /// /// - public global::Cohere.GenerateStreamedResponseDiscriminator? Type252 { get; set; } + public global::Cohere.GenerateStreamedResponse? Type252 { get; set; } /// /// /// - public global::Cohere.GenerateStreamedResponseDiscriminatorEventType? Type253 { get; set; } + public global::Cohere.GenerateStreamedResponseDiscriminator? Type253 { get; set; } /// /// /// - public global::Cohere.Generation? Type254 { get; set; } + public global::Cohere.GenerateStreamedResponseDiscriminatorEventType? Type254 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type255 { get; set; } + public global::Cohere.Generation? Type255 { get; set; } /// /// /// - public global::Cohere.SingleGeneration? Type256 { get; set; } + public global::System.Collections.Generic.IList? Type256 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type257 { get; set; } + public global::Cohere.SingleGeneration? Type257 { get; set; } /// /// /// - public global::Cohere.SingleGenerationTokenLikelihood? Type258 { get; set; } + public global::System.Collections.Generic.IList? Type258 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponse? Type259 { get; set; } + public global::Cohere.SingleGenerationTokenLikelihood? Type259 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type260 { get; set; } + public global::Cohere.GetClusterJobResponse? Type260 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponseStatus? Type261 { get; set; } + public global::System.Collections.Generic.IList? Type261 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse? Type262 { get; set; } + public global::Cohere.GetClusterJobResponseStatus? Type262 { get; set; } /// /// /// - public global::Cohere.GetConnectorsLogsResponse? Type263 { get; set; } + public global::Cohere.GetConnectorResponse? Type263 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type264 { get; set; } + public global::Cohere.GetConnectorsLogsResponse? Type264 { get; set; } /// /// /// - public global::Cohere.GetFinetunedModelResponse? Type265 { get; set; } + public global::System.Collections.Generic.IList? Type265 { get; set; } /// /// /// - public global::Cohere.GetModelResponse? Type266 { get; set; } + public global::Cohere.GetFinetunedModelResponse? Type266 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type267 { get; set; } + public global::Cohere.GetModelResponse? Type267 { get; set; } /// /// /// - public global::Cohere.JSONResponseFormat? Type268 { get; set; } + public global::System.Collections.Generic.IList? Type268 { get; set; } /// /// /// - public global::Cohere.ResponseFormatType? Type269 { get; set; } + public global::Cohere.JSONResponseFormat? Type269 { get; set; } /// /// /// - public global::Cohere.JsonResponseFormatV2? Type270 { get; set; } + public global::Cohere.ResponseFormatType? Type270 { get; set; } /// /// /// - public global::Cohere.ResponseFormatTypeV2? Type271 { get; set; } + public global::Cohere.JsonResponseFormatV2? Type271 { get; set; } /// /// /// - public global::Cohere.ListClusterJobsResponse? Type272 { get; set; } + public global::Cohere.ResponseFormatTypeV2? Type272 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type273 { get; set; } + public global::Cohere.ListClusterJobsResponse? Type273 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse? Type274 { get; set; } + public global::System.Collections.Generic.IList? Type274 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type275 { get; set; } + public global::Cohere.ListConnectorsResponse? Type275 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobResponse? Type276 { get; set; } + public global::System.Collections.Generic.IList? Type276 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type277 { get; set; } + public global::Cohere.ListEmbedJobResponse? Type277 { get; set; } /// /// /// - public global::Cohere.ListEventsResponse? Type278 { get; set; } + public global::System.Collections.Generic.IList? Type278 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type279 { get; set; } + public global::Cohere.ListEventsResponse? Type279 { get; set; } /// /// /// - public global::Cohere.ListFinetunedModelsResponse? Type280 { get; set; } + public global::System.Collections.Generic.IList? Type280 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type281 { get; set; } + public global::Cohere.ListFinetunedModelsResponse? Type281 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse? Type282 { get; set; } + public global::System.Collections.Generic.IList? Type282 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type283 { get; set; } + public global::Cohere.ListModelsResponse? Type283 { get; set; } /// /// /// - public global::Cohere.ListTrainingStepMetricsResponse? Type284 { get; set; } + public global::System.Collections.Generic.IList? Type284 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type285 { get; set; } + public global::Cohere.ListTrainingStepMetricsResponse? Type285 { get; set; } /// /// /// - public global::Cohere.TrainingStepMetrics? Type286 { get; set; } + public global::System.Collections.Generic.IList? Type286 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type287 { get; set; } + public global::Cohere.TrainingStepMetrics? Type287 { get; set; } /// /// /// - public global::Cohere.LogLikelihoodResponse? Type288 { get; set; } + public global::System.Collections.Generic.Dictionary? Type288 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type289 { get; set; } + public global::Cohere.LogLikelihoodResponse? Type289 { get; set; } /// /// /// - public global::Cohere.TokenLikelihood? Type290 { get; set; } + public global::System.Collections.Generic.IList? Type290 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeResponse? Type291 { get; set; } + public global::Cohere.TokenLikelihood? Type291 { get; set; } /// /// /// - public global::Cohere.ReasoningEffort? Type292 { get; set; } + public global::Cohere.OAuthAuthorizeResponse? Type292 { get; set; } /// /// /// - public global::Cohere.RerankDocument? Type293 { get; set; } + public global::Cohere.ReasoningEffort? Type293 { get; set; } /// /// /// - public global::Cohere.ResponseFormat? Type294 { get; set; } + public global::Cohere.RerankDocument? Type294 { get; set; } /// /// /// - public global::Cohere.TextResponseFormat? Type295 { get; set; } + public global::Cohere.ResponseFormat? Type295 { get; set; } /// /// /// - public global::Cohere.ResponseFormatDiscriminator? Type296 { get; set; } + public global::Cohere.TextResponseFormat? Type296 { get; set; } /// /// /// - public global::Cohere.ResponseFormatDiscriminatorType? Type297 { get; set; } + public global::Cohere.ResponseFormatDiscriminator? Type297 { get; set; } /// /// /// - public global::Cohere.ResponseFormatV2? Type298 { get; set; } + public global::Cohere.ResponseFormatDiscriminatorType? Type298 { get; set; } /// /// /// - public global::Cohere.TextResponseFormatV2? Type299 { get; set; } + public global::Cohere.ResponseFormatV2? Type299 { get; set; } /// /// /// - public global::Cohere.ResponseFormatV2Discriminator? Type300 { get; set; } + public global::Cohere.TextResponseFormatV2? Type300 { get; set; } /// /// /// - public global::Cohere.ResponseFormatV2DiscriminatorType? Type301 { get; set; } + public global::Cohere.ResponseFormatV2Discriminator? Type301 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponse? Type302 { get; set; } + public global::Cohere.ResponseFormatV2DiscriminatorType? Type302 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponseDiscriminator? Type303 { get; set; } + public global::Cohere.StreamedChatResponse? Type303 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponseDiscriminatorEventType? Type304 { get; set; } + public global::Cohere.StreamedChatResponseDiscriminator? Type304 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponseV2? Type305 { get; set; } + public global::Cohere.StreamedChatResponseDiscriminatorEventType? Type305 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponseV2Discriminator? Type306 { get; set; } + public global::Cohere.StreamedChatResponseV2? Type306 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponseV2DiscriminatorType? Type307 { get; set; } + public global::Cohere.StreamedChatResponseV2Discriminator? Type307 { get; set; } /// /// /// - public global::Cohere.Tool? Type308 { get; set; } + public global::Cohere.StreamedChatResponseV2DiscriminatorType? Type308 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type309 { get; set; } + public global::Cohere.Tool? Type309 { get; set; } /// /// /// - public global::Cohere.ToolParameterDefinitions2? Type310 { get; set; } + public global::System.Collections.Generic.Dictionary? Type310 { get; set; } /// /// /// - public global::Cohere.ToolV2? Type311 { get; set; } + public global::Cohere.ToolParameterDefinitions2? Type311 { get; set; } /// /// /// - public global::Cohere.ToolV2Function? Type312 { get; set; } + public global::Cohere.ToolV2? Type312 { get; set; } /// /// /// - public global::Cohere.ToolV2Type? Type313 { get; set; } + public global::Cohere.ToolV2Function? Type313 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequest? Type314 { get; set; } + public global::Cohere.ToolV2Type? Type314 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequestStatus? Type315 { get; set; } + public global::Cohere.UpdateClusterJobRequest? Type315 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobResponse? Type316 { get; set; } + public global::Cohere.UpdateClusterJobRequestStatus? Type316 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorRequest? Type317 { get; set; } + public global::Cohere.UpdateClusterJobResponse? Type317 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse? Type318 { get; set; } + public global::Cohere.UpdateConnectorRequest? Type318 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelResponse? Type319 { get; set; } + public global::Cohere.UpdateConnectorResponse? Type319 { get; set; } /// /// /// - public global::Cohere.ChatRequest? Type320 { get; set; } + public global::Cohere.UpdateFinetunedModelResponse? Type320 { get; set; } /// /// /// - public global::Cohere.ChatRequestCitationQuality? Type321 { get; set; } + public global::Cohere.ChatRequest? Type321 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type322 { get; set; } + public global::Cohere.ChatRequestCitationQuality? Type322 { get; set; } /// /// /// - public global::Cohere.ChatRequestPromptTruncation? Type323 { get; set; } + public global::System.Collections.Generic.IList? Type323 { get; set; } /// /// /// - public global::Cohere.ChatRequestSafetyMode? Type324 { get; set; } + public global::Cohere.ChatRequestPromptTruncation? Type324 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type325 { get; set; } + public global::Cohere.ChatRequestSafetyMode? Type325 { get; set; } /// /// /// - public global::Cohere.ClassifyRequest? Type326 { get; set; } + public global::System.Collections.Generic.IList? Type326 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type327 { get; set; } + public global::Cohere.ClassifyRequest? Type327 { get; set; } /// /// /// - public global::Cohere.ClassifyRequestTruncate? Type328 { get; set; } + public global::System.Collections.Generic.IList? Type328 { get; set; } /// /// /// - public global::Cohere.CreateDatasetRequest? Type329 { get; set; } + public global::Cohere.ClassifyRequestTruncate? Type329 { get; set; } /// /// /// - public byte[]? Type330 { get; set; } + public global::Cohere.CreateDatasetRequest? Type330 { get; set; } /// /// /// - public global::Cohere.DetokenizeRequest? Type331 { get; set; } + public byte[]? Type331 { get; set; } /// /// /// - public global::Cohere.EmbedRequest? Type332 { get; set; } + public global::Cohere.DetokenizeRequest? Type332 { get; set; } /// /// /// - public global::Cohere.EmbedRequestTruncate? Type333 { get; set; } + public global::Cohere.EmbedRequest? Type333 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelRequest? Type334 { get; set; } + public global::Cohere.EmbedRequestTruncate? Type334 { get; set; } /// /// /// - public global::Cohere.GenerateRequest? Type335 { get; set; } + public global::Cohere.UpdateFinetunedModelRequest? Type335 { get; set; } /// /// /// - public global::Cohere.GenerateRequestReturnLikelihoods? Type336 { get; set; } + public global::Cohere.GenerateRequest? Type336 { get; set; } /// /// /// - public global::Cohere.GenerateRequestTruncate? Type337 { get; set; } + public global::Cohere.GenerateRequestReturnLikelihoods? Type337 { get; set; } /// /// /// - public global::Cohere.RerankRequest? Type338 { get; set; } + public global::Cohere.GenerateRequestTruncate? Type338 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type339 { get; set; } + public global::Cohere.RerankRequest? Type339 { get; set; } /// /// /// - public global::Cohere.OneOf? Type340 { get; set; } + public global::System.Collections.Generic.IList>? Type340 { get; set; } /// /// /// - public global::Cohere.SummarizeRequest? Type341 { get; set; } + public global::Cohere.OneOf? Type341 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestExtractiveness? Type342 { get; set; } + public global::Cohere.SummarizeRequest? Type342 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestFormat? Type343 { get; set; } + public global::Cohere.SummarizeRequestExtractiveness? Type343 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestLength? Type344 { get; set; } + public global::Cohere.SummarizeRequestFormat? Type344 { get; set; } /// /// /// - public global::Cohere.TokenizeRequest? Type345 { get; set; } + public global::Cohere.SummarizeRequestLength? Type345 { get; set; } /// /// /// - public global::Cohere.Chatv2Request? Type346 { get; set; } + public global::Cohere.TokenizeRequest? Type346 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type347 { get; set; } + public global::Cohere.Chatv2Request? Type347 { get; set; } /// /// /// - public global::Cohere.OneOf? Type348 { get; set; } + public global::System.Collections.Generic.IList>? Type348 { get; set; } /// /// /// - public global::Cohere.Chatv2RequestSafetyMode? Type349 { get; set; } + public global::Cohere.OneOf? Type349 { get; set; } /// /// /// - public global::Cohere.Chatv2RequestToolChoice? Type350 { get; set; } + public global::Cohere.Chatv2RequestSafetyMode? Type350 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type351 { get; set; } + public global::Cohere.Chatv2RequestToolChoice? Type351 { get; set; } /// /// /// - public global::Cohere.Embedv2Request? Type352 { get; set; } + public global::System.Collections.Generic.IList? Type352 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type353 { get; set; } + public global::Cohere.Embedv2Request? Type353 { get; set; } /// /// /// - public global::Cohere.Embedv2RequestTruncate? Type354 { get; set; } + public global::System.Collections.Generic.IList? Type354 { get; set; } /// /// /// - public global::Cohere.Rerankv2Request? Type355 { get; set; } + public global::Cohere.Embedv2RequestTruncate? Type355 { get; set; } /// /// /// - public global::Cohere.ChatAccepts? Type356 { get; set; } + public global::Cohere.Rerankv2Request? Type356 { get; set; } /// /// /// - public global::Cohere.OneOf? Type357 { get; set; } + public global::Cohere.ChatAccepts? Type357 { get; set; } /// /// /// - public global::Cohere.ChatResponse3? Type358 { get; set; } + public global::Cohere.OneOf? Type358 { get; set; } /// /// /// - public global::Cohere.ChatResponse4? Type359 { get; set; } + public global::Cohere.ChatResponse3? Type359 { get; set; } /// /// /// - public global::Cohere.ChatResponse5? Type360 { get; set; } + public global::Cohere.ChatResponse4? Type360 { get; set; } /// /// /// - public global::Cohere.ChatResponse6? Type361 { get; set; } + public global::Cohere.ChatResponse5? Type361 { get; set; } /// /// /// - public global::Cohere.ChatResponse7? Type362 { get; set; } + public global::Cohere.ChatResponse6? Type362 { get; set; } /// /// /// - public global::Cohere.ChatResponse8? Type363 { get; set; } + public global::Cohere.ChatResponse7? Type363 { get; set; } /// /// /// - public global::Cohere.ChatResponse9? Type364 { get; set; } + public global::Cohere.ChatResponse8? Type364 { get; set; } /// /// /// - public global::Cohere.ChatResponse10? Type365 { get; set; } + public global::Cohere.ChatResponse9? Type365 { get; set; } /// /// /// - public global::Cohere.ChatResponse11? Type366 { get; set; } + public global::Cohere.ChatResponse10? Type366 { get; set; } /// /// /// - public global::Cohere.ChatResponse12? Type367 { get; set; } + public global::Cohere.ChatResponse11? Type367 { get; set; } /// /// /// - public global::Cohere.ChatResponse13? Type368 { get; set; } + public global::Cohere.ChatResponse12? Type368 { get; set; } /// /// /// - public global::Cohere.ChatResponse14? Type369 { get; set; } + public global::Cohere.ChatResponse13? Type369 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse? Type370 { get; set; } + public global::Cohere.ChatResponse14? Type370 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse2? Type371 { get; set; } + public global::Cohere.CheckAPIKeyResponse? Type371 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse3? Type372 { get; set; } + public global::Cohere.CheckAPIKeyResponse2? Type372 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse4? Type373 { get; set; } + public global::Cohere.CheckAPIKeyResponse3? Type373 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse5? Type374 { get; set; } + public global::Cohere.CheckAPIKeyResponse4? Type374 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse6? Type375 { get; set; } + public global::Cohere.CheckAPIKeyResponse5? Type375 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse7? Type376 { get; set; } + public global::Cohere.CheckAPIKeyResponse6? Type376 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse8? Type377 { get; set; } + public global::Cohere.CheckAPIKeyResponse7? Type377 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse9? Type378 { get; set; } + public global::Cohere.CheckAPIKeyResponse8? Type378 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse10? Type379 { get; set; } + public global::Cohere.CheckAPIKeyResponse9? Type379 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse11? Type380 { get; set; } + public global::Cohere.CheckAPIKeyResponse10? Type380 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse12? Type381 { get; set; } + public global::Cohere.CheckAPIKeyResponse11? Type381 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse13? Type382 { get; set; } + public global::Cohere.CheckAPIKeyResponse12? Type382 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse? Type383 { get; set; } + public global::Cohere.CheckAPIKeyResponse13? Type383 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type384 { get; set; } + public global::Cohere.ClassifyResponse? Type384 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassification? Type385 { get; set; } + public global::System.Collections.Generic.IList? Type385 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationClassificationType? Type386 { get; set; } + public global::Cohere.ClassifyResponseClassification? Type386 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type387 { get; set; } + public global::Cohere.ClassifyResponseClassificationClassificationType? Type387 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationLabels2? Type388 { get; set; } + public global::System.Collections.Generic.Dictionary? Type388 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse2? Type389 { get; set; } + public global::Cohere.ClassifyResponseClassificationLabels2? Type389 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse3? Type390 { get; set; } + public global::Cohere.ClassifyResponse2? Type390 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse4? Type391 { get; set; } + public global::Cohere.ClassifyResponse3? Type391 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse5? Type392 { get; set; } + public global::Cohere.ClassifyResponse4? Type392 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse6? Type393 { get; set; } + public global::Cohere.ClassifyResponse5? Type393 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse7? Type394 { get; set; } + public global::Cohere.ClassifyResponse6? Type394 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse8? Type395 { get; set; } + public global::Cohere.ClassifyResponse7? Type395 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse9? Type396 { get; set; } + public global::Cohere.ClassifyResponse8? Type396 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse10? Type397 { get; set; } + public global::Cohere.ClassifyResponse9? Type397 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse11? Type398 { get; set; } + public global::Cohere.ClassifyResponse10? Type398 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse12? Type399 { get; set; } + public global::Cohere.ClassifyResponse11? Type399 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse13? Type400 { get; set; } + public global::Cohere.ClassifyResponse12? Type400 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse2? Type401 { get; set; } + public global::Cohere.ClassifyResponse13? Type401 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse3? Type402 { get; set; } + public global::Cohere.ListConnectorsResponse2? Type402 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse4? Type403 { get; set; } + public global::Cohere.ListConnectorsResponse3? Type403 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse5? Type404 { get; set; } + public global::Cohere.ListConnectorsResponse4? Type404 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse6? Type405 { get; set; } + public global::Cohere.ListConnectorsResponse5? Type405 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse7? Type406 { get; set; } + public global::Cohere.ListConnectorsResponse6? Type406 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse8? Type407 { get; set; } + public global::Cohere.ListConnectorsResponse7? Type407 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse9? Type408 { get; set; } + public global::Cohere.ListConnectorsResponse8? Type408 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse10? Type409 { get; set; } + public global::Cohere.ListConnectorsResponse9? Type409 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse11? Type410 { get; set; } + public global::Cohere.ListConnectorsResponse10? Type410 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse12? Type411 { get; set; } + public global::Cohere.ListConnectorsResponse11? Type411 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse13? Type412 { get; set; } + public global::Cohere.ListConnectorsResponse12? Type412 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse2? Type413 { get; set; } + public global::Cohere.ListConnectorsResponse13? Type413 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse3? Type414 { get; set; } + public global::Cohere.CreateConnectorResponse2? Type414 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse4? Type415 { get; set; } + public global::Cohere.CreateConnectorResponse3? Type415 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse5? Type416 { get; set; } + public global::Cohere.CreateConnectorResponse4? Type416 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse6? Type417 { get; set; } + public global::Cohere.CreateConnectorResponse5? Type417 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse7? Type418 { get; set; } + public global::Cohere.CreateConnectorResponse6? Type418 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse8? Type419 { get; set; } + public global::Cohere.CreateConnectorResponse7? Type419 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse9? Type420 { get; set; } + public global::Cohere.CreateConnectorResponse8? Type420 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse10? Type421 { get; set; } + public global::Cohere.CreateConnectorResponse9? Type421 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse11? Type422 { get; set; } + public global::Cohere.CreateConnectorResponse10? Type422 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse12? Type423 { get; set; } + public global::Cohere.CreateConnectorResponse11? Type423 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse13? Type424 { get; set; } + public global::Cohere.CreateConnectorResponse12? Type424 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse2? Type425 { get; set; } + public global::Cohere.CreateConnectorResponse13? Type425 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse3? Type426 { get; set; } + public global::Cohere.DeleteConnectorResponse2? Type426 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse4? Type427 { get; set; } + public global::Cohere.DeleteConnectorResponse3? Type427 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse5? Type428 { get; set; } + public global::Cohere.DeleteConnectorResponse4? Type428 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse6? Type429 { get; set; } + public global::Cohere.DeleteConnectorResponse5? Type429 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse7? Type430 { get; set; } + public global::Cohere.DeleteConnectorResponse6? Type430 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse8? Type431 { get; set; } + public global::Cohere.DeleteConnectorResponse7? Type431 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse9? Type432 { get; set; } + public global::Cohere.DeleteConnectorResponse8? Type432 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse10? Type433 { get; set; } + public global::Cohere.DeleteConnectorResponse9? Type433 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse11? Type434 { get; set; } + public global::Cohere.DeleteConnectorResponse10? Type434 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse12? Type435 { get; set; } + public global::Cohere.DeleteConnectorResponse11? Type435 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse13? Type436 { get; set; } + public global::Cohere.DeleteConnectorResponse12? Type436 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse2? Type437 { get; set; } + public global::Cohere.DeleteConnectorResponse13? Type437 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse3? Type438 { get; set; } + public global::Cohere.GetConnectorResponse2? Type438 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse4? Type439 { get; set; } + public global::Cohere.GetConnectorResponse3? Type439 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse5? Type440 { get; set; } + public global::Cohere.GetConnectorResponse4? Type440 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse6? Type441 { get; set; } + public global::Cohere.GetConnectorResponse5? Type441 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse7? Type442 { get; set; } + public global::Cohere.GetConnectorResponse6? Type442 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse8? Type443 { get; set; } + public global::Cohere.GetConnectorResponse7? Type443 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse9? Type444 { get; set; } + public global::Cohere.GetConnectorResponse8? Type444 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse10? Type445 { get; set; } + public global::Cohere.GetConnectorResponse9? Type445 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse11? Type446 { get; set; } + public global::Cohere.GetConnectorResponse10? Type446 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse12? Type447 { get; set; } + public global::Cohere.GetConnectorResponse11? Type447 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse13? Type448 { get; set; } + public global::Cohere.GetConnectorResponse12? Type448 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse2? Type449 { get; set; } + public global::Cohere.GetConnectorResponse13? Type449 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse3? Type450 { get; set; } + public global::Cohere.UpdateConnectorResponse2? Type450 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse4? Type451 { get; set; } + public global::Cohere.UpdateConnectorResponse3? Type451 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse5? Type452 { get; set; } + public global::Cohere.UpdateConnectorResponse4? Type452 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse6? Type453 { get; set; } + public global::Cohere.UpdateConnectorResponse5? Type453 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse7? Type454 { get; set; } + public global::Cohere.UpdateConnectorResponse6? Type454 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse8? Type455 { get; set; } + public global::Cohere.UpdateConnectorResponse7? Type455 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse9? Type456 { get; set; } + public global::Cohere.UpdateConnectorResponse8? Type456 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse10? Type457 { get; set; } + public global::Cohere.UpdateConnectorResponse9? Type457 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse11? Type458 { get; set; } + public global::Cohere.UpdateConnectorResponse10? Type458 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse12? Type459 { get; set; } + public global::Cohere.UpdateConnectorResponse11? Type459 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse13? Type460 { get; set; } + public global::Cohere.UpdateConnectorResponse12? Type460 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse? Type461 { get; set; } + public global::Cohere.UpdateConnectorResponse13? Type461 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse2? Type462 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse? Type462 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse3? Type463 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse2? Type463 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse4? Type464 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse3? Type464 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse5? Type465 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse4? Type465 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse6? Type466 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse5? Type466 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse7? Type467 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse6? Type467 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse8? Type468 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse7? Type468 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse9? Type469 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse8? Type469 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse10? Type470 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse9? Type470 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse11? Type471 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse10? Type471 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse12? Type472 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse11? Type472 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse? Type473 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse12? Type473 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type474 { get; set; } + public global::Cohere.ListDatasetsResponse? Type474 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse2? Type475 { get; set; } + public global::System.Collections.Generic.IList? Type475 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse3? Type476 { get; set; } + public global::Cohere.ListDatasetsResponse2? Type476 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse4? Type477 { get; set; } + public global::Cohere.ListDatasetsResponse3? Type477 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse5? Type478 { get; set; } + public global::Cohere.ListDatasetsResponse4? Type478 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse6? Type479 { get; set; } + public global::Cohere.ListDatasetsResponse5? Type479 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse7? Type480 { get; set; } + public global::Cohere.ListDatasetsResponse6? Type480 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse8? Type481 { get; set; } + public global::Cohere.ListDatasetsResponse7? Type481 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse9? Type482 { get; set; } + public global::Cohere.ListDatasetsResponse8? Type482 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse10? Type483 { get; set; } + public global::Cohere.ListDatasetsResponse9? Type483 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse11? Type484 { get; set; } + public global::Cohere.ListDatasetsResponse10? Type484 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse12? Type485 { get; set; } + public global::Cohere.ListDatasetsResponse11? Type485 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse13? Type486 { get; set; } + public global::Cohere.ListDatasetsResponse12? Type486 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse? Type487 { get; set; } + public global::Cohere.ListDatasetsResponse13? Type487 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse2? Type488 { get; set; } + public global::Cohere.CreateDatasetResponse? Type488 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse3? Type489 { get; set; } + public global::Cohere.CreateDatasetResponse2? Type489 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse4? Type490 { get; set; } + public global::Cohere.CreateDatasetResponse3? Type490 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse5? Type491 { get; set; } + public global::Cohere.CreateDatasetResponse4? Type491 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse6? Type492 { get; set; } + public global::Cohere.CreateDatasetResponse5? Type492 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse7? Type493 { get; set; } + public global::Cohere.CreateDatasetResponse6? Type493 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse8? Type494 { get; set; } + public global::Cohere.CreateDatasetResponse7? Type494 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse9? Type495 { get; set; } + public global::Cohere.CreateDatasetResponse8? Type495 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse10? Type496 { get; set; } + public global::Cohere.CreateDatasetResponse9? Type496 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse11? Type497 { get; set; } + public global::Cohere.CreateDatasetResponse10? Type497 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse12? Type498 { get; set; } + public global::Cohere.CreateDatasetResponse11? Type498 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse13? Type499 { get; set; } + public global::Cohere.CreateDatasetResponse12? Type499 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse? Type500 { get; set; } + public global::Cohere.CreateDatasetResponse13? Type500 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse2? Type501 { get; set; } + public global::Cohere.GetDatasetUsageResponse? Type501 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse3? Type502 { get; set; } + public global::Cohere.GetDatasetUsageResponse2? Type502 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse4? Type503 { get; set; } + public global::Cohere.GetDatasetUsageResponse3? Type503 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse5? Type504 { get; set; } + public global::Cohere.GetDatasetUsageResponse4? Type504 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse6? Type505 { get; set; } + public global::Cohere.GetDatasetUsageResponse5? Type505 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse7? Type506 { get; set; } + public global::Cohere.GetDatasetUsageResponse6? Type506 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse8? Type507 { get; set; } + public global::Cohere.GetDatasetUsageResponse7? Type507 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse9? Type508 { get; set; } + public global::Cohere.GetDatasetUsageResponse8? Type508 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse10? Type509 { get; set; } + public global::Cohere.GetDatasetUsageResponse9? Type509 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse11? Type510 { get; set; } + public global::Cohere.GetDatasetUsageResponse10? Type510 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse12? Type511 { get; set; } + public global::Cohere.GetDatasetUsageResponse11? Type511 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse13? Type512 { get; set; } + public global::Cohere.GetDatasetUsageResponse12? Type512 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse2? Type513 { get; set; } + public global::Cohere.GetDatasetUsageResponse13? Type513 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse3? Type514 { get; set; } + public global::Cohere.DeleteDatasetResponse2? Type514 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse4? Type515 { get; set; } + public global::Cohere.DeleteDatasetResponse3? Type515 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse5? Type516 { get; set; } + public global::Cohere.DeleteDatasetResponse4? Type516 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse6? Type517 { get; set; } + public global::Cohere.DeleteDatasetResponse5? Type517 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse7? Type518 { get; set; } + public global::Cohere.DeleteDatasetResponse6? Type518 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse8? Type519 { get; set; } + public global::Cohere.DeleteDatasetResponse7? Type519 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse9? Type520 { get; set; } + public global::Cohere.DeleteDatasetResponse8? Type520 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse10? Type521 { get; set; } + public global::Cohere.DeleteDatasetResponse9? Type521 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse11? Type522 { get; set; } + public global::Cohere.DeleteDatasetResponse10? Type522 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse12? Type523 { get; set; } + public global::Cohere.DeleteDatasetResponse11? Type523 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse13? Type524 { get; set; } + public global::Cohere.DeleteDatasetResponse12? Type524 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse? Type525 { get; set; } + public global::Cohere.DeleteDatasetResponse13? Type525 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse2? Type526 { get; set; } + public global::Cohere.GetDatasetResponse? Type526 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse3? Type527 { get; set; } + public global::Cohere.GetDatasetResponse2? Type527 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse4? Type528 { get; set; } + public global::Cohere.GetDatasetResponse3? Type528 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse5? Type529 { get; set; } + public global::Cohere.GetDatasetResponse4? Type529 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse6? Type530 { get; set; } + public global::Cohere.GetDatasetResponse5? Type530 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse7? Type531 { get; set; } + public global::Cohere.GetDatasetResponse6? Type531 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse8? Type532 { get; set; } + public global::Cohere.GetDatasetResponse7? Type532 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse9? Type533 { get; set; } + public global::Cohere.GetDatasetResponse8? Type533 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse10? Type534 { get; set; } + public global::Cohere.GetDatasetResponse9? Type534 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse11? Type535 { get; set; } + public global::Cohere.GetDatasetResponse10? Type535 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse12? Type536 { get; set; } + public global::Cohere.GetDatasetResponse11? Type536 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse13? Type537 { get; set; } + public global::Cohere.GetDatasetResponse12? Type537 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse? Type538 { get; set; } + public global::Cohere.GetDatasetResponse13? Type538 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse2? Type539 { get; set; } + public global::Cohere.DetokenizeResponse? Type539 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse3? Type540 { get; set; } + public global::Cohere.DetokenizeResponse2? Type540 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse4? Type541 { get; set; } + public global::Cohere.DetokenizeResponse3? Type541 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse5? Type542 { get; set; } + public global::Cohere.DetokenizeResponse4? Type542 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse6? Type543 { get; set; } + public global::Cohere.DetokenizeResponse5? Type543 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse7? Type544 { get; set; } + public global::Cohere.DetokenizeResponse6? Type544 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse8? Type545 { get; set; } + public global::Cohere.DetokenizeResponse7? Type545 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse9? Type546 { get; set; } + public global::Cohere.DetokenizeResponse8? Type546 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse10? Type547 { get; set; } + public global::Cohere.DetokenizeResponse9? Type547 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse11? Type548 { get; set; } + public global::Cohere.DetokenizeResponse10? Type548 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse12? Type549 { get; set; } + public global::Cohere.DetokenizeResponse11? Type549 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse13? Type550 { get; set; } + public global::Cohere.DetokenizeResponse12? Type550 { get; set; } /// /// /// - public global::Cohere.EmbedResponse? Type551 { get; set; } + public global::Cohere.DetokenizeResponse13? Type551 { get; set; } /// /// /// - public global::Cohere.EmbedResponseDiscriminator? Type552 { get; set; } + public global::Cohere.EmbedResponse? Type552 { get; set; } /// /// /// - public global::Cohere.EmbedResponseDiscriminatorResponseType? Type553 { get; set; } + public global::Cohere.EmbedResponseDiscriminator? Type553 { get; set; } /// /// /// - public global::Cohere.EmbedResponse2? Type554 { get; set; } + public global::Cohere.EmbedResponseDiscriminatorResponseType? Type554 { get; set; } /// /// /// - public global::Cohere.EmbedResponse3? Type555 { get; set; } + public global::Cohere.EmbedResponse2? Type555 { get; set; } /// /// /// - public global::Cohere.EmbedResponse4? Type556 { get; set; } + public global::Cohere.EmbedResponse3? Type556 { get; set; } /// /// /// - public global::Cohere.EmbedResponse5? Type557 { get; set; } + public global::Cohere.EmbedResponse4? Type557 { get; set; } /// /// /// - public global::Cohere.EmbedResponse6? Type558 { get; set; } + public global::Cohere.EmbedResponse5? Type558 { get; set; } /// /// /// - public global::Cohere.EmbedResponse7? Type559 { get; set; } + public global::Cohere.EmbedResponse6? Type559 { get; set; } /// /// /// - public global::Cohere.EmbedResponse8? Type560 { get; set; } + public global::Cohere.EmbedResponse7? Type560 { get; set; } /// /// /// - public global::Cohere.EmbedResponse9? Type561 { get; set; } + public global::Cohere.EmbedResponse8? Type561 { get; set; } /// /// /// - public global::Cohere.EmbedResponse10? Type562 { get; set; } + public global::Cohere.EmbedResponse9? Type562 { get; set; } /// /// /// - public global::Cohere.EmbedResponse11? Type563 { get; set; } + public global::Cohere.EmbedResponse10? Type563 { get; set; } /// /// /// - public global::Cohere.EmbedResponse12? Type564 { get; set; } + public global::Cohere.EmbedResponse11? Type564 { get; set; } /// /// /// - public global::Cohere.EmbedResponse13? Type565 { get; set; } + public global::Cohere.EmbedResponse12? Type565 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse? Type566 { get; set; } + public global::Cohere.EmbedResponse13? Type566 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse2? Type567 { get; set; } + public global::Cohere.ListEmbedJobsResponse? Type567 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse3? Type568 { get; set; } + public global::Cohere.ListEmbedJobsResponse2? Type568 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse4? Type569 { get; set; } + public global::Cohere.ListEmbedJobsResponse3? Type569 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse5? Type570 { get; set; } + public global::Cohere.ListEmbedJobsResponse4? Type570 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse6? Type571 { get; set; } + public global::Cohere.ListEmbedJobsResponse5? Type571 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse7? Type572 { get; set; } + public global::Cohere.ListEmbedJobsResponse6? Type572 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse8? Type573 { get; set; } + public global::Cohere.ListEmbedJobsResponse7? Type573 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse9? Type574 { get; set; } + public global::Cohere.ListEmbedJobsResponse8? Type574 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse10? Type575 { get; set; } + public global::Cohere.ListEmbedJobsResponse9? Type575 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse11? Type576 { get; set; } + public global::Cohere.ListEmbedJobsResponse10? Type576 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse12? Type577 { get; set; } + public global::Cohere.ListEmbedJobsResponse11? Type577 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse2? Type578 { get; set; } + public global::Cohere.ListEmbedJobsResponse12? Type578 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse3? Type579 { get; set; } + public global::Cohere.CreateEmbedJobResponse2? Type579 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse4? Type580 { get; set; } + public global::Cohere.CreateEmbedJobResponse3? Type580 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse5? Type581 { get; set; } + public global::Cohere.CreateEmbedJobResponse4? Type581 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse6? Type582 { get; set; } + public global::Cohere.CreateEmbedJobResponse5? Type582 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse7? Type583 { get; set; } + public global::Cohere.CreateEmbedJobResponse6? Type583 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse8? Type584 { get; set; } + public global::Cohere.CreateEmbedJobResponse7? Type584 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse9? Type585 { get; set; } + public global::Cohere.CreateEmbedJobResponse8? Type585 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse10? Type586 { get; set; } + public global::Cohere.CreateEmbedJobResponse9? Type586 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse11? Type587 { get; set; } + public global::Cohere.CreateEmbedJobResponse10? Type587 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse12? Type588 { get; set; } + public global::Cohere.CreateEmbedJobResponse11? Type588 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse13? Type589 { get; set; } + public global::Cohere.CreateEmbedJobResponse12? Type589 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse? Type590 { get; set; } + public global::Cohere.CreateEmbedJobResponse13? Type590 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse2? Type591 { get; set; } + public global::Cohere.GetEmbedJobResponse? Type591 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse3? Type592 { get; set; } + public global::Cohere.GetEmbedJobResponse2? Type592 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse4? Type593 { get; set; } + public global::Cohere.GetEmbedJobResponse3? Type593 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse5? Type594 { get; set; } + public global::Cohere.GetEmbedJobResponse4? Type594 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse6? Type595 { get; set; } + public global::Cohere.GetEmbedJobResponse5? Type595 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse7? Type596 { get; set; } + public global::Cohere.GetEmbedJobResponse6? Type596 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse8? Type597 { get; set; } + public global::Cohere.GetEmbedJobResponse7? Type597 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse9? Type598 { get; set; } + public global::Cohere.GetEmbedJobResponse8? Type598 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse10? Type599 { get; set; } + public global::Cohere.GetEmbedJobResponse9? Type599 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse11? Type600 { get; set; } + public global::Cohere.GetEmbedJobResponse10? Type600 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse12? Type601 { get; set; } + public global::Cohere.GetEmbedJobResponse11? Type601 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse? Type602 { get; set; } + public global::Cohere.GetEmbedJobResponse12? Type602 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse2? Type603 { get; set; } + public global::Cohere.CancelEmbedJobResponse? Type603 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse3? Type604 { get; set; } + public global::Cohere.CancelEmbedJobResponse2? Type604 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse4? Type605 { get; set; } + public global::Cohere.CancelEmbedJobResponse3? Type605 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse5? Type606 { get; set; } + public global::Cohere.CancelEmbedJobResponse4? Type606 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse6? Type607 { get; set; } + public global::Cohere.CancelEmbedJobResponse5? Type607 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse7? Type608 { get; set; } + public global::Cohere.CancelEmbedJobResponse6? Type608 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse8? Type609 { get; set; } + public global::Cohere.CancelEmbedJobResponse7? Type609 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse9? Type610 { get; set; } + public global::Cohere.CancelEmbedJobResponse8? Type610 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse10? Type611 { get; set; } + public global::Cohere.CancelEmbedJobResponse9? Type611 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse11? Type612 { get; set; } + public global::Cohere.CancelEmbedJobResponse10? Type612 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse12? Type613 { get; set; } + public global::Cohere.CancelEmbedJobResponse11? Type613 { get; set; } /// /// /// - public global::Cohere.GenerateResponse? Type614 { get; set; } + public global::Cohere.CancelEmbedJobResponse12? Type614 { get; set; } /// /// /// - public global::Cohere.GenerateResponse2? Type615 { get; set; } + public global::Cohere.GenerateResponse? Type615 { get; set; } /// /// /// - public global::Cohere.GenerateResponse3? Type616 { get; set; } + public global::Cohere.GenerateResponse2? Type616 { get; set; } /// /// /// - public global::Cohere.GenerateResponse4? Type617 { get; set; } + public global::Cohere.GenerateResponse3? Type617 { get; set; } /// /// /// - public global::Cohere.GenerateResponse5? Type618 { get; set; } + public global::Cohere.GenerateResponse4? Type618 { get; set; } /// /// /// - public global::Cohere.GenerateResponse6? Type619 { get; set; } + public global::Cohere.GenerateResponse5? Type619 { get; set; } /// /// /// - public global::Cohere.GenerateResponse7? Type620 { get; set; } + public global::Cohere.GenerateResponse6? Type620 { get; set; } /// /// /// - public global::Cohere.GenerateResponse8? Type621 { get; set; } + public global::Cohere.GenerateResponse7? Type621 { get; set; } /// /// /// - public global::Cohere.GenerateResponse9? Type622 { get; set; } + public global::Cohere.GenerateResponse8? Type622 { get; set; } /// /// /// - public global::Cohere.GenerateResponse10? Type623 { get; set; } + public global::Cohere.GenerateResponse9? Type623 { get; set; } /// /// /// - public global::Cohere.GenerateResponse11? Type624 { get; set; } + public global::Cohere.GenerateResponse10? Type624 { get; set; } /// /// /// - public global::Cohere.GenerateResponse12? Type625 { get; set; } + public global::Cohere.GenerateResponse11? Type625 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse2? Type626 { get; set; } + public global::Cohere.GenerateResponse12? Type626 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse3? Type627 { get; set; } + public global::Cohere.ListModelsResponse2? Type627 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse4? Type628 { get; set; } + public global::Cohere.ListModelsResponse3? Type628 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse5? Type629 { get; set; } + public global::Cohere.ListModelsResponse4? Type629 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse6? Type630 { get; set; } + public global::Cohere.ListModelsResponse5? Type630 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse7? Type631 { get; set; } + public global::Cohere.ListModelsResponse6? Type631 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse8? Type632 { get; set; } + public global::Cohere.ListModelsResponse7? Type632 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse9? Type633 { get; set; } + public global::Cohere.ListModelsResponse8? Type633 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse10? Type634 { get; set; } + public global::Cohere.ListModelsResponse9? Type634 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse11? Type635 { get; set; } + public global::Cohere.ListModelsResponse10? Type635 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse12? Type636 { get; set; } + public global::Cohere.ListModelsResponse11? Type636 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse13? Type637 { get; set; } + public global::Cohere.ListModelsResponse12? Type637 { get; set; } /// /// /// - public global::Cohere.GetModelResponse2? Type638 { get; set; } + public global::Cohere.ListModelsResponse13? Type638 { get; set; } /// /// /// - public global::Cohere.GetModelResponse3? Type639 { get; set; } + public global::Cohere.GetModelResponse2? Type639 { get; set; } /// /// /// - public global::Cohere.GetModelResponse4? Type640 { get; set; } + public global::Cohere.GetModelResponse3? Type640 { get; set; } /// /// /// - public global::Cohere.GetModelResponse5? Type641 { get; set; } + public global::Cohere.GetModelResponse4? Type641 { get; set; } /// /// /// - public global::Cohere.GetModelResponse6? Type642 { get; set; } + public global::Cohere.GetModelResponse5? Type642 { get; set; } /// /// /// - public global::Cohere.GetModelResponse7? Type643 { get; set; } + public global::Cohere.GetModelResponse6? Type643 { get; set; } /// /// /// - public global::Cohere.GetModelResponse8? Type644 { get; set; } + public global::Cohere.GetModelResponse7? Type644 { get; set; } /// /// /// - public global::Cohere.GetModelResponse9? Type645 { get; set; } + public global::Cohere.GetModelResponse8? Type645 { get; set; } /// /// /// - public global::Cohere.GetModelResponse10? Type646 { get; set; } + public global::Cohere.GetModelResponse9? Type646 { get; set; } /// /// /// - public global::Cohere.GetModelResponse11? Type647 { get; set; } + public global::Cohere.GetModelResponse10? Type647 { get; set; } /// /// /// - public global::Cohere.GetModelResponse12? Type648 { get; set; } + public global::Cohere.GetModelResponse11? Type648 { get; set; } /// /// /// - public global::Cohere.GetModelResponse13? Type649 { get; set; } + public global::Cohere.GetModelResponse12? Type649 { get; set; } /// /// /// - public global::Cohere.RerankResponse? Type650 { get; set; } + public global::Cohere.GetModelResponse13? Type650 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type651 { get; set; } + public global::Cohere.RerankResponse? Type651 { get; set; } /// /// /// - public global::Cohere.RerankResponseResult? Type652 { get; set; } + public global::System.Collections.Generic.IList? Type652 { get; set; } /// /// /// - public global::Cohere.RerankResponseResultDocument? Type653 { get; set; } + public global::Cohere.RerankResponseResult? Type653 { get; set; } /// /// /// - public global::Cohere.RerankResponse2? Type654 { get; set; } + public global::Cohere.RerankResponseResultDocument? Type654 { get; set; } /// /// /// - public global::Cohere.RerankResponse3? Type655 { get; set; } + public global::Cohere.RerankResponse2? Type655 { get; set; } /// /// /// - public global::Cohere.RerankResponse4? Type656 { get; set; } + public global::Cohere.RerankResponse3? Type656 { get; set; } /// /// /// - public global::Cohere.RerankResponse5? Type657 { get; set; } + public global::Cohere.RerankResponse4? Type657 { get; set; } /// /// /// - public global::Cohere.RerankResponse6? Type658 { get; set; } + public global::Cohere.RerankResponse5? Type658 { get; set; } /// /// /// - public global::Cohere.RerankResponse7? Type659 { get; set; } + public global::Cohere.RerankResponse6? Type659 { get; set; } /// /// /// - public global::Cohere.RerankResponse8? Type660 { get; set; } + public global::Cohere.RerankResponse7? Type660 { get; set; } /// /// /// - public global::Cohere.RerankResponse9? Type661 { get; set; } + public global::Cohere.RerankResponse8? Type661 { get; set; } /// /// /// - public global::Cohere.RerankResponse10? Type662 { get; set; } + public global::Cohere.RerankResponse9? Type662 { get; set; } /// /// /// - public global::Cohere.RerankResponse11? Type663 { get; set; } + public global::Cohere.RerankResponse10? Type663 { get; set; } /// /// /// - public global::Cohere.RerankResponse12? Type664 { get; set; } + public global::Cohere.RerankResponse11? Type664 { get; set; } /// /// /// - public global::Cohere.RerankResponse13? Type665 { get; set; } + public global::Cohere.RerankResponse12? Type665 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse? Type666 { get; set; } + public global::Cohere.RerankResponse13? Type666 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse2? Type667 { get; set; } + public global::Cohere.SummarizeResponse? Type667 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse3? Type668 { get; set; } + public global::Cohere.SummarizeResponse2? Type668 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse4? Type669 { get; set; } + public global::Cohere.SummarizeResponse3? Type669 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse5? Type670 { get; set; } + public global::Cohere.SummarizeResponse4? Type670 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse6? Type671 { get; set; } + public global::Cohere.SummarizeResponse5? Type671 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse7? Type672 { get; set; } + public global::Cohere.SummarizeResponse6? Type672 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse8? Type673 { get; set; } + public global::Cohere.SummarizeResponse7? Type673 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse9? Type674 { get; set; } + public global::Cohere.SummarizeResponse8? Type674 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse10? Type675 { get; set; } + public global::Cohere.SummarizeResponse9? Type675 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse11? Type676 { get; set; } + public global::Cohere.SummarizeResponse10? Type676 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse12? Type677 { get; set; } + public global::Cohere.SummarizeResponse11? Type677 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse13? Type678 { get; set; } + public global::Cohere.SummarizeResponse12? Type678 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse? Type679 { get; set; } + public global::Cohere.SummarizeResponse13? Type679 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse2? Type680 { get; set; } + public global::Cohere.TokenizeResponse? Type680 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse3? Type681 { get; set; } + public global::Cohere.TokenizeResponse2? Type681 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse4? Type682 { get; set; } + public global::Cohere.TokenizeResponse3? Type682 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse5? Type683 { get; set; } + public global::Cohere.TokenizeResponse4? Type683 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse6? Type684 { get; set; } + public global::Cohere.TokenizeResponse5? Type684 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse7? Type685 { get; set; } + public global::Cohere.TokenizeResponse6? Type685 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse8? Type686 { get; set; } + public global::Cohere.TokenizeResponse7? Type686 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse9? Type687 { get; set; } + public global::Cohere.TokenizeResponse8? Type687 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse10? Type688 { get; set; } + public global::Cohere.TokenizeResponse9? Type688 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse11? Type689 { get; set; } + public global::Cohere.TokenizeResponse10? Type689 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse12? Type690 { get; set; } + public global::Cohere.TokenizeResponse11? Type690 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse13? Type691 { get; set; } + public global::Cohere.TokenizeResponse12? Type691 { get; set; } /// /// /// - public global::Cohere.OneOf? Type692 { get; set; } + public global::Cohere.TokenizeResponse13? Type692 { get; set; } /// /// /// - public global::Cohere.Chatv2Response2? Type693 { get; set; } + public global::Cohere.OneOf? Type693 { get; set; } /// /// /// - public global::Cohere.Chatv2Response3? Type694 { get; set; } + public global::Cohere.Chatv2Response2? Type694 { get; set; } /// /// /// - public global::Cohere.Chatv2Response4? Type695 { get; set; } + public global::Cohere.Chatv2Response3? Type695 { get; set; } /// /// /// - public global::Cohere.Chatv2Response5? Type696 { get; set; } + public global::Cohere.Chatv2Response4? Type696 { get; set; } /// /// /// - public global::Cohere.Chatv2Response6? Type697 { get; set; } + public global::Cohere.Chatv2Response5? Type697 { get; set; } /// /// /// - public global::Cohere.Chatv2Response7? Type698 { get; set; } + public global::Cohere.Chatv2Response6? Type698 { get; set; } /// /// /// - public global::Cohere.Chatv2Response8? Type699 { get; set; } + public global::Cohere.Chatv2Response7? Type699 { get; set; } /// /// /// - public global::Cohere.Chatv2Response9? Type700 { get; set; } + public global::Cohere.Chatv2Response8? Type700 { get; set; } /// /// /// - public global::Cohere.Chatv2Response10? Type701 { get; set; } + public global::Cohere.Chatv2Response9? Type701 { get; set; } /// /// /// - public global::Cohere.Chatv2Response11? Type702 { get; set; } + public global::Cohere.Chatv2Response10? Type702 { get; set; } /// /// /// - public global::Cohere.Chatv2Response12? Type703 { get; set; } + public global::Cohere.Chatv2Response11? Type703 { get; set; } /// /// /// - public global::Cohere.Chatv2Response13? Type704 { get; set; } + public global::Cohere.Chatv2Response12? Type704 { get; set; } /// /// /// - public global::Cohere.Embedv2Response? Type705 { get; set; } + public global::Cohere.Chatv2Response13? Type705 { get; set; } /// /// /// - public global::Cohere.Embedv2Response2? Type706 { get; set; } + public global::Cohere.Embedv2Response? Type706 { get; set; } /// /// /// - public global::Cohere.Embedv2Response3? Type707 { get; set; } + public global::Cohere.Embedv2Response2? Type707 { get; set; } /// /// /// - public global::Cohere.Embedv2Response4? Type708 { get; set; } + public global::Cohere.Embedv2Response3? Type708 { get; set; } /// /// /// - public global::Cohere.Embedv2Response5? Type709 { get; set; } + public global::Cohere.Embedv2Response4? Type709 { get; set; } /// /// /// - public global::Cohere.Embedv2Response6? Type710 { get; set; } + public global::Cohere.Embedv2Response5? Type710 { get; set; } /// /// /// - public global::Cohere.Embedv2Response7? Type711 { get; set; } + public global::Cohere.Embedv2Response6? Type711 { get; set; } /// /// /// - public global::Cohere.Embedv2Response8? Type712 { get; set; } + public global::Cohere.Embedv2Response7? Type712 { get; set; } /// /// /// - public global::Cohere.Embedv2Response9? Type713 { get; set; } + public global::Cohere.Embedv2Response8? Type713 { get; set; } /// /// /// - public global::Cohere.Embedv2Response10? Type714 { get; set; } + public global::Cohere.Embedv2Response9? Type714 { get; set; } /// /// /// - public global::Cohere.Embedv2Response11? Type715 { get; set; } + public global::Cohere.Embedv2Response10? Type715 { get; set; } /// /// /// - public global::Cohere.Embedv2Response12? Type716 { get; set; } + public global::Cohere.Embedv2Response11? Type716 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response? Type717 { get; set; } + public global::Cohere.Embedv2Response12? Type717 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type718 { get; set; } + public global::Cohere.Rerankv2Response? Type718 { get; set; } /// /// /// - public global::Cohere.Rerankv2ResponseResult? Type719 { get; set; } + public global::System.Collections.Generic.IList? Type719 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response2? Type720 { get; set; } + public global::Cohere.Rerankv2ResponseResult? Type720 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response3? Type721 { get; set; } + public global::Cohere.Rerankv2Response2? Type721 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response4? Type722 { get; set; } + public global::Cohere.Rerankv2Response3? Type722 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response5? Type723 { get; set; } + public global::Cohere.Rerankv2Response4? Type723 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response6? Type724 { get; set; } + public global::Cohere.Rerankv2Response5? Type724 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response7? Type725 { get; set; } + public global::Cohere.Rerankv2Response6? Type725 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response8? Type726 { get; set; } + public global::Cohere.Rerankv2Response7? Type726 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response9? Type727 { get; set; } + public global::Cohere.Rerankv2Response8? Type727 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response10? Type728 { get; set; } + public global::Cohere.Rerankv2Response9? Type728 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response11? Type729 { get; set; } + public global::Cohere.Rerankv2Response10? Type729 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response12? Type730 { get; set; } + public global::Cohere.Rerankv2Response11? Type730 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response13? Type731 { get; set; } + public global::Cohere.Rerankv2Response12? Type731 { get; set; } + /// + /// + /// + public global::Cohere.Rerankv2Response13? Type732 { get; set; } } } \ No newline at end of file diff --git a/src/libs/Cohere/openapi.yaml b/src/libs/Cohere/openapi.yaml index 685e9770..66639e49 100644 --- a/src/libs/Cohere/openapi.yaml +++ b/src/libs/Cohere/openapi.yaml @@ -15895,9 +15895,16 @@ components: - url type: object properties: + detail: + enum: + - auto + - low + - high + type: string + description: "Controls the level of detail in image processing. `\"auto\"` is the default and lets the system choose, `\"low\"` is faster but less detailed, and `\"high\"` preserves maximum detail. You can save tokens and speed up responses by using detail: `\"low\"`.\n" url: type: string - description: Base64 url of image. + description: "URL of an image. Can be either a base64 data URI or a web URL.\n" JSONResponseFormat: title: JSON Object Response required: