diff --git a/src/libs/Cohere/Generated/Cohere.Models.BaseModel.g.cs b/src/libs/Cohere/Generated/Cohere.Models.BaseModel.g.cs index 2527ced..fcdd2c3 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.BaseModel.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.BaseModel.g.cs @@ -23,7 +23,7 @@ public sealed partial class BaseModel /// /// The possible types of fine-tuned models.
/// - BASE_TYPE_UNSPECIFIED: Unspecified model.
- /// - BASE_TYPE_GENERATIVE: Generative model.
+ /// - BASE_TYPE_GENERATIVE: Deprecated: Generative model.
/// - BASE_TYPE_CLASSIFICATION: Classification model.
/// - BASE_TYPE_RERANK: Rerank model.
/// - BASE_TYPE_CHAT: Chat model.
@@ -37,7 +37,7 @@ public sealed partial class BaseModel /// /// The possible strategy used to serve a fine-tuned models.
/// - STRATEGY_UNSPECIFIED: Unspecified strategy.
- /// - STRATEGY_VANILLA: Serve the fine-tuned model on a dedicated GPU.
+ /// - STRATEGY_VANILLA: Deprecated: Serve the fine-tuned model on a dedicated GPU.
/// - STRATEGY_TFEW: Serve the fine-tuned model on a shared GPU.
/// Default Value: STRATEGY_UNSPECIFIED ///
diff --git a/src/libs/Cohere/Generated/Cohere.Models.BaseType.g.cs b/src/libs/Cohere/Generated/Cohere.Models.BaseType.g.cs index 213230f..e5a160a 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.BaseType.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.BaseType.g.cs @@ -6,7 +6,7 @@ namespace Cohere /// /// The possible types of fine-tuned models.
/// - BASE_TYPE_UNSPECIFIED: Unspecified model.
- /// - BASE_TYPE_GENERATIVE: Generative model.
+ /// - BASE_TYPE_GENERATIVE: Deprecated: Generative model.
/// - BASE_TYPE_CLASSIFICATION: Classification model.
/// - BASE_TYPE_RERANK: Rerank model.
/// - BASE_TYPE_CHAT: Chat model.
diff --git a/src/libs/Cohere/Generated/Cohere.Models.Strategy.g.cs b/src/libs/Cohere/Generated/Cohere.Models.Strategy.g.cs index 1f850b3..f21f9a7 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.Strategy.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.Strategy.g.cs @@ -6,7 +6,7 @@ namespace Cohere /// /// The possible strategy used to serve a fine-tuned models.
/// - STRATEGY_UNSPECIFIED: Unspecified strategy.
- /// - STRATEGY_VANILLA: Serve the fine-tuned model on a dedicated GPU.
+ /// - STRATEGY_VANILLA: Deprecated: Serve the fine-tuned model on a dedicated GPU.
/// - STRATEGY_TFEW: Serve the fine-tuned model on a shared GPU.
/// Default Value: STRATEGY_UNSPECIFIED ///
diff --git a/src/libs/Cohere/Generated/Cohere.Models.ToolContent.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ToolContent.g.cs deleted file mode 100644 index 6ec2d97..0000000 --- a/src/libs/Cohere/Generated/Cohere.Models.ToolContent.g.cs +++ /dev/null @@ -1,31 +0,0 @@ - -#nullable enable - -namespace Cohere -{ - /// - /// Tool content result object - /// - public sealed partial class ToolContent - { - /// - /// - /// - [global::System.Text.Json.Serialization.JsonPropertyName("type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.ToolContentTypeJsonConverter))] - public global::Cohere.ToolContentType Type { get; set; } - - /// - /// - /// - [global::System.Text.Json.Serialization.JsonPropertyName("output")] - [global::System.Text.Json.Serialization.JsonRequired] - public required global::Cohere.ToolContentOutput Output { 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(); - } -} \ No newline at end of file diff --git a/src/libs/Cohere/Generated/Cohere.Models.ToolContentOutput.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ToolContentOutput.g.cs deleted file mode 100644 index 86bbe18..0000000 --- a/src/libs/Cohere/Generated/Cohere.Models.ToolContentOutput.g.cs +++ /dev/null @@ -1,18 +0,0 @@ - -#nullable enable - -namespace Cohere -{ - /// - /// - /// - public sealed partial class ToolContentOutput - { - - /// - /// 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(); - } -} \ No newline at end of file diff --git a/src/libs/Cohere/Generated/Cohere.Models.ToolContentType.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ToolContentType.g.cs deleted file mode 100644 index 26197da..0000000 --- a/src/libs/Cohere/Generated/Cohere.Models.ToolContentType.g.cs +++ /dev/null @@ -1,45 +0,0 @@ - -#nullable enable - -namespace Cohere -{ - /// - /// - /// - public enum ToolContentType - { - /// - /// - /// - ToolResultObject, - } - - /// - /// Enum extensions to do fast conversions without the reflection. - /// - public static class ToolContentTypeExtensions - { - /// - /// Converts an enum to a string. - /// - public static string ToValueString(this ToolContentType value) - { - return value switch - { - ToolContentType.ToolResultObject => "tool_result_object", - _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), - }; - } - /// - /// Converts an string to a enum. - /// - public static ToolContentType? ToEnum(string value) - { - return value switch - { - "tool_result_object" => ToolContentType.ToolResultObject, - _ => null, - }; - } - } -} \ No newline at end of file diff --git a/src/libs/Cohere/Generated/Cohere.Models.ToolMessage2.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ToolMessage2.g.cs index e4884c0..03a4984 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.ToolMessage2.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.ToolMessage2.g.cs @@ -1,6 +1,4 @@ -#pragma warning disable CS0618 // Type or member is obsolete - #nullable enable namespace Cohere @@ -18,18 +16,18 @@ public sealed partial class ToolMessage2 public global::Cohere.ToolMessage2Role Role { get; set; } /// - /// + /// The id of the associated tool call that has provided the given content /// [global::System.Text.Json.Serialization.JsonPropertyName("tool_call_id")] [global::System.Text.Json.Serialization.JsonRequired] public required string ToolCallId { get; set; } /// - /// + /// A list of outputs from a tool. The content should formatted as a JSON object string /// [global::System.Text.Json.Serialization.JsonPropertyName("tool_content")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList> ToolContent { get; set; } + public required global::System.Collections.Generic.IList ToolContent { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/libs/Cohere/Generated/JsonConverters.ToolContentType.g.cs b/src/libs/Cohere/Generated/JsonConverters.ToolContentType.g.cs deleted file mode 100644 index f6adedf..0000000 --- a/src/libs/Cohere/Generated/JsonConverters.ToolContentType.g.cs +++ /dev/null @@ -1,49 +0,0 @@ -#nullable enable - -namespace OpenApiGenerator.JsonConverters -{ - /// - public sealed class ToolContentTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter - { - /// - public override global::Cohere.ToolContentType Read( - ref global::System.Text.Json.Utf8JsonReader reader, - global::System.Type typeToConvert, - global::System.Text.Json.JsonSerializerOptions options) - { - switch (reader.TokenType) - { - case global::System.Text.Json.JsonTokenType.String: - { - var stringValue = reader.GetString(); - if (stringValue != null) - { - return global::Cohere.ToolContentTypeExtensions.ToEnum(stringValue) ?? default; - } - - break; - } - case global::System.Text.Json.JsonTokenType.Number: - { - var numValue = reader.GetInt32(); - return (global::Cohere.ToolContentType)numValue; - } - default: - throw new global::System.ArgumentOutOfRangeException(nameof(reader)); - } - - return default; - } - - /// - public override void Write( - global::System.Text.Json.Utf8JsonWriter writer, - global::Cohere.ToolContentType value, - global::System.Text.Json.JsonSerializerOptions options) - { - writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - - writer.WriteStringValue(global::Cohere.ToolContentTypeExtensions.ToValueString(value)); - } - } -} diff --git a/src/libs/Cohere/Generated/JsonConverters.ToolContentTypeNullable.g.cs b/src/libs/Cohere/Generated/JsonConverters.ToolContentTypeNullable.g.cs deleted file mode 100644 index e4f78f1..0000000 --- a/src/libs/Cohere/Generated/JsonConverters.ToolContentTypeNullable.g.cs +++ /dev/null @@ -1,56 +0,0 @@ -#nullable enable - -namespace OpenApiGenerator.JsonConverters -{ - /// - public sealed class ToolContentTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter - { - /// - public override global::Cohere.ToolContentType? Read( - ref global::System.Text.Json.Utf8JsonReader reader, - global::System.Type typeToConvert, - global::System.Text.Json.JsonSerializerOptions options) - { - switch (reader.TokenType) - { - case global::System.Text.Json.JsonTokenType.String: - { - var stringValue = reader.GetString(); - if (stringValue != null) - { - return global::Cohere.ToolContentTypeExtensions.ToEnum(stringValue); - } - - break; - } - case global::System.Text.Json.JsonTokenType.Number: - { - var numValue = reader.GetInt32(); - return (global::Cohere.ToolContentType)numValue; - } - default: - throw new global::System.ArgumentOutOfRangeException(nameof(reader)); - } - - return default; - } - - /// - public override void Write( - global::System.Text.Json.Utf8JsonWriter writer, - global::Cohere.ToolContentType? value, - global::System.Text.Json.JsonSerializerOptions options) - { - writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); - - if (value == null) - { - writer.WriteNullValue(); - } - else - { - writer.WriteStringValue(global::Cohere.ToolContentTypeExtensions.ToValueString(value.Value)); - } - } - } -} diff --git a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs index fc67b36..99ca376 100644 --- a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs +++ b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs @@ -33,8 +33,6 @@ namespace Cohere typeof(global::OpenApiGenerator.JsonConverters.AssistantMessageRoleNullableJsonConverter), typeof(global::OpenApiGenerator.JsonConverters.SystemMessageRoleJsonConverter), typeof(global::OpenApiGenerator.JsonConverters.SystemMessageRoleNullableJsonConverter), - typeof(global::OpenApiGenerator.JsonConverters.ToolContentTypeJsonConverter), - typeof(global::OpenApiGenerator.JsonConverters.ToolContentTypeNullableJsonConverter), typeof(global::OpenApiGenerator.JsonConverters.ToolMessage2RoleJsonConverter), typeof(global::OpenApiGenerator.JsonConverters.ToolMessage2RoleNullableJsonConverter), typeof(global::OpenApiGenerator.JsonConverters.Tool2TypeJsonConverter), diff --git a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs index aef4102..c2d1dc0 100644 --- a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs +++ b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs @@ -365,2242 +365,2222 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Cohere.ToolContent? Type88 { get; set; } + public global::Cohere.ToolMessage2? Type88 { get; set; } /// /// /// - public global::Cohere.ToolContentType? Type89 { get; set; } + public global::Cohere.ToolMessage2Role? Type89 { get; set; } /// /// /// - public global::Cohere.ToolContentOutput? Type90 { get; set; } + public global::Cohere.ChatMessage2? Type90 { get; set; } /// /// /// - public global::Cohere.ToolMessage2? Type91 { get; set; } + public global::System.Collections.Generic.IList? Type91 { get; set; } /// /// /// - public global::Cohere.ToolMessage2Role? Type92 { get; set; } + public global::Cohere.Tool2? Type92 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type93 { get; set; } + public global::Cohere.Tool2Type? Type93 { get; set; } /// /// /// - public global::System.OneOf? Type94 { get; set; } + public global::Cohere.Tool2Function? Type94 { get; set; } /// /// /// - public global::Cohere.ChatMessage2? Type95 { get; set; } + public global::Cohere.Tool2FunctionParameters? Type95 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type96 { get; set; } + public global::Cohere.JSONResponseFormat2? Type96 { get; set; } /// /// /// - public global::Cohere.Tool2? Type97 { get; set; } + public global::Cohere.JSONResponseFormat2JsonSchema? Type97 { get; set; } /// /// /// - public global::Cohere.Tool2Type? Type98 { get; set; } + public global::Cohere.ResponseFormat2? Type98 { get; set; } /// /// /// - public global::Cohere.Tool2Function? Type99 { get; set; } + public global::Cohere.ChatFinishReason? Type99 { get; set; } /// /// /// - public global::Cohere.Tool2FunctionParameters? Type100 { get; set; } + public global::Cohere.AssistantMessageResponse? Type100 { get; set; } /// /// /// - public global::Cohere.JSONResponseFormat2? Type101 { get; set; } + public global::Cohere.AssistantMessageResponseRole? Type101 { get; set; } /// /// /// - public global::Cohere.JSONResponseFormat2JsonSchema? Type102 { get; set; } + public global::Cohere.Usage? Type102 { get; set; } /// /// /// - public global::Cohere.ResponseFormat2? Type103 { get; set; } + public global::Cohere.UsageBilledUnits? Type103 { get; set; } /// /// /// - public global::Cohere.ChatFinishReason? Type104 { get; set; } + public global::Cohere.UsageTokens? Type104 { get; set; } /// /// /// - public global::Cohere.AssistantMessageResponse? Type105 { get; set; } + public global::Cohere.NonStreamedChatResponse2? Type105 { get; set; } /// /// /// - public global::Cohere.AssistantMessageResponseRole? Type106 { get; set; } + public global::Cohere.ChatStreamEventType? Type106 { get; set; } /// /// /// - public global::Cohere.Usage? Type107 { get; set; } + public global::Cohere.ChatStreamEventTypeType? Type107 { get; set; } /// /// /// - public global::Cohere.UsageBilledUnits? Type108 { get; set; } + public global::Cohere.ChatMessageStartEvent? Type108 { get; set; } /// /// /// - public global::Cohere.UsageTokens? Type109 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2? Type109 { get; set; } /// /// /// - public global::Cohere.NonStreamedChatResponse2? Type110 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2Delta? Type110 { get; set; } /// /// /// - public global::Cohere.ChatStreamEventType? Type111 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type111 { get; set; } /// /// /// - public global::Cohere.ChatStreamEventTypeType? Type112 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type112 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEvent? Type113 { get; set; } + public global::Cohere.ChatContentStartEvent? Type113 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2? Type114 { get; set; } + public global::Cohere.ChatContentStartEventVariant2? Type114 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2Delta? Type115 { get; set; } + public global::Cohere.ChatContentStartEventVariant2Delta? Type115 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type116 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type116 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type117 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type117 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEvent? Type118 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type118 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2? Type119 { get; set; } + public global::Cohere.ChatContentDeltaEvent? Type119 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2Delta? Type120 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2? Type120 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type121 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2Delta? Type121 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type122 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type122 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type123 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type123 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEvent? Type124 { get; set; } + public global::Cohere.ChatContentEndEvent? Type124 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2? Type125 { get; set; } + public global::Cohere.ChatContentEndEventVariant2? Type125 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2Delta? Type126 { get; set; } + public global::Cohere.ChatToolPlanDeltaEvent? Type126 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type127 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2? Type127 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type128 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type128 { get; set; } /// /// /// - public global::Cohere.ChatContentEndEvent? Type129 { get; set; } + public global::Cohere.ChatToolCallStartEvent? Type129 { get; set; } /// /// /// - public global::Cohere.ChatContentEndEventVariant2? Type130 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2? Type130 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEvent? Type131 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2Delta? Type131 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2? Type132 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCall? Type132 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type133 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallType? Type133 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEvent? Type134 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallFunction? Type134 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2? Type135 { get; set; } + public global::Cohere.ChatToolCallDeltaEvent? Type135 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2Delta? Type136 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2? Type136 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCall? Type137 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type137 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallType? Type138 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCall? Type138 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallFunction? Type139 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCallFunction? Type139 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEvent? Type140 { get; set; } + public global::Cohere.ChatToolCallEndEvent? Type140 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2? Type141 { get; set; } + public global::Cohere.ChatToolCallEndEventVariant2? Type141 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type142 { get; set; } + public global::Cohere.CitationStartEvent? Type142 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCall? Type143 { get; set; } + public global::Cohere.CitationStartEventVariant2? Type143 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCallFunction? Type144 { get; set; } + public global::Cohere.CitationStartEventVariant2Delta? Type144 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEvent? Type145 { get; set; } + public global::Cohere.CitationStartEventVariant2DeltaMessage? Type145 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEventVariant2? Type146 { get; set; } + public global::Cohere.CitationEndEvent? Type146 { get; set; } /// /// /// - public global::Cohere.CitationStartEvent? Type147 { get; set; } + public global::Cohere.CitationEndEventVariant2? Type147 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2? Type148 { get; set; } + public global::Cohere.ChatMessageEndEvent? Type148 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2Delta? Type149 { get; set; } + public global::Cohere.ChatMessageEndEventVariant2? Type149 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2DeltaMessage? Type150 { get; set; } + public global::Cohere.ChatMessageEndEventVariant2Delta? Type150 { get; set; } /// /// /// - public global::Cohere.CitationEndEvent? Type151 { get; set; } + public global::Cohere.StreamedChatResponse2? Type151 { get; set; } /// /// /// - public global::Cohere.CitationEndEventVariant2? Type152 { get; set; } + public global::Cohere.SingleGeneration? Type152 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEvent? Type153 { get; set; } + public global::System.Collections.Generic.IList? Type153 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEventVariant2? Type154 { get; set; } + public global::Cohere.SingleGenerationTokenLikelihood? Type154 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEventVariant2Delta? Type155 { get; set; } + public global::Cohere.Generation? Type155 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponse2? Type156 { get; set; } + public global::System.Collections.Generic.IList? Type156 { get; set; } /// /// /// - public global::Cohere.SingleGeneration? Type157 { get; set; } + public global::Cohere.GenerateStreamEvent? Type157 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type158 { get; set; } + public global::Cohere.GenerateStreamEventEventType? Type158 { get; set; } /// /// /// - public global::Cohere.SingleGenerationTokenLikelihood? Type159 { get; set; } + public global::Cohere.GenerateStreamText? Type159 { get; set; } /// /// /// - public global::Cohere.Generation? Type160 { get; set; } + public global::Cohere.GenerateStreamTextVariant2? Type160 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type161 { get; set; } + public global::Cohere.SingleGenerationInStream? Type161 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEvent? Type162 { get; set; } + public global::Cohere.GenerateStreamEnd? Type162 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEventEventType? Type163 { get; set; } + public global::Cohere.GenerateStreamEndVariant2? Type163 { get; set; } /// /// /// - public global::Cohere.GenerateStreamText? Type164 { get; set; } + public global::Cohere.GenerateStreamEndVariant2Response? Type164 { get; set; } /// /// /// - public global::Cohere.GenerateStreamTextVariant2? Type165 { get; set; } + public global::System.Collections.Generic.IList? Type165 { get; set; } /// /// /// - public global::Cohere.SingleGenerationInStream? Type166 { get; set; } + public global::Cohere.GenerateStreamError? Type166 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEnd? Type167 { get; set; } + public global::Cohere.GenerateStreamErrorVariant2? Type167 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2? Type168 { get; set; } + public global::Cohere.GenerateStreamedResponse? Type168 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2Response? Type169 { get; set; } + public global::Cohere.EmbedInputType? Type169 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type170 { get; set; } + public global::Cohere.EmbeddingType? Type170 { get; set; } /// /// /// - public global::Cohere.GenerateStreamError? Type171 { get; set; } + public global::Cohere.EmbedFloatsResponse? Type171 { get; set; } /// /// /// - public global::Cohere.GenerateStreamErrorVariant2? Type172 { get; set; } + public global::Cohere.EmbedFloatsResponseResponseType? Type172 { get; set; } /// /// /// - public global::Cohere.GenerateStreamedResponse? Type173 { get; set; } + public global::System.Collections.Generic.IList>? Type173 { get; set; } /// /// /// - public global::Cohere.EmbedInputType? Type174 { get; set; } + public global::System.Collections.Generic.IList? Type174 { get; set; } /// /// /// - public global::Cohere.EmbeddingType? Type175 { get; set; } + public global::Cohere.EmbedByTypeResponse? Type175 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponse? Type176 { get; set; } + public global::Cohere.EmbedByTypeResponseResponseType? Type176 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponseResponseType? Type177 { get; set; } + public global::Cohere.EmbedByTypeResponseEmbeddings? Type177 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type178 { get; set; } + public global::System.Collections.Generic.IList>? Type178 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type179 { get; set; } + public global::System.Collections.Generic.IList? Type179 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponse? Type180 { get; set; } + public global::Cohere.EmbedJob? Type180 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseResponseType? Type181 { get; set; } + public global::Cohere.EmbedJobStatus? Type181 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseEmbeddings? Type182 { get; set; } + public global::System.DateTime? Type182 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type183 { get; set; } + public global::Cohere.EmbedJobTruncate? Type183 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type184 { get; set; } + public global::Cohere.ListEmbedJobResponse? Type184 { get; set; } /// /// /// - public global::Cohere.EmbedJob? Type185 { get; set; } + public global::System.Collections.Generic.IList? Type185 { get; set; } /// /// /// - public global::Cohere.EmbedJobStatus? Type186 { get; set; } + public global::Cohere.CreateEmbedJobRequest? Type186 { get; set; } /// /// /// - public global::System.DateTime? Type187 { get; set; } + public global::System.Collections.Generic.IList? Type187 { get; set; } /// /// /// - public global::Cohere.EmbedJobTruncate? Type188 { get; set; } + public global::Cohere.CreateEmbedJobRequestTruncate? Type188 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobResponse? Type189 { get; set; } + public global::Cohere.CreateEmbedJobResponse? Type189 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type190 { get; set; } + public global::Cohere.RerankDocument? Type190 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequest? Type191 { get; set; } + public global::Cohere.ClassifyExample? Type191 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type192 { get; set; } + public global::Cohere.DatasetValidationStatus? Type192 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequestTruncate? Type193 { get; set; } + public global::Cohere.DatasetType? Type193 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse? Type194 { get; set; } + public global::Cohere.DatasetPart? Type194 { get; set; } /// /// /// - public global::Cohere.RerankDocument? Type195 { get; set; } + public global::Cohere.ParseInfo? Type195 { get; set; } /// /// /// - public global::Cohere.ClassifyExample? Type196 { get; set; } + public global::Cohere.RerankerDataMetrics? Type196 { get; set; } /// /// /// - public global::Cohere.DatasetValidationStatus? Type197 { get; set; } + public global::Cohere.ChatDataMetrics? Type197 { get; set; } /// /// /// - public global::Cohere.DatasetType? Type198 { get; set; } + public global::Cohere.LabelMetric? Type198 { get; set; } /// /// /// - public global::Cohere.DatasetPart? Type199 { get; set; } + public global::Cohere.ClassifyDataMetrics? Type199 { get; set; } /// /// /// - public global::Cohere.ParseInfo? Type200 { get; set; } + public global::System.Collections.Generic.IList? Type200 { get; set; } /// /// /// - public global::Cohere.RerankerDataMetrics? Type201 { get; set; } + public global::Cohere.FinetuneDatasetMetrics? Type201 { get; set; } /// /// /// - public global::Cohere.ChatDataMetrics? Type202 { get; set; } + public global::Cohere.Metrics? Type202 { get; set; } /// /// /// - public global::Cohere.LabelMetric? Type203 { get; set; } + public global::Cohere.Dataset? Type203 { get; set; } /// /// /// - public global::Cohere.ClassifyDataMetrics? Type204 { get; set; } + public global::System.Collections.Generic.IList? Type204 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type205 { get; set; } + public global::Cohere.ConnectorOAuth? Type205 { get; set; } /// /// /// - public global::Cohere.FinetuneDatasetMetrics? Type206 { get; set; } + public global::Cohere.Connector? Type206 { get; set; } /// /// /// - public global::Cohere.Metrics? Type207 { get; set; } + public global::Cohere.ConnectorAuthStatus? Type207 { get; set; } /// /// /// - public global::Cohere.Dataset? Type208 { get; set; } + public global::Cohere.ListConnectorsResponse? Type208 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type209 { get; set; } + public global::System.Collections.Generic.IList? Type209 { get; set; } /// /// /// - public global::Cohere.ConnectorOAuth? Type210 { get; set; } + public global::Cohere.CreateConnectorOAuth? Type210 { get; set; } /// /// /// - public global::Cohere.Connector? Type211 { get; set; } + public global::Cohere.AuthTokenType? Type211 { get; set; } /// /// /// - public global::Cohere.ConnectorAuthStatus? Type212 { get; set; } + public global::Cohere.CreateConnectorServiceAuth? Type212 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse? Type213 { get; set; } + public global::Cohere.CreateConnectorRequest? Type213 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type214 { get; set; } + public global::Cohere.CreateConnectorResponse? Type214 { get; set; } /// /// /// - public global::Cohere.CreateConnectorOAuth? Type215 { get; set; } + public global::Cohere.GetConnectorResponse? Type215 { get; set; } /// /// /// - public global::Cohere.AuthTokenType? Type216 { get; set; } + public global::Cohere.DeleteConnectorResponse? Type216 { get; set; } /// /// /// - public global::Cohere.CreateConnectorServiceAuth? Type217 { get; set; } + public global::Cohere.UpdateConnectorRequest? Type217 { get; set; } /// /// /// - public global::Cohere.CreateConnectorRequest? Type218 { get; set; } + public global::Cohere.UpdateConnectorResponse? Type218 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse? Type219 { get; set; } + public global::Cohere.OAuthAuthorizeResponse? Type219 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse? Type220 { get; set; } + public global::Cohere.ConnectorLog? Type220 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse? Type221 { get; set; } + public global::Cohere.GetConnectorsLogsResponse? Type221 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorRequest? Type222 { get; set; } + public global::System.Collections.Generic.IList? Type222 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse? Type223 { get; set; } + public global::Cohere.TokenLikelihood? Type223 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeResponse? Type224 { get; set; } + public global::Cohere.LogLikelihoodResponse? Type224 { get; set; } /// /// /// - public global::Cohere.ConnectorLog? Type225 { get; set; } + public global::System.Collections.Generic.IList? Type225 { get; set; } /// /// /// - public global::Cohere.GetConnectorsLogsResponse? Type226 { get; set; } + public global::Cohere.Cluster? Type226 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type227 { get; set; } + public global::Cohere.GetClusterJobResponse? Type227 { get; set; } /// /// /// - public global::Cohere.TokenLikelihood? Type228 { get; set; } + public global::Cohere.GetClusterJobResponseStatus? Type228 { get; set; } /// /// /// - public global::Cohere.LogLikelihoodResponse? Type229 { get; set; } + public global::System.Collections.Generic.IList? Type229 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type230 { get; set; } + public global::Cohere.ListClusterJobsResponse? Type230 { get; set; } /// /// /// - public global::Cohere.Cluster? Type231 { get; set; } + public global::System.Collections.Generic.IList? Type231 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponse? Type232 { get; set; } + public global::Cohere.CreateClusterJobRequest? Type232 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponseStatus? Type233 { get; set; } + public global::Cohere.CreateClusterJobResponse? Type233 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type234 { get; set; } + public global::Cohere.UpdateClusterJobRequest? Type234 { get; set; } /// /// /// - public global::Cohere.ListClusterJobsResponse? Type235 { get; set; } + public global::Cohere.UpdateClusterJobRequestStatus? Type235 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type236 { get; set; } + public global::Cohere.UpdateClusterJobRequestInputTrackingMetrics? Type236 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobRequest? Type237 { get; set; } + public global::Cohere.UpdateClusterJobRequestOutputTrackingMetrics? Type237 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobResponse? Type238 { get; set; } + public global::Cohere.UpdateClusterJobResponse? Type238 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequest? Type239 { get; set; } + public global::Cohere.CompatibleEndpoint? Type239 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequestStatus? Type240 { get; set; } + public global::Cohere.GetModelResponse? Type240 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequestInputTrackingMetrics? Type241 { get; set; } + public global::System.Collections.Generic.IList? Type241 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequestOutputTrackingMetrics? Type242 { get; set; } + public global::Cohere.ListModelsResponse? Type242 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobResponse? Type243 { get; set; } + public global::System.Collections.Generic.IList? Type243 { get; set; } /// /// /// - public global::Cohere.CompatibleEndpoint? Type244 { get; set; } + public global::Cohere.BaseType? Type244 { get; set; } /// /// /// - public global::Cohere.GetModelResponse? Type245 { get; set; } + public global::Cohere.Strategy? Type245 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type246 { get; set; } + public global::Cohere.BaseModel? Type246 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse? Type247 { get; set; } + public global::Cohere.Hyperparameters? Type247 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type248 { get; set; } + public global::Cohere.WandbConfig? Type248 { get; set; } /// /// /// - public global::Cohere.BaseType? Type249 { get; set; } + public global::Cohere.Settings? Type249 { get; set; } /// /// /// - public global::Cohere.Strategy? Type250 { get; set; } + public global::Cohere.Status? Type250 { get; set; } /// /// /// - public global::Cohere.BaseModel? Type251 { get; set; } + public global::Cohere.FinetunedModel? Type251 { get; set; } /// /// /// - public global::Cohere.Hyperparameters? Type252 { get; set; } + public global::Cohere.ListFinetunedModelsResponse? Type252 { get; set; } /// /// /// - public global::Cohere.WandbConfig? Type253 { get; set; } + public global::System.Collections.Generic.IList? Type253 { get; set; } /// /// /// - public global::Cohere.Settings? Type254 { get; set; } + public global::Cohere.Error? Type254 { get; set; } /// /// /// - public global::Cohere.Status? Type255 { get; set; } + public global::Cohere.CreateFinetunedModelResponse? Type255 { get; set; } /// /// /// - public global::Cohere.FinetunedModel? Type256 { get; set; } + public global::Cohere.GetFinetunedModelResponse? Type256 { get; set; } /// /// /// - public global::Cohere.ListFinetunedModelsResponse? Type257 { get; set; } + public global::Cohere.DeleteFinetunedModelResponse? Type257 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type258 { get; set; } + public global::Cohere.UpdateFinetunedModelResponse? Type258 { get; set; } /// /// /// - public global::Cohere.Error? Type259 { get; set; } + public global::Cohere.Event? Type259 { get; set; } /// /// /// - public global::Cohere.CreateFinetunedModelResponse? Type260 { get; set; } + public global::Cohere.ListEventsResponse? Type260 { get; set; } /// /// /// - public global::Cohere.GetFinetunedModelResponse? Type261 { get; set; } + public global::System.Collections.Generic.IList? Type261 { get; set; } /// /// /// - public global::Cohere.DeleteFinetunedModelResponse? Type262 { get; set; } + public global::Cohere.TrainingStepMetrics? Type262 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelResponse? Type263 { get; set; } + public global::Cohere.TrainingStepMetricsMetrics? Type263 { get; set; } /// /// /// - public global::Cohere.Event? Type264 { get; set; } + public global::Cohere.ListTrainingStepMetricsResponse? Type264 { get; set; } /// /// /// - public global::Cohere.ListEventsResponse? Type265 { get; set; } + public global::System.Collections.Generic.IList? Type265 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type266 { get; set; } + public global::Cohere.ChatRequest? Type266 { get; set; } /// /// /// - public global::Cohere.TrainingStepMetrics? Type267 { get; set; } + public global::Cohere.ChatRequestPromptTruncation? Type267 { get; set; } /// /// /// - public global::Cohere.TrainingStepMetricsMetrics? Type268 { get; set; } + public global::System.Collections.Generic.IList? Type268 { get; set; } /// /// /// - public global::Cohere.ListTrainingStepMetricsResponse? Type269 { get; set; } + public global::Cohere.ChatRequestCitationQuality? Type269 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type270 { get; set; } + public float? Type270 { get; set; } /// /// /// - public global::Cohere.ChatRequest? Type271 { get; set; } + public global::System.Collections.Generic.IList? Type271 { get; set; } /// /// /// - public global::Cohere.ChatRequestPromptTruncation? Type272 { get; set; } + public global::Cohere.ChatRequestSafetyMode? Type272 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type273 { get; set; } + public global::Cohere.Chatv2Request? Type273 { get; set; } /// /// /// - public global::Cohere.ChatRequestCitationQuality? Type274 { get; set; } + public global::System.Collections.Generic.IList? Type274 { get; set; } /// /// /// - public float? Type275 { get; set; } + public global::Cohere.Chatv2RequestCitationMode? Type275 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type276 { get; set; } + public global::Cohere.GenerateRequest? Type276 { get; set; } /// /// /// - public global::Cohere.ChatRequestSafetyMode? Type277 { get; set; } + public global::Cohere.GenerateRequestTruncate? Type277 { get; set; } /// /// /// - public global::Cohere.Chatv2Request? Type278 { get; set; } + public global::Cohere.GenerateRequestReturnLikelihoods? Type278 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type279 { get; set; } + public global::Cohere.EmbedRequest? Type279 { get; set; } /// /// /// - public global::Cohere.Chatv2RequestCitationMode? Type280 { get; set; } + public global::Cohere.EmbedRequestTruncate? Type280 { get; set; } /// /// /// - public global::Cohere.GenerateRequest? Type281 { get; set; } + public global::Cohere.RerankRequest? Type281 { get; set; } /// /// /// - public global::Cohere.GenerateRequestTruncate? Type282 { get; set; } + public global::System.Collections.Generic.IList>? Type282 { get; set; } /// /// /// - public global::Cohere.GenerateRequestReturnLikelihoods? Type283 { get; set; } + public global::System.OneOf? Type283 { get; set; } /// /// /// - public global::Cohere.EmbedRequest? Type284 { get; set; } + public global::Cohere.ClassifyRequest? Type284 { get; set; } /// /// /// - public global::Cohere.EmbedRequestTruncate? Type285 { get; set; } + public global::System.Collections.Generic.IList? Type285 { get; set; } /// /// /// - public global::Cohere.RerankRequest? Type286 { get; set; } + public global::Cohere.ClassifyRequestTruncate? Type286 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type287 { get; set; } + public global::Cohere.CreateDatasetRequest? Type287 { get; set; } /// /// /// - public global::System.OneOf? Type288 { get; set; } + public byte[]? Type288 { get; set; } /// /// /// - public global::Cohere.ClassifyRequest? Type289 { get; set; } + public global::Cohere.SummarizeRequest? Type289 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type290 { get; set; } + public global::Cohere.SummarizeRequestLength? Type290 { get; set; } /// /// /// - public global::Cohere.ClassifyRequestTruncate? Type291 { get; set; } + public global::Cohere.SummarizeRequestFormat? Type291 { get; set; } /// /// /// - public global::Cohere.CreateDatasetRequest? Type292 { get; set; } + public global::Cohere.SummarizeRequestExtractiveness? Type292 { get; set; } /// /// /// - public byte[]? Type293 { get; set; } + public global::Cohere.TokenizeRequest? Type293 { get; set; } /// /// /// - public global::Cohere.SummarizeRequest? Type294 { get; set; } + public global::Cohere.DetokenizeRequest? Type294 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestLength? Type295 { get; set; } + public global::Cohere.UpdateFinetunedModelRequest? Type295 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestFormat? Type296 { get; set; } + public global::System.OneOf? Type296 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestExtractiveness? Type297 { get; set; } + public global::Cohere.ChatResponse2? Type297 { get; set; } /// /// /// - public global::Cohere.TokenizeRequest? Type298 { get; set; } + public global::Cohere.ChatResponse3? Type298 { get; set; } /// /// /// - public global::Cohere.DetokenizeRequest? Type299 { get; set; } + public global::Cohere.ChatResponse4? Type299 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelRequest? Type300 { get; set; } + public global::Cohere.ChatResponse5? Type300 { get; set; } /// /// /// - public global::System.OneOf? Type301 { get; set; } + public global::Cohere.ChatResponse6? Type301 { get; set; } /// /// /// - public global::Cohere.ChatResponse2? Type302 { get; set; } + public global::Cohere.ChatResponse7? Type302 { get; set; } /// /// /// - public global::Cohere.ChatResponse3? Type303 { get; set; } + public global::Cohere.ChatResponse8? Type303 { get; set; } /// /// /// - public global::Cohere.ChatResponse4? Type304 { get; set; } + public global::Cohere.ChatResponse9? Type304 { get; set; } /// /// /// - public global::Cohere.ChatResponse5? Type305 { get; set; } + public global::Cohere.ChatResponse10? Type305 { get; set; } /// /// /// - public global::Cohere.ChatResponse6? Type306 { get; set; } + public global::Cohere.ChatResponse11? Type306 { get; set; } /// /// /// - public global::Cohere.ChatResponse7? Type307 { get; set; } + public global::Cohere.ChatResponse12? Type307 { get; set; } /// /// /// - public global::Cohere.ChatResponse8? Type308 { get; set; } + public global::Cohere.ChatResponse13? Type308 { get; set; } /// /// /// - public global::Cohere.ChatResponse9? Type309 { get; set; } + public global::System.OneOf? Type309 { get; set; } /// /// /// - public global::Cohere.ChatResponse10? Type310 { get; set; } + public global::Cohere.Chatv2Response2? Type310 { get; set; } /// /// /// - public global::Cohere.ChatResponse11? Type311 { get; set; } + public global::Cohere.Chatv2Response3? Type311 { get; set; } /// /// /// - public global::Cohere.ChatResponse12? Type312 { get; set; } + public global::Cohere.Chatv2Response4? Type312 { get; set; } /// /// /// - public global::Cohere.ChatResponse13? Type313 { get; set; } + public global::Cohere.Chatv2Response5? Type313 { get; set; } /// /// /// - public global::System.OneOf? Type314 { get; set; } + public global::Cohere.Chatv2Response6? Type314 { get; set; } /// /// /// - public global::Cohere.Chatv2Response2? Type315 { get; set; } + public global::Cohere.Chatv2Response7? Type315 { get; set; } /// /// /// - public global::Cohere.Chatv2Response3? Type316 { get; set; } + public global::Cohere.Chatv2Response8? Type316 { get; set; } /// /// /// - public global::Cohere.Chatv2Response4? Type317 { get; set; } + public global::Cohere.Chatv2Response9? Type317 { get; set; } /// /// /// - public global::Cohere.Chatv2Response5? Type318 { get; set; } + public global::Cohere.Chatv2Response10? Type318 { get; set; } /// /// /// - public global::Cohere.Chatv2Response6? Type319 { get; set; } + public global::Cohere.Chatv2Response11? Type319 { get; set; } /// /// /// - public global::Cohere.Chatv2Response7? Type320 { get; set; } + public global::Cohere.Chatv2Response12? Type320 { get; set; } /// /// /// - public global::Cohere.Chatv2Response8? Type321 { get; set; } + public global::Cohere.Chatv2Response13? Type321 { get; set; } /// /// /// - public global::Cohere.Chatv2Response9? Type322 { get; set; } + public global::Cohere.GenerateResponse? Type322 { get; set; } /// /// /// - public global::Cohere.Chatv2Response10? Type323 { get; set; } + public global::Cohere.GenerateResponse2? Type323 { get; set; } /// /// /// - public global::Cohere.Chatv2Response11? Type324 { get; set; } + public global::Cohere.GenerateResponse3? Type324 { get; set; } /// /// /// - public global::Cohere.Chatv2Response12? Type325 { get; set; } + public global::Cohere.GenerateResponse4? Type325 { get; set; } /// /// /// - public global::Cohere.Chatv2Response13? Type326 { get; set; } + public global::Cohere.GenerateResponse5? Type326 { get; set; } /// /// /// - public global::Cohere.GenerateResponse? Type327 { get; set; } + public global::Cohere.GenerateResponse6? Type327 { get; set; } /// /// /// - public global::Cohere.GenerateResponse2? Type328 { get; set; } + public global::Cohere.GenerateResponse7? Type328 { get; set; } /// /// /// - public global::Cohere.GenerateResponse3? Type329 { get; set; } + public global::Cohere.GenerateResponse8? Type329 { get; set; } /// /// /// - public global::Cohere.GenerateResponse4? Type330 { get; set; } + public global::Cohere.GenerateResponse9? Type330 { get; set; } /// /// /// - public global::Cohere.GenerateResponse5? Type331 { get; set; } + public global::Cohere.GenerateResponse10? Type331 { get; set; } /// /// /// - public global::Cohere.GenerateResponse6? Type332 { get; set; } + public global::Cohere.GenerateResponse11? Type332 { get; set; } /// /// /// - public global::Cohere.GenerateResponse7? Type333 { get; set; } + public global::Cohere.GenerateResponse12? Type333 { get; set; } /// /// /// - public global::Cohere.GenerateResponse8? Type334 { get; set; } + public global::System.OneOf? Type334 { get; set; } /// /// /// - public global::Cohere.GenerateResponse9? Type335 { get; set; } + public global::Cohere.EmbedResponse2? Type335 { get; set; } /// /// /// - public global::Cohere.GenerateResponse10? Type336 { get; set; } + public global::Cohere.EmbedResponse3? Type336 { get; set; } /// /// /// - public global::Cohere.GenerateResponse11? Type337 { get; set; } + public global::Cohere.EmbedResponse4? Type337 { get; set; } /// /// /// - public global::Cohere.GenerateResponse12? Type338 { get; set; } + public global::Cohere.EmbedResponse5? Type338 { get; set; } /// /// /// - public global::System.OneOf? Type339 { get; set; } + public global::Cohere.EmbedResponse6? Type339 { get; set; } /// /// /// - public global::Cohere.EmbedResponse2? Type340 { get; set; } + public global::Cohere.EmbedResponse7? Type340 { get; set; } /// /// /// - public global::Cohere.EmbedResponse3? Type341 { get; set; } + public global::Cohere.EmbedResponse8? Type341 { get; set; } /// /// /// - public global::Cohere.EmbedResponse4? Type342 { get; set; } + public global::Cohere.EmbedResponse9? Type342 { get; set; } /// /// /// - public global::Cohere.EmbedResponse5? Type343 { get; set; } + public global::Cohere.EmbedResponse10? Type343 { get; set; } /// /// /// - public global::Cohere.EmbedResponse6? Type344 { get; set; } + public global::Cohere.EmbedResponse11? Type344 { get; set; } /// /// /// - public global::Cohere.EmbedResponse7? Type345 { get; set; } + public global::Cohere.EmbedResponse12? Type345 { get; set; } /// /// /// - public global::Cohere.EmbedResponse8? Type346 { get; set; } + public global::Cohere.EmbedResponse13? Type346 { get; set; } /// /// /// - public global::Cohere.EmbedResponse9? Type347 { get; set; } + public global::Cohere.CreateEmbedJobResponse2? Type347 { get; set; } /// /// /// - public global::Cohere.EmbedResponse10? Type348 { get; set; } + public global::Cohere.CreateEmbedJobResponse3? Type348 { get; set; } /// /// /// - public global::Cohere.EmbedResponse11? Type349 { get; set; } + public global::Cohere.CreateEmbedJobResponse4? Type349 { get; set; } /// /// /// - public global::Cohere.EmbedResponse12? Type350 { get; set; } + public global::Cohere.CreateEmbedJobResponse5? Type350 { get; set; } /// /// /// - public global::Cohere.EmbedResponse13? Type351 { get; set; } + public global::Cohere.CreateEmbedJobResponse6? Type351 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse2? Type352 { get; set; } + public global::Cohere.CreateEmbedJobResponse7? Type352 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse3? Type353 { get; set; } + public global::Cohere.CreateEmbedJobResponse8? Type353 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse4? Type354 { get; set; } + public global::Cohere.CreateEmbedJobResponse9? Type354 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse5? Type355 { get; set; } + public global::Cohere.CreateEmbedJobResponse10? Type355 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse6? Type356 { get; set; } + public global::Cohere.CreateEmbedJobResponse11? Type356 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse7? Type357 { get; set; } + public global::Cohere.CreateEmbedJobResponse12? Type357 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse8? Type358 { get; set; } + public global::Cohere.CreateEmbedJobResponse13? Type358 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse9? Type359 { get; set; } + public global::Cohere.ListEmbedJobsResponse? Type359 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse10? Type360 { get; set; } + public global::Cohere.ListEmbedJobsResponse2? Type360 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse11? Type361 { get; set; } + public global::Cohere.ListEmbedJobsResponse3? Type361 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse12? Type362 { get; set; } + public global::Cohere.ListEmbedJobsResponse4? Type362 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse13? Type363 { get; set; } + public global::Cohere.ListEmbedJobsResponse5? Type363 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse? Type364 { get; set; } + public global::Cohere.ListEmbedJobsResponse6? Type364 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse2? Type365 { get; set; } + public global::Cohere.ListEmbedJobsResponse7? Type365 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse3? Type366 { get; set; } + public global::Cohere.ListEmbedJobsResponse8? Type366 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse4? Type367 { get; set; } + public global::Cohere.ListEmbedJobsResponse9? Type367 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse5? Type368 { get; set; } + public global::Cohere.ListEmbedJobsResponse10? Type368 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse6? Type369 { get; set; } + public global::Cohere.ListEmbedJobsResponse11? Type369 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse7? Type370 { get; set; } + public global::Cohere.ListEmbedJobsResponse12? Type370 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse8? Type371 { get; set; } + public global::Cohere.GetEmbedJobResponse? Type371 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse9? Type372 { get; set; } + public global::Cohere.GetEmbedJobResponse2? Type372 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse10? Type373 { get; set; } + public global::Cohere.GetEmbedJobResponse3? Type373 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse11? Type374 { get; set; } + public global::Cohere.GetEmbedJobResponse4? Type374 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse12? Type375 { get; set; } + public global::Cohere.GetEmbedJobResponse5? Type375 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse? Type376 { get; set; } + public global::Cohere.GetEmbedJobResponse6? Type376 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse2? Type377 { get; set; } + public global::Cohere.GetEmbedJobResponse7? Type377 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse3? Type378 { get; set; } + public global::Cohere.GetEmbedJobResponse8? Type378 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse4? Type379 { get; set; } + public global::Cohere.GetEmbedJobResponse9? Type379 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse5? Type380 { get; set; } + public global::Cohere.GetEmbedJobResponse10? Type380 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse6? Type381 { get; set; } + public global::Cohere.GetEmbedJobResponse11? Type381 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse7? Type382 { get; set; } + public global::Cohere.GetEmbedJobResponse12? Type382 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse8? Type383 { get; set; } + public global::Cohere.CancelEmbedJobResponse? Type383 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse9? Type384 { get; set; } + public global::Cohere.CancelEmbedJobResponse2? Type384 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse10? Type385 { get; set; } + public global::Cohere.CancelEmbedJobResponse3? Type385 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse11? Type386 { get; set; } + public global::Cohere.CancelEmbedJobResponse4? Type386 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse12? Type387 { get; set; } + public global::Cohere.CancelEmbedJobResponse5? Type387 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse? Type388 { get; set; } + public global::Cohere.CancelEmbedJobResponse6? Type388 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse2? Type389 { get; set; } + public global::Cohere.CancelEmbedJobResponse7? Type389 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse3? Type390 { get; set; } + public global::Cohere.CancelEmbedJobResponse8? Type390 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse4? Type391 { get; set; } + public global::Cohere.CancelEmbedJobResponse9? Type391 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse5? Type392 { get; set; } + public global::Cohere.CancelEmbedJobResponse10? Type392 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse6? Type393 { get; set; } + public global::Cohere.CancelEmbedJobResponse11? Type393 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse7? Type394 { get; set; } + public global::Cohere.CancelEmbedJobResponse12? Type394 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse8? Type395 { get; set; } + public global::Cohere.RerankResponse? Type395 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse9? Type396 { get; set; } + public global::System.Collections.Generic.IList? Type396 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse10? Type397 { get; set; } + public global::Cohere.RerankResponseResult? Type397 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse11? Type398 { get; set; } + public global::Cohere.RerankResponseResultDocument? Type398 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse12? Type399 { get; set; } + public global::Cohere.RerankResponse2? Type399 { get; set; } /// /// /// - public global::Cohere.RerankResponse? Type400 { get; set; } + public global::Cohere.RerankResponse3? Type400 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type401 { get; set; } + public global::Cohere.RerankResponse4? Type401 { get; set; } /// /// /// - public global::Cohere.RerankResponseResult? Type402 { get; set; } + public global::Cohere.RerankResponse5? Type402 { get; set; } /// /// /// - public global::Cohere.RerankResponseResultDocument? Type403 { get; set; } + public global::Cohere.RerankResponse6? Type403 { get; set; } /// /// /// - public global::Cohere.RerankResponse2? Type404 { get; set; } + public global::Cohere.RerankResponse7? Type404 { get; set; } /// /// /// - public global::Cohere.RerankResponse3? Type405 { get; set; } + public global::Cohere.RerankResponse8? Type405 { get; set; } /// /// /// - public global::Cohere.RerankResponse4? Type406 { get; set; } + public global::Cohere.RerankResponse9? Type406 { get; set; } /// /// /// - public global::Cohere.RerankResponse5? Type407 { get; set; } + public global::Cohere.RerankResponse10? Type407 { get; set; } /// /// /// - public global::Cohere.RerankResponse6? Type408 { get; set; } + public global::Cohere.RerankResponse11? Type408 { get; set; } /// /// /// - public global::Cohere.RerankResponse7? Type409 { get; set; } + public global::Cohere.RerankResponse12? Type409 { get; set; } /// /// /// - public global::Cohere.RerankResponse8? Type410 { get; set; } + public global::Cohere.RerankResponse13? Type410 { get; set; } /// /// /// - public global::Cohere.RerankResponse9? Type411 { get; set; } + public global::Cohere.ClassifyResponse? Type411 { get; set; } /// /// /// - public global::Cohere.RerankResponse10? Type412 { get; set; } + public global::System.Collections.Generic.IList? Type412 { get; set; } /// /// /// - public global::Cohere.RerankResponse11? Type413 { get; set; } + public global::Cohere.ClassifyResponseClassification? Type413 { get; set; } /// /// /// - public global::Cohere.RerankResponse12? Type414 { get; set; } + public global::System.Collections.Generic.IList? Type414 { get; set; } /// /// /// - public global::Cohere.RerankResponse13? Type415 { get; set; } + public global::Cohere.ClassifyResponseClassificationLabels? Type415 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse? Type416 { get; set; } + public global::Cohere.ClassifyResponseClassificationClassificationType? Type416 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type417 { get; set; } + public global::Cohere.ClassifyResponse2? Type417 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassification? Type418 { get; set; } + public global::Cohere.ClassifyResponse3? Type418 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type419 { get; set; } + public global::Cohere.ClassifyResponse4? Type419 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationLabels? Type420 { get; set; } + public global::Cohere.ClassifyResponse5? Type420 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationClassificationType? Type421 { get; set; } + public global::Cohere.ClassifyResponse6? Type421 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse2? Type422 { get; set; } + public global::Cohere.ClassifyResponse7? Type422 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse3? Type423 { get; set; } + public global::Cohere.ClassifyResponse8? Type423 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse4? Type424 { get; set; } + public global::Cohere.ClassifyResponse9? Type424 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse5? Type425 { get; set; } + public global::Cohere.ClassifyResponse10? Type425 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse6? Type426 { get; set; } + public global::Cohere.ClassifyResponse11? Type426 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse7? Type427 { get; set; } + public global::Cohere.ClassifyResponse12? Type427 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse8? Type428 { get; set; } + public global::Cohere.ClassifyResponse13? Type428 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse9? Type429 { get; set; } + public global::Cohere.CreateDatasetResponse? Type429 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse10? Type430 { get; set; } + public global::Cohere.CreateDatasetResponse2? Type430 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse11? Type431 { get; set; } + public global::Cohere.CreateDatasetResponse3? Type431 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse12? Type432 { get; set; } + public global::Cohere.CreateDatasetResponse4? Type432 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse13? Type433 { get; set; } + public global::Cohere.CreateDatasetResponse5? Type433 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse? Type434 { get; set; } + public global::Cohere.CreateDatasetResponse6? Type434 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse2? Type435 { get; set; } + public global::Cohere.CreateDatasetResponse7? Type435 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse3? Type436 { get; set; } + public global::Cohere.CreateDatasetResponse8? Type436 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse4? Type437 { get; set; } + public global::Cohere.CreateDatasetResponse9? Type437 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse5? Type438 { get; set; } + public global::Cohere.CreateDatasetResponse10? Type438 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse6? Type439 { get; set; } + public global::Cohere.CreateDatasetResponse11? Type439 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse7? Type440 { get; set; } + public global::Cohere.CreateDatasetResponse12? Type440 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse8? Type441 { get; set; } + public global::Cohere.CreateDatasetResponse13? Type441 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse9? Type442 { get; set; } + public global::Cohere.ListDatasetsResponse? Type442 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse10? Type443 { get; set; } + public global::System.Collections.Generic.IList? Type443 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse11? Type444 { get; set; } + public global::Cohere.ListDatasetsResponse2? Type444 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse12? Type445 { get; set; } + public global::Cohere.ListDatasetsResponse3? Type445 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse13? Type446 { get; set; } + public global::Cohere.ListDatasetsResponse4? Type446 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse? Type447 { get; set; } + public global::Cohere.ListDatasetsResponse5? Type447 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type448 { get; set; } + public global::Cohere.ListDatasetsResponse6? Type448 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse2? Type449 { get; set; } + public global::Cohere.ListDatasetsResponse7? Type449 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse3? Type450 { get; set; } + public global::Cohere.ListDatasetsResponse8? Type450 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse4? Type451 { get; set; } + public global::Cohere.ListDatasetsResponse9? Type451 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse5? Type452 { get; set; } + public global::Cohere.ListDatasetsResponse10? Type452 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse6? Type453 { get; set; } + public global::Cohere.ListDatasetsResponse11? Type453 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse7? Type454 { get; set; } + public global::Cohere.ListDatasetsResponse12? Type454 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse8? Type455 { get; set; } + public global::Cohere.ListDatasetsResponse13? Type455 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse9? Type456 { get; set; } + public global::Cohere.GetDatasetUsageResponse? Type456 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse10? Type457 { get; set; } + public global::Cohere.GetDatasetUsageResponse2? Type457 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse11? Type458 { get; set; } + public global::Cohere.GetDatasetUsageResponse3? Type458 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse12? Type459 { get; set; } + public global::Cohere.GetDatasetUsageResponse4? Type459 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse13? Type460 { get; set; } + public global::Cohere.GetDatasetUsageResponse5? Type460 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse? Type461 { get; set; } + public global::Cohere.GetDatasetUsageResponse6? Type461 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse2? Type462 { get; set; } + public global::Cohere.GetDatasetUsageResponse7? Type462 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse3? Type463 { get; set; } + public global::Cohere.GetDatasetUsageResponse8? Type463 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse4? Type464 { get; set; } + public global::Cohere.GetDatasetUsageResponse9? Type464 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse5? Type465 { get; set; } + public global::Cohere.GetDatasetUsageResponse10? Type465 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse6? Type466 { get; set; } + public global::Cohere.GetDatasetUsageResponse11? Type466 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse7? Type467 { get; set; } + public global::Cohere.GetDatasetUsageResponse12? Type467 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse8? Type468 { get; set; } + public global::Cohere.GetDatasetUsageResponse13? Type468 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse9? Type469 { get; set; } + public global::Cohere.GetDatasetResponse? Type469 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse10? Type470 { get; set; } + public global::Cohere.GetDatasetResponse2? Type470 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse11? Type471 { get; set; } + public global::Cohere.GetDatasetResponse3? Type471 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse12? Type472 { get; set; } + public global::Cohere.GetDatasetResponse4? Type472 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse13? Type473 { get; set; } + public global::Cohere.GetDatasetResponse5? Type473 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse? Type474 { get; set; } + public global::Cohere.GetDatasetResponse6? Type474 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse2? Type475 { get; set; } + public global::Cohere.GetDatasetResponse7? Type475 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse3? Type476 { get; set; } + public global::Cohere.GetDatasetResponse8? Type476 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse4? Type477 { get; set; } + public global::Cohere.GetDatasetResponse9? Type477 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse5? Type478 { get; set; } + public global::Cohere.GetDatasetResponse10? Type478 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse6? Type479 { get; set; } + public global::Cohere.GetDatasetResponse11? Type479 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse7? Type480 { get; set; } + public global::Cohere.GetDatasetResponse12? Type480 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse8? Type481 { get; set; } + public global::Cohere.GetDatasetResponse13? Type481 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse9? Type482 { get; set; } + public global::Cohere.DeleteDatasetResponse? Type482 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse10? Type483 { get; set; } + public global::Cohere.DeleteDatasetResponse2? Type483 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse11? Type484 { get; set; } + public global::Cohere.DeleteDatasetResponse3? Type484 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse12? Type485 { get; set; } + public global::Cohere.DeleteDatasetResponse4? Type485 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse13? Type486 { get; set; } + public global::Cohere.DeleteDatasetResponse5? Type486 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse? Type487 { get; set; } + public global::Cohere.DeleteDatasetResponse6? Type487 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse2? Type488 { get; set; } + public global::Cohere.DeleteDatasetResponse7? Type488 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse3? Type489 { get; set; } + public global::Cohere.DeleteDatasetResponse8? Type489 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse4? Type490 { get; set; } + public global::Cohere.DeleteDatasetResponse9? Type490 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse5? Type491 { get; set; } + public global::Cohere.DeleteDatasetResponse10? Type491 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse6? Type492 { get; set; } + public global::Cohere.DeleteDatasetResponse11? Type492 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse7? Type493 { get; set; } + public global::Cohere.DeleteDatasetResponse12? Type493 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse8? Type494 { get; set; } + public global::Cohere.DeleteDatasetResponse13? Type494 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse9? Type495 { get; set; } + public global::Cohere.SummarizeResponse? Type495 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse10? Type496 { get; set; } + public global::Cohere.SummarizeResponse2? Type496 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse11? Type497 { get; set; } + public global::Cohere.SummarizeResponse3? Type497 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse12? Type498 { get; set; } + public global::Cohere.SummarizeResponse4? Type498 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse13? Type499 { get; set; } + public global::Cohere.SummarizeResponse5? Type499 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse? Type500 { get; set; } + public global::Cohere.SummarizeResponse6? Type500 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse2? Type501 { get; set; } + public global::Cohere.SummarizeResponse7? Type501 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse3? Type502 { get; set; } + public global::Cohere.SummarizeResponse8? Type502 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse4? Type503 { get; set; } + public global::Cohere.SummarizeResponse9? Type503 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse5? Type504 { get; set; } + public global::Cohere.SummarizeResponse10? Type504 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse6? Type505 { get; set; } + public global::Cohere.SummarizeResponse11? Type505 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse7? Type506 { get; set; } + public global::Cohere.SummarizeResponse12? Type506 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse8? Type507 { get; set; } + public global::Cohere.SummarizeResponse13? Type507 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse9? Type508 { get; set; } + public global::Cohere.TokenizeResponse? Type508 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse10? Type509 { get; set; } + public global::Cohere.TokenizeResponse2? Type509 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse11? Type510 { get; set; } + public global::Cohere.TokenizeResponse3? Type510 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse12? Type511 { get; set; } + public global::Cohere.TokenizeResponse4? Type511 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse13? Type512 { get; set; } + public global::Cohere.TokenizeResponse5? Type512 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse? Type513 { get; set; } + public global::Cohere.TokenizeResponse6? Type513 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse2? Type514 { get; set; } + public global::Cohere.TokenizeResponse7? Type514 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse3? Type515 { get; set; } + public global::Cohere.TokenizeResponse8? Type515 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse4? Type516 { get; set; } + public global::Cohere.TokenizeResponse9? Type516 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse5? Type517 { get; set; } + public global::Cohere.TokenizeResponse10? Type517 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse6? Type518 { get; set; } + public global::Cohere.TokenizeResponse11? Type518 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse7? Type519 { get; set; } + public global::Cohere.TokenizeResponse12? Type519 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse8? Type520 { get; set; } + public global::Cohere.TokenizeResponse13? Type520 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse9? Type521 { get; set; } + public global::Cohere.DetokenizeResponse? Type521 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse10? Type522 { get; set; } + public global::Cohere.DetokenizeResponse2? Type522 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse11? Type523 { get; set; } + public global::Cohere.DetokenizeResponse3? Type523 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse12? Type524 { get; set; } + public global::Cohere.DetokenizeResponse4? Type524 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse13? Type525 { get; set; } + public global::Cohere.DetokenizeResponse5? Type525 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse? Type526 { get; set; } + public global::Cohere.DetokenizeResponse6? Type526 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse2? Type527 { get; set; } + public global::Cohere.DetokenizeResponse7? Type527 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse3? Type528 { get; set; } + public global::Cohere.DetokenizeResponse8? Type528 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse4? Type529 { get; set; } + public global::Cohere.DetokenizeResponse9? Type529 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse5? Type530 { get; set; } + public global::Cohere.DetokenizeResponse10? Type530 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse6? Type531 { get; set; } + public global::Cohere.DetokenizeResponse11? Type531 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse7? Type532 { get; set; } + public global::Cohere.DetokenizeResponse12? Type532 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse8? Type533 { get; set; } + public global::Cohere.DetokenizeResponse13? Type533 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse9? Type534 { get; set; } + public global::Cohere.ListConnectorsResponse2? Type534 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse10? Type535 { get; set; } + public global::Cohere.ListConnectorsResponse3? Type535 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse11? Type536 { get; set; } + public global::Cohere.ListConnectorsResponse4? Type536 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse12? Type537 { get; set; } + public global::Cohere.ListConnectorsResponse5? Type537 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse13? Type538 { get; set; } + public global::Cohere.ListConnectorsResponse6? Type538 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse2? Type539 { get; set; } + public global::Cohere.ListConnectorsResponse7? Type539 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse3? Type540 { get; set; } + public global::Cohere.ListConnectorsResponse8? Type540 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse4? Type541 { get; set; } + public global::Cohere.ListConnectorsResponse9? Type541 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse5? Type542 { get; set; } + public global::Cohere.ListConnectorsResponse10? Type542 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse6? Type543 { get; set; } + public global::Cohere.ListConnectorsResponse11? Type543 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse7? Type544 { get; set; } + public global::Cohere.ListConnectorsResponse12? Type544 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse8? Type545 { get; set; } + public global::Cohere.ListConnectorsResponse13? Type545 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse9? Type546 { get; set; } + public global::Cohere.CreateConnectorResponse2? Type546 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse10? Type547 { get; set; } + public global::Cohere.CreateConnectorResponse3? Type547 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse11? Type548 { get; set; } + public global::Cohere.CreateConnectorResponse4? Type548 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse12? Type549 { get; set; } + public global::Cohere.CreateConnectorResponse5? Type549 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse13? Type550 { get; set; } + public global::Cohere.CreateConnectorResponse6? Type550 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse2? Type551 { get; set; } + public global::Cohere.CreateConnectorResponse7? Type551 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse3? Type552 { get; set; } + public global::Cohere.CreateConnectorResponse8? Type552 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse4? Type553 { get; set; } + public global::Cohere.CreateConnectorResponse9? Type553 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse5? Type554 { get; set; } + public global::Cohere.CreateConnectorResponse10? Type554 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse6? Type555 { get; set; } + public global::Cohere.CreateConnectorResponse11? Type555 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse7? Type556 { get; set; } + public global::Cohere.CreateConnectorResponse12? Type556 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse8? Type557 { get; set; } + public global::Cohere.CreateConnectorResponse13? Type557 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse9? Type558 { get; set; } + public global::Cohere.GetConnectorResponse2? Type558 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse10? Type559 { get; set; } + public global::Cohere.GetConnectorResponse3? Type559 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse11? Type560 { get; set; } + public global::Cohere.GetConnectorResponse4? Type560 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse12? Type561 { get; set; } + public global::Cohere.GetConnectorResponse5? Type561 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse13? Type562 { get; set; } + public global::Cohere.GetConnectorResponse6? Type562 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse2? Type563 { get; set; } + public global::Cohere.GetConnectorResponse7? Type563 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse3? Type564 { get; set; } + public global::Cohere.GetConnectorResponse8? Type564 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse4? Type565 { get; set; } + public global::Cohere.GetConnectorResponse9? Type565 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse5? Type566 { get; set; } + public global::Cohere.GetConnectorResponse10? Type566 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse6? Type567 { get; set; } + public global::Cohere.GetConnectorResponse11? Type567 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse7? Type568 { get; set; } + public global::Cohere.GetConnectorResponse12? Type568 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse8? Type569 { get; set; } + public global::Cohere.GetConnectorResponse13? Type569 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse9? Type570 { get; set; } + public global::Cohere.UpdateConnectorResponse2? Type570 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse10? Type571 { get; set; } + public global::Cohere.UpdateConnectorResponse3? Type571 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse11? Type572 { get; set; } + public global::Cohere.UpdateConnectorResponse4? Type572 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse12? Type573 { get; set; } + public global::Cohere.UpdateConnectorResponse5? Type573 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse13? Type574 { get; set; } + public global::Cohere.UpdateConnectorResponse6? Type574 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse2? Type575 { get; set; } + public global::Cohere.UpdateConnectorResponse7? Type575 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse3? Type576 { get; set; } + public global::Cohere.UpdateConnectorResponse8? Type576 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse4? Type577 { get; set; } + public global::Cohere.UpdateConnectorResponse9? Type577 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse5? Type578 { get; set; } + public global::Cohere.UpdateConnectorResponse10? Type578 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse6? Type579 { get; set; } + public global::Cohere.UpdateConnectorResponse11? Type579 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse7? Type580 { get; set; } + public global::Cohere.UpdateConnectorResponse12? Type580 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse8? Type581 { get; set; } + public global::Cohere.UpdateConnectorResponse13? Type581 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse9? Type582 { get; set; } + public global::Cohere.DeleteConnectorResponse2? Type582 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse10? Type583 { get; set; } + public global::Cohere.DeleteConnectorResponse3? Type583 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse11? Type584 { get; set; } + public global::Cohere.DeleteConnectorResponse4? Type584 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse12? Type585 { get; set; } + public global::Cohere.DeleteConnectorResponse5? Type585 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse13? Type586 { get; set; } + public global::Cohere.DeleteConnectorResponse6? Type586 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse2? Type587 { get; set; } + public global::Cohere.DeleteConnectorResponse7? Type587 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse3? Type588 { get; set; } + public global::Cohere.DeleteConnectorResponse8? Type588 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse4? Type589 { get; set; } + public global::Cohere.DeleteConnectorResponse9? Type589 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse5? Type590 { get; set; } + public global::Cohere.DeleteConnectorResponse10? Type590 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse6? Type591 { get; set; } + public global::Cohere.DeleteConnectorResponse11? Type591 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse7? Type592 { get; set; } + public global::Cohere.DeleteConnectorResponse12? Type592 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse8? Type593 { get; set; } + public global::Cohere.DeleteConnectorResponse13? Type593 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse9? Type594 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse? Type594 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse10? Type595 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse2? Type595 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse11? Type596 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse3? Type596 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse12? Type597 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse4? Type597 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse13? Type598 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse5? Type598 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse? Type599 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse6? Type599 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse2? Type600 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse7? Type600 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse3? Type601 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse8? Type601 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse4? Type602 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse9? Type602 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse5? Type603 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse10? Type603 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse6? Type604 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse11? Type604 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse7? Type605 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse12? Type605 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse8? Type606 { get; set; } + public global::Cohere.GetModelResponse2? Type606 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse9? Type607 { get; set; } + public global::Cohere.GetModelResponse3? Type607 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse10? Type608 { get; set; } + public global::Cohere.GetModelResponse4? Type608 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse11? Type609 { get; set; } + public global::Cohere.GetModelResponse5? Type609 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse12? Type610 { get; set; } + public global::Cohere.GetModelResponse6? Type610 { get; set; } /// /// /// - public global::Cohere.GetModelResponse2? Type611 { get; set; } + public global::Cohere.GetModelResponse7? Type611 { get; set; } /// /// /// - public global::Cohere.GetModelResponse3? Type612 { get; set; } + public global::Cohere.GetModelResponse8? Type612 { get; set; } /// /// /// - public global::Cohere.GetModelResponse4? Type613 { get; set; } + public global::Cohere.GetModelResponse9? Type613 { get; set; } /// /// /// - public global::Cohere.GetModelResponse5? Type614 { get; set; } + public global::Cohere.GetModelResponse10? Type614 { get; set; } /// /// /// - public global::Cohere.GetModelResponse6? Type615 { get; set; } + public global::Cohere.GetModelResponse11? Type615 { get; set; } /// /// /// - public global::Cohere.GetModelResponse7? Type616 { get; set; } + public global::Cohere.GetModelResponse12? Type616 { get; set; } /// /// /// - public global::Cohere.GetModelResponse8? Type617 { get; set; } + public global::Cohere.GetModelResponse13? Type617 { get; set; } /// /// /// - public global::Cohere.GetModelResponse9? Type618 { get; set; } + public global::Cohere.ListModelsResponse2? Type618 { get; set; } /// /// /// - public global::Cohere.GetModelResponse10? Type619 { get; set; } + public global::Cohere.ListModelsResponse3? Type619 { get; set; } /// /// /// - public global::Cohere.GetModelResponse11? Type620 { get; set; } + public global::Cohere.ListModelsResponse4? Type620 { get; set; } /// /// /// - public global::Cohere.GetModelResponse12? Type621 { get; set; } + public global::Cohere.ListModelsResponse5? Type621 { get; set; } /// /// /// - public global::Cohere.GetModelResponse13? Type622 { get; set; } + public global::Cohere.ListModelsResponse6? Type622 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse2? Type623 { get; set; } + public global::Cohere.ListModelsResponse7? Type623 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse3? Type624 { get; set; } + public global::Cohere.ListModelsResponse8? Type624 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse4? Type625 { get; set; } + public global::Cohere.ListModelsResponse9? Type625 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse5? Type626 { get; set; } + public global::Cohere.ListModelsResponse10? Type626 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse6? Type627 { get; set; } + public global::Cohere.ListModelsResponse11? Type627 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse7? Type628 { get; set; } + public global::Cohere.ListModelsResponse12? Type628 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse8? Type629 { get; set; } + public global::Cohere.ListModelsResponse13? Type629 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse9? Type630 { get; set; } + public global::Cohere.CheckAPIKeyResponse? Type630 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse10? Type631 { get; set; } + public global::Cohere.CheckAPIKeyResponse2? Type631 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse11? Type632 { get; set; } + public global::Cohere.CheckAPIKeyResponse3? Type632 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse12? Type633 { get; set; } + public global::Cohere.CheckAPIKeyResponse4? Type633 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse13? Type634 { get; set; } + public global::Cohere.CheckAPIKeyResponse5? Type634 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse? Type635 { get; set; } + public global::Cohere.CheckAPIKeyResponse6? Type635 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse2? Type636 { get; set; } + public global::Cohere.CheckAPIKeyResponse7? Type636 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse3? Type637 { get; set; } + public global::Cohere.CheckAPIKeyResponse8? Type637 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse4? Type638 { get; set; } + public global::Cohere.CheckAPIKeyResponse9? Type638 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse5? Type639 { get; set; } + public global::Cohere.CheckAPIKeyResponse10? Type639 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse6? Type640 { get; set; } + public global::Cohere.CheckAPIKeyResponse11? Type640 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse7? Type641 { get; set; } + public global::Cohere.CheckAPIKeyResponse12? Type641 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse8? Type642 { get; set; } - /// - /// - /// - public global::Cohere.CheckAPIKeyResponse9? Type643 { get; set; } - /// - /// - /// - public global::Cohere.CheckAPIKeyResponse10? Type644 { get; set; } - /// - /// - /// - public global::Cohere.CheckAPIKeyResponse11? Type645 { get; set; } - /// - /// - /// - public global::Cohere.CheckAPIKeyResponse12? Type646 { get; set; } - /// - /// - /// - public global::Cohere.CheckAPIKeyResponse13? Type647 { get; set; } + public global::Cohere.CheckAPIKeyResponse13? Type642 { get; set; } } } \ No newline at end of file diff --git a/src/libs/Cohere/openapi.yaml b/src/libs/Cohere/openapi.yaml index 17d48af..e273f3e 100644 --- a/src/libs/Cohere/openapi.yaml +++ b/src/libs/Cohere/openapi.yaml @@ -7507,20 +7507,6 @@ components: - $ref: '#/components/schemas/TextContent' description: A message from the system. x-fern-sdk-group-name: v2 - ToolContent: - required: - - type - - output - type: object - properties: - type: - enum: - - tool_result_object - type: string - output: - type: object - description: Tool content result object - x-fern-sdk-group-name: v2 ToolMessage-2: required: - role @@ -7534,11 +7520,12 @@ components: type: string tool_call_id: type: string + description: The id of the associated tool call that has provided the given content tool_content: type: array items: - oneOf: - - $ref: '#/components/schemas/ToolContent' + type: string + description: A list of outputs from a tool. The content should formatted as a JSON object string description: A message from the system. x-fern-sdk-group-name: v2 ChatMessage-2: @@ -11654,7 +11641,7 @@ components: - BASE_TYPE_RERANK - BASE_TYPE_CHAT type: string - description: "The possible types of fine-tuned models.\n\n - BASE_TYPE_UNSPECIFIED: Unspecified model.\n - BASE_TYPE_GENERATIVE: Generative model.\n - BASE_TYPE_CLASSIFICATION: Classification model.\n - BASE_TYPE_RERANK: Rerank model.\n - BASE_TYPE_CHAT: Chat model." + description: "The possible types of fine-tuned models.\n\n - BASE_TYPE_UNSPECIFIED: Unspecified model.\n - BASE_TYPE_GENERATIVE: Deprecated: Generative model.\n - BASE_TYPE_CLASSIFICATION: Classification model.\n - BASE_TYPE_RERANK: Rerank model.\n - BASE_TYPE_CHAT: Chat model." default: BASE_TYPE_UNSPECIFIED x-fern-sdk-group-name: - finetuning @@ -11665,7 +11652,7 @@ components: - STRATEGY_VANILLA - STRATEGY_TFEW type: string - description: "The possible strategy used to serve a fine-tuned models.\n\n - STRATEGY_UNSPECIFIED: Unspecified strategy.\n - STRATEGY_VANILLA: Serve the fine-tuned model on a dedicated GPU.\n - STRATEGY_TFEW: Serve the fine-tuned model on a shared GPU." + description: "The possible strategy used to serve a fine-tuned models.\n\n - STRATEGY_UNSPECIFIED: Unspecified strategy.\n - STRATEGY_VANILLA: Deprecated: Serve the fine-tuned model on a dedicated GPU.\n - STRATEGY_TFEW: Serve the fine-tuned model on a shared GPU." default: STRATEGY_UNSPECIFIED x-fern-sdk-group-name: - finetuning