diff --git a/src/libs/Cohere/Generated/Cohere.Models.ChatCitation.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ChatCitation.g.cs index d56fa65..45fbd81 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.ChatCitation.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.ChatCitation.g.cs @@ -36,6 +36,13 @@ public sealed partial class ChatCitation [global::System.Text.Json.Serialization.JsonRequired] public required global::System.Collections.Generic.IList DocumentIds { get; set; } + /// + /// The type of citation which indicates what part of the response the citation is for. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Cohere.JsonConverters.ChatCitationTypeJsonConverter))] + public global::Cohere.ChatCitationType? Type { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -57,17 +64,22 @@ public sealed partial class ChatCitation /// /// Identifiers of documents cited by this section of the generated reply. /// + /// + /// The type of citation which indicates what part of the response the citation is for. + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public ChatCitation( int start, int end, string text, - global::System.Collections.Generic.IList documentIds) + global::System.Collections.Generic.IList documentIds, + global::Cohere.ChatCitationType? type) { this.Start = start; this.End = end; this.Text = text ?? throw new global::System.ArgumentNullException(nameof(text)); this.DocumentIds = documentIds ?? throw new global::System.ArgumentNullException(nameof(documentIds)); + this.Type = type; } /// diff --git a/src/libs/Cohere/Generated/Cohere.Models.ChatCitationType.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ChatCitationType.g.cs new file mode 100644 index 0000000..34d6ebe --- /dev/null +++ b/src/libs/Cohere/Generated/Cohere.Models.ChatCitationType.g.cs @@ -0,0 +1,51 @@ + +#nullable enable + +namespace Cohere +{ + /// + /// The type of citation which indicates what part of the response the citation is for. + /// + public enum ChatCitationType + { + /// + /// + /// + TEXTCONTENT, + /// + /// + /// + PLAN, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class ChatCitationTypeExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this ChatCitationType value) + { + return value switch + { + ChatCitationType.TEXTCONTENT => "TEXT_CONTENT", + ChatCitationType.PLAN => "PLAN", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static ChatCitationType? ToEnum(string value) + { + return value switch + { + "TEXT_CONTENT" => ChatCitationType.TEXTCONTENT, + "PLAN" => ChatCitationType.PLAN, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Cohere/Generated/Cohere.Models.Citation.g.cs b/src/libs/Cohere/Generated/Cohere.Models.Citation.g.cs index d99bd58..64aac76 100644 --- a/src/libs/Cohere/Generated/Cohere.Models.Citation.g.cs +++ b/src/libs/Cohere/Generated/Cohere.Models.Citation.g.cs @@ -32,6 +32,13 @@ public sealed partial class Citation [global::System.Text.Json.Serialization.JsonPropertyName("sources")] public global::System.Collections.Generic.IList? Sources { get; set; } + /// + /// The type of citation which indicates what part of the response the citation is for. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Cohere.JsonConverters.CitationTypeJsonConverter))] + public global::Cohere.CitationType? Type { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -51,17 +58,22 @@ public sealed partial class Citation /// Text snippet that is being cited. /// /// + /// + /// The type of citation which indicates what part of the response the citation is for. + /// [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] public Citation( int? start, int? end, string? text, - global::System.Collections.Generic.IList? sources) + global::System.Collections.Generic.IList? sources, + global::Cohere.CitationType? type) { this.Start = start; this.End = end; this.Text = text; this.Sources = sources; + this.Type = type; } /// diff --git a/src/libs/Cohere/Generated/Cohere.Models.CitationType.g.cs b/src/libs/Cohere/Generated/Cohere.Models.CitationType.g.cs new file mode 100644 index 0000000..f97310b --- /dev/null +++ b/src/libs/Cohere/Generated/Cohere.Models.CitationType.g.cs @@ -0,0 +1,51 @@ + +#nullable enable + +namespace Cohere +{ + /// + /// The type of citation which indicates what part of the response the citation is for. + /// + public enum CitationType + { + /// + /// + /// + TEXTCONTENT, + /// + /// + /// + PLAN, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class CitationTypeExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this CitationType value) + { + return value switch + { + CitationType.TEXTCONTENT => "TEXT_CONTENT", + CitationType.PLAN => "PLAN", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static CitationType? ToEnum(string value) + { + return value switch + { + "TEXT_CONTENT" => CitationType.TEXTCONTENT, + "PLAN" => CitationType.PLAN, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Cohere/Generated/JsonConverters.ChatCitationType.g.cs b/src/libs/Cohere/Generated/JsonConverters.ChatCitationType.g.cs new file mode 100644 index 0000000..0b6e05c --- /dev/null +++ b/src/libs/Cohere/Generated/JsonConverters.ChatCitationType.g.cs @@ -0,0 +1,49 @@ +#nullable enable + +namespace Cohere.JsonConverters +{ + /// + public sealed class ChatCitationTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Cohere.ChatCitationType 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.ChatCitationTypeExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Cohere.ChatCitationType)numValue; + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Cohere.ChatCitationType value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Cohere.ChatCitationTypeExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Cohere/Generated/JsonConverters.ChatCitationTypeNullable.g.cs b/src/libs/Cohere/Generated/JsonConverters.ChatCitationTypeNullable.g.cs new file mode 100644 index 0000000..e97e75f --- /dev/null +++ b/src/libs/Cohere/Generated/JsonConverters.ChatCitationTypeNullable.g.cs @@ -0,0 +1,56 @@ +#nullable enable + +namespace Cohere.JsonConverters +{ + /// + public sealed class ChatCitationTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Cohere.ChatCitationType? 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.ChatCitationTypeExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Cohere.ChatCitationType)numValue; + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Cohere.ChatCitationType? 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.ChatCitationTypeExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Cohere/Generated/JsonConverters.CitationType.g.cs b/src/libs/Cohere/Generated/JsonConverters.CitationType.g.cs new file mode 100644 index 0000000..92349c4 --- /dev/null +++ b/src/libs/Cohere/Generated/JsonConverters.CitationType.g.cs @@ -0,0 +1,49 @@ +#nullable enable + +namespace Cohere.JsonConverters +{ + /// + public sealed class CitationTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Cohere.CitationType 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.CitationTypeExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Cohere.CitationType)numValue; + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Cohere.CitationType value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Cohere.CitationTypeExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Cohere/Generated/JsonConverters.CitationTypeNullable.g.cs b/src/libs/Cohere/Generated/JsonConverters.CitationTypeNullable.g.cs new file mode 100644 index 0000000..f6bb689 --- /dev/null +++ b/src/libs/Cohere/Generated/JsonConverters.CitationTypeNullable.g.cs @@ -0,0 +1,56 @@ +#nullable enable + +namespace Cohere.JsonConverters +{ + /// + public sealed class CitationTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Cohere.CitationType? 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.CitationTypeExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Cohere.CitationType)numValue; + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Cohere.CitationType? 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.CitationTypeExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs index 23d0c4a..747eecc 100644 --- a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs +++ b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs @@ -17,6 +17,8 @@ namespace Cohere typeof(global::Cohere.JsonConverters.ChatRoleNullableJsonConverter), typeof(global::Cohere.JsonConverters.ResponseFormatTypeJsonConverter), typeof(global::Cohere.JsonConverters.ResponseFormatTypeNullableJsonConverter), + typeof(global::Cohere.JsonConverters.ChatCitationTypeJsonConverter), + typeof(global::Cohere.JsonConverters.ChatCitationTypeNullableJsonConverter), typeof(global::Cohere.JsonConverters.FinishReasonJsonConverter), typeof(global::Cohere.JsonConverters.FinishReasonNullableJsonConverter), typeof(global::Cohere.JsonConverters.ChatStreamEventEventTypeJsonConverter), @@ -29,6 +31,8 @@ namespace Cohere typeof(global::Cohere.JsonConverters.UserMessageRoleNullableJsonConverter), typeof(global::Cohere.JsonConverters.ToolCallV2TypeJsonConverter), typeof(global::Cohere.JsonConverters.ToolCallV2TypeNullableJsonConverter), + typeof(global::Cohere.JsonConverters.CitationTypeJsonConverter), + typeof(global::Cohere.JsonConverters.CitationTypeNullableJsonConverter), typeof(global::Cohere.JsonConverters.AssistantMessageRoleJsonConverter), typeof(global::Cohere.JsonConverters.AssistantMessageRoleNullableJsonConverter), typeof(global::Cohere.JsonConverters.SystemMessageRoleJsonConverter), diff --git a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs index e6eeb0a..4a854d9 100644 --- a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs +++ b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs @@ -122,2686 +122,2694 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Cohere.ChatSearchQuery? Type24 { get; set; } + public global::Cohere.ChatCitationType? Type24 { get; set; } /// /// /// - public global::System.Guid? Type25 { get; set; } + public global::Cohere.ChatSearchQuery? Type25 { get; set; } /// /// /// - public global::Cohere.ChatSearchResultConnector? Type26 { get; set; } + public global::System.Guid? Type26 { get; set; } /// /// /// - public global::Cohere.ChatSearchResult? Type27 { get; set; } + public global::Cohere.ChatSearchResultConnector? Type27 { get; set; } /// /// /// - public global::Cohere.FinishReason? Type28 { get; set; } + public global::Cohere.ChatSearchResult? Type28 { get; set; } /// /// /// - public global::Cohere.ApiMeta? Type29 { get; set; } + public global::Cohere.FinishReason? Type29 { get; set; } /// /// /// - public global::Cohere.ApiMetaApiVersion? Type30 { get; set; } + public global::Cohere.ApiMeta? Type30 { get; set; } /// /// /// - public global::Cohere.ApiMetaBilledUnits? Type31 { get; set; } + public global::Cohere.ApiMetaApiVersion? Type31 { get; set; } /// /// /// - public double? Type32 { get; set; } + public global::Cohere.ApiMetaBilledUnits? Type32 { get; set; } /// /// /// - public global::Cohere.ApiMetaTokens? Type33 { get; set; } + public double? Type33 { get; set; } /// /// /// - public global::Cohere.NonStreamedChatResponse? Type34 { get; set; } + public global::Cohere.ApiMetaTokens? Type34 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type35 { get; set; } + public global::Cohere.NonStreamedChatResponse? Type35 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type36 { get; set; } + public global::System.Collections.Generic.IList? Type36 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type37 { get; set; } + public global::System.Collections.Generic.IList? Type37 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type38 { get; set; } + public global::System.Collections.Generic.IList? Type38 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type39 { get; set; } + public global::System.Collections.Generic.IList? Type39 { get; set; } /// /// /// - public global::Cohere.ChatStreamEvent? Type40 { get; set; } + public global::System.Collections.Generic.IList? Type40 { get; set; } /// /// /// - public global::Cohere.ChatStreamEventEventType? Type41 { get; set; } + public global::Cohere.ChatStreamEvent? Type41 { get; set; } /// /// /// - public global::Cohere.ChatStreamStartEvent? Type42 { get; set; } + public global::Cohere.ChatStreamEventEventType? Type42 { get; set; } /// /// /// - public global::Cohere.ChatStreamStartEventVariant2? Type43 { get; set; } + public global::Cohere.ChatStreamStartEvent? Type43 { get; set; } /// /// /// - public global::Cohere.ChatSearchQueriesGenerationEvent? Type44 { get; set; } + public global::Cohere.ChatStreamStartEventVariant2? Type44 { get; set; } /// /// /// - public global::Cohere.ChatSearchQueriesGenerationEventVariant2? Type45 { get; set; } + public global::Cohere.ChatSearchQueriesGenerationEvent? Type45 { get; set; } /// /// /// - public global::Cohere.ChatSearchResultsEvent? Type46 { get; set; } + public global::Cohere.ChatSearchQueriesGenerationEventVariant2? Type46 { get; set; } /// /// /// - public global::Cohere.ChatSearchResultsEventVariant2? Type47 { get; set; } + public global::Cohere.ChatSearchResultsEvent? Type47 { get; set; } /// /// /// - public global::Cohere.ChatTextGenerationEvent? Type48 { get; set; } + public global::Cohere.ChatSearchResultsEventVariant2? Type48 { get; set; } /// /// /// - public global::Cohere.ChatTextGenerationEventVariant2? Type49 { get; set; } + public global::Cohere.ChatTextGenerationEvent? Type49 { get; set; } /// /// /// - public global::Cohere.ChatCitationGenerationEvent? Type50 { get; set; } + public global::Cohere.ChatTextGenerationEventVariant2? Type50 { get; set; } /// /// /// - public global::Cohere.ChatCitationGenerationEventVariant2? Type51 { get; set; } + public global::Cohere.ChatCitationGenerationEvent? Type51 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsGenerationEvent? Type52 { get; set; } + public global::Cohere.ChatCitationGenerationEventVariant2? Type52 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsGenerationEventVariant2? Type53 { get; set; } + public global::Cohere.ChatToolCallsGenerationEvent? Type53 { get; set; } /// /// /// - public global::Cohere.ChatStreamEndEvent? Type54 { get; set; } + public global::Cohere.ChatToolCallsGenerationEventVariant2? Type54 { get; set; } /// /// /// - public global::Cohere.ChatStreamEndEventVariant2? Type55 { get; set; } + public global::Cohere.ChatStreamEndEvent? Type55 { get; set; } /// /// /// - public global::Cohere.ChatStreamEndEventVariant2FinishReason? Type56 { get; set; } + public global::Cohere.ChatStreamEndEventVariant2? Type56 { get; set; } /// /// /// - public global::Cohere.ToolCallDelta? Type57 { get; set; } + public global::Cohere.ChatStreamEndEventVariant2FinishReason? Type57 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsChunkEvent? Type58 { get; set; } + public global::Cohere.ToolCallDelta? Type58 { get; set; } /// /// /// - public global::Cohere.ChatToolCallsChunkEventVariant2? Type59 { get; set; } + public global::Cohere.ChatToolCallsChunkEvent? Type59 { get; set; } /// /// /// - public global::Cohere.ChatDebugEvent? Type60 { get; set; } + public global::Cohere.ChatToolCallsChunkEventVariant2? Type60 { get; set; } /// /// /// - public global::Cohere.ChatDebugEventVariant2? Type61 { get; set; } + public global::Cohere.ChatDebugEvent? Type61 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponse? Type62 { get; set; } + public global::Cohere.ChatDebugEventVariant2? Type62 { get; set; } /// /// /// - public global::Cohere.TextContent? Type63 { get; set; } + public global::Cohere.StreamedChatResponse? Type63 { get; set; } /// /// /// - public global::Cohere.TextContentType? Type64 { get; set; } + public global::Cohere.TextContent? Type64 { get; set; } /// /// /// - public global::Cohere.Content? Type65 { get; set; } + public global::Cohere.TextContentType? Type65 { get; set; } /// /// /// - public global::Cohere.UserMessage? Type66 { get; set; } + public global::Cohere.Content? Type66 { get; set; } /// /// /// - public global::Cohere.UserMessageRole? Type67 { get; set; } + public global::Cohere.UserMessage? Type67 { get; set; } /// /// /// - public global::Cohere.OneOf>? Type68 { get; set; } + public global::Cohere.UserMessageRole? Type68 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type69 { get; set; } + public global::Cohere.OneOf>? Type69 { get; set; } /// /// /// - public global::Cohere.ToolCallV2? Type70 { get; set; } + public global::System.Collections.Generic.IList? Type70 { get; set; } /// /// /// - public global::Cohere.ToolCallV2Type? Type71 { get; set; } + public global::Cohere.ToolCallV2? Type71 { get; set; } /// /// /// - public global::Cohere.ToolCallV2Function? Type72 { get; set; } + public global::Cohere.ToolCallV2Type? Type72 { get; set; } /// /// /// - public global::Cohere.ToolSource? Type73 { get; set; } + public global::Cohere.ToolCallV2Function? Type73 { get; set; } /// /// /// - public global::Cohere.DocumentSource? Type74 { get; set; } + public global::Cohere.ToolSource? Type74 { get; set; } /// /// /// - public global::Cohere.Source? Type75 { get; set; } + public global::Cohere.DocumentSource? Type75 { get; set; } /// /// /// - public global::Cohere.Citation? Type76 { get; set; } + public global::Cohere.Source? Type76 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type77 { get; set; } + public global::Cohere.CitationType? Type77 { get; set; } /// /// /// - public global::Cohere.AssistantMessage? Type78 { get; set; } + public global::Cohere.Citation? Type78 { get; set; } /// /// /// - public global::Cohere.AssistantMessageRole? Type79 { get; set; } + public global::System.Collections.Generic.IList? Type79 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type80 { get; set; } + public global::Cohere.AssistantMessage? Type80 { get; set; } /// /// /// - public global::Cohere.OneOf>>? Type81 { get; set; } + public global::Cohere.AssistantMessageRole? Type81 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type82 { get; set; } + public global::System.Collections.Generic.IList? Type82 { get; set; } /// /// /// - public global::Cohere.OneOf? Type83 { get; set; } + public global::Cohere.OneOf>>? Type83 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type84 { get; set; } + public global::System.Collections.Generic.IList>? Type84 { get; set; } /// /// /// - public global::Cohere.SystemMessage? Type85 { get; set; } + public global::Cohere.OneOf? Type85 { get; set; } /// /// /// - public global::Cohere.SystemMessageRole? Type86 { get; set; } + public global::System.Collections.Generic.IList? Type86 { get; set; } /// /// /// - public global::Cohere.Document? Type87 { get; set; } + public global::Cohere.SystemMessage? Type87 { get; set; } /// /// /// - public global::Cohere.DocumentContent? Type88 { get; set; } + public global::Cohere.SystemMessageRole? Type88 { get; set; } /// /// /// - public global::Cohere.DocumentContentType? Type89 { get; set; } + public global::Cohere.Document? Type89 { get; set; } /// /// /// - public global::Cohere.ToolContent? Type90 { get; set; } + public global::Cohere.DocumentContent? Type90 { get; set; } /// /// /// - public global::Cohere.ToolContentDiscriminator? Type91 { get; set; } + public global::Cohere.DocumentContentType? Type91 { get; set; } /// /// /// - public global::Cohere.ToolContentDiscriminatorType? Type92 { get; set; } + public global::Cohere.ToolContent? Type92 { get; set; } /// /// /// - public global::Cohere.ToolMessageV2? Type93 { get; set; } + public global::Cohere.ToolContentDiscriminator? Type93 { get; set; } /// /// /// - public global::Cohere.ToolMessageV2Role? Type94 { get; set; } + public global::Cohere.ToolContentDiscriminatorType? Type94 { get; set; } /// /// /// - public global::Cohere.OneOf>? Type95 { get; set; } + public global::Cohere.ToolMessageV2? Type95 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type96 { get; set; } + public global::Cohere.ToolMessageV2Role? Type96 { get; set; } /// /// /// - public global::Cohere.ChatMessageV2? Type97 { get; set; } + public global::Cohere.OneOf>? Type97 { get; set; } /// /// /// - public global::Cohere.ChatMessageV2Discriminator? Type98 { get; set; } + public global::System.Collections.Generic.IList? Type98 { get; set; } /// /// /// - public global::Cohere.ChatMessageV2DiscriminatorRole? Type99 { get; set; } + public global::Cohere.ChatMessageV2? Type99 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type100 { get; set; } + public global::Cohere.ChatMessageV2Discriminator? Type100 { get; set; } /// /// /// - public global::Cohere.ToolV2? Type101 { get; set; } + public global::Cohere.ChatMessageV2DiscriminatorRole? Type101 { get; set; } /// /// /// - public global::Cohere.ToolV2Type? Type102 { get; set; } + public global::System.Collections.Generic.IList? Type102 { get; set; } /// /// /// - public global::Cohere.ToolV2Function? Type103 { get; set; } + public global::Cohere.ToolV2? Type103 { get; set; } /// /// /// - public global::Cohere.CitationOptions? Type104 { get; set; } + public global::Cohere.ToolV2Type? Type104 { get; set; } /// /// /// - public global::Cohere.CitationOptionsMode? Type105 { get; set; } + public global::Cohere.ToolV2Function? Type105 { get; set; } /// /// /// - public global::Cohere.ResponseFormatTypeV2? Type106 { get; set; } + public global::Cohere.CitationOptions? Type106 { get; set; } /// /// /// - public global::Cohere.TextResponseFormatV2? Type107 { get; set; } + public global::Cohere.CitationOptionsMode? Type107 { get; set; } /// /// /// - public global::Cohere.JsonResponseFormatV2? Type108 { get; set; } + public global::Cohere.ResponseFormatTypeV2? Type108 { get; set; } /// /// /// - public global::Cohere.ResponseFormatV2? Type109 { get; set; } + public global::Cohere.TextResponseFormatV2? Type109 { get; set; } /// /// /// - public global::Cohere.ResponseFormatV2Discriminator? Type110 { get; set; } + public global::Cohere.JsonResponseFormatV2? Type110 { get; set; } /// /// /// - public global::Cohere.ResponseFormatV2DiscriminatorType? Type111 { get; set; } + public global::Cohere.ResponseFormatV2? Type111 { get; set; } /// /// /// - public global::Cohere.ChatFinishReason? Type112 { get; set; } + public global::Cohere.ResponseFormatV2Discriminator? Type112 { get; set; } /// /// /// - public global::Cohere.AssistantMessageResponse? Type113 { get; set; } + public global::Cohere.ResponseFormatV2DiscriminatorType? Type113 { get; set; } /// /// /// - public global::Cohere.AssistantMessageResponseRole? Type114 { get; set; } + public global::Cohere.ChatFinishReason? Type114 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type115 { get; set; } + public global::Cohere.AssistantMessageResponse? Type115 { get; set; } /// /// /// - public global::Cohere.ContentItem? Type116 { get; set; } + public global::Cohere.AssistantMessageResponseRole? Type116 { get; set; } /// /// /// - public global::Cohere.AssistantMessageResponseContentItemDiscriminator? Type117 { get; set; } + public global::System.Collections.Generic.IList? Type117 { get; set; } /// /// /// - public global::Cohere.AssistantMessageResponseContentItemDiscriminatorType? Type118 { get; set; } + public global::Cohere.ContentItem? Type118 { get; set; } /// /// /// - public global::Cohere.Usage? Type119 { get; set; } + public global::Cohere.AssistantMessageResponseContentItemDiscriminator? Type119 { get; set; } /// /// /// - public global::Cohere.UsageBilledUnits? Type120 { get; set; } + public global::Cohere.AssistantMessageResponseContentItemDiscriminatorType? Type120 { get; set; } /// /// /// - public global::Cohere.UsageTokens? Type121 { get; set; } + public global::Cohere.Usage? Type121 { get; set; } /// /// /// - public global::Cohere.LogprobItem? Type122 { get; set; } + public global::Cohere.UsageBilledUnits? Type122 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type123 { get; set; } + public global::Cohere.UsageTokens? Type123 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type124 { get; set; } + public global::Cohere.LogprobItem? Type124 { get; set; } /// /// /// - public float? Type125 { get; set; } + public global::System.Collections.Generic.IList? Type125 { get; set; } /// /// /// - public global::Cohere.ChatResponse? Type126 { get; set; } + public global::System.Collections.Generic.IList? Type126 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type127 { get; set; } + public float? Type127 { get; set; } /// /// /// - public global::Cohere.ChatStreamEventType? Type128 { get; set; } + public global::Cohere.ChatResponse? Type128 { get; set; } /// /// /// - public global::Cohere.ChatStreamEventTypeType? Type129 { get; set; } + public global::System.Collections.Generic.IList? Type129 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEvent? Type130 { get; set; } + public global::Cohere.ChatStreamEventType? Type130 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2? Type131 { get; set; } + public global::Cohere.ChatStreamEventTypeType? Type131 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2Delta? Type132 { get; set; } + public global::Cohere.ChatMessageStartEvent? Type132 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type133 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2? Type133 { get; set; } /// /// /// - public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type134 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2Delta? Type134 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEvent? Type135 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type135 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2? Type136 { get; set; } + public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type136 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2Delta? Type137 { get; set; } + public global::Cohere.ChatContentStartEvent? Type137 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type138 { get; set; } + public global::Cohere.ChatContentStartEventVariant2? Type138 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type139 { get; set; } + public global::Cohere.ChatContentStartEventVariant2Delta? Type139 { get; set; } /// /// /// - public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type140 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type140 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEvent? Type141 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type141 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2? Type142 { get; set; } + public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type142 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2Delta? Type143 { get; set; } + public global::Cohere.ChatContentDeltaEvent? Type143 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type144 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2? Type144 { get; set; } /// /// /// - public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type145 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2Delta? Type145 { get; set; } /// /// /// - public global::Cohere.ChatContentEndEvent? Type146 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type146 { get; set; } /// /// /// - public global::Cohere.ChatContentEndEventVariant2? Type147 { get; set; } + public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type147 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEvent? Type148 { get; set; } + public global::Cohere.ChatContentEndEvent? Type148 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2? Type149 { get; set; } + public global::Cohere.ChatContentEndEventVariant2? Type149 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type150 { get; set; } + public global::Cohere.ChatToolPlanDeltaEvent? Type150 { get; set; } /// /// /// - public global::Cohere.ChatToolPlanDeltaEventVariant2DeltaMessage? Type151 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2? Type151 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEvent? Type152 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type152 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2? Type153 { get; set; } + public global::Cohere.ChatToolPlanDeltaEventVariant2DeltaMessage? Type153 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2Delta? Type154 { get; set; } + public global::Cohere.ChatToolCallStartEvent? Type154 { get; set; } /// /// /// - public global::Cohere.ChatToolCallStartEventVariant2DeltaMessage? Type155 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2? Type155 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEvent? Type156 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2Delta? Type156 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2? Type157 { get; set; } + public global::Cohere.ChatToolCallStartEventVariant2DeltaMessage? Type157 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type158 { get; set; } + public global::Cohere.ChatToolCallDeltaEvent? Type158 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessage? Type159 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2? Type159 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCalls? Type160 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type160 { get; set; } /// /// /// - public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCallsFunction? Type161 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessage? Type161 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEvent? Type162 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCalls? Type162 { get; set; } /// /// /// - public global::Cohere.ChatToolCallEndEventVariant2? Type163 { get; set; } + public global::Cohere.ChatToolCallDeltaEventVariant2DeltaMessageToolCallsFunction? Type163 { get; set; } /// /// /// - public global::Cohere.CitationStartEvent? Type164 { get; set; } + public global::Cohere.ChatToolCallEndEvent? Type164 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2? Type165 { get; set; } + public global::Cohere.ChatToolCallEndEventVariant2? Type165 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2Delta? Type166 { get; set; } + public global::Cohere.CitationStartEvent? Type166 { get; set; } /// /// /// - public global::Cohere.CitationStartEventVariant2DeltaMessage? Type167 { get; set; } + public global::Cohere.CitationStartEventVariant2? Type167 { get; set; } /// /// /// - public global::Cohere.CitationEndEvent? Type168 { get; set; } + public global::Cohere.CitationStartEventVariant2Delta? Type168 { get; set; } /// /// /// - public global::Cohere.CitationEndEventVariant2? Type169 { get; set; } + public global::Cohere.CitationStartEventVariant2DeltaMessage? Type169 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEvent? Type170 { get; set; } + public global::Cohere.CitationEndEvent? Type170 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEventVariant2? Type171 { get; set; } + public global::Cohere.CitationEndEventVariant2? Type171 { get; set; } /// /// /// - public global::Cohere.ChatMessageEndEventVariant2Delta? Type172 { get; set; } + public global::Cohere.ChatMessageEndEvent? Type172 { get; set; } /// /// /// - public global::Cohere.StreamedChatResponseV2? Type173 { get; set; } + public global::Cohere.ChatMessageEndEventVariant2? Type173 { get; set; } /// /// /// - public global::Cohere.SingleGeneration? Type174 { get; set; } + public global::Cohere.ChatMessageEndEventVariant2Delta? Type174 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type175 { get; set; } + public global::Cohere.StreamedChatResponseV2? Type175 { get; set; } /// /// /// - public global::Cohere.SingleGenerationTokenLikelihood? Type176 { get; set; } + public global::Cohere.SingleGeneration? Type176 { get; set; } /// /// /// - public global::Cohere.Generation? Type177 { get; set; } + public global::System.Collections.Generic.IList? Type177 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type178 { get; set; } + public global::Cohere.SingleGenerationTokenLikelihood? Type178 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEvent? Type179 { get; set; } + public global::Cohere.Generation? Type179 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEventEventType? Type180 { get; set; } + public global::System.Collections.Generic.IList? Type180 { get; set; } /// /// /// - public global::Cohere.GenerateStreamText? Type181 { get; set; } + public global::Cohere.GenerateStreamEvent? Type181 { get; set; } /// /// /// - public global::Cohere.GenerateStreamTextVariant2? Type182 { get; set; } + public global::Cohere.GenerateStreamEventEventType? Type182 { get; set; } /// /// /// - public global::Cohere.SingleGenerationInStream? Type183 { get; set; } + public global::Cohere.GenerateStreamText? Type183 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEnd? Type184 { get; set; } + public global::Cohere.GenerateStreamTextVariant2? Type184 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2? Type185 { get; set; } + public global::Cohere.SingleGenerationInStream? Type185 { get; set; } /// /// /// - public global::Cohere.GenerateStreamEndVariant2Response? Type186 { get; set; } + public global::Cohere.GenerateStreamEnd? Type186 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type187 { get; set; } + public global::Cohere.GenerateStreamEndVariant2? Type187 { get; set; } /// /// /// - public global::Cohere.GenerateStreamError? Type188 { get; set; } + public global::Cohere.GenerateStreamEndVariant2Response? Type188 { get; set; } /// /// /// - public global::Cohere.GenerateStreamErrorVariant2? Type189 { get; set; } + public global::System.Collections.Generic.IList? Type189 { get; set; } /// /// /// - public global::Cohere.GenerateStreamedResponse? Type190 { get; set; } + public global::Cohere.GenerateStreamError? Type190 { get; set; } /// /// /// - public global::Cohere.EmbedInputType? Type191 { get; set; } + public global::Cohere.GenerateStreamErrorVariant2? Type191 { get; set; } /// /// /// - public global::Cohere.EmbeddingType? Type192 { get; set; } + public global::Cohere.GenerateStreamedResponse? Type192 { get; set; } /// /// /// - public global::Cohere.Image? Type193 { get; set; } + public global::Cohere.EmbedInputType? Type193 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponse? Type194 { get; set; } + public global::Cohere.EmbeddingType? Type194 { get; set; } /// /// /// - public global::Cohere.EmbedFloatsResponseResponseType? Type195 { get; set; } + public global::Cohere.Image? Type195 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type196 { get; set; } + public global::Cohere.EmbedFloatsResponse? Type196 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type197 { get; set; } + public global::Cohere.EmbedFloatsResponseResponseType? Type197 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type198 { get; set; } + public global::System.Collections.Generic.IList>? Type198 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponse? Type199 { get; set; } + public global::System.Collections.Generic.IList? Type199 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseResponseType? Type200 { get; set; } + public global::System.Collections.Generic.IList? Type200 { get; set; } /// /// /// - public global::Cohere.EmbedByTypeResponseEmbeddings? Type201 { get; set; } + public global::Cohere.EmbedByTypeResponse? Type201 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type202 { get; set; } + public global::Cohere.EmbedByTypeResponseResponseType? Type202 { get; set; } /// /// /// - public global::Cohere.EmbedJob? Type203 { get; set; } + public global::Cohere.EmbedByTypeResponseEmbeddings? Type203 { get; set; } /// /// /// - public global::Cohere.EmbedJobStatus? Type204 { get; set; } + public global::System.Collections.Generic.IList>? Type204 { get; set; } /// /// /// - public global::System.DateTime? Type205 { get; set; } + public global::Cohere.EmbedJob? Type205 { get; set; } /// /// /// - public global::Cohere.EmbedJobTruncate? Type206 { get; set; } + public global::Cohere.EmbedJobStatus? Type206 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobResponse? Type207 { get; set; } + public global::System.DateTime? Type207 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type208 { get; set; } + public global::Cohere.EmbedJobTruncate? Type208 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequest? Type209 { get; set; } + public global::Cohere.ListEmbedJobResponse? Type209 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type210 { get; set; } + public global::System.Collections.Generic.IList? Type210 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobRequestTruncate? Type211 { get; set; } + public global::Cohere.CreateEmbedJobRequest? Type211 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse? Type212 { get; set; } + public global::System.Collections.Generic.IList? Type212 { get; set; } /// /// /// - public global::Cohere.RerankDocument? Type213 { get; set; } + public global::Cohere.CreateEmbedJobRequestTruncate? Type213 { get; set; } /// /// /// - public global::Cohere.ClassifyExample? Type214 { get; set; } + public global::Cohere.CreateEmbedJobResponse? Type214 { get; set; } /// /// /// - public global::Cohere.DatasetValidationStatus? Type215 { get; set; } + public global::Cohere.RerankDocument? Type215 { get; set; } /// /// /// - public global::Cohere.DatasetType? Type216 { get; set; } + public global::Cohere.ClassifyExample? Type216 { get; set; } /// /// /// - public global::Cohere.DatasetPart? Type217 { get; set; } + public global::Cohere.DatasetValidationStatus? Type217 { get; set; } /// /// /// - public global::Cohere.ParseInfo? Type218 { get; set; } + public global::Cohere.DatasetType? Type218 { get; set; } /// /// /// - public global::Cohere.RerankerDataMetrics? Type219 { get; set; } + public global::Cohere.DatasetPart? Type219 { get; set; } /// /// /// - public global::Cohere.ChatDataMetrics? Type220 { get; set; } + public global::Cohere.ParseInfo? Type220 { get; set; } /// /// /// - public global::Cohere.LabelMetric? Type221 { get; set; } + public global::Cohere.RerankerDataMetrics? Type221 { get; set; } /// /// /// - public global::Cohere.ClassifyDataMetrics? Type222 { get; set; } + public global::Cohere.ChatDataMetrics? Type222 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type223 { get; set; } + public global::Cohere.LabelMetric? Type223 { get; set; } /// /// /// - public global::Cohere.FinetuneDatasetMetrics? Type224 { get; set; } + public global::Cohere.ClassifyDataMetrics? Type224 { get; set; } /// /// /// - public global::Cohere.Metrics? Type225 { get; set; } + public global::System.Collections.Generic.IList? Type225 { get; set; } /// /// /// - public global::Cohere.Dataset? Type226 { get; set; } + public global::Cohere.FinetuneDatasetMetrics? Type226 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type227 { get; set; } + public global::Cohere.Metrics? Type227 { get; set; } /// /// /// - public global::Cohere.ConnectorOAuth? Type228 { get; set; } + public global::Cohere.Dataset? Type228 { get; set; } /// /// /// - public global::Cohere.Connector? Type229 { get; set; } + public global::System.Collections.Generic.IList? Type229 { get; set; } /// /// /// - public global::Cohere.ConnectorAuthStatus? Type230 { get; set; } + public global::Cohere.ConnectorOAuth? Type230 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse? Type231 { get; set; } + public global::Cohere.Connector? Type231 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type232 { get; set; } + public global::Cohere.ConnectorAuthStatus? Type232 { get; set; } /// /// /// - public global::Cohere.CreateConnectorOAuth? Type233 { get; set; } + public global::Cohere.ListConnectorsResponse? Type233 { get; set; } /// /// /// - public global::Cohere.AuthTokenType? Type234 { get; set; } + public global::System.Collections.Generic.IList? Type234 { get; set; } /// /// /// - public global::Cohere.CreateConnectorServiceAuth? Type235 { get; set; } + public global::Cohere.CreateConnectorOAuth? Type235 { get; set; } /// /// /// - public global::Cohere.CreateConnectorRequest? Type236 { get; set; } + public global::Cohere.AuthTokenType? Type236 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse? Type237 { get; set; } + public global::Cohere.CreateConnectorServiceAuth? Type237 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse? Type238 { get; set; } + public global::Cohere.CreateConnectorRequest? Type238 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorRequest? Type239 { get; set; } + public global::Cohere.CreateConnectorResponse? Type239 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse? Type240 { get; set; } + public global::Cohere.GetConnectorResponse? Type240 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeResponse? Type241 { get; set; } + public global::Cohere.UpdateConnectorRequest? Type241 { get; set; } /// /// /// - public global::Cohere.ConnectorLog? Type242 { get; set; } + public global::Cohere.UpdateConnectorResponse? Type242 { get; set; } /// /// /// - public global::Cohere.GetConnectorsLogsResponse? Type243 { get; set; } + public global::Cohere.OAuthAuthorizeResponse? Type243 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type244 { get; set; } + public global::Cohere.ConnectorLog? Type244 { get; set; } /// /// /// - public global::Cohere.TokenLikelihood? Type245 { get; set; } + public global::Cohere.GetConnectorsLogsResponse? Type245 { get; set; } /// /// /// - public global::Cohere.LogLikelihoodResponse? Type246 { get; set; } + public global::System.Collections.Generic.IList? Type246 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type247 { get; set; } + public global::Cohere.TokenLikelihood? Type247 { get; set; } /// /// /// - public global::Cohere.Cluster? Type248 { get; set; } + public global::Cohere.LogLikelihoodResponse? Type248 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponse? Type249 { get; set; } + public global::System.Collections.Generic.IList? Type249 { get; set; } /// /// /// - public global::Cohere.GetClusterJobResponseStatus? Type250 { get; set; } + public global::Cohere.Cluster? Type250 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type251 { get; set; } + public global::Cohere.GetClusterJobResponse? Type251 { get; set; } /// /// /// - public global::Cohere.ListClusterJobsResponse? Type252 { get; set; } + public global::Cohere.GetClusterJobResponseStatus? Type252 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type253 { get; set; } + public global::System.Collections.Generic.IList? Type253 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobRequest? Type254 { get; set; } + public global::Cohere.ListClusterJobsResponse? Type254 { get; set; } /// /// /// - public global::Cohere.CreateClusterJobResponse? Type255 { get; set; } + public global::System.Collections.Generic.IList? Type255 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequest? Type256 { get; set; } + public global::Cohere.CreateClusterJobRequest? Type256 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobRequestStatus? Type257 { get; set; } + public global::Cohere.CreateClusterJobResponse? Type257 { get; set; } /// /// /// - public global::Cohere.UpdateClusterJobResponse? Type258 { get; set; } + public global::Cohere.UpdateClusterJobRequest? Type258 { get; set; } /// /// /// - public global::Cohere.CompatibleEndpoint? Type259 { get; set; } + public global::Cohere.UpdateClusterJobRequestStatus? Type259 { get; set; } /// /// /// - public global::Cohere.GetModelResponse? Type260 { get; set; } + public global::Cohere.UpdateClusterJobResponse? Type260 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type261 { get; set; } + public global::Cohere.CompatibleEndpoint? Type261 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse? Type262 { get; set; } + public global::Cohere.GetModelResponse? Type262 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type263 { get; set; } + public global::System.Collections.Generic.IList? Type263 { get; set; } /// /// /// - public global::Cohere.BaseType? Type264 { get; set; } + public global::Cohere.ListModelsResponse? Type264 { get; set; } /// /// /// - public global::Cohere.Strategy? Type265 { get; set; } + public global::System.Collections.Generic.IList? Type265 { get; set; } /// /// /// - public global::Cohere.BaseModel? Type266 { get; set; } + public global::Cohere.BaseType? Type266 { get; set; } /// /// /// - public global::Cohere.LoraTargetModules? Type267 { get; set; } + public global::Cohere.Strategy? Type267 { get; set; } /// /// /// - public global::Cohere.Hyperparameters? Type268 { get; set; } + public global::Cohere.BaseModel? Type268 { get; set; } /// /// /// - public global::Cohere.WandbConfig? Type269 { get; set; } + public global::Cohere.LoraTargetModules? Type269 { get; set; } /// /// /// - public global::Cohere.Settings? Type270 { get; set; } + public global::Cohere.Hyperparameters? Type270 { get; set; } /// /// /// - public global::Cohere.Status? Type271 { get; set; } + public global::Cohere.WandbConfig? Type271 { get; set; } /// /// /// - public global::Cohere.FinetunedModel? Type272 { get; set; } + public global::Cohere.Settings? Type272 { get; set; } /// /// /// - public global::Cohere.ListFinetunedModelsResponse? Type273 { get; set; } + public global::Cohere.Status? Type273 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type274 { get; set; } + public global::Cohere.FinetunedModel? Type274 { get; set; } /// /// /// - public global::Cohere.Error? Type275 { get; set; } + public global::Cohere.ListFinetunedModelsResponse? Type275 { get; set; } /// /// /// - public global::Cohere.CreateFinetunedModelResponse? Type276 { get; set; } + public global::System.Collections.Generic.IList? Type276 { get; set; } /// /// /// - public global::Cohere.GetFinetunedModelResponse? Type277 { get; set; } + public global::Cohere.Error? Type277 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelResponse? Type278 { get; set; } + public global::Cohere.CreateFinetunedModelResponse? Type278 { get; set; } /// /// /// - public global::Cohere.Event? Type279 { get; set; } + public global::Cohere.GetFinetunedModelResponse? Type279 { get; set; } /// /// /// - public global::Cohere.ListEventsResponse? Type280 { get; set; } + public global::Cohere.UpdateFinetunedModelResponse? Type280 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type281 { get; set; } + public global::Cohere.Event? Type281 { get; set; } /// /// /// - public global::Cohere.TrainingStepMetrics? Type282 { get; set; } + public global::Cohere.ListEventsResponse? Type282 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type283 { get; set; } + public global::System.Collections.Generic.IList? Type283 { get; set; } /// /// /// - public global::Cohere.ListTrainingStepMetricsResponse? Type284 { get; set; } + public global::Cohere.TrainingStepMetrics? Type284 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type285 { get; set; } + public global::System.Collections.Generic.Dictionary? Type285 { get; set; } /// /// /// - public global::Cohere.ChatRequest? Type286 { get; set; } + public global::Cohere.ListTrainingStepMetricsResponse? Type286 { get; set; } /// /// /// - public global::Cohere.ChatRequestPromptTruncation? Type287 { get; set; } + public global::System.Collections.Generic.IList? Type287 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type288 { get; set; } + public global::Cohere.ChatRequest? Type288 { get; set; } /// /// /// - public global::Cohere.ChatRequestCitationQuality? Type289 { get; set; } + public global::Cohere.ChatRequestPromptTruncation? Type289 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type290 { get; set; } + public global::System.Collections.Generic.IList? Type290 { get; set; } /// /// /// - public global::Cohere.ChatRequestSafetyMode? Type291 { get; set; } + public global::Cohere.ChatRequestCitationQuality? Type291 { get; set; } /// /// /// - public global::Cohere.Chatv2Request? Type292 { get; set; } + public global::System.Collections.Generic.IList? Type292 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type293 { get; set; } + public global::Cohere.ChatRequestSafetyMode? Type293 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type294 { get; set; } + public global::Cohere.Chatv2Request? Type294 { get; set; } /// /// /// - public global::Cohere.OneOf? Type295 { get; set; } + public global::System.Collections.Generic.IList? Type295 { get; set; } /// /// /// - public global::Cohere.Chatv2RequestSafetyMode? Type296 { get; set; } + public global::System.Collections.Generic.IList>? Type296 { get; set; } /// /// /// - public global::Cohere.Chatv2RequestToolChoice? Type297 { get; set; } + public global::Cohere.OneOf? Type297 { get; set; } /// /// /// - public global::Cohere.GenerateRequest? Type298 { get; set; } + public global::Cohere.Chatv2RequestSafetyMode? Type298 { get; set; } /// /// /// - public global::Cohere.GenerateRequestTruncate? Type299 { get; set; } + public global::Cohere.Chatv2RequestToolChoice? Type299 { get; set; } /// /// /// - public global::Cohere.GenerateRequestReturnLikelihoods? Type300 { get; set; } + public global::Cohere.GenerateRequest? Type300 { get; set; } /// /// /// - public global::Cohere.EmbedRequest? Type301 { get; set; } + public global::Cohere.GenerateRequestTruncate? Type301 { get; set; } /// /// /// - public global::Cohere.EmbedRequestTruncate? Type302 { get; set; } + public global::Cohere.GenerateRequestReturnLikelihoods? Type302 { get; set; } /// /// /// - public global::Cohere.Embedv2Request? Type303 { get; set; } + public global::Cohere.EmbedRequest? Type303 { get; set; } /// /// /// - public global::Cohere.Embedv2RequestTruncate? Type304 { get; set; } + public global::Cohere.EmbedRequestTruncate? Type304 { get; set; } /// /// /// - public global::Cohere.RerankRequest? Type305 { get; set; } + public global::Cohere.Embedv2Request? Type305 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type306 { get; set; } + public global::Cohere.Embedv2RequestTruncate? Type306 { get; set; } /// /// /// - public global::Cohere.OneOf? Type307 { get; set; } + public global::Cohere.RerankRequest? Type307 { get; set; } /// /// /// - public global::Cohere.Rerankv2Request? Type308 { get; set; } + public global::System.Collections.Generic.IList>? Type308 { get; set; } /// /// /// - public global::Cohere.ClassifyRequest? Type309 { get; set; } + public global::Cohere.OneOf? Type309 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type310 { get; set; } + public global::Cohere.Rerankv2Request? Type310 { get; set; } /// /// /// - public global::Cohere.ClassifyRequestTruncate? Type311 { get; set; } + public global::Cohere.ClassifyRequest? Type311 { get; set; } /// /// /// - public global::Cohere.CreateDatasetRequest? Type312 { get; set; } + public global::System.Collections.Generic.IList? Type312 { get; set; } /// /// /// - public byte[]? Type313 { get; set; } + public global::Cohere.ClassifyRequestTruncate? Type313 { get; set; } /// /// /// - public global::Cohere.SummarizeRequest? Type314 { get; set; } + public global::Cohere.CreateDatasetRequest? Type314 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestLength? Type315 { get; set; } + public byte[]? Type315 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestFormat? Type316 { get; set; } + public global::Cohere.SummarizeRequest? Type316 { get; set; } /// /// /// - public global::Cohere.SummarizeRequestExtractiveness? Type317 { get; set; } + public global::Cohere.SummarizeRequestLength? Type317 { get; set; } /// /// /// - public global::Cohere.TokenizeRequest? Type318 { get; set; } + public global::Cohere.SummarizeRequestFormat? Type318 { get; set; } /// /// /// - public global::Cohere.DetokenizeRequest? Type319 { get; set; } + public global::Cohere.SummarizeRequestExtractiveness? Type319 { get; set; } /// /// /// - public global::Cohere.UpdateFinetunedModelRequest? Type320 { get; set; } + public global::Cohere.TokenizeRequest? Type320 { get; set; } /// /// /// - public global::Cohere.ChatAccepts? Type321 { get; set; } + public global::Cohere.DetokenizeRequest? Type321 { get; set; } /// /// /// - public global::Cohere.OneOf? Type322 { get; set; } + public global::Cohere.UpdateFinetunedModelRequest? Type322 { get; set; } /// /// /// - public global::Cohere.ChatResponse3? Type323 { get; set; } + public global::Cohere.ChatAccepts? Type323 { get; set; } /// /// /// - public global::Cohere.ChatResponse4? Type324 { get; set; } + public global::Cohere.OneOf? Type324 { get; set; } /// /// /// - public global::Cohere.ChatResponse5? Type325 { get; set; } + public global::Cohere.ChatResponse3? Type325 { get; set; } /// /// /// - public global::Cohere.ChatResponse6? Type326 { get; set; } + public global::Cohere.ChatResponse4? Type326 { get; set; } /// /// /// - public global::Cohere.ChatResponse7? Type327 { get; set; } + public global::Cohere.ChatResponse5? Type327 { get; set; } /// /// /// - public global::Cohere.ChatResponse8? Type328 { get; set; } + public global::Cohere.ChatResponse6? Type328 { get; set; } /// /// /// - public global::Cohere.ChatResponse9? Type329 { get; set; } + public global::Cohere.ChatResponse7? Type329 { get; set; } /// /// /// - public global::Cohere.ChatResponse10? Type330 { get; set; } + public global::Cohere.ChatResponse8? Type330 { get; set; } /// /// /// - public global::Cohere.ChatResponse11? Type331 { get; set; } + public global::Cohere.ChatResponse9? Type331 { get; set; } /// /// /// - public global::Cohere.ChatResponse12? Type332 { get; set; } + public global::Cohere.ChatResponse10? Type332 { get; set; } /// /// /// - public global::Cohere.ChatResponse13? Type333 { get; set; } + public global::Cohere.ChatResponse11? Type333 { get; set; } /// /// /// - public global::Cohere.ChatResponse14? Type334 { get; set; } + public global::Cohere.ChatResponse12? Type334 { get; set; } /// /// /// - public global::Cohere.OneOf? Type335 { get; set; } + public global::Cohere.ChatResponse13? Type335 { get; set; } /// /// /// - public global::Cohere.Chatv2Response2? Type336 { get; set; } + public global::Cohere.ChatResponse14? Type336 { get; set; } /// /// /// - public global::Cohere.Chatv2Response3? Type337 { get; set; } + public global::Cohere.OneOf? Type337 { get; set; } /// /// /// - public global::Cohere.Chatv2Response4? Type338 { get; set; } + public global::Cohere.Chatv2Response2? Type338 { get; set; } /// /// /// - public global::Cohere.Chatv2Response5? Type339 { get; set; } + public global::Cohere.Chatv2Response3? Type339 { get; set; } /// /// /// - public global::Cohere.Chatv2Response6? Type340 { get; set; } + public global::Cohere.Chatv2Response4? Type340 { get; set; } /// /// /// - public global::Cohere.Chatv2Response7? Type341 { get; set; } + public global::Cohere.Chatv2Response5? Type341 { get; set; } /// /// /// - public global::Cohere.Chatv2Response8? Type342 { get; set; } + public global::Cohere.Chatv2Response6? Type342 { get; set; } /// /// /// - public global::Cohere.Chatv2Response9? Type343 { get; set; } + public global::Cohere.Chatv2Response7? Type343 { get; set; } /// /// /// - public global::Cohere.Chatv2Response10? Type344 { get; set; } + public global::Cohere.Chatv2Response8? Type344 { get; set; } /// /// /// - public global::Cohere.Chatv2Response11? Type345 { get; set; } + public global::Cohere.Chatv2Response9? Type345 { get; set; } /// /// /// - public global::Cohere.Chatv2Response12? Type346 { get; set; } + public global::Cohere.Chatv2Response10? Type346 { get; set; } /// /// /// - public global::Cohere.Chatv2Response13? Type347 { get; set; } + public global::Cohere.Chatv2Response11? Type347 { get; set; } /// /// /// - public global::Cohere.GenerateResponse? Type348 { get; set; } + public global::Cohere.Chatv2Response12? Type348 { get; set; } /// /// /// - public global::Cohere.GenerateResponse2? Type349 { get; set; } + public global::Cohere.Chatv2Response13? Type349 { get; set; } /// /// /// - public global::Cohere.GenerateResponse3? Type350 { get; set; } + public global::Cohere.GenerateResponse? Type350 { get; set; } /// /// /// - public global::Cohere.GenerateResponse4? Type351 { get; set; } + public global::Cohere.GenerateResponse2? Type351 { get; set; } /// /// /// - public global::Cohere.GenerateResponse5? Type352 { get; set; } + public global::Cohere.GenerateResponse3? Type352 { get; set; } /// /// /// - public global::Cohere.GenerateResponse6? Type353 { get; set; } + public global::Cohere.GenerateResponse4? Type353 { get; set; } /// /// /// - public global::Cohere.GenerateResponse7? Type354 { get; set; } + public global::Cohere.GenerateResponse5? Type354 { get; set; } /// /// /// - public global::Cohere.GenerateResponse8? Type355 { get; set; } + public global::Cohere.GenerateResponse6? Type355 { get; set; } /// /// /// - public global::Cohere.GenerateResponse9? Type356 { get; set; } + public global::Cohere.GenerateResponse7? Type356 { get; set; } /// /// /// - public global::Cohere.GenerateResponse10? Type357 { get; set; } + public global::Cohere.GenerateResponse8? Type357 { get; set; } /// /// /// - public global::Cohere.GenerateResponse11? Type358 { get; set; } + public global::Cohere.GenerateResponse9? Type358 { get; set; } /// /// /// - public global::Cohere.GenerateResponse12? Type359 { get; set; } + public global::Cohere.GenerateResponse10? Type359 { get; set; } /// /// /// - public global::Cohere.OneOf? Type360 { get; set; } + public global::Cohere.GenerateResponse11? Type360 { get; set; } /// /// /// - public global::Cohere.EmbedResponse2? Type361 { get; set; } + public global::Cohere.GenerateResponse12? Type361 { get; set; } /// /// /// - public global::Cohere.EmbedResponse3? Type362 { get; set; } + public global::Cohere.OneOf? Type362 { get; set; } /// /// /// - public global::Cohere.EmbedResponse4? Type363 { get; set; } + public global::Cohere.EmbedResponse2? Type363 { get; set; } /// /// /// - public global::Cohere.EmbedResponse5? Type364 { get; set; } + public global::Cohere.EmbedResponse3? Type364 { get; set; } /// /// /// - public global::Cohere.EmbedResponse6? Type365 { get; set; } + public global::Cohere.EmbedResponse4? Type365 { get; set; } /// /// /// - public global::Cohere.EmbedResponse7? Type366 { get; set; } + public global::Cohere.EmbedResponse5? Type366 { get; set; } /// /// /// - public global::Cohere.EmbedResponse8? Type367 { get; set; } + public global::Cohere.EmbedResponse6? Type367 { get; set; } /// /// /// - public global::Cohere.EmbedResponse9? Type368 { get; set; } + public global::Cohere.EmbedResponse7? Type368 { get; set; } /// /// /// - public global::Cohere.EmbedResponse10? Type369 { get; set; } + public global::Cohere.EmbedResponse8? Type369 { get; set; } /// /// /// - public global::Cohere.EmbedResponse11? Type370 { get; set; } + public global::Cohere.EmbedResponse9? Type370 { get; set; } /// /// /// - public global::Cohere.EmbedResponse12? Type371 { get; set; } + public global::Cohere.EmbedResponse10? Type371 { get; set; } /// /// /// - public global::Cohere.EmbedResponse13? Type372 { get; set; } + public global::Cohere.EmbedResponse11? Type372 { get; set; } /// /// /// - public global::Cohere.Embedv2Response? Type373 { get; set; } + public global::Cohere.EmbedResponse12? Type373 { get; set; } /// /// /// - public global::Cohere.Embedv2Response2? Type374 { get; set; } + public global::Cohere.EmbedResponse13? Type374 { get; set; } /// /// /// - public global::Cohere.Embedv2Response3? Type375 { get; set; } + public global::Cohere.Embedv2Response? Type375 { get; set; } /// /// /// - public global::Cohere.Embedv2Response4? Type376 { get; set; } + public global::Cohere.Embedv2Response2? Type376 { get; set; } /// /// /// - public global::Cohere.Embedv2Response5? Type377 { get; set; } + public global::Cohere.Embedv2Response3? Type377 { get; set; } /// /// /// - public global::Cohere.Embedv2Response6? Type378 { get; set; } + public global::Cohere.Embedv2Response4? Type378 { get; set; } /// /// /// - public global::Cohere.Embedv2Response7? Type379 { get; set; } + public global::Cohere.Embedv2Response5? Type379 { get; set; } /// /// /// - public global::Cohere.Embedv2Response8? Type380 { get; set; } + public global::Cohere.Embedv2Response6? Type380 { get; set; } /// /// /// - public global::Cohere.Embedv2Response9? Type381 { get; set; } + public global::Cohere.Embedv2Response7? Type381 { get; set; } /// /// /// - public global::Cohere.Embedv2Response10? Type382 { get; set; } + public global::Cohere.Embedv2Response8? Type382 { get; set; } /// /// /// - public global::Cohere.Embedv2Response11? Type383 { get; set; } + public global::Cohere.Embedv2Response9? Type383 { get; set; } /// /// /// - public global::Cohere.Embedv2Response12? Type384 { get; set; } + public global::Cohere.Embedv2Response10? Type384 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse2? Type385 { get; set; } + public global::Cohere.Embedv2Response11? Type385 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse3? Type386 { get; set; } + public global::Cohere.Embedv2Response12? Type386 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse4? Type387 { get; set; } + public global::Cohere.CreateEmbedJobResponse2? Type387 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse5? Type388 { get; set; } + public global::Cohere.CreateEmbedJobResponse3? Type388 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse6? Type389 { get; set; } + public global::Cohere.CreateEmbedJobResponse4? Type389 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse7? Type390 { get; set; } + public global::Cohere.CreateEmbedJobResponse5? Type390 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse8? Type391 { get; set; } + public global::Cohere.CreateEmbedJobResponse6? Type391 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse9? Type392 { get; set; } + public global::Cohere.CreateEmbedJobResponse7? Type392 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse10? Type393 { get; set; } + public global::Cohere.CreateEmbedJobResponse8? Type393 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse11? Type394 { get; set; } + public global::Cohere.CreateEmbedJobResponse9? Type394 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse12? Type395 { get; set; } + public global::Cohere.CreateEmbedJobResponse10? Type395 { get; set; } /// /// /// - public global::Cohere.CreateEmbedJobResponse13? Type396 { get; set; } + public global::Cohere.CreateEmbedJobResponse11? Type396 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse? Type397 { get; set; } + public global::Cohere.CreateEmbedJobResponse12? Type397 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse2? Type398 { get; set; } + public global::Cohere.CreateEmbedJobResponse13? Type398 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse3? Type399 { get; set; } + public global::Cohere.ListEmbedJobsResponse? Type399 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse4? Type400 { get; set; } + public global::Cohere.ListEmbedJobsResponse2? Type400 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse5? Type401 { get; set; } + public global::Cohere.ListEmbedJobsResponse3? Type401 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse6? Type402 { get; set; } + public global::Cohere.ListEmbedJobsResponse4? Type402 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse7? Type403 { get; set; } + public global::Cohere.ListEmbedJobsResponse5? Type403 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse8? Type404 { get; set; } + public global::Cohere.ListEmbedJobsResponse6? Type404 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse9? Type405 { get; set; } + public global::Cohere.ListEmbedJobsResponse7? Type405 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse10? Type406 { get; set; } + public global::Cohere.ListEmbedJobsResponse8? Type406 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse11? Type407 { get; set; } + public global::Cohere.ListEmbedJobsResponse9? Type407 { get; set; } /// /// /// - public global::Cohere.ListEmbedJobsResponse12? Type408 { get; set; } + public global::Cohere.ListEmbedJobsResponse10? Type408 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse? Type409 { get; set; } + public global::Cohere.ListEmbedJobsResponse11? Type409 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse2? Type410 { get; set; } + public global::Cohere.ListEmbedJobsResponse12? Type410 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse3? Type411 { get; set; } + public global::Cohere.GetEmbedJobResponse? Type411 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse4? Type412 { get; set; } + public global::Cohere.GetEmbedJobResponse2? Type412 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse5? Type413 { get; set; } + public global::Cohere.GetEmbedJobResponse3? Type413 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse6? Type414 { get; set; } + public global::Cohere.GetEmbedJobResponse4? Type414 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse7? Type415 { get; set; } + public global::Cohere.GetEmbedJobResponse5? Type415 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse8? Type416 { get; set; } + public global::Cohere.GetEmbedJobResponse6? Type416 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse9? Type417 { get; set; } + public global::Cohere.GetEmbedJobResponse7? Type417 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse10? Type418 { get; set; } + public global::Cohere.GetEmbedJobResponse8? Type418 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse11? Type419 { get; set; } + public global::Cohere.GetEmbedJobResponse9? Type419 { get; set; } /// /// /// - public global::Cohere.GetEmbedJobResponse12? Type420 { get; set; } + public global::Cohere.GetEmbedJobResponse10? Type420 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse? Type421 { get; set; } + public global::Cohere.GetEmbedJobResponse11? Type421 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse2? Type422 { get; set; } + public global::Cohere.GetEmbedJobResponse12? Type422 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse3? Type423 { get; set; } + public global::Cohere.CancelEmbedJobResponse? Type423 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse4? Type424 { get; set; } + public global::Cohere.CancelEmbedJobResponse2? Type424 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse5? Type425 { get; set; } + public global::Cohere.CancelEmbedJobResponse3? Type425 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse6? Type426 { get; set; } + public global::Cohere.CancelEmbedJobResponse4? Type426 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse7? Type427 { get; set; } + public global::Cohere.CancelEmbedJobResponse5? Type427 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse8? Type428 { get; set; } + public global::Cohere.CancelEmbedJobResponse6? Type428 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse9? Type429 { get; set; } + public global::Cohere.CancelEmbedJobResponse7? Type429 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse10? Type430 { get; set; } + public global::Cohere.CancelEmbedJobResponse8? Type430 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse11? Type431 { get; set; } + public global::Cohere.CancelEmbedJobResponse9? Type431 { get; set; } /// /// /// - public global::Cohere.CancelEmbedJobResponse12? Type432 { get; set; } + public global::Cohere.CancelEmbedJobResponse10? Type432 { get; set; } /// /// /// - public global::Cohere.RerankResponse? Type433 { get; set; } + public global::Cohere.CancelEmbedJobResponse11? Type433 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type434 { get; set; } + public global::Cohere.CancelEmbedJobResponse12? Type434 { get; set; } /// /// /// - public global::Cohere.RerankResponseResult? Type435 { get; set; } + public global::Cohere.RerankResponse? Type435 { get; set; } /// /// /// - public global::Cohere.RerankResponseResultDocument? Type436 { get; set; } + public global::System.Collections.Generic.IList? Type436 { get; set; } /// /// /// - public global::Cohere.RerankResponse2? Type437 { get; set; } + public global::Cohere.RerankResponseResult? Type437 { get; set; } /// /// /// - public global::Cohere.RerankResponse3? Type438 { get; set; } + public global::Cohere.RerankResponseResultDocument? Type438 { get; set; } /// /// /// - public global::Cohere.RerankResponse4? Type439 { get; set; } + public global::Cohere.RerankResponse2? Type439 { get; set; } /// /// /// - public global::Cohere.RerankResponse5? Type440 { get; set; } + public global::Cohere.RerankResponse3? Type440 { get; set; } /// /// /// - public global::Cohere.RerankResponse6? Type441 { get; set; } + public global::Cohere.RerankResponse4? Type441 { get; set; } /// /// /// - public global::Cohere.RerankResponse7? Type442 { get; set; } + public global::Cohere.RerankResponse5? Type442 { get; set; } /// /// /// - public global::Cohere.RerankResponse8? Type443 { get; set; } + public global::Cohere.RerankResponse6? Type443 { get; set; } /// /// /// - public global::Cohere.RerankResponse9? Type444 { get; set; } + public global::Cohere.RerankResponse7? Type444 { get; set; } /// /// /// - public global::Cohere.RerankResponse10? Type445 { get; set; } + public global::Cohere.RerankResponse8? Type445 { get; set; } /// /// /// - public global::Cohere.RerankResponse11? Type446 { get; set; } + public global::Cohere.RerankResponse9? Type446 { get; set; } /// /// /// - public global::Cohere.RerankResponse12? Type447 { get; set; } + public global::Cohere.RerankResponse10? Type447 { get; set; } /// /// /// - public global::Cohere.RerankResponse13? Type448 { get; set; } + public global::Cohere.RerankResponse11? Type448 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response? Type449 { get; set; } + public global::Cohere.RerankResponse12? Type449 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type450 { get; set; } + public global::Cohere.RerankResponse13? Type450 { get; set; } /// /// /// - public global::Cohere.Rerankv2ResponseResult? Type451 { get; set; } + public global::Cohere.Rerankv2Response? Type451 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response2? Type452 { get; set; } + public global::System.Collections.Generic.IList? Type452 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response3? Type453 { get; set; } + public global::Cohere.Rerankv2ResponseResult? Type453 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response4? Type454 { get; set; } + public global::Cohere.Rerankv2Response2? Type454 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response5? Type455 { get; set; } + public global::Cohere.Rerankv2Response3? Type455 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response6? Type456 { get; set; } + public global::Cohere.Rerankv2Response4? Type456 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response7? Type457 { get; set; } + public global::Cohere.Rerankv2Response5? Type457 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response8? Type458 { get; set; } + public global::Cohere.Rerankv2Response6? Type458 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response9? Type459 { get; set; } + public global::Cohere.Rerankv2Response7? Type459 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response10? Type460 { get; set; } + public global::Cohere.Rerankv2Response8? Type460 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response11? Type461 { get; set; } + public global::Cohere.Rerankv2Response9? Type461 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response12? Type462 { get; set; } + public global::Cohere.Rerankv2Response10? Type462 { get; set; } /// /// /// - public global::Cohere.Rerankv2Response13? Type463 { get; set; } + public global::Cohere.Rerankv2Response11? Type463 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse? Type464 { get; set; } + public global::Cohere.Rerankv2Response12? Type464 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type465 { get; set; } + public global::Cohere.Rerankv2Response13? Type465 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassification? Type466 { get; set; } + public global::Cohere.ClassifyResponse? Type466 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type467 { get; set; } + public global::System.Collections.Generic.IList? Type467 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationLabels2? Type468 { get; set; } + public global::Cohere.ClassifyResponseClassification? Type468 { get; set; } /// /// /// - public global::Cohere.ClassifyResponseClassificationClassificationType? Type469 { get; set; } + public global::System.Collections.Generic.Dictionary? Type469 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse2? Type470 { get; set; } + public global::Cohere.ClassifyResponseClassificationLabels2? Type470 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse3? Type471 { get; set; } + public global::Cohere.ClassifyResponseClassificationClassificationType? Type471 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse4? Type472 { get; set; } + public global::Cohere.ClassifyResponse2? Type472 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse5? Type473 { get; set; } + public global::Cohere.ClassifyResponse3? Type473 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse6? Type474 { get; set; } + public global::Cohere.ClassifyResponse4? Type474 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse7? Type475 { get; set; } + public global::Cohere.ClassifyResponse5? Type475 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse8? Type476 { get; set; } + public global::Cohere.ClassifyResponse6? Type476 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse9? Type477 { get; set; } + public global::Cohere.ClassifyResponse7? Type477 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse10? Type478 { get; set; } + public global::Cohere.ClassifyResponse8? Type478 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse11? Type479 { get; set; } + public global::Cohere.ClassifyResponse9? Type479 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse12? Type480 { get; set; } + public global::Cohere.ClassifyResponse10? Type480 { get; set; } /// /// /// - public global::Cohere.ClassifyResponse13? Type481 { get; set; } + public global::Cohere.ClassifyResponse11? Type481 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse? Type482 { get; set; } + public global::Cohere.ClassifyResponse12? Type482 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse2? Type483 { get; set; } + public global::Cohere.ClassifyResponse13? Type483 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse3? Type484 { get; set; } + public global::Cohere.CreateDatasetResponse? Type484 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse4? Type485 { get; set; } + public global::Cohere.CreateDatasetResponse2? Type485 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse5? Type486 { get; set; } + public global::Cohere.CreateDatasetResponse3? Type486 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse6? Type487 { get; set; } + public global::Cohere.CreateDatasetResponse4? Type487 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse7? Type488 { get; set; } + public global::Cohere.CreateDatasetResponse5? Type488 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse8? Type489 { get; set; } + public global::Cohere.CreateDatasetResponse6? Type489 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse9? Type490 { get; set; } + public global::Cohere.CreateDatasetResponse7? Type490 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse10? Type491 { get; set; } + public global::Cohere.CreateDatasetResponse8? Type491 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse11? Type492 { get; set; } + public global::Cohere.CreateDatasetResponse9? Type492 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse12? Type493 { get; set; } + public global::Cohere.CreateDatasetResponse10? Type493 { get; set; } /// /// /// - public global::Cohere.CreateDatasetResponse13? Type494 { get; set; } + public global::Cohere.CreateDatasetResponse11? Type494 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse? Type495 { get; set; } + public global::Cohere.CreateDatasetResponse12? Type495 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type496 { get; set; } + public global::Cohere.CreateDatasetResponse13? Type496 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse2? Type497 { get; set; } + public global::Cohere.ListDatasetsResponse? Type497 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse3? Type498 { get; set; } + public global::System.Collections.Generic.IList? Type498 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse4? Type499 { get; set; } + public global::Cohere.ListDatasetsResponse2? Type499 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse5? Type500 { get; set; } + public global::Cohere.ListDatasetsResponse3? Type500 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse6? Type501 { get; set; } + public global::Cohere.ListDatasetsResponse4? Type501 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse7? Type502 { get; set; } + public global::Cohere.ListDatasetsResponse5? Type502 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse8? Type503 { get; set; } + public global::Cohere.ListDatasetsResponse6? Type503 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse9? Type504 { get; set; } + public global::Cohere.ListDatasetsResponse7? Type504 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse10? Type505 { get; set; } + public global::Cohere.ListDatasetsResponse8? Type505 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse11? Type506 { get; set; } + public global::Cohere.ListDatasetsResponse9? Type506 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse12? Type507 { get; set; } + public global::Cohere.ListDatasetsResponse10? Type507 { get; set; } /// /// /// - public global::Cohere.ListDatasetsResponse13? Type508 { get; set; } + public global::Cohere.ListDatasetsResponse11? Type508 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse? Type509 { get; set; } + public global::Cohere.ListDatasetsResponse12? Type509 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse2? Type510 { get; set; } + public global::Cohere.ListDatasetsResponse13? Type510 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse3? Type511 { get; set; } + public global::Cohere.GetDatasetUsageResponse? Type511 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse4? Type512 { get; set; } + public global::Cohere.GetDatasetUsageResponse2? Type512 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse5? Type513 { get; set; } + public global::Cohere.GetDatasetUsageResponse3? Type513 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse6? Type514 { get; set; } + public global::Cohere.GetDatasetUsageResponse4? Type514 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse7? Type515 { get; set; } + public global::Cohere.GetDatasetUsageResponse5? Type515 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse8? Type516 { get; set; } + public global::Cohere.GetDatasetUsageResponse6? Type516 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse9? Type517 { get; set; } + public global::Cohere.GetDatasetUsageResponse7? Type517 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse10? Type518 { get; set; } + public global::Cohere.GetDatasetUsageResponse8? Type518 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse11? Type519 { get; set; } + public global::Cohere.GetDatasetUsageResponse9? Type519 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse12? Type520 { get; set; } + public global::Cohere.GetDatasetUsageResponse10? Type520 { get; set; } /// /// /// - public global::Cohere.GetDatasetUsageResponse13? Type521 { get; set; } + public global::Cohere.GetDatasetUsageResponse11? Type521 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse? Type522 { get; set; } + public global::Cohere.GetDatasetUsageResponse12? Type522 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse2? Type523 { get; set; } + public global::Cohere.GetDatasetUsageResponse13? Type523 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse3? Type524 { get; set; } + public global::Cohere.GetDatasetResponse? Type524 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse4? Type525 { get; set; } + public global::Cohere.GetDatasetResponse2? Type525 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse5? Type526 { get; set; } + public global::Cohere.GetDatasetResponse3? Type526 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse6? Type527 { get; set; } + public global::Cohere.GetDatasetResponse4? Type527 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse7? Type528 { get; set; } + public global::Cohere.GetDatasetResponse5? Type528 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse8? Type529 { get; set; } + public global::Cohere.GetDatasetResponse6? Type529 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse9? Type530 { get; set; } + public global::Cohere.GetDatasetResponse7? Type530 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse10? Type531 { get; set; } + public global::Cohere.GetDatasetResponse8? Type531 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse11? Type532 { get; set; } + public global::Cohere.GetDatasetResponse9? Type532 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse12? Type533 { get; set; } + public global::Cohere.GetDatasetResponse10? Type533 { get; set; } /// /// /// - public global::Cohere.GetDatasetResponse13? Type534 { get; set; } + public global::Cohere.GetDatasetResponse11? Type534 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse2? Type535 { get; set; } + public global::Cohere.GetDatasetResponse12? Type535 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse3? Type536 { get; set; } + public global::Cohere.GetDatasetResponse13? Type536 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse4? Type537 { get; set; } + public global::Cohere.DeleteDatasetResponse2? Type537 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse5? Type538 { get; set; } + public global::Cohere.DeleteDatasetResponse3? Type538 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse6? Type539 { get; set; } + public global::Cohere.DeleteDatasetResponse4? Type539 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse7? Type540 { get; set; } + public global::Cohere.DeleteDatasetResponse5? Type540 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse8? Type541 { get; set; } + public global::Cohere.DeleteDatasetResponse6? Type541 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse9? Type542 { get; set; } + public global::Cohere.DeleteDatasetResponse7? Type542 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse10? Type543 { get; set; } + public global::Cohere.DeleteDatasetResponse8? Type543 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse11? Type544 { get; set; } + public global::Cohere.DeleteDatasetResponse9? Type544 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse12? Type545 { get; set; } + public global::Cohere.DeleteDatasetResponse10? Type545 { get; set; } /// /// /// - public global::Cohere.DeleteDatasetResponse13? Type546 { get; set; } + public global::Cohere.DeleteDatasetResponse11? Type546 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse? Type547 { get; set; } + public global::Cohere.DeleteDatasetResponse12? Type547 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse2? Type548 { get; set; } + public global::Cohere.DeleteDatasetResponse13? Type548 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse3? Type549 { get; set; } + public global::Cohere.SummarizeResponse? Type549 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse4? Type550 { get; set; } + public global::Cohere.SummarizeResponse2? Type550 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse5? Type551 { get; set; } + public global::Cohere.SummarizeResponse3? Type551 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse6? Type552 { get; set; } + public global::Cohere.SummarizeResponse4? Type552 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse7? Type553 { get; set; } + public global::Cohere.SummarizeResponse5? Type553 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse8? Type554 { get; set; } + public global::Cohere.SummarizeResponse6? Type554 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse9? Type555 { get; set; } + public global::Cohere.SummarizeResponse7? Type555 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse10? Type556 { get; set; } + public global::Cohere.SummarizeResponse8? Type556 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse11? Type557 { get; set; } + public global::Cohere.SummarizeResponse9? Type557 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse12? Type558 { get; set; } + public global::Cohere.SummarizeResponse10? Type558 { get; set; } /// /// /// - public global::Cohere.SummarizeResponse13? Type559 { get; set; } + public global::Cohere.SummarizeResponse11? Type559 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse? Type560 { get; set; } + public global::Cohere.SummarizeResponse12? Type560 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse2? Type561 { get; set; } + public global::Cohere.SummarizeResponse13? Type561 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse3? Type562 { get; set; } + public global::Cohere.TokenizeResponse? Type562 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse4? Type563 { get; set; } + public global::Cohere.TokenizeResponse2? Type563 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse5? Type564 { get; set; } + public global::Cohere.TokenizeResponse3? Type564 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse6? Type565 { get; set; } + public global::Cohere.TokenizeResponse4? Type565 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse7? Type566 { get; set; } + public global::Cohere.TokenizeResponse5? Type566 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse8? Type567 { get; set; } + public global::Cohere.TokenizeResponse6? Type567 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse9? Type568 { get; set; } + public global::Cohere.TokenizeResponse7? Type568 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse10? Type569 { get; set; } + public global::Cohere.TokenizeResponse8? Type569 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse11? Type570 { get; set; } + public global::Cohere.TokenizeResponse9? Type570 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse12? Type571 { get; set; } + public global::Cohere.TokenizeResponse10? Type571 { get; set; } /// /// /// - public global::Cohere.TokenizeResponse13? Type572 { get; set; } + public global::Cohere.TokenizeResponse11? Type572 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse? Type573 { get; set; } + public global::Cohere.TokenizeResponse12? Type573 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse2? Type574 { get; set; } + public global::Cohere.TokenizeResponse13? Type574 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse3? Type575 { get; set; } + public global::Cohere.DetokenizeResponse? Type575 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse4? Type576 { get; set; } + public global::Cohere.DetokenizeResponse2? Type576 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse5? Type577 { get; set; } + public global::Cohere.DetokenizeResponse3? Type577 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse6? Type578 { get; set; } + public global::Cohere.DetokenizeResponse4? Type578 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse7? Type579 { get; set; } + public global::Cohere.DetokenizeResponse5? Type579 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse8? Type580 { get; set; } + public global::Cohere.DetokenizeResponse6? Type580 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse9? Type581 { get; set; } + public global::Cohere.DetokenizeResponse7? Type581 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse10? Type582 { get; set; } + public global::Cohere.DetokenizeResponse8? Type582 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse11? Type583 { get; set; } + public global::Cohere.DetokenizeResponse9? Type583 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse12? Type584 { get; set; } + public global::Cohere.DetokenizeResponse10? Type584 { get; set; } /// /// /// - public global::Cohere.DetokenizeResponse13? Type585 { get; set; } + public global::Cohere.DetokenizeResponse11? Type585 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse2? Type586 { get; set; } + public global::Cohere.DetokenizeResponse12? Type586 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse3? Type587 { get; set; } + public global::Cohere.DetokenizeResponse13? Type587 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse4? Type588 { get; set; } + public global::Cohere.ListConnectorsResponse2? Type588 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse5? Type589 { get; set; } + public global::Cohere.ListConnectorsResponse3? Type589 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse6? Type590 { get; set; } + public global::Cohere.ListConnectorsResponse4? Type590 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse7? Type591 { get; set; } + public global::Cohere.ListConnectorsResponse5? Type591 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse8? Type592 { get; set; } + public global::Cohere.ListConnectorsResponse6? Type592 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse9? Type593 { get; set; } + public global::Cohere.ListConnectorsResponse7? Type593 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse10? Type594 { get; set; } + public global::Cohere.ListConnectorsResponse8? Type594 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse11? Type595 { get; set; } + public global::Cohere.ListConnectorsResponse9? Type595 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse12? Type596 { get; set; } + public global::Cohere.ListConnectorsResponse10? Type596 { get; set; } /// /// /// - public global::Cohere.ListConnectorsResponse13? Type597 { get; set; } + public global::Cohere.ListConnectorsResponse11? Type597 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse2? Type598 { get; set; } + public global::Cohere.ListConnectorsResponse12? Type598 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse3? Type599 { get; set; } + public global::Cohere.ListConnectorsResponse13? Type599 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse4? Type600 { get; set; } + public global::Cohere.CreateConnectorResponse2? Type600 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse5? Type601 { get; set; } + public global::Cohere.CreateConnectorResponse3? Type601 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse6? Type602 { get; set; } + public global::Cohere.CreateConnectorResponse4? Type602 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse7? Type603 { get; set; } + public global::Cohere.CreateConnectorResponse5? Type603 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse8? Type604 { get; set; } + public global::Cohere.CreateConnectorResponse6? Type604 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse9? Type605 { get; set; } + public global::Cohere.CreateConnectorResponse7? Type605 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse10? Type606 { get; set; } + public global::Cohere.CreateConnectorResponse8? Type606 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse11? Type607 { get; set; } + public global::Cohere.CreateConnectorResponse9? Type607 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse12? Type608 { get; set; } + public global::Cohere.CreateConnectorResponse10? Type608 { get; set; } /// /// /// - public global::Cohere.CreateConnectorResponse13? Type609 { get; set; } + public global::Cohere.CreateConnectorResponse11? Type609 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse2? Type610 { get; set; } + public global::Cohere.CreateConnectorResponse12? Type610 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse3? Type611 { get; set; } + public global::Cohere.CreateConnectorResponse13? Type611 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse4? Type612 { get; set; } + public global::Cohere.GetConnectorResponse2? Type612 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse5? Type613 { get; set; } + public global::Cohere.GetConnectorResponse3? Type613 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse6? Type614 { get; set; } + public global::Cohere.GetConnectorResponse4? Type614 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse7? Type615 { get; set; } + public global::Cohere.GetConnectorResponse5? Type615 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse8? Type616 { get; set; } + public global::Cohere.GetConnectorResponse6? Type616 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse9? Type617 { get; set; } + public global::Cohere.GetConnectorResponse7? Type617 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse10? Type618 { get; set; } + public global::Cohere.GetConnectorResponse8? Type618 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse11? Type619 { get; set; } + public global::Cohere.GetConnectorResponse9? Type619 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse12? Type620 { get; set; } + public global::Cohere.GetConnectorResponse10? Type620 { get; set; } /// /// /// - public global::Cohere.GetConnectorResponse13? Type621 { get; set; } + public global::Cohere.GetConnectorResponse11? Type621 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse2? Type622 { get; set; } + public global::Cohere.GetConnectorResponse12? Type622 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse3? Type623 { get; set; } + public global::Cohere.GetConnectorResponse13? Type623 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse4? Type624 { get; set; } + public global::Cohere.UpdateConnectorResponse2? Type624 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse5? Type625 { get; set; } + public global::Cohere.UpdateConnectorResponse3? Type625 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse6? Type626 { get; set; } + public global::Cohere.UpdateConnectorResponse4? Type626 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse7? Type627 { get; set; } + public global::Cohere.UpdateConnectorResponse5? Type627 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse8? Type628 { get; set; } + public global::Cohere.UpdateConnectorResponse6? Type628 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse9? Type629 { get; set; } + public global::Cohere.UpdateConnectorResponse7? Type629 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse10? Type630 { get; set; } + public global::Cohere.UpdateConnectorResponse8? Type630 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse11? Type631 { get; set; } + public global::Cohere.UpdateConnectorResponse9? Type631 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse12? Type632 { get; set; } + public global::Cohere.UpdateConnectorResponse10? Type632 { get; set; } /// /// /// - public global::Cohere.UpdateConnectorResponse13? Type633 { get; set; } + public global::Cohere.UpdateConnectorResponse11? Type633 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse2? Type634 { get; set; } + public global::Cohere.UpdateConnectorResponse12? Type634 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse3? Type635 { get; set; } + public global::Cohere.UpdateConnectorResponse13? Type635 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse4? Type636 { get; set; } + public global::Cohere.DeleteConnectorResponse2? Type636 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse5? Type637 { get; set; } + public global::Cohere.DeleteConnectorResponse3? Type637 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse6? Type638 { get; set; } + public global::Cohere.DeleteConnectorResponse4? Type638 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse7? Type639 { get; set; } + public global::Cohere.DeleteConnectorResponse5? Type639 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse8? Type640 { get; set; } + public global::Cohere.DeleteConnectorResponse6? Type640 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse9? Type641 { get; set; } + public global::Cohere.DeleteConnectorResponse7? Type641 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse10? Type642 { get; set; } + public global::Cohere.DeleteConnectorResponse8? Type642 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse11? Type643 { get; set; } + public global::Cohere.DeleteConnectorResponse9? Type643 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse12? Type644 { get; set; } + public global::Cohere.DeleteConnectorResponse10? Type644 { get; set; } /// /// /// - public global::Cohere.DeleteConnectorResponse13? Type645 { get; set; } + public global::Cohere.DeleteConnectorResponse11? Type645 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse? Type646 { get; set; } + public global::Cohere.DeleteConnectorResponse12? Type646 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse2? Type647 { get; set; } + public global::Cohere.DeleteConnectorResponse13? Type647 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse3? Type648 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse? Type648 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse4? Type649 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse2? Type649 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse5? Type650 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse3? Type650 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse6? Type651 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse4? Type651 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse7? Type652 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse5? Type652 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse8? Type653 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse6? Type653 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse9? Type654 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse7? Type654 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse10? Type655 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse8? Type655 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse11? Type656 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse9? Type656 { get; set; } /// /// /// - public global::Cohere.OAuthAuthorizeConnectorResponse12? Type657 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse10? Type657 { get; set; } /// /// /// - public global::Cohere.GetModelResponse2? Type658 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse11? Type658 { get; set; } /// /// /// - public global::Cohere.GetModelResponse3? Type659 { get; set; } + public global::Cohere.OAuthAuthorizeConnectorResponse12? Type659 { get; set; } /// /// /// - public global::Cohere.GetModelResponse4? Type660 { get; set; } + public global::Cohere.GetModelResponse2? Type660 { get; set; } /// /// /// - public global::Cohere.GetModelResponse5? Type661 { get; set; } + public global::Cohere.GetModelResponse3? Type661 { get; set; } /// /// /// - public global::Cohere.GetModelResponse6? Type662 { get; set; } + public global::Cohere.GetModelResponse4? Type662 { get; set; } /// /// /// - public global::Cohere.GetModelResponse7? Type663 { get; set; } + public global::Cohere.GetModelResponse5? Type663 { get; set; } /// /// /// - public global::Cohere.GetModelResponse8? Type664 { get; set; } + public global::Cohere.GetModelResponse6? Type664 { get; set; } /// /// /// - public global::Cohere.GetModelResponse9? Type665 { get; set; } + public global::Cohere.GetModelResponse7? Type665 { get; set; } /// /// /// - public global::Cohere.GetModelResponse10? Type666 { get; set; } + public global::Cohere.GetModelResponse8? Type666 { get; set; } /// /// /// - public global::Cohere.GetModelResponse11? Type667 { get; set; } + public global::Cohere.GetModelResponse9? Type667 { get; set; } /// /// /// - public global::Cohere.GetModelResponse12? Type668 { get; set; } + public global::Cohere.GetModelResponse10? Type668 { get; set; } /// /// /// - public global::Cohere.GetModelResponse13? Type669 { get; set; } + public global::Cohere.GetModelResponse11? Type669 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse2? Type670 { get; set; } + public global::Cohere.GetModelResponse12? Type670 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse3? Type671 { get; set; } + public global::Cohere.GetModelResponse13? Type671 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse4? Type672 { get; set; } + public global::Cohere.ListModelsResponse2? Type672 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse5? Type673 { get; set; } + public global::Cohere.ListModelsResponse3? Type673 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse6? Type674 { get; set; } + public global::Cohere.ListModelsResponse4? Type674 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse7? Type675 { get; set; } + public global::Cohere.ListModelsResponse5? Type675 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse8? Type676 { get; set; } + public global::Cohere.ListModelsResponse6? Type676 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse9? Type677 { get; set; } + public global::Cohere.ListModelsResponse7? Type677 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse10? Type678 { get; set; } + public global::Cohere.ListModelsResponse8? Type678 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse11? Type679 { get; set; } + public global::Cohere.ListModelsResponse9? Type679 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse12? Type680 { get; set; } + public global::Cohere.ListModelsResponse10? Type680 { get; set; } /// /// /// - public global::Cohere.ListModelsResponse13? Type681 { get; set; } + public global::Cohere.ListModelsResponse11? Type681 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse? Type682 { get; set; } + public global::Cohere.ListModelsResponse12? Type682 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse2? Type683 { get; set; } + public global::Cohere.ListModelsResponse13? Type683 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse3? Type684 { get; set; } + public global::Cohere.CheckAPIKeyResponse? Type684 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse4? Type685 { get; set; } + public global::Cohere.CheckAPIKeyResponse2? Type685 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse5? Type686 { get; set; } + public global::Cohere.CheckAPIKeyResponse3? Type686 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse6? Type687 { get; set; } + public global::Cohere.CheckAPIKeyResponse4? Type687 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse7? Type688 { get; set; } + public global::Cohere.CheckAPIKeyResponse5? Type688 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse8? Type689 { get; set; } + public global::Cohere.CheckAPIKeyResponse6? Type689 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse9? Type690 { get; set; } + public global::Cohere.CheckAPIKeyResponse7? Type690 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse10? Type691 { get; set; } + public global::Cohere.CheckAPIKeyResponse8? Type691 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse11? Type692 { get; set; } + public global::Cohere.CheckAPIKeyResponse9? Type692 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse12? Type693 { get; set; } + public global::Cohere.CheckAPIKeyResponse10? Type693 { get; set; } /// /// /// - public global::Cohere.CheckAPIKeyResponse13? Type694 { get; set; } + public global::Cohere.CheckAPIKeyResponse11? Type694 { get; set; } + /// + /// + /// + public global::Cohere.CheckAPIKeyResponse12? Type695 { get; set; } + /// + /// + /// + public global::Cohere.CheckAPIKeyResponse13? Type696 { get; set; } } } \ No newline at end of file diff --git a/src/libs/Cohere/openapi.yaml b/src/libs/Cohere/openapi.yaml index 7175278..fbd7924 100644 --- a/src/libs/Cohere/openapi.yaml +++ b/src/libs/Cohere/openapi.yaml @@ -11578,6 +11578,14 @@ components: description: "Identifiers of documents cited by this section of the generated reply.\n" x-fern-audiences: - public + type: + enum: + - TEXT_CONTENT + - PLAN + type: string + description: "The type of citation which indicates what part of the response the citation is for.\n" + x-fern-audiences: + - public description: "A section of the generated reply which cites external knowledge.\n" ChatSearchQuery: required: @@ -12068,6 +12076,12 @@ components: - $ref: '#/components/schemas/ToolSource' - $ref: '#/components/schemas/DocumentSource' description: A source object containing information about the source of the data cited. + CitationType: + enum: + - TEXT_CONTENT + - PLAN + type: string + description: "The type of citation which indicates what part of the response the citation is for.\n" Citation: type: object properties: @@ -12084,6 +12098,8 @@ components: type: array items: $ref: '#/components/schemas/Source' + type: + $ref: '#/components/schemas/CitationType' description: Citation information containing sources and the text cited. AssistantMessage: title: Assistant Message