diff --git a/src/libs/Cohere/Generated/Cohere.CohereApi.Chatv2.g.cs b/src/libs/Cohere/Generated/Cohere.CohereApi.Chatv2.g.cs index 83a3824f..4732660f 100644 --- a/src/libs/Cohere/Generated/Cohere.CohereApi.Chatv2.g.cs +++ b/src/libs/Cohere/Generated/Cohere.CohereApi.Chatv2.g.cs @@ -576,6 +576,9 @@ partial void ProcessChatv2ResponseContent( /// Defaults to `0.75`. min value of `0.01`, max value of `0.99`.
/// Default Value: 0.75F /// + /// + /// Whether to return the log probabilities of the generated tokens. Defaults to false. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task> Chatv2Async( @@ -595,6 +598,7 @@ partial void ProcessChatv2ResponseContent( float? presencePenalty = default, float? k = default, float? p = default, + bool? logprobs = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Cohere.Chatv2Request @@ -614,6 +618,7 @@ partial void ProcessChatv2ResponseContent( PresencePenalty = presencePenalty, K = k, P = p, + Logprobs = logprobs, }; return await Chatv2Async( diff --git a/src/libs/Cohere/Generated/Cohere.ICohereApi.Chatv2.g.cs b/src/libs/Cohere/Generated/Cohere.ICohereApi.Chatv2.g.cs index 4b9f37e3..785b62d1 100644 --- a/src/libs/Cohere/Generated/Cohere.ICohereApi.Chatv2.g.cs +++ b/src/libs/Cohere/Generated/Cohere.ICohereApi.Chatv2.g.cs @@ -91,6 +91,9 @@ public partial interface ICohereApi /// Defaults to `0.75`. min value of `0.01`, max value of `0.99`.
/// Default Value: 0.75F /// + /// + /// Whether to return the log probabilities of the generated tokens. Defaults to false. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task> Chatv2Async( @@ -110,6 +113,7 @@ public partial interface ICohereApi float? presencePenalty = default, float? k = default, float? p = default, + bool? logprobs = default, global::System.Threading.CancellationToken cancellationToken = default); } } \ No newline at end of file diff --git a/src/libs/Cohere/Generated/Cohere.Models.ChatContentDeltaEventVariant2.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ChatContentDeltaEventVariant2.g.cs index d4c18803..9e50d386 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.ChatContentDeltaEventVariant2.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.ChatContentDeltaEventVariant2.g.cs @@ -20,6 +20,12 @@ public sealed partial class ChatContentDeltaEventVariant2 [global::System.Text.Json.Serialization.JsonPropertyName("delta")] public global::Cohere.ChatContentDeltaEventVariant2Delta? Delta { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] + public global::Cohere.LogprobItem? Logprobs { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -31,13 +37,16 @@ public sealed partial class ChatContentDeltaEventVariant2 /// /// /// + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public ChatContentDeltaEventVariant2( int? index, - global::Cohere.ChatContentDeltaEventVariant2Delta? delta) + global::Cohere.ChatContentDeltaEventVariant2Delta? delta, + global::Cohere.LogprobItem? logprobs) { this.Index = index; this.Delta = delta; + this.Logprobs = logprobs; } /// diff --git a/src/libs/Cohere/Generated/Cohere.Models.ChatResponse.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ChatResponse.g.cs index 8da19232..ded66f1a 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.ChatResponse.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.ChatResponse.g.cs @@ -32,7 +32,8 @@ public sealed partial class ChatResponse /// A message from the assistant role can contain text and tool call information. /// [global::System.Text.Json.Serialization.JsonPropertyName("message")] - public global::Cohere.AssistantMessageResponse? Message { get; set; } + [global::System.Text.Json.Serialization.JsonRequired] + public required global::Cohere.AssistantMessageResponse Message { get; set; } /// /// @@ -40,6 +41,12 @@ public sealed partial class ChatResponse [global::System.Text.Json.Serialization.JsonPropertyName("usage")] public global::Cohere.Usage? Usage { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] + public global::System.Collections.Generic.IList? Logprobs { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -64,17 +71,20 @@ public sealed partial class ChatResponse /// A message from the assistant role can contain text and tool call information. /// /// + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public ChatResponse( string id, global::Cohere.ChatFinishReason finishReason, - global::Cohere.AssistantMessageResponse? message, - global::Cohere.Usage? usage) + global::Cohere.AssistantMessageResponse message, + global::Cohere.Usage? usage, + global::System.Collections.Generic.IList? logprobs) { this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id)); this.FinishReason = finishReason; - this.Message = message; + this.Message = message ?? throw new global::System.ArgumentNullException(nameof(message)); this.Usage = usage; + this.Logprobs = logprobs; } /// diff --git a/src/libs/Cohere/Generated/Cohere.Models.Chatv2Request.g.cs b/src/libs/Cohere/Generated/Cohere.Models.Chatv2Request.g.cs index 671d73a0..0c280ac8 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.Chatv2Request.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.Chatv2Request.g.cs @@ -126,6 +126,12 @@ public sealed partial class Chatv2Request [global::System.Text.Json.Serialization.JsonPropertyName("p")] public float? P { get; set; } + /// + /// Whether to return the log probabilities of the generated tokens. Defaults to false. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] + public bool? Logprobs { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -202,6 +208,9 @@ public sealed partial class Chatv2Request /// Defaults to `0.75`. min value of `0.01`, max value of `0.99`.
/// Default Value: 0.75F /// + /// + /// Whether to return the log probabilities of the generated tokens. Defaults to false. + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public Chatv2Request( string model, @@ -218,7 +227,8 @@ public Chatv2Request( float? frequencyPenalty, float? presencePenalty, float? k, - float? p) + float? p, + bool? logprobs) { this.Model = model ?? throw new global::System.ArgumentNullException(nameof(model)); this.Messages = messages ?? throw new global::System.ArgumentNullException(nameof(messages)); @@ -235,6 +245,7 @@ public Chatv2Request( this.PresencePenalty = presencePenalty; this.K = k; this.P = p; + this.Logprobs = logprobs; } /// diff --git a/src/libs/Cohere/Generated/Cohere.Models.LogprobItem.Json.g.cs b/src/libs/Cohere/Generated/Cohere.Models.LogprobItem.Json.g.cs new file mode 100644 index 00000000..ad2d7ced --- /dev/null +++ b/src/libs/Cohere/Generated/Cohere.Models.LogprobItem.Json.g.cs @@ -0,0 +1,92 @@ +#nullable enable + +namespace Cohere +{ + public sealed partial class LogprobItem + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Cohere.LogprobItem? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Cohere.LogprobItem), + jsonSerializerContext) as global::Cohere.LogprobItem; + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::Cohere.LogprobItem? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::Cohere.LogprobItem), + jsonSerializerContext).ConfigureAwait(false)) as global::Cohere.LogprobItem; + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Cohere/Generated/Cohere.Models.LogprobItem.g.cs b/src/libs/Cohere/Generated/Cohere.Models.LogprobItem.g.cs new file mode 100644 index 00000000..499e158e --- /dev/null +++ b/src/libs/Cohere/Generated/Cohere.Models.LogprobItem.g.cs @@ -0,0 +1,66 @@ + +#nullable enable + +namespace Cohere +{ + /// + /// + /// + public sealed partial class LogprobItem + { + /// + /// The text chunk for which the log probabilities was calculated. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("text")] + public string? Text { get; set; } + + /// + /// The token ids of each token used to construct the text chunk. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("token_ids")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Collections.Generic.IList TokenIds { get; set; } + + /// + /// The log probability of each token used to construct the text chunk. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] + public global::System.Collections.Generic.IList? Logprobs { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// + /// The text chunk for which the log probabilities was calculated. + /// + /// + /// The token ids of each token used to construct the text chunk. + /// + /// + /// The log probability of each token used to construct the text chunk. + /// + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] + public LogprobItem( + global::System.Collections.Generic.IList tokenIds, + string? text, + global::System.Collections.Generic.IList? logprobs) + { + this.TokenIds = tokenIds ?? throw new global::System.ArgumentNullException(nameof(tokenIds)); + this.Text = text; + this.Logprobs = logprobs; + } + + /// + /// Initializes a new instance of the class. + /// + public LogprobItem() + { + } + } +} \ No newline at end of file diff --git a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs index 8264978f..c190585b 100644 --- a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs +++ b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs @@ -510,2286 +510,2294 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Cohere.ChatResponse? Type123 { get; set; } + public global::Cohere.LogprobItem? Type123 { get; set; } /// /// /// - public global::Cohere.ChatStreamEventType? Type124 { get; set; } + public global::System.Collections.Generic.IList? Type124 { get; set; } /// /// /// - public global::Cohere.ChatStreamEventTypeType? Type125 { get; set; } + public global::System.Collections.Generic.IList? Type125 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEvent? Type126 { get; set; } + public float? Type126 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2? Type127 { get; set; } + public global::Cohere.ChatResponse? Type127 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2Delta? Type128 { get; set; } + public global::System.Collections.Generic.IList? Type128 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type129 { get; set; } + public global::Cohere.ChatStreamEventType? Type129 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type130 { get; set; } + public global::Cohere.ChatStreamEventTypeType? Type130 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEvent? Type131 { get; set; } + public global::Cohere.ChatMessageStartEvent? Type131 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2? Type132 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2? Type132 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2Delta? Type133 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2Delta? Type133 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type134 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type134 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type135 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type135 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type136 { get; set; } + public global::Cohere.ChatContentStartEvent? Type136 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEvent? Type137 { get; set; } + public global::Cohere.ChatContentStartEventVariant2? Type137 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2? Type138 { get; set; } + public global::Cohere.ChatContentStartEventVariant2Delta? Type138 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2Delta? Type139 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type139 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type140 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type140 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type141 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type141 { get; set; } /// /// /// - public global::Cohere.ChatContentEndEvent? Type142 { get; set; } + public global::Cohere.ChatContentDeltaEvent? Type142 { get; set; } /// /// /// - public global::Cohere.ChatContentEndEventVariant2? Type143 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2? Type143 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEvent? Type144 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2Delta? Type144 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2? Type145 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type145 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type146 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type146 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEvent? Type147 { get; set; } + public global::Cohere.ChatContentEndEvent? Type147 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2? Type148 { get; set; } + public global::Cohere.ChatContentEndEventVariant2? Type148 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2Delta? Type149 { get; set; } + public global::Cohere.ChatToolPlanDeltaEvent? Type149 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCall? Type150 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2? Type150 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallType? Type151 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type151 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallFunction? Type152 { get; set; } + public global::Cohere.ChatToolCallStartEvent? Type152 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEvent? Type153 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2? Type153 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2? Type154 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2Delta? Type154 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type155 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCall? Type155 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCall? Type156 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallType? Type156 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCallFunction? Type157 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallFunction? Type157 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEvent? Type158 { get; set; } + public global::Cohere.ChatToolCallDeltaEvent? Type158 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEventVariant2? Type159 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2? Type159 { get; set; } /// /// /// - public global::Cohere.CitationStartEvent? Type160 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type160 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2? Type161 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCall? Type161 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2Delta? Type162 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCallFunction? Type162 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2DeltaMessage? Type163 { get; set; } + public global::Cohere.ChatToolCallEndEvent? Type163 { get; set; } /// /// /// - public global::Cohere.CitationEndEvent? Type164 { get; set; } + public global::Cohere.ChatToolCallEndEventVariant2? Type164 { get; set; } /// /// /// - public global::Cohere.CitationEndEventVariant2? Type165 { get; set; } + public global::Cohere.CitationStartEvent? Type165 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEvent? Type166 { get; set; } + public global::Cohere.CitationStartEventVariant2? Type166 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEventVariant2? Type167 { get; set; } + public global::Cohere.CitationStartEventVariant2Delta? Type167 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEventVariant2Delta? Type168 { get; set; } + public global::Cohere.CitationStartEventVariant2DeltaMessage? Type168 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponseV2? Type169 { get; set; } + public global::Cohere.CitationEndEvent? Type169 { get; set; } /// /// /// - public global::Cohere.SingleGeneration? Type170 { get; set; } + public global::Cohere.CitationEndEventVariant2? Type170 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type171 { get; set; } + public global::Cohere.ChatMessageEndEvent? Type171 { get; set; } /// /// /// - public global::Cohere.SingleGenerationTokenLikelihood? Type172 { get; set; } + public global::Cohere.ChatMessageEndEventVariant2? Type172 { get; set; } /// /// /// - public global::Cohere.Generation? Type173 { get; set; } + public global::Cohere.ChatMessageEndEventVariant2Delta? Type173 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type174 { get; set; } + public global::Cohere.StreamedChatResponseV2? Type174 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEvent? Type175 { get; set; } + public global::Cohere.SingleGeneration? Type175 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEventEventType? Type176 { get; set; } + public global::System.Collections.Generic.IList? Type176 { get; set; } /// /// /// - public global::Cohere.GenerateStreamText? Type177 { get; set; } + public global::Cohere.SingleGenerationTokenLikelihood? Type177 { get; set; } /// /// /// - public global::Cohere.GenerateStreamTextVariant2? Type178 { get; set; } + public global::Cohere.Generation? Type178 { get; set; } /// /// /// - public global::Cohere.SingleGenerationInStream? Type179 { get; set; } + public global::System.Collections.Generic.IList? Type179 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEnd? Type180 { get; set; } + public global::Cohere.GenerateStreamEvent? Type180 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2? Type181 { get; set; } + public global::Cohere.GenerateStreamEventEventType? Type181 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2Response? Type182 { get; set; } + public global::Cohere.GenerateStreamText? Type182 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type183 { get; set; } + public global::Cohere.GenerateStreamTextVariant2? Type183 { get; set; } /// /// /// - public global::Cohere.GenerateStreamError? Type184 { get; set; } + public global::Cohere.SingleGenerationInStream? Type184 { get; set; } /// /// /// - public global::Cohere.GenerateStreamErrorVariant2? Type185 { get; set; } + public global::Cohere.GenerateStreamEnd? Type185 { get; set; } /// /// /// - public global::Cohere.GenerateStreamedResponse? Type186 { get; set; } + public global::Cohere.GenerateStreamEndVariant2? Type186 { get; set; } /// /// /// - public global::Cohere.EmbedInputType? Type187 { get; set; } + public global::Cohere.GenerateStreamEndVariant2Response? Type187 { get; set; } /// /// /// - public global::Cohere.EmbeddingType? Type188 { get; set; } + public global::System.Collections.Generic.IList? Type188 { get; set; } /// /// /// - public global::Cohere.Image? Type189 { get; set; } + public global::Cohere.GenerateStreamError? Type189 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponse? Type190 { get; set; } + public global::Cohere.GenerateStreamErrorVariant2? Type190 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponseResponseType? Type191 { get; set; } + public global::Cohere.GenerateStreamedResponse? Type191 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type192 { get; set; } + public global::Cohere.EmbedInputType? Type192 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type193 { get; set; } + public global::Cohere.EmbeddingType? Type193 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type194 { get; set; } + public global::Cohere.Image? Type194 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponse? Type195 { get; set; } + public global::Cohere.EmbedFloatsResponse? Type195 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseResponseType? Type196 { get; set; } + public global::Cohere.EmbedFloatsResponseResponseType? Type196 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseEmbeddings? Type197 { get; set; } + public global::System.Collections.Generic.IList>? Type197 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type198 { get; set; } + public global::System.Collections.Generic.IList? Type198 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type199 { get; set; } + public global::System.Collections.Generic.IList? Type199 { get; set; } /// /// /// - public global::Cohere.EmbedJob? Type200 { get; set; } + public global::Cohere.EmbedByTypeResponse? Type200 { get; set; } /// /// /// - public global::Cohere.EmbedJobStatus? Type201 { get; set; } + public global::Cohere.EmbedByTypeResponseResponseType? Type201 { get; set; } /// /// /// - public global::System.DateTime? Type202 { get; set; } + public global::Cohere.EmbedByTypeResponseEmbeddings? Type202 { get; set; } /// /// /// - public global::Cohere.EmbedJobTruncate? Type203 { get; set; } + public global::System.Collections.Generic.IList>? Type203 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobResponse? Type204 { get; set; } + public global::Cohere.EmbedJob? Type204 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type205 { get; set; } + public global::Cohere.EmbedJobStatus? Type205 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequest? Type206 { get; set; } + public global::System.DateTime? Type206 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type207 { get; set; } + public global::Cohere.EmbedJobTruncate? Type207 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequestTruncate? Type208 { get; set; } + public global::Cohere.ListEmbedJobResponse? Type208 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse? Type209 { get; set; } + public global::System.Collections.Generic.IList? Type209 { get; set; } /// /// /// - public global::Cohere.RerankDocument? Type210 { get; set; } + public global::Cohere.CreateEmbedJobRequest? Type210 { get; set; } /// /// /// - public global::Cohere.ClassifyExample? Type211 { get; set; } + public global::System.Collections.Generic.IList? Type211 { get; set; } /// /// /// - public global::Cohere.DatasetValidationStatus? Type212 { get; set; } + public global::Cohere.CreateEmbedJobRequestTruncate? Type212 { get; set; } /// /// /// - public global::Cohere.DatasetType? Type213 { get; set; } + public global::Cohere.CreateEmbedJobResponse? Type213 { get; set; } /// /// /// - public global::Cohere.DatasetPart? Type214 { get; set; } + public global::Cohere.RerankDocument? Type214 { get; set; } /// /// /// - public global::Cohere.ParseInfo? Type215 { get; set; } + public global::Cohere.ClassifyExample? Type215 { get; set; } /// /// /// - public global::Cohere.RerankerDataMetrics? Type216 { get; set; } + public global::Cohere.DatasetValidationStatus? Type216 { get; set; } /// /// /// - public global::Cohere.ChatDataMetrics? Type217 { get; set; } + public global::Cohere.DatasetType? Type217 { get; set; } /// /// /// - public global::Cohere.LabelMetric? Type218 { get; set; } + public global::Cohere.DatasetPart? Type218 { get; set; } /// /// /// - public global::Cohere.ClassifyDataMetrics? Type219 { get; set; } + public global::Cohere.ParseInfo? Type219 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type220 { get; set; } + public global::Cohere.RerankerDataMetrics? Type220 { get; set; } /// /// /// - public global::Cohere.FinetuneDatasetMetrics? Type221 { get; set; } + public global::Cohere.ChatDataMetrics? Type221 { get; set; } /// /// /// - public global::Cohere.Metrics? Type222 { get; set; } + public global::Cohere.LabelMetric? Type222 { get; set; } /// /// /// - public global::Cohere.Dataset? Type223 { get; set; } + public global::Cohere.ClassifyDataMetrics? Type223 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type224 { get; set; } + public global::System.Collections.Generic.IList? Type224 { get; set; } /// /// /// - public global::Cohere.ConnectorOAuth? Type225 { get; set; } + public global::Cohere.FinetuneDatasetMetrics? Type225 { get; set; } /// /// /// - public global::Cohere.Connector? Type226 { get; set; } + public global::Cohere.Metrics? Type226 { get; set; } /// /// /// - public global::Cohere.ConnectorAuthStatus? Type227 { get; set; } + public global::Cohere.Dataset? Type227 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse? Type228 { get; set; } + public global::System.Collections.Generic.IList? Type228 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type229 { get; set; } + public global::Cohere.ConnectorOAuth? Type229 { get; set; } /// /// /// - public global::Cohere.CreateConnectorOAuth? Type230 { get; set; } + public global::Cohere.Connector? Type230 { get; set; } /// /// /// - public global::Cohere.AuthTokenType? Type231 { get; set; } + public global::Cohere.ConnectorAuthStatus? Type231 { get; set; } /// /// /// - public global::Cohere.CreateConnectorServiceAuth? Type232 { get; set; } + public global::Cohere.ListConnectorsResponse? Type232 { get; set; } /// /// /// - public global::Cohere.CreateConnectorRequest? Type233 { get; set; } + public global::System.Collections.Generic.IList? Type233 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse? Type234 { get; set; } + public global::Cohere.CreateConnectorOAuth? Type234 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse? Type235 { get; set; } + public global::Cohere.AuthTokenType? Type235 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorRequest? Type236 { get; set; } + public global::Cohere.CreateConnectorServiceAuth? Type236 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse? Type237 { get; set; } + public global::Cohere.CreateConnectorRequest? Type237 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeResponse? Type238 { get; set; } + public global::Cohere.CreateConnectorResponse? Type238 { get; set; } /// /// /// - public global::Cohere.ConnectorLog? Type239 { get; set; } + public global::Cohere.GetConnectorResponse? Type239 { get; set; } /// /// /// - public global::Cohere.GetConnectorsLogsResponse? Type240 { get; set; } + public global::Cohere.UpdateConnectorRequest? Type240 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type241 { get; set; } + public global::Cohere.UpdateConnectorResponse? Type241 { get; set; } /// /// /// - public global::Cohere.TokenLikelihood? Type242 { get; set; } + public global::Cohere.OAuthAuthorizeResponse? Type242 { get; set; } /// /// /// - public global::Cohere.LogLikelihoodResponse? Type243 { get; set; } + public global::Cohere.ConnectorLog? Type243 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type244 { get; set; } + public global::Cohere.GetConnectorsLogsResponse? Type244 { get; set; } /// /// /// - public global::Cohere.Cluster? Type245 { get; set; } + public global::System.Collections.Generic.IList? Type245 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponse? Type246 { get; set; } + public global::Cohere.TokenLikelihood? Type246 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponseStatus? Type247 { get; set; } + public global::Cohere.LogLikelihoodResponse? Type247 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type248 { get; set; } + public global::System.Collections.Generic.IList? Type248 { get; set; } /// /// /// - public global::Cohere.ListClusterJobsResponse? Type249 { get; set; } + public global::Cohere.Cluster? Type249 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type250 { get; set; } + public global::Cohere.GetClusterJobResponse? Type250 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobRequest? Type251 { get; set; } + public global::Cohere.GetClusterJobResponseStatus? Type251 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobResponse? Type252 { get; set; } + public global::System.Collections.Generic.IList? Type252 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequest? Type253 { get; set; } + public global::Cohere.ListClusterJobsResponse? Type253 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequestStatus? Type254 { get; set; } + public global::System.Collections.Generic.IList? Type254 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobResponse? Type255 { get; set; } + public global::Cohere.CreateClusterJobRequest? Type255 { get; set; } /// /// /// - public global::Cohere.CompatibleEndpoint? Type256 { get; set; } + public global::Cohere.CreateClusterJobResponse? Type256 { get; set; } /// /// /// - public global::Cohere.GetModelResponse? Type257 { get; set; } + public global::Cohere.UpdateClusterJobRequest? Type257 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type258 { get; set; } + public global::Cohere.UpdateClusterJobRequestStatus? Type258 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse? Type259 { get; set; } + public global::Cohere.UpdateClusterJobResponse? Type259 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type260 { get; set; } + public global::Cohere.CompatibleEndpoint? Type260 { get; set; } /// /// /// - public global::Cohere.BaseType? Type261 { get; set; } + public global::Cohere.GetModelResponse? Type261 { get; set; } /// /// /// - public global::Cohere.Strategy? Type262 { get; set; } + public global::System.Collections.Generic.IList? Type262 { get; set; } /// /// /// - public global::Cohere.BaseModel? Type263 { get; set; } + public global::Cohere.ListModelsResponse? Type263 { get; set; } /// /// /// - public global::Cohere.LoraTargetModules? Type264 { get; set; } + public global::System.Collections.Generic.IList? Type264 { get; set; } /// /// /// - public global::Cohere.Hyperparameters? Type265 { get; set; } + public global::Cohere.BaseType? Type265 { get; set; } /// /// /// - public global::Cohere.WandbConfig? Type266 { get; set; } + public global::Cohere.Strategy? Type266 { get; set; } /// /// /// - public global::Cohere.Settings? Type267 { get; set; } + public global::Cohere.BaseModel? Type267 { get; set; } /// /// /// - public global::Cohere.Status? Type268 { get; set; } + public global::Cohere.LoraTargetModules? Type268 { get; set; } /// /// /// - public global::Cohere.FinetunedModel? Type269 { get; set; } + public global::Cohere.Hyperparameters? Type269 { get; set; } /// /// /// - public global::Cohere.ListFinetunedModelsResponse? Type270 { get; set; } + public global::Cohere.WandbConfig? Type270 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type271 { get; set; } + public global::Cohere.Settings? Type271 { get; set; } /// /// /// - public global::Cohere.Error? Type272 { get; set; } + public global::Cohere.Status? Type272 { get; set; } /// /// /// - public global::Cohere.CreateFinetunedModelResponse? Type273 { get; set; } + public global::Cohere.FinetunedModel? Type273 { get; set; } /// /// /// - public global::Cohere.GetFinetunedModelResponse? Type274 { get; set; } + public global::Cohere.ListFinetunedModelsResponse? Type274 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelResponse? Type275 { get; set; } + public global::System.Collections.Generic.IList? Type275 { get; set; } /// /// /// - public global::Cohere.Event? Type276 { get; set; } + public global::Cohere.Error? Type276 { get; set; } /// /// /// - public global::Cohere.ListEventsResponse? Type277 { get; set; } + public global::Cohere.CreateFinetunedModelResponse? Type277 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type278 { get; set; } + public global::Cohere.GetFinetunedModelResponse? Type278 { get; set; } /// /// /// - public global::Cohere.TrainingStepMetrics? Type279 { get; set; } + public global::Cohere.UpdateFinetunedModelResponse? Type279 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type280 { get; set; } + public global::Cohere.Event? Type280 { get; set; } /// /// /// - public global::Cohere.ListTrainingStepMetricsResponse? Type281 { get; set; } + public global::Cohere.ListEventsResponse? Type281 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type282 { get; set; } + public global::System.Collections.Generic.IList? Type282 { get; set; } /// /// /// - public global::Cohere.ChatRequest? Type283 { get; set; } + public global::Cohere.TrainingStepMetrics? Type283 { get; set; } /// /// /// - public global::Cohere.ChatRequestPromptTruncation? Type284 { get; set; } + public global::System.Collections.Generic.Dictionary? Type284 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type285 { get; set; } + public global::Cohere.ListTrainingStepMetricsResponse? Type285 { get; set; } /// /// /// - public global::Cohere.ChatRequestCitationQuality? Type286 { get; set; } + public global::System.Collections.Generic.IList? Type286 { get; set; } /// /// /// - public float? Type287 { get; set; } + public global::Cohere.ChatRequest? Type287 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type288 { get; set; } + public global::Cohere.ChatRequestPromptTruncation? Type288 { get; set; } /// /// /// - public global::Cohere.ChatRequestSafetyMode? Type289 { get; set; } + public global::System.Collections.Generic.IList? Type289 { get; set; } /// /// /// - public global::Cohere.Chatv2Request? Type290 { get; set; } + public global::Cohere.ChatRequestCitationQuality? Type290 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type291 { get; set; } + public global::System.Collections.Generic.IList? Type291 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type292 { get; set; } + public global::Cohere.ChatRequestSafetyMode? Type292 { get; set; } /// /// /// - public global::Cohere.OneOf? Type293 { get; set; } + public global::Cohere.Chatv2Request? Type293 { get; set; } /// /// /// - public global::Cohere.Chatv2RequestSafetyMode? Type294 { get; set; } + public global::System.Collections.Generic.IList? Type294 { get; set; } /// /// /// - public global::Cohere.GenerateRequest? Type295 { get; set; } + public global::System.Collections.Generic.IList>? Type295 { get; set; } /// /// /// - public global::Cohere.GenerateRequestTruncate? Type296 { get; set; } + public global::Cohere.OneOf? Type296 { get; set; } /// /// /// - public global::Cohere.GenerateRequestReturnLikelihoods? Type297 { get; set; } + public global::Cohere.Chatv2RequestSafetyMode? Type297 { get; set; } /// /// /// - public global::Cohere.EmbedRequest? Type298 { get; set; } + public global::Cohere.GenerateRequest? Type298 { get; set; } /// /// /// - public global::Cohere.EmbedRequestTruncate? Type299 { get; set; } + public global::Cohere.GenerateRequestTruncate? Type299 { get; set; } /// /// /// - public global::Cohere.Embedv2Request? Type300 { get; set; } + public global::Cohere.GenerateRequestReturnLikelihoods? Type300 { get; set; } /// /// /// - public global::Cohere.Embedv2RequestTruncate? Type301 { get; set; } + public global::Cohere.EmbedRequest? Type301 { get; set; } /// /// /// - public global::Cohere.RerankRequest? Type302 { get; set; } + public global::Cohere.EmbedRequestTruncate? Type302 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type303 { get; set; } + public global::Cohere.Embedv2Request? Type303 { get; set; } /// /// /// - public global::Cohere.OneOf? Type304 { get; set; } + public global::Cohere.Embedv2RequestTruncate? Type304 { get; set; } /// /// /// - public global::Cohere.Rerankv2Request? Type305 { get; set; } + public global::Cohere.RerankRequest? Type305 { get; set; } /// /// /// - public global::Cohere.ClassifyRequest? Type306 { get; set; } + public global::System.Collections.Generic.IList>? Type306 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type307 { get; set; } + public global::Cohere.OneOf? Type307 { get; set; } /// /// /// - public global::Cohere.ClassifyRequestTruncate? Type308 { get; set; } + public global::Cohere.Rerankv2Request? Type308 { get; set; } /// /// /// - public global::Cohere.CreateDatasetRequest? Type309 { get; set; } + public global::Cohere.ClassifyRequest? Type309 { get; set; } /// /// /// - public byte[]? Type310 { get; set; } + public global::System.Collections.Generic.IList? Type310 { get; set; } /// /// /// - public global::Cohere.SummarizeRequest? Type311 { get; set; } + public global::Cohere.ClassifyRequestTruncate? Type311 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestLength? Type312 { get; set; } + public global::Cohere.CreateDatasetRequest? Type312 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestFormat? Type313 { get; set; } + public byte[]? Type313 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestExtractiveness? Type314 { get; set; } + public global::Cohere.SummarizeRequest? Type314 { get; set; } /// /// /// - public global::Cohere.TokenizeRequest? Type315 { get; set; } + public global::Cohere.SummarizeRequestLength? Type315 { get; set; } /// /// /// - public global::Cohere.DetokenizeRequest? Type316 { get; set; } + public global::Cohere.SummarizeRequestFormat? Type316 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelRequest? Type317 { get; set; } + public global::Cohere.SummarizeRequestExtractiveness? Type317 { get; set; } /// /// /// - public global::Cohere.ChatAccepts? Type318 { get; set; } + public global::Cohere.TokenizeRequest? Type318 { get; set; } /// /// /// - public global::Cohere.OneOf? Type319 { get; set; } + public global::Cohere.DetokenizeRequest? Type319 { get; set; } /// /// /// - public global::Cohere.ChatResponse3? Type320 { get; set; } + public global::Cohere.UpdateFinetunedModelRequest? Type320 { get; set; } /// /// /// - public global::Cohere.ChatResponse4? Type321 { get; set; } + public global::Cohere.ChatAccepts? Type321 { get; set; } /// /// /// - public global::Cohere.ChatResponse5? Type322 { get; set; } + public global::Cohere.OneOf? Type322 { get; set; } /// /// /// - public global::Cohere.ChatResponse6? Type323 { get; set; } + public global::Cohere.ChatResponse3? Type323 { get; set; } /// /// /// - public global::Cohere.ChatResponse7? Type324 { get; set; } + public global::Cohere.ChatResponse4? Type324 { get; set; } /// /// /// - public global::Cohere.ChatResponse8? Type325 { get; set; } + public global::Cohere.ChatResponse5? Type325 { get; set; } /// /// /// - public global::Cohere.ChatResponse9? Type326 { get; set; } + public global::Cohere.ChatResponse6? Type326 { get; set; } /// /// /// - public global::Cohere.ChatResponse10? Type327 { get; set; } + public global::Cohere.ChatResponse7? Type327 { get; set; } /// /// /// - public global::Cohere.ChatResponse11? Type328 { get; set; } + public global::Cohere.ChatResponse8? Type328 { get; set; } /// /// /// - public global::Cohere.ChatResponse12? Type329 { get; set; } + public global::Cohere.ChatResponse9? Type329 { get; set; } /// /// /// - public global::Cohere.ChatResponse13? Type330 { get; set; } + public global::Cohere.ChatResponse10? Type330 { get; set; } /// /// /// - public global::Cohere.ChatResponse14? Type331 { get; set; } + public global::Cohere.ChatResponse11? Type331 { get; set; } /// /// /// - public global::Cohere.OneOf? Type332 { get; set; } + public global::Cohere.ChatResponse12? Type332 { get; set; } /// /// /// - public global::Cohere.Chatv2Response2? Type333 { get; set; } + public global::Cohere.ChatResponse13? Type333 { get; set; } /// /// /// - public global::Cohere.Chatv2Response3? Type334 { get; set; } + public global::Cohere.ChatResponse14? Type334 { get; set; } /// /// /// - public global::Cohere.Chatv2Response4? Type335 { get; set; } + public global::Cohere.OneOf? Type335 { get; set; } /// /// /// - public global::Cohere.Chatv2Response5? Type336 { get; set; } + public global::Cohere.Chatv2Response2? Type336 { get; set; } /// /// /// - public global::Cohere.Chatv2Response6? Type337 { get; set; } + public global::Cohere.Chatv2Response3? Type337 { get; set; } /// /// /// - public global::Cohere.Chatv2Response7? Type338 { get; set; } + public global::Cohere.Chatv2Response4? Type338 { get; set; } /// /// /// - public global::Cohere.Chatv2Response8? Type339 { get; set; } + public global::Cohere.Chatv2Response5? Type339 { get; set; } /// /// /// - public global::Cohere.Chatv2Response9? Type340 { get; set; } + public global::Cohere.Chatv2Response6? Type340 { get; set; } /// /// /// - public global::Cohere.Chatv2Response10? Type341 { get; set; } + public global::Cohere.Chatv2Response7? Type341 { get; set; } /// /// /// - public global::Cohere.Chatv2Response11? Type342 { get; set; } + public global::Cohere.Chatv2Response8? Type342 { get; set; } /// /// /// - public global::Cohere.Chatv2Response12? Type343 { get; set; } + public global::Cohere.Chatv2Response9? Type343 { get; set; } /// /// /// - public global::Cohere.Chatv2Response13? Type344 { get; set; } + public global::Cohere.Chatv2Response10? Type344 { get; set; } /// /// /// - public global::Cohere.GenerateResponse? Type345 { get; set; } + public global::Cohere.Chatv2Response11? Type345 { get; set; } /// /// /// - public global::Cohere.GenerateResponse2? Type346 { get; set; } + public global::Cohere.Chatv2Response12? Type346 { get; set; } /// /// /// - public global::Cohere.GenerateResponse3? Type347 { get; set; } + public global::Cohere.Chatv2Response13? Type347 { get; set; } /// /// /// - public global::Cohere.GenerateResponse4? Type348 { get; set; } + public global::Cohere.GenerateResponse? Type348 { get; set; } /// /// /// - public global::Cohere.GenerateResponse5? Type349 { get; set; } + public global::Cohere.GenerateResponse2? Type349 { get; set; } /// /// /// - public global::Cohere.GenerateResponse6? Type350 { get; set; } + public global::Cohere.GenerateResponse3? Type350 { get; set; } /// /// /// - public global::Cohere.GenerateResponse7? Type351 { get; set; } + public global::Cohere.GenerateResponse4? Type351 { get; set; } /// /// /// - public global::Cohere.GenerateResponse8? Type352 { get; set; } + public global::Cohere.GenerateResponse5? Type352 { get; set; } /// /// /// - public global::Cohere.GenerateResponse9? Type353 { get; set; } + public global::Cohere.GenerateResponse6? Type353 { get; set; } /// /// /// - public global::Cohere.GenerateResponse10? Type354 { get; set; } + public global::Cohere.GenerateResponse7? Type354 { get; set; } /// /// /// - public global::Cohere.GenerateResponse11? Type355 { get; set; } + public global::Cohere.GenerateResponse8? Type355 { get; set; } /// /// /// - public global::Cohere.GenerateResponse12? Type356 { get; set; } + public global::Cohere.GenerateResponse9? Type356 { get; set; } /// /// /// - public global::Cohere.OneOf? Type357 { get; set; } + public global::Cohere.GenerateResponse10? Type357 { get; set; } /// /// /// - public global::Cohere.EmbedResponse2? Type358 { get; set; } + public global::Cohere.GenerateResponse11? Type358 { get; set; } /// /// /// - public global::Cohere.EmbedResponse3? Type359 { get; set; } + public global::Cohere.GenerateResponse12? Type359 { get; set; } /// /// /// - public global::Cohere.EmbedResponse4? Type360 { get; set; } + public global::Cohere.OneOf? Type360 { get; set; } /// /// /// - public global::Cohere.EmbedResponse5? Type361 { get; set; } + public global::Cohere.EmbedResponse2? Type361 { get; set; } /// /// /// - public global::Cohere.EmbedResponse6? Type362 { get; set; } + public global::Cohere.EmbedResponse3? Type362 { get; set; } /// /// /// - public global::Cohere.EmbedResponse7? Type363 { get; set; } + public global::Cohere.EmbedResponse4? Type363 { get; set; } /// /// /// - public global::Cohere.EmbedResponse8? Type364 { get; set; } + public global::Cohere.EmbedResponse5? Type364 { get; set; } /// /// /// - public global::Cohere.EmbedResponse9? Type365 { get; set; } + public global::Cohere.EmbedResponse6? Type365 { get; set; } /// /// /// - public global::Cohere.EmbedResponse10? Type366 { get; set; } + public global::Cohere.EmbedResponse7? Type366 { get; set; } /// /// /// - public global::Cohere.EmbedResponse11? Type367 { get; set; } + public global::Cohere.EmbedResponse8? Type367 { get; set; } /// /// /// - public global::Cohere.EmbedResponse12? Type368 { get; set; } + public global::Cohere.EmbedResponse9? Type368 { get; set; } /// /// /// - public global::Cohere.EmbedResponse13? Type369 { get; set; } + public global::Cohere.EmbedResponse10? Type369 { get; set; } /// /// /// - public global::Cohere.Embedv2Response? Type370 { get; set; } + public global::Cohere.EmbedResponse11? Type370 { get; set; } /// /// /// - public global::Cohere.Embedv2Response2? Type371 { get; set; } + public global::Cohere.EmbedResponse12? Type371 { get; set; } /// /// /// - public global::Cohere.Embedv2Response3? Type372 { get; set; } + public global::Cohere.EmbedResponse13? Type372 { get; set; } /// /// /// - public global::Cohere.Embedv2Response4? Type373 { get; set; } + public global::Cohere.Embedv2Response? Type373 { get; set; } /// /// /// - public global::Cohere.Embedv2Response5? Type374 { get; set; } + public global::Cohere.Embedv2Response2? Type374 { get; set; } /// /// /// - public global::Cohere.Embedv2Response6? Type375 { get; set; } + public global::Cohere.Embedv2Response3? Type375 { get; set; } /// /// /// - public global::Cohere.Embedv2Response7? Type376 { get; set; } + public global::Cohere.Embedv2Response4? Type376 { get; set; } /// /// /// - public global::Cohere.Embedv2Response8? Type377 { get; set; } + public global::Cohere.Embedv2Response5? Type377 { get; set; } /// /// /// - public global::Cohere.Embedv2Response9? Type378 { get; set; } + public global::Cohere.Embedv2Response6? Type378 { get; set; } /// /// /// - public global::Cohere.Embedv2Response10? Type379 { get; set; } + public global::Cohere.Embedv2Response7? Type379 { get; set; } /// /// /// - public global::Cohere.Embedv2Response11? Type380 { get; set; } + public global::Cohere.Embedv2Response8? Type380 { get; set; } /// /// /// - public global::Cohere.Embedv2Response12? Type381 { get; set; } + public global::Cohere.Embedv2Response9? Type381 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse2? Type382 { get; set; } + public global::Cohere.Embedv2Response10? Type382 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse3? Type383 { get; set; } + public global::Cohere.Embedv2Response11? Type383 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse4? Type384 { get; set; } + public global::Cohere.Embedv2Response12? Type384 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse5? Type385 { get; set; } + public global::Cohere.CreateEmbedJobResponse2? Type385 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse6? Type386 { get; set; } + public global::Cohere.CreateEmbedJobResponse3? Type386 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse7? Type387 { get; set; } + public global::Cohere.CreateEmbedJobResponse4? Type387 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse8? Type388 { get; set; } + public global::Cohere.CreateEmbedJobResponse5? Type388 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse9? Type389 { get; set; } + public global::Cohere.CreateEmbedJobResponse6? Type389 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse10? Type390 { get; set; } + public global::Cohere.CreateEmbedJobResponse7? Type390 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse11? Type391 { get; set; } + public global::Cohere.CreateEmbedJobResponse8? Type391 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse12? Type392 { get; set; } + public global::Cohere.CreateEmbedJobResponse9? Type392 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse13? Type393 { get; set; } + public global::Cohere.CreateEmbedJobResponse10? Type393 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse? Type394 { get; set; } + public global::Cohere.CreateEmbedJobResponse11? Type394 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse2? Type395 { get; set; } + public global::Cohere.CreateEmbedJobResponse12? Type395 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse3? Type396 { get; set; } + public global::Cohere.CreateEmbedJobResponse13? Type396 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse4? Type397 { get; set; } + public global::Cohere.ListEmbedJobsResponse? Type397 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse5? Type398 { get; set; } + public global::Cohere.ListEmbedJobsResponse2? Type398 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse6? Type399 { get; set; } + public global::Cohere.ListEmbedJobsResponse3? Type399 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse7? Type400 { get; set; } + public global::Cohere.ListEmbedJobsResponse4? Type400 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse8? Type401 { get; set; } + public global::Cohere.ListEmbedJobsResponse5? Type401 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse9? Type402 { get; set; } + public global::Cohere.ListEmbedJobsResponse6? Type402 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse10? Type403 { get; set; } + public global::Cohere.ListEmbedJobsResponse7? Type403 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse11? Type404 { get; set; } + public global::Cohere.ListEmbedJobsResponse8? Type404 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse12? Type405 { get; set; } + public global::Cohere.ListEmbedJobsResponse9? Type405 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse? Type406 { get; set; } + public global::Cohere.ListEmbedJobsResponse10? Type406 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse2? Type407 { get; set; } + public global::Cohere.ListEmbedJobsResponse11? Type407 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse3? Type408 { get; set; } + public global::Cohere.ListEmbedJobsResponse12? Type408 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse4? Type409 { get; set; } + public global::Cohere.GetEmbedJobResponse? Type409 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse5? Type410 { get; set; } + public global::Cohere.GetEmbedJobResponse2? Type410 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse6? Type411 { get; set; } + public global::Cohere.GetEmbedJobResponse3? Type411 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse7? Type412 { get; set; } + public global::Cohere.GetEmbedJobResponse4? Type412 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse8? Type413 { get; set; } + public global::Cohere.GetEmbedJobResponse5? Type413 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse9? Type414 { get; set; } + public global::Cohere.GetEmbedJobResponse6? Type414 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse10? Type415 { get; set; } + public global::Cohere.GetEmbedJobResponse7? Type415 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse11? Type416 { get; set; } + public global::Cohere.GetEmbedJobResponse8? Type416 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse12? Type417 { get; set; } + public global::Cohere.GetEmbedJobResponse9? Type417 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse? Type418 { get; set; } + public global::Cohere.GetEmbedJobResponse10? Type418 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse2? Type419 { get; set; } + public global::Cohere.GetEmbedJobResponse11? Type419 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse3? Type420 { get; set; } + public global::Cohere.GetEmbedJobResponse12? Type420 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse4? Type421 { get; set; } + public global::Cohere.CancelEmbedJobResponse? Type421 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse5? Type422 { get; set; } + public global::Cohere.CancelEmbedJobResponse2? Type422 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse6? Type423 { get; set; } + public global::Cohere.CancelEmbedJobResponse3? Type423 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse7? Type424 { get; set; } + public global::Cohere.CancelEmbedJobResponse4? Type424 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse8? Type425 { get; set; } + public global::Cohere.CancelEmbedJobResponse5? Type425 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse9? Type426 { get; set; } + public global::Cohere.CancelEmbedJobResponse6? Type426 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse10? Type427 { get; set; } + public global::Cohere.CancelEmbedJobResponse7? Type427 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse11? Type428 { get; set; } + public global::Cohere.CancelEmbedJobResponse8? Type428 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse12? Type429 { get; set; } + public global::Cohere.CancelEmbedJobResponse9? Type429 { get; set; } /// /// /// - public global::Cohere.RerankResponse? Type430 { get; set; } + public global::Cohere.CancelEmbedJobResponse10? Type430 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type431 { get; set; } + public global::Cohere.CancelEmbedJobResponse11? Type431 { get; set; } /// /// /// - public global::Cohere.RerankResponseResult? Type432 { get; set; } + public global::Cohere.CancelEmbedJobResponse12? Type432 { get; set; } /// /// /// - public global::Cohere.RerankResponseResultDocument? Type433 { get; set; } + public global::Cohere.RerankResponse? Type433 { get; set; } /// /// /// - public global::Cohere.RerankResponse2? Type434 { get; set; } + public global::System.Collections.Generic.IList? Type434 { get; set; } /// /// /// - public global::Cohere.RerankResponse3? Type435 { get; set; } + public global::Cohere.RerankResponseResult? Type435 { get; set; } /// /// /// - public global::Cohere.RerankResponse4? Type436 { get; set; } + public global::Cohere.RerankResponseResultDocument? Type436 { get; set; } /// /// /// - public global::Cohere.RerankResponse5? Type437 { get; set; } + public global::Cohere.RerankResponse2? Type437 { get; set; } /// /// /// - public global::Cohere.RerankResponse6? Type438 { get; set; } + public global::Cohere.RerankResponse3? Type438 { get; set; } /// /// /// - public global::Cohere.RerankResponse7? Type439 { get; set; } + public global::Cohere.RerankResponse4? Type439 { get; set; } /// /// /// - public global::Cohere.RerankResponse8? Type440 { get; set; } + public global::Cohere.RerankResponse5? Type440 { get; set; } /// /// /// - public global::Cohere.RerankResponse9? Type441 { get; set; } + public global::Cohere.RerankResponse6? Type441 { get; set; } /// /// /// - public global::Cohere.RerankResponse10? Type442 { get; set; } + public global::Cohere.RerankResponse7? Type442 { get; set; } /// /// /// - public global::Cohere.RerankResponse11? Type443 { get; set; } + public global::Cohere.RerankResponse8? Type443 { get; set; } /// /// /// - public global::Cohere.RerankResponse12? Type444 { get; set; } + public global::Cohere.RerankResponse9? Type444 { get; set; } /// /// /// - public global::Cohere.RerankResponse13? Type445 { get; set; } + public global::Cohere.RerankResponse10? Type445 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response? Type446 { get; set; } + public global::Cohere.RerankResponse11? Type446 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type447 { get; set; } + public global::Cohere.RerankResponse12? Type447 { get; set; } /// /// /// - public global::Cohere.Rerankv2ResponseResult? Type448 { get; set; } + public global::Cohere.RerankResponse13? Type448 { get; set; } /// /// /// - public global::Cohere.Rerankv2ResponseResultDocument? Type449 { get; set; } + public global::Cohere.Rerankv2Response? Type449 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response2? Type450 { get; set; } + public global::System.Collections.Generic.IList? Type450 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response3? Type451 { get; set; } + public global::Cohere.Rerankv2ResponseResult? Type451 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response4? Type452 { get; set; } + public global::Cohere.Rerankv2ResponseResultDocument? Type452 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response5? Type453 { get; set; } + public global::Cohere.Rerankv2Response2? Type453 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response6? Type454 { get; set; } + public global::Cohere.Rerankv2Response3? Type454 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response7? Type455 { get; set; } + public global::Cohere.Rerankv2Response4? Type455 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response8? Type456 { get; set; } + public global::Cohere.Rerankv2Response5? Type456 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response9? Type457 { get; set; } + public global::Cohere.Rerankv2Response6? Type457 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response10? Type458 { get; set; } + public global::Cohere.Rerankv2Response7? Type458 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response11? Type459 { get; set; } + public global::Cohere.Rerankv2Response8? Type459 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response12? Type460 { get; set; } + public global::Cohere.Rerankv2Response9? Type460 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response13? Type461 { get; set; } + public global::Cohere.Rerankv2Response10? Type461 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse? Type462 { get; set; } + public global::Cohere.Rerankv2Response11? Type462 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type463 { get; set; } + public global::Cohere.Rerankv2Response12? Type463 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassification? Type464 { get; set; } + public global::Cohere.Rerankv2Response13? Type464 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type465 { get; set; } + public global::Cohere.ClassifyResponse? Type465 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type466 { get; set; } + public global::System.Collections.Generic.IList? Type466 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationLabels2? Type467 { get; set; } + public global::Cohere.ClassifyResponseClassification? Type467 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationClassificationType? Type468 { get; set; } + public global::System.Collections.Generic.Dictionary? Type468 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse2? Type469 { get; set; } + public global::Cohere.ClassifyResponseClassificationLabels2? Type469 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse3? Type470 { get; set; } + public global::Cohere.ClassifyResponseClassificationClassificationType? Type470 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse4? Type471 { get; set; } + public global::Cohere.ClassifyResponse2? Type471 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse5? Type472 { get; set; } + public global::Cohere.ClassifyResponse3? Type472 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse6? Type473 { get; set; } + public global::Cohere.ClassifyResponse4? Type473 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse7? Type474 { get; set; } + public global::Cohere.ClassifyResponse5? Type474 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse8? Type475 { get; set; } + public global::Cohere.ClassifyResponse6? Type475 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse9? Type476 { get; set; } + public global::Cohere.ClassifyResponse7? Type476 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse10? Type477 { get; set; } + public global::Cohere.ClassifyResponse8? Type477 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse11? Type478 { get; set; } + public global::Cohere.ClassifyResponse9? Type478 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse12? Type479 { get; set; } + public global::Cohere.ClassifyResponse10? Type479 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse13? Type480 { get; set; } + public global::Cohere.ClassifyResponse11? Type480 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse? Type481 { get; set; } + public global::Cohere.ClassifyResponse12? Type481 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse2? Type482 { get; set; } + public global::Cohere.ClassifyResponse13? Type482 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse3? Type483 { get; set; } + public global::Cohere.CreateDatasetResponse? Type483 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse4? Type484 { get; set; } + public global::Cohere.CreateDatasetResponse2? Type484 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse5? Type485 { get; set; } + public global::Cohere.CreateDatasetResponse3? Type485 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse6? Type486 { get; set; } + public global::Cohere.CreateDatasetResponse4? Type486 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse7? Type487 { get; set; } + public global::Cohere.CreateDatasetResponse5? Type487 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse8? Type488 { get; set; } + public global::Cohere.CreateDatasetResponse6? Type488 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse9? Type489 { get; set; } + public global::Cohere.CreateDatasetResponse7? Type489 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse10? Type490 { get; set; } + public global::Cohere.CreateDatasetResponse8? Type490 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse11? Type491 { get; set; } + public global::Cohere.CreateDatasetResponse9? Type491 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse12? Type492 { get; set; } + public global::Cohere.CreateDatasetResponse10? Type492 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse13? Type493 { get; set; } + public global::Cohere.CreateDatasetResponse11? Type493 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse? Type494 { get; set; } + public global::Cohere.CreateDatasetResponse12? Type494 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type495 { get; set; } + public global::Cohere.CreateDatasetResponse13? Type495 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse2? Type496 { get; set; } + public global::Cohere.ListDatasetsResponse? Type496 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse3? Type497 { get; set; } + public global::System.Collections.Generic.IList? Type497 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse4? Type498 { get; set; } + public global::Cohere.ListDatasetsResponse2? Type498 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse5? Type499 { get; set; } + public global::Cohere.ListDatasetsResponse3? Type499 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse6? Type500 { get; set; } + public global::Cohere.ListDatasetsResponse4? Type500 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse7? Type501 { get; set; } + public global::Cohere.ListDatasetsResponse5? Type501 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse8? Type502 { get; set; } + public global::Cohere.ListDatasetsResponse6? Type502 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse9? Type503 { get; set; } + public global::Cohere.ListDatasetsResponse7? Type503 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse10? Type504 { get; set; } + public global::Cohere.ListDatasetsResponse8? Type504 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse11? Type505 { get; set; } + public global::Cohere.ListDatasetsResponse9? Type505 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse12? Type506 { get; set; } + public global::Cohere.ListDatasetsResponse10? Type506 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse13? Type507 { get; set; } + public global::Cohere.ListDatasetsResponse11? Type507 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse? Type508 { get; set; } + public global::Cohere.ListDatasetsResponse12? Type508 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse2? Type509 { get; set; } + public global::Cohere.ListDatasetsResponse13? Type509 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse3? Type510 { get; set; } + public global::Cohere.GetDatasetUsageResponse? Type510 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse4? Type511 { get; set; } + public global::Cohere.GetDatasetUsageResponse2? Type511 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse5? Type512 { get; set; } + public global::Cohere.GetDatasetUsageResponse3? Type512 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse6? Type513 { get; set; } + public global::Cohere.GetDatasetUsageResponse4? Type513 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse7? Type514 { get; set; } + public global::Cohere.GetDatasetUsageResponse5? Type514 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse8? Type515 { get; set; } + public global::Cohere.GetDatasetUsageResponse6? Type515 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse9? Type516 { get; set; } + public global::Cohere.GetDatasetUsageResponse7? Type516 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse10? Type517 { get; set; } + public global::Cohere.GetDatasetUsageResponse8? Type517 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse11? Type518 { get; set; } + public global::Cohere.GetDatasetUsageResponse9? Type518 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse12? Type519 { get; set; } + public global::Cohere.GetDatasetUsageResponse10? Type519 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse13? Type520 { get; set; } + public global::Cohere.GetDatasetUsageResponse11? Type520 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse? Type521 { get; set; } + public global::Cohere.GetDatasetUsageResponse12? Type521 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse2? Type522 { get; set; } + public global::Cohere.GetDatasetUsageResponse13? Type522 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse3? Type523 { get; set; } + public global::Cohere.GetDatasetResponse? Type523 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse4? Type524 { get; set; } + public global::Cohere.GetDatasetResponse2? Type524 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse5? Type525 { get; set; } + public global::Cohere.GetDatasetResponse3? Type525 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse6? Type526 { get; set; } + public global::Cohere.GetDatasetResponse4? Type526 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse7? Type527 { get; set; } + public global::Cohere.GetDatasetResponse5? Type527 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse8? Type528 { get; set; } + public global::Cohere.GetDatasetResponse6? Type528 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse9? Type529 { get; set; } + public global::Cohere.GetDatasetResponse7? Type529 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse10? Type530 { get; set; } + public global::Cohere.GetDatasetResponse8? Type530 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse11? Type531 { get; set; } + public global::Cohere.GetDatasetResponse9? Type531 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse12? Type532 { get; set; } + public global::Cohere.GetDatasetResponse10? Type532 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse13? Type533 { get; set; } + public global::Cohere.GetDatasetResponse11? Type533 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse2? Type534 { get; set; } + public global::Cohere.GetDatasetResponse12? Type534 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse3? Type535 { get; set; } + public global::Cohere.GetDatasetResponse13? Type535 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse4? Type536 { get; set; } + public global::Cohere.DeleteDatasetResponse2? Type536 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse5? Type537 { get; set; } + public global::Cohere.DeleteDatasetResponse3? Type537 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse6? Type538 { get; set; } + public global::Cohere.DeleteDatasetResponse4? Type538 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse7? Type539 { get; set; } + public global::Cohere.DeleteDatasetResponse5? Type539 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse8? Type540 { get; set; } + public global::Cohere.DeleteDatasetResponse6? Type540 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse9? Type541 { get; set; } + public global::Cohere.DeleteDatasetResponse7? Type541 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse10? Type542 { get; set; } + public global::Cohere.DeleteDatasetResponse8? Type542 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse11? Type543 { get; set; } + public global::Cohere.DeleteDatasetResponse9? Type543 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse12? Type544 { get; set; } + public global::Cohere.DeleteDatasetResponse10? Type544 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse13? Type545 { get; set; } + public global::Cohere.DeleteDatasetResponse11? Type545 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse? Type546 { get; set; } + public global::Cohere.DeleteDatasetResponse12? Type546 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse2? Type547 { get; set; } + public global::Cohere.DeleteDatasetResponse13? Type547 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse3? Type548 { get; set; } + public global::Cohere.SummarizeResponse? Type548 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse4? Type549 { get; set; } + public global::Cohere.SummarizeResponse2? Type549 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse5? Type550 { get; set; } + public global::Cohere.SummarizeResponse3? Type550 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse6? Type551 { get; set; } + public global::Cohere.SummarizeResponse4? Type551 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse7? Type552 { get; set; } + public global::Cohere.SummarizeResponse5? Type552 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse8? Type553 { get; set; } + public global::Cohere.SummarizeResponse6? Type553 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse9? Type554 { get; set; } + public global::Cohere.SummarizeResponse7? Type554 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse10? Type555 { get; set; } + public global::Cohere.SummarizeResponse8? Type555 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse11? Type556 { get; set; } + public global::Cohere.SummarizeResponse9? Type556 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse12? Type557 { get; set; } + public global::Cohere.SummarizeResponse10? Type557 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse13? Type558 { get; set; } + public global::Cohere.SummarizeResponse11? Type558 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse? Type559 { get; set; } + public global::Cohere.SummarizeResponse12? Type559 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse2? Type560 { get; set; } + public global::Cohere.SummarizeResponse13? Type560 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse3? Type561 { get; set; } + public global::Cohere.TokenizeResponse? Type561 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse4? Type562 { get; set; } + public global::Cohere.TokenizeResponse2? Type562 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse5? Type563 { get; set; } + public global::Cohere.TokenizeResponse3? Type563 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse6? Type564 { get; set; } + public global::Cohere.TokenizeResponse4? Type564 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse7? Type565 { get; set; } + public global::Cohere.TokenizeResponse5? Type565 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse8? Type566 { get; set; } + public global::Cohere.TokenizeResponse6? Type566 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse9? Type567 { get; set; } + public global::Cohere.TokenizeResponse7? Type567 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse10? Type568 { get; set; } + public global::Cohere.TokenizeResponse8? Type568 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse11? Type569 { get; set; } + public global::Cohere.TokenizeResponse9? Type569 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse12? Type570 { get; set; } + public global::Cohere.TokenizeResponse10? Type570 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse13? Type571 { get; set; } + public global::Cohere.TokenizeResponse11? Type571 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse? Type572 { get; set; } + public global::Cohere.TokenizeResponse12? Type572 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse2? Type573 { get; set; } + public global::Cohere.TokenizeResponse13? Type573 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse3? Type574 { get; set; } + public global::Cohere.DetokenizeResponse? Type574 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse4? Type575 { get; set; } + public global::Cohere.DetokenizeResponse2? Type575 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse5? Type576 { get; set; } + public global::Cohere.DetokenizeResponse3? Type576 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse6? Type577 { get; set; } + public global::Cohere.DetokenizeResponse4? Type577 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse7? Type578 { get; set; } + public global::Cohere.DetokenizeResponse5? Type578 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse8? Type579 { get; set; } + public global::Cohere.DetokenizeResponse6? Type579 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse9? Type580 { get; set; } + public global::Cohere.DetokenizeResponse7? Type580 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse10? Type581 { get; set; } + public global::Cohere.DetokenizeResponse8? Type581 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse11? Type582 { get; set; } + public global::Cohere.DetokenizeResponse9? Type582 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse12? Type583 { get; set; } + public global::Cohere.DetokenizeResponse10? Type583 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse13? Type584 { get; set; } + public global::Cohere.DetokenizeResponse11? Type584 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse2? Type585 { get; set; } + public global::Cohere.DetokenizeResponse12? Type585 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse3? Type586 { get; set; } + public global::Cohere.DetokenizeResponse13? Type586 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse4? Type587 { get; set; } + public global::Cohere.ListConnectorsResponse2? Type587 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse5? Type588 { get; set; } + public global::Cohere.ListConnectorsResponse3? Type588 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse6? Type589 { get; set; } + public global::Cohere.ListConnectorsResponse4? Type589 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse7? Type590 { get; set; } + public global::Cohere.ListConnectorsResponse5? Type590 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse8? Type591 { get; set; } + public global::Cohere.ListConnectorsResponse6? Type591 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse9? Type592 { get; set; } + public global::Cohere.ListConnectorsResponse7? Type592 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse10? Type593 { get; set; } + public global::Cohere.ListConnectorsResponse8? Type593 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse11? Type594 { get; set; } + public global::Cohere.ListConnectorsResponse9? Type594 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse12? Type595 { get; set; } + public global::Cohere.ListConnectorsResponse10? Type595 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse13? Type596 { get; set; } + public global::Cohere.ListConnectorsResponse11? Type596 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse2? Type597 { get; set; } + public global::Cohere.ListConnectorsResponse12? Type597 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse3? Type598 { get; set; } + public global::Cohere.ListConnectorsResponse13? Type598 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse4? Type599 { get; set; } + public global::Cohere.CreateConnectorResponse2? Type599 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse5? Type600 { get; set; } + public global::Cohere.CreateConnectorResponse3? Type600 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse6? Type601 { get; set; } + public global::Cohere.CreateConnectorResponse4? Type601 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse7? Type602 { get; set; } + public global::Cohere.CreateConnectorResponse5? Type602 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse8? Type603 { get; set; } + public global::Cohere.CreateConnectorResponse6? Type603 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse9? Type604 { get; set; } + public global::Cohere.CreateConnectorResponse7? Type604 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse10? Type605 { get; set; } + public global::Cohere.CreateConnectorResponse8? Type605 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse11? Type606 { get; set; } + public global::Cohere.CreateConnectorResponse9? Type606 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse12? Type607 { get; set; } + public global::Cohere.CreateConnectorResponse10? Type607 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse13? Type608 { get; set; } + public global::Cohere.CreateConnectorResponse11? Type608 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse2? Type609 { get; set; } + public global::Cohere.CreateConnectorResponse12? Type609 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse3? Type610 { get; set; } + public global::Cohere.CreateConnectorResponse13? Type610 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse4? Type611 { get; set; } + public global::Cohere.GetConnectorResponse2? Type611 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse5? Type612 { get; set; } + public global::Cohere.GetConnectorResponse3? Type612 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse6? Type613 { get; set; } + public global::Cohere.GetConnectorResponse4? Type613 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse7? Type614 { get; set; } + public global::Cohere.GetConnectorResponse5? Type614 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse8? Type615 { get; set; } + public global::Cohere.GetConnectorResponse6? Type615 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse9? Type616 { get; set; } + public global::Cohere.GetConnectorResponse7? Type616 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse10? Type617 { get; set; } + public global::Cohere.GetConnectorResponse8? Type617 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse11? Type618 { get; set; } + public global::Cohere.GetConnectorResponse9? Type618 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse12? Type619 { get; set; } + public global::Cohere.GetConnectorResponse10? Type619 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse13? Type620 { get; set; } + public global::Cohere.GetConnectorResponse11? Type620 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse2? Type621 { get; set; } + public global::Cohere.GetConnectorResponse12? Type621 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse3? Type622 { get; set; } + public global::Cohere.GetConnectorResponse13? Type622 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse4? Type623 { get; set; } + public global::Cohere.UpdateConnectorResponse2? Type623 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse5? Type624 { get; set; } + public global::Cohere.UpdateConnectorResponse3? Type624 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse6? Type625 { get; set; } + public global::Cohere.UpdateConnectorResponse4? Type625 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse7? Type626 { get; set; } + public global::Cohere.UpdateConnectorResponse5? Type626 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse8? Type627 { get; set; } + public global::Cohere.UpdateConnectorResponse6? Type627 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse9? Type628 { get; set; } + public global::Cohere.UpdateConnectorResponse7? Type628 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse10? Type629 { get; set; } + public global::Cohere.UpdateConnectorResponse8? Type629 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse11? Type630 { get; set; } + public global::Cohere.UpdateConnectorResponse9? Type630 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse12? Type631 { get; set; } + public global::Cohere.UpdateConnectorResponse10? Type631 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse13? Type632 { get; set; } + public global::Cohere.UpdateConnectorResponse11? Type632 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse2? Type633 { get; set; } + public global::Cohere.UpdateConnectorResponse12? Type633 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse3? Type634 { get; set; } + public global::Cohere.UpdateConnectorResponse13? Type634 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse4? Type635 { get; set; } + public global::Cohere.DeleteConnectorResponse2? Type635 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse5? Type636 { get; set; } + public global::Cohere.DeleteConnectorResponse3? Type636 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse6? Type637 { get; set; } + public global::Cohere.DeleteConnectorResponse4? Type637 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse7? Type638 { get; set; } + public global::Cohere.DeleteConnectorResponse5? Type638 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse8? Type639 { get; set; } + public global::Cohere.DeleteConnectorResponse6? Type639 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse9? Type640 { get; set; } + public global::Cohere.DeleteConnectorResponse7? Type640 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse10? Type641 { get; set; } + public global::Cohere.DeleteConnectorResponse8? Type641 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse11? Type642 { get; set; } + public global::Cohere.DeleteConnectorResponse9? Type642 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse12? Type643 { get; set; } + public global::Cohere.DeleteConnectorResponse10? Type643 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse13? Type644 { get; set; } + public global::Cohere.DeleteConnectorResponse11? Type644 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse? Type645 { get; set; } + public global::Cohere.DeleteConnectorResponse12? Type645 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse2? Type646 { get; set; } + public global::Cohere.DeleteConnectorResponse13? Type646 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse3? Type647 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse? Type647 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse4? Type648 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse2? Type648 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse5? Type649 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse3? Type649 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse6? Type650 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse4? Type650 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse7? Type651 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse5? Type651 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse8? Type652 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse6? Type652 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse9? Type653 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse7? Type653 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse10? Type654 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse8? Type654 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse11? Type655 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse9? Type655 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse12? Type656 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse10? Type656 { get; set; } /// /// /// - public global::Cohere.GetModelResponse2? Type657 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse11? Type657 { get; set; } /// /// /// - public global::Cohere.GetModelResponse3? Type658 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse12? Type658 { get; set; } /// /// /// - public global::Cohere.GetModelResponse4? Type659 { get; set; } + public global::Cohere.GetModelResponse2? Type659 { get; set; } /// /// /// - public global::Cohere.GetModelResponse5? Type660 { get; set; } + public global::Cohere.GetModelResponse3? Type660 { get; set; } /// /// /// - public global::Cohere.GetModelResponse6? Type661 { get; set; } + public global::Cohere.GetModelResponse4? Type661 { get; set; } /// /// /// - public global::Cohere.GetModelResponse7? Type662 { get; set; } + public global::Cohere.GetModelResponse5? Type662 { get; set; } /// /// /// - public global::Cohere.GetModelResponse8? Type663 { get; set; } + public global::Cohere.GetModelResponse6? Type663 { get; set; } /// /// /// - public global::Cohere.GetModelResponse9? Type664 { get; set; } + public global::Cohere.GetModelResponse7? Type664 { get; set; } /// /// /// - public global::Cohere.GetModelResponse10? Type665 { get; set; } + public global::Cohere.GetModelResponse8? Type665 { get; set; } /// /// /// - public global::Cohere.GetModelResponse11? Type666 { get; set; } + public global::Cohere.GetModelResponse9? Type666 { get; set; } /// /// /// - public global::Cohere.GetModelResponse12? Type667 { get; set; } + public global::Cohere.GetModelResponse10? Type667 { get; set; } /// /// /// - public global::Cohere.GetModelResponse13? Type668 { get; set; } + public global::Cohere.GetModelResponse11? Type668 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse2? Type669 { get; set; } + public global::Cohere.GetModelResponse12? Type669 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse3? Type670 { get; set; } + public global::Cohere.GetModelResponse13? Type670 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse4? Type671 { get; set; } + public global::Cohere.ListModelsResponse2? Type671 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse5? Type672 { get; set; } + public global::Cohere.ListModelsResponse3? Type672 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse6? Type673 { get; set; } + public global::Cohere.ListModelsResponse4? Type673 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse7? Type674 { get; set; } + public global::Cohere.ListModelsResponse5? Type674 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse8? Type675 { get; set; } + public global::Cohere.ListModelsResponse6? Type675 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse9? Type676 { get; set; } + public global::Cohere.ListModelsResponse7? Type676 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse10? Type677 { get; set; } + public global::Cohere.ListModelsResponse8? Type677 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse11? Type678 { get; set; } + public global::Cohere.ListModelsResponse9? Type678 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse12? Type679 { get; set; } + public global::Cohere.ListModelsResponse10? Type679 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse13? Type680 { get; set; } + public global::Cohere.ListModelsResponse11? Type680 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse? Type681 { get; set; } + public global::Cohere.ListModelsResponse12? Type681 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse2? Type682 { get; set; } + public global::Cohere.ListModelsResponse13? Type682 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse3? Type683 { get; set; } + public global::Cohere.CheckAPIKeyResponse? Type683 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse4? Type684 { get; set; } + public global::Cohere.CheckAPIKeyResponse2? Type684 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse5? Type685 { get; set; } + public global::Cohere.CheckAPIKeyResponse3? Type685 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse6? Type686 { get; set; } + public global::Cohere.CheckAPIKeyResponse4? Type686 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse7? Type687 { get; set; } + public global::Cohere.CheckAPIKeyResponse5? Type687 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse8? Type688 { get; set; } + public global::Cohere.CheckAPIKeyResponse6? Type688 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse9? Type689 { get; set; } + public global::Cohere.CheckAPIKeyResponse7? Type689 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse10? Type690 { get; set; } + public global::Cohere.CheckAPIKeyResponse8? Type690 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse11? Type691 { get; set; } + public global::Cohere.CheckAPIKeyResponse9? Type691 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse12? Type692 { get; set; } + public global::Cohere.CheckAPIKeyResponse10? Type692 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse13? Type693 { get; set; } + public global::Cohere.CheckAPIKeyResponse11? Type693 { get; set; } + /// + /// + /// + public global::Cohere.CheckAPIKeyResponse12? Type694 { get; set; } + /// + /// + /// + public global::Cohere.CheckAPIKeyResponse13? Type695 { get; set; } } } \ No newline at end of file diff --git a/src/libs/Cohere/openapi.yaml b/src/libs/Cohere/openapi.yaml index ba278547..56854717 100644 --- a/src/libs/Cohere/openapi.yaml +++ b/src/libs/Cohere/openapi.yaml @@ -827,6 +827,9 @@ paths: description: "Ensures that only the most likely tokens, with total probability mass of `p`, are considered for generation at each step. If both `k` and `p` are enabled, `p` acts after `k`.\nDefaults to `0.75`. min value of `0.01`, max value of `0.99`.\n" format: float default: 0.75 + logprobs: + type: boolean + description: "Whether to return the log probabilities of the generated tokens. Defaults to false.\n" responses: '200': description: OK @@ -872,7 +875,7 @@ paths: required: - id - finish_reason - - messages + - message properties: id: type: string @@ -883,6 +886,10 @@ paths: $ref: '#/components/schemas/AssistantMessageResponse' usage: $ref: '#/components/schemas/Usage' + logprobs: + type: array + items: + $ref: '#/components/schemas/LogprobItem' response-stream: description: StreamedChatResponse is returned in streaming mode (specified with `stream=True` in the request). oneOf: @@ -12356,11 +12363,32 @@ components: output_tokens: type: number description: "The number of tokens produced by the model.\n" + LogprobItem: + required: + - token + - token_ids + - logprob + type: object + properties: + text: + type: string + description: The text chunk for which the log probabilities was calculated. + token_ids: + type: array + items: + type: integer + description: The token ids of each token used to construct the text chunk. + logprobs: + type: array + items: + type: number + format: float + description: The log probability of each token used to construct the text chunk. ChatResponse: required: - id - finish_reason - - messages + - message properties: id: type: string @@ -12371,6 +12399,10 @@ components: $ref: '#/components/schemas/AssistantMessageResponse' usage: $ref: '#/components/schemas/Usage' + logprobs: + type: array + items: + $ref: '#/components/schemas/LogprobItem' ChatStreamEventType: required: - type @@ -12451,6 +12483,8 @@ components: properties: text: type: string + logprobs: + $ref: '#/components/schemas/LogprobItem' description: A streamed delta event which contains a delta of chat text content. ChatContentEndEvent: allOf: