diff --git a/src/libs/Cohere/Generated/Cohere.CohereApi.Embed.g.cs b/src/libs/Cohere/Generated/Cohere.CohereApi.Embed.g.cs
index b5a6359..21cc776 100644
--- a/src/libs/Cohere/Generated/Cohere.CohereApi.Embed.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.CohereApi.Embed.g.cs
@@ -130,7 +130,8 @@ partial void ProcessEmbedResponseContent(
/// - `"search_document"`: Used for embeddings stored in a vector database for search use-cases.
/// - `"search_query"`: Used for embeddings of search queries run against a vector DB to find relevant documents.
/// - `"classification"`: Used for embeddings passed through a text classifier.
- /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"image"`: Used for embeddings with image input.
///
///
/// Specifies the types of embeddings you want to get back. Not required and default is None, which returns the Embed Floats response type. Can be one or more of the following types.
diff --git a/src/libs/Cohere/Generated/Cohere.EmbedJobsClient.CreateEmbedJob.g.cs b/src/libs/Cohere/Generated/Cohere.EmbedJobsClient.CreateEmbedJob.g.cs
index 58d2d97..849f3a8 100644
--- a/src/libs/Cohere/Generated/Cohere.EmbedJobsClient.CreateEmbedJob.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.EmbedJobsClient.CreateEmbedJob.g.cs
@@ -122,7 +122,8 @@ partial void ProcessCreateEmbedJobResponseContent(
/// - `"search_document"`: Used for embeddings stored in a vector database for search use-cases.
/// - `"search_query"`: Used for embeddings of search queries run against a vector DB to find relevant documents.
/// - `"classification"`: Used for embeddings passed through a text classifier.
- /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"image"`: Used for embeddings with image input.
///
///
/// The name of the embed job.
diff --git a/src/libs/Cohere/Generated/Cohere.Models.CreateEmbedJobRequest.g.cs b/src/libs/Cohere/Generated/Cohere.Models.CreateEmbedJobRequest.g.cs
index 02934f7..e3db62c 100644
--- a/src/libs/Cohere/Generated/Cohere.Models.CreateEmbedJobRequest.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.Models.CreateEmbedJobRequest.g.cs
@@ -32,7 +32,8 @@ public sealed partial class CreateEmbedJobRequest
/// - `"search_document"`: Used for embeddings stored in a vector database for search use-cases.
/// - `"search_query"`: Used for embeddings of search queries run against a vector DB to find relevant documents.
/// - `"classification"`: Used for embeddings passed through a text classifier.
- /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"image"`: Used for embeddings with image input.
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_type")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.EmbedInputTypeJsonConverter))]
diff --git a/src/libs/Cohere/Generated/Cohere.Models.EmbedInputType.g.cs b/src/libs/Cohere/Generated/Cohere.Models.EmbedInputType.g.cs
index 1a1518f..b025b53 100644
--- a/src/libs/Cohere/Generated/Cohere.Models.EmbedInputType.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.Models.EmbedInputType.g.cs
@@ -8,7 +8,8 @@ namespace Cohere
/// - `"search_document"`: Used for embeddings stored in a vector database for search use-cases.
/// - `"search_query"`: Used for embeddings of search queries run against a vector DB to find relevant documents.
/// - `"classification"`: Used for embeddings passed through a text classifier.
- /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"image"`: Used for embeddings with image input.
///
public enum EmbedInputType
{
@@ -28,6 +29,10 @@ public enum EmbedInputType
///
///
Clustering,
+ ///
+ ///
+ ///
+ Image,
}
///
@@ -46,6 +51,7 @@ public static string ToValueString(this EmbedInputType value)
EmbedInputType.SearchQuery => "search_query",
EmbedInputType.Classification => "classification",
EmbedInputType.Clustering => "clustering",
+ EmbedInputType.Image => "image",
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
};
}
@@ -60,6 +66,7 @@ public static string ToValueString(this EmbedInputType value)
"search_query" => EmbedInputType.SearchQuery,
"classification" => EmbedInputType.Classification,
"clustering" => EmbedInputType.Clustering,
+ "image" => EmbedInputType.Image,
_ => null,
};
}
diff --git a/src/libs/Cohere/Generated/Cohere.Models.EmbedRequest.g.cs b/src/libs/Cohere/Generated/Cohere.Models.EmbedRequest.g.cs
index 3605473..0791191 100644
--- a/src/libs/Cohere/Generated/Cohere.Models.EmbedRequest.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.Models.EmbedRequest.g.cs
@@ -34,7 +34,8 @@ public sealed partial class EmbedRequest
/// - `"search_document"`: Used for embeddings stored in a vector database for search use-cases.
/// - `"search_query"`: Used for embeddings of search queries run against a vector DB to find relevant documents.
/// - `"classification"`: Used for embeddings passed through a text classifier.
- /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"clustering"`: Used for the embeddings run through a clustering algorithm.
+ /// - `"image"`: Used for embeddings with image input.
///
[global::System.Text.Json.Serialization.JsonPropertyName("input_type")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.EmbedInputTypeJsonConverter))]
diff --git a/src/libs/Cohere/Generated/Cohere.Models.JSONResponseFormat2.g.cs b/src/libs/Cohere/Generated/Cohere.Models.JSONResponseFormat2.g.cs
index 3f0d8b3..9b3da0b 100644
--- a/src/libs/Cohere/Generated/Cohere.Models.JSONResponseFormat2.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.Models.JSONResponseFormat2.g.cs
@@ -13,9 +13,9 @@ public sealed partial class JSONResponseFormat2
/// When set to `"json_object"`, the model's output will be a valid JSON Object.
///
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
- [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.ResponseFormatTypeJsonConverter))]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.ResponseFormatType2JsonConverter))]
[global::System.Text.Json.Serialization.JsonRequired]
- public required global::Cohere.ResponseFormatType Type { get; set; }
+ public required global::Cohere.ResponseFormatType2 Type { get; set; }
///
/// [BETA] A JSON schema object that the output will adhere to. There are some restrictions we have on the schema, refer to [our guide](/docs/structured-outputs-json#schema-constraints) for more information.
diff --git a/src/libs/Cohere/Generated/Cohere.Models.ResponseFormat2.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ResponseFormat2.g.cs
index 8020987..bc3542c 100644
--- a/src/libs/Cohere/Generated/Cohere.Models.ResponseFormat2.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.Models.ResponseFormat2.g.cs
@@ -18,35 +18,35 @@ namespace Cohere
///
///
#if NET6_0_OR_GREATER
- public global::Cohere.TextResponseFormat? TextFormat { get; init; }
+ public global::Cohere.TextResponseFormat2? Text { get; init; }
#else
- public global::Cohere.TextResponseFormat? TextFormat { get; }
+ public global::Cohere.TextResponseFormat2? Text { get; }
#endif
///
///
///
#if NET6_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(TextFormat))]
+ [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Text))]
#endif
- public bool IsTextFormat => TextFormat != null;
+ public bool IsText => Text != null;
///
///
///
- public static implicit operator ResponseFormat2(global::Cohere.TextResponseFormat value) => new ResponseFormat2(value);
+ public static implicit operator ResponseFormat2(global::Cohere.TextResponseFormat2 value) => new ResponseFormat2(value);
///
///
///
- public static implicit operator global::Cohere.TextResponseFormat?(ResponseFormat2 @this) => @this.TextFormat;
+ public static implicit operator global::Cohere.TextResponseFormat2?(ResponseFormat2 @this) => @this.Text;
///
///
///
- public ResponseFormat2(global::Cohere.TextResponseFormat? value)
+ public ResponseFormat2(global::Cohere.TextResponseFormat2? value)
{
- TextFormat = value;
+ Text = value;
}
///
@@ -88,11 +88,11 @@ public ResponseFormat2(global::Cohere.JSONResponseFormat2? value)
///
///
public ResponseFormat2(
- global::Cohere.TextResponseFormat? textFormat,
+ global::Cohere.TextResponseFormat2? text,
global::Cohere.JSONResponseFormat2? jSON
)
{
- TextFormat = textFormat;
+ Text = text;
JSON = jSON;
}
@@ -101,7 +101,7 @@ public ResponseFormat2(
///
public object? Object =>
JSON as object ??
- TextFormat as object
+ Text as object
;
///
@@ -109,7 +109,7 @@ TextFormat as object
///
public bool Validate()
{
- return IsTextFormat && !IsJSON || !IsTextFormat && IsJSON;
+ return IsText && !IsJSON || !IsText && IsJSON;
}
///
@@ -119,8 +119,8 @@ public override int GetHashCode()
{
var fields = new object?[]
{
- TextFormat,
- typeof(global::Cohere.TextResponseFormat),
+ Text,
+ typeof(global::Cohere.TextResponseFormat2),
JSON,
typeof(global::Cohere.JSONResponseFormat2),
};
@@ -138,7 +138,7 @@ static int HashCodeAggregator(int hashCode, object? value) => value == null
public bool Equals(ResponseFormat2 other)
{
return
- global::System.Collections.Generic.EqualityComparer.Default.Equals(TextFormat, other.TextFormat) &&
+ global::System.Collections.Generic.EqualityComparer.Default.Equals(Text, other.Text) &&
global::System.Collections.Generic.EqualityComparer.Default.Equals(JSON, other.JSON)
;
}
diff --git a/src/libs/Cohere/Generated/Cohere.Models.ResponseFormatType2.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ResponseFormatType2.g.cs
new file mode 100644
index 0000000..c09aaf2
--- /dev/null
+++ b/src/libs/Cohere/Generated/Cohere.Models.ResponseFormatType2.g.cs
@@ -0,0 +1,52 @@
+
+#nullable enable
+
+namespace Cohere
+{
+ ///
+ /// Defaults to `"text"`.
+ /// When set to `"json_object"`, the model's output will be a valid JSON Object.
+ ///
+ public enum ResponseFormatType2
+ {
+ ///
+ ///
+ ///
+ Text,
+ ///
+ ///
+ ///
+ JsonObject,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class ResponseFormatType2Extensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this ResponseFormatType2 value)
+ {
+ return value switch
+ {
+ ResponseFormatType2.Text => "text",
+ ResponseFormatType2.JsonObject => "json_object",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static ResponseFormatType2? ToEnum(string value)
+ {
+ return value switch
+ {
+ "text" => ResponseFormatType2.Text,
+ "json_object" => ResponseFormatType2.JsonObject,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Cohere/Generated/Cohere.Models.TextResponseFormat2.g.cs b/src/libs/Cohere/Generated/Cohere.Models.TextResponseFormat2.g.cs
new file mode 100644
index 0000000..3e90d2f
--- /dev/null
+++ b/src/libs/Cohere/Generated/Cohere.Models.TextResponseFormat2.g.cs
@@ -0,0 +1,26 @@
+
+#nullable enable
+
+namespace Cohere
+{
+ ///
+ ///
+ ///
+ public sealed partial class TextResponseFormat2
+ {
+ ///
+ /// Defaults to `"text"`.
+ /// When set to `"json_object"`, the model's output will be a valid JSON Object.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("type")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenApiGenerator.JsonConverters.ResponseFormatType2JsonConverter))]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required global::Cohere.ResponseFormatType2 Type { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Cohere/Generated/JsonConverters.ResponseFormat2.g.cs b/src/libs/Cohere/Generated/JsonConverters.ResponseFormat2.g.cs
index 4709743..2c0fe93 100644
--- a/src/libs/Cohere/Generated/JsonConverters.ResponseFormat2.g.cs
+++ b/src/libs/Cohere/Generated/JsonConverters.ResponseFormat2.g.cs
@@ -17,12 +17,12 @@ public class ResponseFormat2JsonConverter : global::System.Text.Json.Serializati
var
readerCopy = reader;
- global::Cohere.TextResponseFormat? textFormat = default;
+ global::Cohere.TextResponseFormat2? text = default;
try
{
- var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Cohere.TextResponseFormat), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
- throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Cohere.TextResponseFormat).Name}");
- textFormat = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo);
+ var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Cohere.TextResponseFormat2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
+ throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Cohere.TextResponseFormat2).Name}");
+ text = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo);
}
catch (global::System.Text.Json.JsonException)
{
@@ -41,14 +41,14 @@ public class ResponseFormat2JsonConverter : global::System.Text.Json.Serializati
}
var result = new global::Cohere.ResponseFormat2(
- textFormat,
+ text,
jSON
);
- if (textFormat != null)
+ if (text != null)
{
- var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Cohere.TextResponseFormat), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
- throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Cohere.TextResponseFormat).Name}");
+ var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Cohere.TextResponseFormat2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
+ throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Cohere.TextResponseFormat2).Name}");
_ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
}
else if (jSON != null)
@@ -70,11 +70,11 @@ public override void Write(
options = options ?? throw new global::System.ArgumentNullException(nameof(options));
var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set.");
- if (value.IsTextFormat)
+ if (value.IsText)
{
- var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Cohere.TextResponseFormat), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
- throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Cohere.TextResponseFormat).Name}");
- global::System.Text.Json.JsonSerializer.Serialize(writer, value.TextFormat, typeInfo);
+ var typeInfo = typeInfoResolver.GetTypeInfo(typeof(global::Cohere.TextResponseFormat2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
+ throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(global::Cohere.TextResponseFormat2).Name}");
+ global::System.Text.Json.JsonSerializer.Serialize(writer, value.Text, typeInfo);
}
else if (value.IsJSON)
{
diff --git a/src/libs/Cohere/Generated/JsonConverters.ResponseFormatType2.g.cs b/src/libs/Cohere/Generated/JsonConverters.ResponseFormatType2.g.cs
new file mode 100644
index 0000000..c205115
--- /dev/null
+++ b/src/libs/Cohere/Generated/JsonConverters.ResponseFormatType2.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class ResponseFormatType2JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Cohere.ResponseFormatType2 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.ResponseFormatType2Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Cohere.ResponseFormatType2)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Cohere.ResponseFormatType2 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Cohere.ResponseFormatType2Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Cohere/Generated/JsonConverters.ResponseFormatType2Nullable.g.cs b/src/libs/Cohere/Generated/JsonConverters.ResponseFormatType2Nullable.g.cs
new file mode 100644
index 0000000..291faa5
--- /dev/null
+++ b/src/libs/Cohere/Generated/JsonConverters.ResponseFormatType2Nullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class ResponseFormatType2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Cohere.ResponseFormatType2? 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.ResponseFormatType2Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Cohere.ResponseFormatType2)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Cohere.ResponseFormatType2? 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.ResponseFormatType2Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs
index 469a240..4f62472 100644
--- a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs
+++ b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs
@@ -37,6 +37,8 @@ namespace Cohere
typeof(global::OpenApiGenerator.JsonConverters.ToolMessage2RoleNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.Tool2TypeJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.Tool2TypeNullableJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.ResponseFormatType2JsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.ResponseFormatType2NullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.ChatFinishReasonJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.ChatFinishReasonNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.AssistantMessageResponseRoleJsonConverter),
diff --git a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs
index a07c861..eb87ee4 100644
--- a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs
+++ b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs
@@ -397,2198 +397,2206 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Cohere.JSONResponseFormat2? Type96 { get; set; }
+ public global::Cohere.ResponseFormatType2? Type96 { get; set; }
///
///
///
- public global::Cohere.JSONResponseFormat2JsonSchema? Type97 { get; set; }
+ public global::Cohere.TextResponseFormat2? Type97 { get; set; }
///
///
///
- public global::Cohere.ResponseFormat2? Type98 { get; set; }
+ public global::Cohere.JSONResponseFormat2? Type98 { get; set; }
///
///
///
- public global::Cohere.ChatFinishReason? Type99 { get; set; }
+ public global::Cohere.JSONResponseFormat2JsonSchema? Type99 { get; set; }
///
///
///
- public global::Cohere.AssistantMessageResponse? Type100 { get; set; }
+ public global::Cohere.ResponseFormat2? Type100 { get; set; }
///
///
///
- public global::Cohere.AssistantMessageResponseRole? Type101 { get; set; }
+ public global::Cohere.ChatFinishReason? Type101 { get; set; }
///
///
///
- public global::Cohere.Usage? Type102 { get; set; }
+ public global::Cohere.AssistantMessageResponse? Type102 { get; set; }
///
///
///
- public global::Cohere.UsageBilledUnits? Type103 { get; set; }
+ public global::Cohere.AssistantMessageResponseRole? Type103 { get; set; }
///
///
///
- public global::Cohere.UsageTokens? Type104 { get; set; }
+ public global::Cohere.Usage? Type104 { get; set; }
///
///
///
- public global::Cohere.NonStreamedChatResponse2? Type105 { get; set; }
+ public global::Cohere.UsageBilledUnits? Type105 { get; set; }
///
///
///
- public global::Cohere.ChatStreamEventType? Type106 { get; set; }
+ public global::Cohere.UsageTokens? Type106 { get; set; }
///
///
///
- public global::Cohere.ChatStreamEventTypeType? Type107 { get; set; }
+ public global::Cohere.NonStreamedChatResponse2? Type107 { get; set; }
///
///
///
- public global::Cohere.ChatMessageStartEvent? Type108 { get; set; }
+ public global::Cohere.ChatStreamEventType? Type108 { get; set; }
///
///
///
- public global::Cohere.ChatMessageStartEventVariant2? Type109 { get; set; }
+ public global::Cohere.ChatStreamEventTypeType? Type109 { get; set; }
///
///
///
- public global::Cohere.ChatMessageStartEventVariant2Delta? Type110 { get; set; }
+ public global::Cohere.ChatMessageStartEvent? Type110 { get; set; }
///
///
///
- public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type111 { get; set; }
+ public global::Cohere.ChatMessageStartEventVariant2? Type111 { get; set; }
///
///
///
- public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type112 { get; set; }
+ public global::Cohere.ChatMessageStartEventVariant2Delta? Type112 { get; set; }
///
///
///
- public global::Cohere.ChatContentStartEvent? Type113 { get; set; }
+ public global::Cohere.ChatMessageStartEventVariant2DeltaMessage? Type113 { get; set; }
///
///
///
- public global::Cohere.ChatContentStartEventVariant2? Type114 { get; set; }
+ public global::Cohere.ChatMessageStartEventVariant2DeltaMessageRole? Type114 { get; set; }
///
///
///
- public global::Cohere.ChatContentStartEventVariant2Delta? Type115 { get; set; }
+ public global::Cohere.ChatContentStartEvent? Type115 { get; set; }
///
///
///
- public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type116 { get; set; }
+ public global::Cohere.ChatContentStartEventVariant2? Type116 { get; set; }
///
///
///
- public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type117 { get; set; }
+ public global::Cohere.ChatContentStartEventVariant2Delta? Type117 { get; set; }
///
///
///
- public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type118 { get; set; }
+ public global::Cohere.ChatContentStartEventVariant2DeltaMessage? Type118 { get; set; }
///
///
///
- public global::Cohere.ChatContentDeltaEvent? Type119 { get; set; }
+ public global::Cohere.ChatContentStartEventVariant2DeltaMessageContent? Type119 { get; set; }
///
///
///
- public global::Cohere.ChatContentDeltaEventVariant2? Type120 { get; set; }
+ public global::Cohere.ChatContentStartEventVariant2DeltaMessageContentType? Type120 { get; set; }
///
///
///
- public global::Cohere.ChatContentDeltaEventVariant2Delta? Type121 { get; set; }
+ public global::Cohere.ChatContentDeltaEvent? Type121 { get; set; }
///
///
///
- public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type122 { get; set; }
+ public global::Cohere.ChatContentDeltaEventVariant2? Type122 { get; set; }
///
///
///
- public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type123 { get; set; }
+ public global::Cohere.ChatContentDeltaEventVariant2Delta? Type123 { get; set; }
///
///
///
- public global::Cohere.ChatContentEndEvent? Type124 { get; set; }
+ public global::Cohere.ChatContentDeltaEventVariant2DeltaMessage? Type124 { get; set; }
///
///
///
- public global::Cohere.ChatContentEndEventVariant2? Type125 { get; set; }
+ public global::Cohere.ChatContentDeltaEventVariant2DeltaMessageContent? Type125 { get; set; }
///
///
///
- public global::Cohere.ChatToolPlanDeltaEvent? Type126 { get; set; }
+ public global::Cohere.ChatContentEndEvent? Type126 { get; set; }
///
///
///
- public global::Cohere.ChatToolPlanDeltaEventVariant2? Type127 { get; set; }
+ public global::Cohere.ChatContentEndEventVariant2? Type127 { get; set; }
///
///
///
- public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type128 { get; set; }
+ public global::Cohere.ChatToolPlanDeltaEvent? Type128 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallStartEvent? Type129 { get; set; }
+ public global::Cohere.ChatToolPlanDeltaEventVariant2? Type129 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallStartEventVariant2? Type130 { get; set; }
+ public global::Cohere.ChatToolPlanDeltaEventVariant2Delta? Type130 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallStartEventVariant2Delta? Type131 { get; set; }
+ public global::Cohere.ChatToolCallStartEvent? Type131 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCall? Type132 { get; set; }
+ public global::Cohere.ChatToolCallStartEventVariant2? Type132 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallType? Type133 { get; set; }
+ public global::Cohere.ChatToolCallStartEventVariant2Delta? Type133 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallFunction? Type134 { get; set; }
+ public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCall? Type134 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallDeltaEvent? Type135 { get; set; }
+ public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallType? Type135 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallDeltaEventVariant2? Type136 { get; set; }
+ public global::Cohere.ChatToolCallStartEventVariant2DeltaToolCallFunction? Type136 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type137 { get; set; }
+ public global::Cohere.ChatToolCallDeltaEvent? Type137 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCall? Type138 { get; set; }
+ public global::Cohere.ChatToolCallDeltaEventVariant2? Type138 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCallFunction? Type139 { get; set; }
+ public global::Cohere.ChatToolCallDeltaEventVariant2Delta? Type139 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallEndEvent? Type140 { get; set; }
+ public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCall? Type140 { get; set; }
///
///
///
- public global::Cohere.ChatToolCallEndEventVariant2? Type141 { get; set; }
+ public global::Cohere.ChatToolCallDeltaEventVariant2DeltaToolCallFunction? Type141 { get; set; }
///
///
///
- public global::Cohere.CitationStartEvent? Type142 { get; set; }
+ public global::Cohere.ChatToolCallEndEvent? Type142 { get; set; }
///
///
///
- public global::Cohere.CitationStartEventVariant2? Type143 { get; set; }
+ public global::Cohere.ChatToolCallEndEventVariant2? Type143 { get; set; }
///
///
///
- public global::Cohere.CitationStartEventVariant2Delta? Type144 { get; set; }
+ public global::Cohere.CitationStartEvent? Type144 { get; set; }
///
///
///
- public global::Cohere.CitationStartEventVariant2DeltaMessage? Type145 { get; set; }
+ public global::Cohere.CitationStartEventVariant2? Type145 { get; set; }
///
///
///
- public global::Cohere.CitationEndEvent? Type146 { get; set; }
+ public global::Cohere.CitationStartEventVariant2Delta? Type146 { get; set; }
///
///
///
- public global::Cohere.CitationEndEventVariant2? Type147 { get; set; }
+ public global::Cohere.CitationStartEventVariant2DeltaMessage? Type147 { get; set; }
///
///
///
- public global::Cohere.ChatMessageEndEvent? Type148 { get; set; }
+ public global::Cohere.CitationEndEvent? Type148 { get; set; }
///
///
///
- public global::Cohere.ChatMessageEndEventVariant2? Type149 { get; set; }
+ public global::Cohere.CitationEndEventVariant2? Type149 { get; set; }
///
///
///
- public global::Cohere.ChatMessageEndEventVariant2Delta? Type150 { get; set; }
+ public global::Cohere.ChatMessageEndEvent? Type150 { get; set; }
///
///
///
- public global::Cohere.StreamedChatResponse2? Type151 { get; set; }
+ public global::Cohere.ChatMessageEndEventVariant2? Type151 { get; set; }
///
///
///
- public global::Cohere.SingleGeneration? Type152 { get; set; }
+ public global::Cohere.ChatMessageEndEventVariant2Delta? Type152 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type153 { get; set; }
+ public global::Cohere.StreamedChatResponse2? Type153 { get; set; }
///
///
///
- public global::Cohere.SingleGenerationTokenLikelihood? Type154 { get; set; }
+ public global::Cohere.SingleGeneration? Type154 { get; set; }
///
///
///
- public global::Cohere.Generation? Type155 { get; set; }
+ public global::System.Collections.Generic.IList? Type155 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type156 { get; set; }
+ public global::Cohere.SingleGenerationTokenLikelihood? Type156 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamEvent? Type157 { get; set; }
+ public global::Cohere.Generation? Type157 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamEventEventType? Type158 { get; set; }
+ public global::System.Collections.Generic.IList? Type158 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamText? Type159 { get; set; }
+ public global::Cohere.GenerateStreamEvent? Type159 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamTextVariant2? Type160 { get; set; }
+ public global::Cohere.GenerateStreamEventEventType? Type160 { get; set; }
///
///
///
- public global::Cohere.SingleGenerationInStream? Type161 { get; set; }
+ public global::Cohere.GenerateStreamText? Type161 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamEnd? Type162 { get; set; }
+ public global::Cohere.GenerateStreamTextVariant2? Type162 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamEndVariant2? Type163 { get; set; }
+ public global::Cohere.SingleGenerationInStream? Type163 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamEndVariant2Response? Type164 { get; set; }
+ public global::Cohere.GenerateStreamEnd? Type164 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type165 { get; set; }
+ public global::Cohere.GenerateStreamEndVariant2? Type165 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamError? Type166 { get; set; }
+ public global::Cohere.GenerateStreamEndVariant2Response? Type166 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamErrorVariant2? Type167 { get; set; }
+ public global::System.Collections.Generic.IList? Type167 { get; set; }
///
///
///
- public global::Cohere.GenerateStreamedResponse? Type168 { get; set; }
+ public global::Cohere.GenerateStreamError? Type168 { get; set; }
///
///
///
- public global::Cohere.EmbedInputType? Type169 { get; set; }
+ public global::Cohere.GenerateStreamErrorVariant2? Type169 { get; set; }
///
///
///
- public global::Cohere.EmbeddingType? Type170 { get; set; }
+ public global::Cohere.GenerateStreamedResponse? Type170 { get; set; }
///
///
///
- public global::Cohere.EmbedFloatsResponse? Type171 { get; set; }
+ public global::Cohere.EmbedInputType? Type171 { get; set; }
///
///
///
- public global::Cohere.EmbedFloatsResponseResponseType? Type172 { get; set; }
+ public global::Cohere.EmbeddingType? Type172 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type173 { get; set; }
+ public global::Cohere.EmbedFloatsResponse? Type173 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type174 { get; set; }
+ public global::Cohere.EmbedFloatsResponseResponseType? Type174 { get; set; }
///
///
///
- public global::Cohere.EmbedByTypeResponse? Type175 { get; set; }
+ public global::System.Collections.Generic.IList>? Type175 { get; set; }
///
///
///
- public global::Cohere.EmbedByTypeResponseResponseType? Type176 { get; set; }
+ public global::System.Collections.Generic.IList? Type176 { get; set; }
///
///
///
- public global::Cohere.EmbedByTypeResponseEmbeddings? Type177 { get; set; }
+ public global::Cohere.EmbedByTypeResponse? Type177 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type178 { get; set; }
+ public global::Cohere.EmbedByTypeResponseResponseType? Type178 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type179 { get; set; }
+ public global::Cohere.EmbedByTypeResponseEmbeddings? Type179 { get; set; }
///
///
///
- public global::Cohere.EmbedJob? Type180 { get; set; }
+ public global::System.Collections.Generic.IList>? Type180 { get; set; }
///
///
///
- public global::Cohere.EmbedJobStatus? Type181 { get; set; }
+ public global::System.Collections.Generic.IList? Type181 { get; set; }
///
///
///
- public global::System.DateTime? Type182 { get; set; }
+ public global::Cohere.EmbedJob? Type182 { get; set; }
///
///
///
- public global::Cohere.EmbedJobTruncate? Type183 { get; set; }
+ public global::Cohere.EmbedJobStatus? Type183 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobResponse? Type184 { get; set; }
+ public global::System.DateTime? Type184 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type185 { get; set; }
+ public global::Cohere.EmbedJobTruncate? Type185 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobRequest? Type186 { get; set; }
+ public global::Cohere.ListEmbedJobResponse? Type186 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type187 { get; set; }
+ public global::System.Collections.Generic.IList? Type187 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobRequestTruncate? Type188 { get; set; }
+ public global::Cohere.CreateEmbedJobRequest? Type188 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse? Type189 { get; set; }
+ public global::System.Collections.Generic.IList? Type189 { get; set; }
///
///
///
- public global::Cohere.RerankDocument? Type190 { get; set; }
+ public global::Cohere.CreateEmbedJobRequestTruncate? Type190 { get; set; }
///
///
///
- public global::Cohere.ClassifyExample? Type191 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse? Type191 { get; set; }
///
///
///
- public global::Cohere.DatasetValidationStatus? Type192 { get; set; }
+ public global::Cohere.RerankDocument? Type192 { get; set; }
///
///
///
- public global::Cohere.DatasetType? Type193 { get; set; }
+ public global::Cohere.ClassifyExample? Type193 { get; set; }
///
///
///
- public global::Cohere.DatasetPart? Type194 { get; set; }
+ public global::Cohere.DatasetValidationStatus? Type194 { get; set; }
///
///
///
- public global::Cohere.ParseInfo? Type195 { get; set; }
+ public global::Cohere.DatasetType? Type195 { get; set; }
///
///
///
- public global::Cohere.RerankerDataMetrics? Type196 { get; set; }
+ public global::Cohere.DatasetPart? Type196 { get; set; }
///
///
///
- public global::Cohere.ChatDataMetrics? Type197 { get; set; }
+ public global::Cohere.ParseInfo? Type197 { get; set; }
///
///
///
- public global::Cohere.LabelMetric? Type198 { get; set; }
+ public global::Cohere.RerankerDataMetrics? Type198 { get; set; }
///
///
///
- public global::Cohere.ClassifyDataMetrics? Type199 { get; set; }
+ public global::Cohere.ChatDataMetrics? Type199 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type200 { get; set; }
+ public global::Cohere.LabelMetric? Type200 { get; set; }
///
///
///
- public global::Cohere.FinetuneDatasetMetrics? Type201 { get; set; }
+ public global::Cohere.ClassifyDataMetrics? Type201 { get; set; }
///
///
///
- public global::Cohere.Metrics? Type202 { get; set; }
+ public global::System.Collections.Generic.IList? Type202 { get; set; }
///
///
///
- public global::Cohere.Dataset? Type203 { get; set; }
+ public global::Cohere.FinetuneDatasetMetrics? Type203 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type204 { get; set; }
+ public global::Cohere.Metrics? Type204 { get; set; }
///
///
///
- public global::Cohere.ConnectorOAuth? Type205 { get; set; }
+ public global::Cohere.Dataset? Type205 { get; set; }
///
///
///
- public global::Cohere.Connector? Type206 { get; set; }
+ public global::System.Collections.Generic.IList? Type206 { get; set; }
///
///
///
- public global::Cohere.ConnectorAuthStatus? Type207 { get; set; }
+ public global::Cohere.ConnectorOAuth? Type207 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse? Type208 { get; set; }
+ public global::Cohere.Connector? Type208 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type209 { get; set; }
+ public global::Cohere.ConnectorAuthStatus? Type209 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorOAuth? Type210 { get; set; }
+ public global::Cohere.ListConnectorsResponse? Type210 { get; set; }
///
///
///
- public global::Cohere.AuthTokenType? Type211 { get; set; }
+ public global::System.Collections.Generic.IList? Type211 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorServiceAuth? Type212 { get; set; }
+ public global::Cohere.CreateConnectorOAuth? Type212 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorRequest? Type213 { get; set; }
+ public global::Cohere.AuthTokenType? Type213 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse? Type214 { get; set; }
+ public global::Cohere.CreateConnectorServiceAuth? Type214 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse? Type215 { get; set; }
+ public global::Cohere.CreateConnectorRequest? Type215 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse? Type216 { get; set; }
+ public global::Cohere.CreateConnectorResponse? Type216 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorRequest? Type217 { get; set; }
+ public global::Cohere.GetConnectorResponse? Type217 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse? Type218 { get; set; }
+ public global::Cohere.DeleteConnectorResponse? Type218 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeResponse? Type219 { get; set; }
+ public global::Cohere.UpdateConnectorRequest? Type219 { get; set; }
///
///
///
- public global::Cohere.ConnectorLog? Type220 { get; set; }
+ public global::Cohere.UpdateConnectorResponse? Type220 { get; set; }
///
///
///
- public global::Cohere.GetConnectorsLogsResponse? Type221 { get; set; }
+ public global::Cohere.OAuthAuthorizeResponse? Type221 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type222 { get; set; }
+ public global::Cohere.ConnectorLog? Type222 { get; set; }
///
///
///
- public global::Cohere.TokenLikelihood? Type223 { get; set; }
+ public global::Cohere.GetConnectorsLogsResponse? Type223 { get; set; }
///
///
///
- public global::Cohere.LogLikelihoodResponse? Type224 { get; set; }
+ public global::System.Collections.Generic.IList? Type224 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type225 { get; set; }
+ public global::Cohere.TokenLikelihood? Type225 { get; set; }
///
///
///
- public global::Cohere.Cluster? Type226 { get; set; }
+ public global::Cohere.LogLikelihoodResponse? Type226 { get; set; }
///
///
///
- public global::Cohere.GetClusterJobResponse? Type227 { get; set; }
+ public global::System.Collections.Generic.IList? Type227 { get; set; }
///
///
///
- public global::Cohere.GetClusterJobResponseStatus? Type228 { get; set; }
+ public global::Cohere.Cluster? Type228 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type229 { get; set; }
+ public global::Cohere.GetClusterJobResponse? Type229 { get; set; }
///
///
///
- public global::Cohere.ListClusterJobsResponse? Type230 { get; set; }
+ public global::Cohere.GetClusterJobResponseStatus? Type230 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type231 { get; set; }
+ public global::System.Collections.Generic.IList? Type231 { get; set; }
///
///
///
- public global::Cohere.CreateClusterJobRequest? Type232 { get; set; }
+ public global::Cohere.ListClusterJobsResponse? Type232 { get; set; }
///
///
///
- public global::Cohere.CreateClusterJobResponse? Type233 { get; set; }
+ public global::System.Collections.Generic.IList? Type233 { get; set; }
///
///
///
- public global::Cohere.UpdateClusterJobRequest? Type234 { get; set; }
+ public global::Cohere.CreateClusterJobRequest? Type234 { get; set; }
///
///
///
- public global::Cohere.UpdateClusterJobRequestStatus? Type235 { get; set; }
+ public global::Cohere.CreateClusterJobResponse? Type235 { get; set; }
///
///
///
- public global::Cohere.UpdateClusterJobRequestInputTrackingMetrics? Type236 { get; set; }
+ public global::Cohere.UpdateClusterJobRequest? Type236 { get; set; }
///
///
///
- public global::Cohere.UpdateClusterJobRequestOutputTrackingMetrics? Type237 { get; set; }
+ public global::Cohere.UpdateClusterJobRequestStatus? Type237 { get; set; }
///
///
///
- public global::Cohere.UpdateClusterJobResponse? Type238 { get; set; }
+ public global::Cohere.UpdateClusterJobRequestInputTrackingMetrics? Type238 { get; set; }
///
///
///
- public global::Cohere.CompatibleEndpoint? Type239 { get; set; }
+ public global::Cohere.UpdateClusterJobRequestOutputTrackingMetrics? Type239 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse? Type240 { get; set; }
+ public global::Cohere.UpdateClusterJobResponse? Type240 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type241 { get; set; }
+ public global::Cohere.CompatibleEndpoint? Type241 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse? Type242 { get; set; }
+ public global::Cohere.GetModelResponse? Type242 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type243 { get; set; }
+ public global::System.Collections.Generic.IList? Type243 { get; set; }
///
///
///
- public global::Cohere.BaseType? Type244 { get; set; }
+ public global::Cohere.ListModelsResponse? Type244 { get; set; }
///
///
///
- public global::Cohere.Strategy? Type245 { get; set; }
+ public global::System.Collections.Generic.IList? Type245 { get; set; }
///
///
///
- public global::Cohere.BaseModel? Type246 { get; set; }
+ public global::Cohere.BaseType? Type246 { get; set; }
///
///
///
- public global::Cohere.Hyperparameters? Type247 { get; set; }
+ public global::Cohere.Strategy? Type247 { get; set; }
///
///
///
- public global::Cohere.WandbConfig? Type248 { get; set; }
+ public global::Cohere.BaseModel? Type248 { get; set; }
///
///
///
- public global::Cohere.Settings? Type249 { get; set; }
+ public global::Cohere.Hyperparameters? Type249 { get; set; }
///
///
///
- public global::Cohere.Status? Type250 { get; set; }
+ public global::Cohere.WandbConfig? Type250 { get; set; }
///
///
///
- public global::Cohere.FinetunedModel? Type251 { get; set; }
+ public global::Cohere.Settings? Type251 { get; set; }
///
///
///
- public global::Cohere.ListFinetunedModelsResponse? Type252 { get; set; }
+ public global::Cohere.Status? Type252 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type253 { get; set; }
+ public global::Cohere.FinetunedModel? Type253 { get; set; }
///
///
///
- public global::Cohere.Error? Type254 { get; set; }
+ public global::Cohere.ListFinetunedModelsResponse? Type254 { get; set; }
///
///
///
- public global::Cohere.CreateFinetunedModelResponse? Type255 { get; set; }
+ public global::System.Collections.Generic.IList? Type255 { get; set; }
///
///
///
- public global::Cohere.GetFinetunedModelResponse? Type256 { get; set; }
+ public global::Cohere.Error? Type256 { get; set; }
///
///
///
- public global::Cohere.DeleteFinetunedModelResponse? Type257 { get; set; }
+ public global::Cohere.CreateFinetunedModelResponse? Type257 { get; set; }
///
///
///
- public global::Cohere.UpdateFinetunedModelResponse? Type258 { get; set; }
+ public global::Cohere.GetFinetunedModelResponse? Type258 { get; set; }
///
///
///
- public global::Cohere.Event? Type259 { get; set; }
+ public global::Cohere.DeleteFinetunedModelResponse? Type259 { get; set; }
///
///
///
- public global::Cohere.ListEventsResponse? Type260 { get; set; }
+ public global::Cohere.UpdateFinetunedModelResponse? Type260 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type261 { get; set; }
+ public global::Cohere.Event? Type261 { get; set; }
///
///
///
- public global::Cohere.TrainingStepMetrics? Type262 { get; set; }
+ public global::Cohere.ListEventsResponse? Type262 { get; set; }
///
///
///
- public global::Cohere.TrainingStepMetricsMetrics? Type263 { get; set; }
+ public global::System.Collections.Generic.IList? Type263 { get; set; }
///
///
///
- public global::Cohere.ListTrainingStepMetricsResponse? Type264 { get; set; }
+ public global::Cohere.TrainingStepMetrics? Type264 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type265 { get; set; }
+ public global::Cohere.TrainingStepMetricsMetrics? Type265 { get; set; }
///
///
///
- public global::Cohere.ChatRequest? Type266 { get; set; }
+ public global::Cohere.ListTrainingStepMetricsResponse? Type266 { get; set; }
///
///
///
- public global::Cohere.ChatRequestPromptTruncation? Type267 { get; set; }
+ public global::System.Collections.Generic.IList? Type267 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type268 { get; set; }
+ public global::Cohere.ChatRequest? Type268 { get; set; }
///
///
///
- public global::Cohere.ChatRequestCitationQuality? Type269 { get; set; }
+ public global::Cohere.ChatRequestPromptTruncation? Type269 { get; set; }
///
///
///
- public float? Type270 { get; set; }
+ public global::System.Collections.Generic.IList? Type270 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type271 { get; set; }
+ public global::Cohere.ChatRequestCitationQuality? Type271 { get; set; }
///
///
///
- public global::Cohere.ChatRequestSafetyMode? Type272 { get; set; }
+ public float? Type272 { get; set; }
///
///
///
- public global::Cohere.Chatv2Request? Type273 { get; set; }
+ public global::System.Collections.Generic.IList? Type273 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type274 { get; set; }
+ public global::Cohere.ChatRequestSafetyMode? Type274 { get; set; }
///
///
///
- public global::Cohere.Chatv2RequestCitationMode? Type275 { get; set; }
+ public global::Cohere.Chatv2Request? Type275 { get; set; }
///
///
///
- public global::Cohere.Chatv2RequestSafetyMode? Type276 { get; set; }
+ public global::System.Collections.Generic.IList? Type276 { get; set; }
///
///
///
- public global::Cohere.GenerateRequest? Type277 { get; set; }
+ public global::Cohere.Chatv2RequestCitationMode? Type277 { get; set; }
///
///
///
- public global::Cohere.GenerateRequestTruncate? Type278 { get; set; }
+ public global::Cohere.Chatv2RequestSafetyMode? Type278 { get; set; }
///
///
///
- public global::Cohere.GenerateRequestReturnLikelihoods? Type279 { get; set; }
+ public global::Cohere.GenerateRequest? Type279 { get; set; }
///
///
///
- public global::Cohere.EmbedRequest? Type280 { get; set; }
+ public global::Cohere.GenerateRequestTruncate? Type280 { get; set; }
///
///
///
- public global::Cohere.EmbedRequestTruncate? Type281 { get; set; }
+ public global::Cohere.GenerateRequestReturnLikelihoods? Type281 { get; set; }
///
///
///
- public global::Cohere.RerankRequest? Type282 { get; set; }
+ public global::Cohere.EmbedRequest? Type282 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type283 { get; set; }
+ public global::Cohere.EmbedRequestTruncate? Type283 { get; set; }
///
///
///
- public global::System.OneOf? Type284 { get; set; }
+ public global::Cohere.RerankRequest? Type284 { get; set; }
///
///
///
- public global::Cohere.ClassifyRequest? Type285 { get; set; }
+ public global::System.Collections.Generic.IList>? Type285 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type286 { get; set; }
+ public global::System.OneOf? Type286 { get; set; }
///
///
///
- public global::Cohere.ClassifyRequestTruncate? Type287 { get; set; }
+ public global::Cohere.ClassifyRequest? Type287 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetRequest? Type288 { get; set; }
+ public global::System.Collections.Generic.IList? Type288 { get; set; }
///
///
///
- public byte[]? Type289 { get; set; }
+ public global::Cohere.ClassifyRequestTruncate? Type289 { get; set; }
///
///
///
- public global::Cohere.SummarizeRequest? Type290 { get; set; }
+ public global::Cohere.CreateDatasetRequest? Type290 { get; set; }
///
///
///
- public global::Cohere.SummarizeRequestLength? Type291 { get; set; }
+ public byte[]? Type291 { get; set; }
///
///
///
- public global::Cohere.SummarizeRequestFormat? Type292 { get; set; }
+ public global::Cohere.SummarizeRequest? Type292 { get; set; }
///
///
///
- public global::Cohere.SummarizeRequestExtractiveness? Type293 { get; set; }
+ public global::Cohere.SummarizeRequestLength? Type293 { get; set; }
///
///
///
- public global::Cohere.TokenizeRequest? Type294 { get; set; }
+ public global::Cohere.SummarizeRequestFormat? Type294 { get; set; }
///
///
///
- public global::Cohere.DetokenizeRequest? Type295 { get; set; }
+ public global::Cohere.SummarizeRequestExtractiveness? Type295 { get; set; }
///
///
///
- public global::Cohere.UpdateFinetunedModelRequest? Type296 { get; set; }
+ public global::Cohere.TokenizeRequest? Type296 { get; set; }
///
///
///
- public global::Cohere.ChatAccepts? Type297 { get; set; }
+ public global::Cohere.DetokenizeRequest? Type297 { get; set; }
///
///
///
- public global::System.OneOf? Type298 { get; set; }
+ public global::Cohere.UpdateFinetunedModelRequest? Type298 { get; set; }
///
///
///
- public global::Cohere.ChatResponse2? Type299 { get; set; }
+ public global::Cohere.ChatAccepts? Type299 { get; set; }
///
///
///
- public global::Cohere.ChatResponse3? Type300 { get; set; }
+ public global::System.OneOf? Type300 { get; set; }
///
///
///
- public global::Cohere.ChatResponse4? Type301 { get; set; }
+ public global::Cohere.ChatResponse2? Type301 { get; set; }
///
///
///
- public global::Cohere.ChatResponse5? Type302 { get; set; }
+ public global::Cohere.ChatResponse3? Type302 { get; set; }
///
///
///
- public global::Cohere.ChatResponse6? Type303 { get; set; }
+ public global::Cohere.ChatResponse4? Type303 { get; set; }
///
///
///
- public global::Cohere.ChatResponse7? Type304 { get; set; }
+ public global::Cohere.ChatResponse5? Type304 { get; set; }
///
///
///
- public global::Cohere.ChatResponse8? Type305 { get; set; }
+ public global::Cohere.ChatResponse6? Type305 { get; set; }
///
///
///
- public global::Cohere.ChatResponse9? Type306 { get; set; }
+ public global::Cohere.ChatResponse7? Type306 { get; set; }
///
///
///
- public global::Cohere.ChatResponse10? Type307 { get; set; }
+ public global::Cohere.ChatResponse8? Type307 { get; set; }
///
///
///
- public global::Cohere.ChatResponse11? Type308 { get; set; }
+ public global::Cohere.ChatResponse9? Type308 { get; set; }
///
///
///
- public global::Cohere.ChatResponse12? Type309 { get; set; }
+ public global::Cohere.ChatResponse10? Type309 { get; set; }
///
///
///
- public global::Cohere.ChatResponse13? Type310 { get; set; }
+ public global::Cohere.ChatResponse11? Type310 { get; set; }
///
///
///
- public global::System.OneOf? Type311 { get; set; }
+ public global::Cohere.ChatResponse12? Type311 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response2? Type312 { get; set; }
+ public global::Cohere.ChatResponse13? Type312 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response3? Type313 { get; set; }
+ public global::System.OneOf? Type313 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response4? Type314 { get; set; }
+ public global::Cohere.Chatv2Response2? Type314 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response5? Type315 { get; set; }
+ public global::Cohere.Chatv2Response3? Type315 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response6? Type316 { get; set; }
+ public global::Cohere.Chatv2Response4? Type316 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response7? Type317 { get; set; }
+ public global::Cohere.Chatv2Response5? Type317 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response8? Type318 { get; set; }
+ public global::Cohere.Chatv2Response6? Type318 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response9? Type319 { get; set; }
+ public global::Cohere.Chatv2Response7? Type319 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response10? Type320 { get; set; }
+ public global::Cohere.Chatv2Response8? Type320 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response11? Type321 { get; set; }
+ public global::Cohere.Chatv2Response9? Type321 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response12? Type322 { get; set; }
+ public global::Cohere.Chatv2Response10? Type322 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response13? Type323 { get; set; }
+ public global::Cohere.Chatv2Response11? Type323 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse? Type324 { get; set; }
+ public global::Cohere.Chatv2Response12? Type324 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse2? Type325 { get; set; }
+ public global::Cohere.Chatv2Response13? Type325 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse3? Type326 { get; set; }
+ public global::Cohere.GenerateResponse? Type326 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse4? Type327 { get; set; }
+ public global::Cohere.GenerateResponse2? Type327 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse5? Type328 { get; set; }
+ public global::Cohere.GenerateResponse3? Type328 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse6? Type329 { get; set; }
+ public global::Cohere.GenerateResponse4? Type329 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse7? Type330 { get; set; }
+ public global::Cohere.GenerateResponse5? Type330 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse8? Type331 { get; set; }
+ public global::Cohere.GenerateResponse6? Type331 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse9? Type332 { get; set; }
+ public global::Cohere.GenerateResponse7? Type332 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse10? Type333 { get; set; }
+ public global::Cohere.GenerateResponse8? Type333 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse11? Type334 { get; set; }
+ public global::Cohere.GenerateResponse9? Type334 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse12? Type335 { get; set; }
+ public global::Cohere.GenerateResponse10? Type335 { get; set; }
///
///
///
- public global::System.OneOf? Type336 { get; set; }
+ public global::Cohere.GenerateResponse11? Type336 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse2? Type337 { get; set; }
+ public global::Cohere.GenerateResponse12? Type337 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse3? Type338 { get; set; }
+ public global::System.OneOf? Type338 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse4? Type339 { get; set; }
+ public global::Cohere.EmbedResponse2? Type339 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse5? Type340 { get; set; }
+ public global::Cohere.EmbedResponse3? Type340 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse6? Type341 { get; set; }
+ public global::Cohere.EmbedResponse4? Type341 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse7? Type342 { get; set; }
+ public global::Cohere.EmbedResponse5? Type342 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse8? Type343 { get; set; }
+ public global::Cohere.EmbedResponse6? Type343 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse9? Type344 { get; set; }
+ public global::Cohere.EmbedResponse7? Type344 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse10? Type345 { get; set; }
+ public global::Cohere.EmbedResponse8? Type345 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse11? Type346 { get; set; }
+ public global::Cohere.EmbedResponse9? Type346 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse12? Type347 { get; set; }
+ public global::Cohere.EmbedResponse10? Type347 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse13? Type348 { get; set; }
+ public global::Cohere.EmbedResponse11? Type348 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse2? Type349 { get; set; }
+ public global::Cohere.EmbedResponse12? Type349 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse3? Type350 { get; set; }
+ public global::Cohere.EmbedResponse13? Type350 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse4? Type351 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse2? Type351 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse5? Type352 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse3? Type352 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse6? Type353 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse4? Type353 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse7? Type354 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse5? Type354 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse8? Type355 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse6? Type355 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse9? Type356 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse7? Type356 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse10? Type357 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse8? Type357 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse11? Type358 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse9? Type358 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse12? Type359 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse10? Type359 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse13? Type360 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse11? Type360 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse? Type361 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse12? Type361 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse2? Type362 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse13? Type362 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse3? Type363 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse? Type363 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse4? Type364 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse2? Type364 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse5? Type365 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse3? Type365 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse6? Type366 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse4? Type366 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse7? Type367 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse5? Type367 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse8? Type368 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse6? Type368 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse9? Type369 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse7? Type369 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse10? Type370 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse8? Type370 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse11? Type371 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse9? Type371 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse12? Type372 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse10? Type372 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse? Type373 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse11? Type373 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse2? Type374 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse12? Type374 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse3? Type375 { get; set; }
+ public global::Cohere.GetEmbedJobResponse? Type375 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse4? Type376 { get; set; }
+ public global::Cohere.GetEmbedJobResponse2? Type376 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse5? Type377 { get; set; }
+ public global::Cohere.GetEmbedJobResponse3? Type377 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse6? Type378 { get; set; }
+ public global::Cohere.GetEmbedJobResponse4? Type378 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse7? Type379 { get; set; }
+ public global::Cohere.GetEmbedJobResponse5? Type379 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse8? Type380 { get; set; }
+ public global::Cohere.GetEmbedJobResponse6? Type380 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse9? Type381 { get; set; }
+ public global::Cohere.GetEmbedJobResponse7? Type381 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse10? Type382 { get; set; }
+ public global::Cohere.GetEmbedJobResponse8? Type382 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse11? Type383 { get; set; }
+ public global::Cohere.GetEmbedJobResponse9? Type383 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse12? Type384 { get; set; }
+ public global::Cohere.GetEmbedJobResponse10? Type384 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse? Type385 { get; set; }
+ public global::Cohere.GetEmbedJobResponse11? Type385 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse2? Type386 { get; set; }
+ public global::Cohere.GetEmbedJobResponse12? Type386 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse3? Type387 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse? Type387 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse4? Type388 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse2? Type388 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse5? Type389 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse3? Type389 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse6? Type390 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse4? Type390 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse7? Type391 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse5? Type391 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse8? Type392 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse6? Type392 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse9? Type393 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse7? Type393 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse10? Type394 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse8? Type394 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse11? Type395 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse9? Type395 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse12? Type396 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse10? Type396 { get; set; }
///
///
///
- public global::Cohere.RerankResponse? Type397 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse11? Type397 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type398 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse12? Type398 { get; set; }
///
///
///
- public global::Cohere.RerankResponseResult? Type399 { get; set; }
+ public global::Cohere.RerankResponse? Type399 { get; set; }
///
///
///
- public global::Cohere.RerankResponseResultDocument? Type400 { get; set; }
+ public global::System.Collections.Generic.IList? Type400 { get; set; }
///
///
///
- public global::Cohere.RerankResponse2? Type401 { get; set; }
+ public global::Cohere.RerankResponseResult? Type401 { get; set; }
///
///
///
- public global::Cohere.RerankResponse3? Type402 { get; set; }
+ public global::Cohere.RerankResponseResultDocument? Type402 { get; set; }
///
///
///
- public global::Cohere.RerankResponse4? Type403 { get; set; }
+ public global::Cohere.RerankResponse2? Type403 { get; set; }
///
///
///
- public global::Cohere.RerankResponse5? Type404 { get; set; }
+ public global::Cohere.RerankResponse3? Type404 { get; set; }
///
///
///
- public global::Cohere.RerankResponse6? Type405 { get; set; }
+ public global::Cohere.RerankResponse4? Type405 { get; set; }
///
///
///
- public global::Cohere.RerankResponse7? Type406 { get; set; }
+ public global::Cohere.RerankResponse5? Type406 { get; set; }
///
///
///
- public global::Cohere.RerankResponse8? Type407 { get; set; }
+ public global::Cohere.RerankResponse6? Type407 { get; set; }
///
///
///
- public global::Cohere.RerankResponse9? Type408 { get; set; }
+ public global::Cohere.RerankResponse7? Type408 { get; set; }
///
///
///
- public global::Cohere.RerankResponse10? Type409 { get; set; }
+ public global::Cohere.RerankResponse8? Type409 { get; set; }
///
///
///
- public global::Cohere.RerankResponse11? Type410 { get; set; }
+ public global::Cohere.RerankResponse9? Type410 { get; set; }
///
///
///
- public global::Cohere.RerankResponse12? Type411 { get; set; }
+ public global::Cohere.RerankResponse10? Type411 { get; set; }
///
///
///
- public global::Cohere.RerankResponse13? Type412 { get; set; }
+ public global::Cohere.RerankResponse11? Type412 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse? Type413 { get; set; }
+ public global::Cohere.RerankResponse12? Type413 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type414 { get; set; }
+ public global::Cohere.RerankResponse13? Type414 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponseClassification? Type415 { get; set; }
+ public global::Cohere.ClassifyResponse? Type415 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type416 { get; set; }
+ public global::System.Collections.Generic.IList? Type416 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponseClassificationLabels? Type417 { get; set; }
+ public global::Cohere.ClassifyResponseClassification? Type417 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponseClassificationClassificationType? Type418 { get; set; }
+ public global::System.Collections.Generic.IList? Type418 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse2? Type419 { get; set; }
+ public global::Cohere.ClassifyResponseClassificationLabels? Type419 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse3? Type420 { get; set; }
+ public global::Cohere.ClassifyResponseClassificationClassificationType? Type420 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse4? Type421 { get; set; }
+ public global::Cohere.ClassifyResponse2? Type421 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse5? Type422 { get; set; }
+ public global::Cohere.ClassifyResponse3? Type422 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse6? Type423 { get; set; }
+ public global::Cohere.ClassifyResponse4? Type423 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse7? Type424 { get; set; }
+ public global::Cohere.ClassifyResponse5? Type424 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse8? Type425 { get; set; }
+ public global::Cohere.ClassifyResponse6? Type425 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse9? Type426 { get; set; }
+ public global::Cohere.ClassifyResponse7? Type426 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse10? Type427 { get; set; }
+ public global::Cohere.ClassifyResponse8? Type427 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse11? Type428 { get; set; }
+ public global::Cohere.ClassifyResponse9? Type428 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse12? Type429 { get; set; }
+ public global::Cohere.ClassifyResponse10? Type429 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse13? Type430 { get; set; }
+ public global::Cohere.ClassifyResponse11? Type430 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse? Type431 { get; set; }
+ public global::Cohere.ClassifyResponse12? Type431 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse2? Type432 { get; set; }
+ public global::Cohere.ClassifyResponse13? Type432 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse3? Type433 { get; set; }
+ public global::Cohere.CreateDatasetResponse? Type433 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse4? Type434 { get; set; }
+ public global::Cohere.CreateDatasetResponse2? Type434 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse5? Type435 { get; set; }
+ public global::Cohere.CreateDatasetResponse3? Type435 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse6? Type436 { get; set; }
+ public global::Cohere.CreateDatasetResponse4? Type436 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse7? Type437 { get; set; }
+ public global::Cohere.CreateDatasetResponse5? Type437 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse8? Type438 { get; set; }
+ public global::Cohere.CreateDatasetResponse6? Type438 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse9? Type439 { get; set; }
+ public global::Cohere.CreateDatasetResponse7? Type439 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse10? Type440 { get; set; }
+ public global::Cohere.CreateDatasetResponse8? Type440 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse11? Type441 { get; set; }
+ public global::Cohere.CreateDatasetResponse9? Type441 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse12? Type442 { get; set; }
+ public global::Cohere.CreateDatasetResponse10? Type442 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse13? Type443 { get; set; }
+ public global::Cohere.CreateDatasetResponse11? Type443 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse? Type444 { get; set; }
+ public global::Cohere.CreateDatasetResponse12? Type444 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type445 { get; set; }
+ public global::Cohere.CreateDatasetResponse13? Type445 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse2? Type446 { get; set; }
+ public global::Cohere.ListDatasetsResponse? Type446 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse3? Type447 { get; set; }
+ public global::System.Collections.Generic.IList? Type447 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse4? Type448 { get; set; }
+ public global::Cohere.ListDatasetsResponse2? Type448 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse5? Type449 { get; set; }
+ public global::Cohere.ListDatasetsResponse3? Type449 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse6? Type450 { get; set; }
+ public global::Cohere.ListDatasetsResponse4? Type450 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse7? Type451 { get; set; }
+ public global::Cohere.ListDatasetsResponse5? Type451 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse8? Type452 { get; set; }
+ public global::Cohere.ListDatasetsResponse6? Type452 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse9? Type453 { get; set; }
+ public global::Cohere.ListDatasetsResponse7? Type453 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse10? Type454 { get; set; }
+ public global::Cohere.ListDatasetsResponse8? Type454 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse11? Type455 { get; set; }
+ public global::Cohere.ListDatasetsResponse9? Type455 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse12? Type456 { get; set; }
+ public global::Cohere.ListDatasetsResponse10? Type456 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse13? Type457 { get; set; }
+ public global::Cohere.ListDatasetsResponse11? Type457 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse? Type458 { get; set; }
+ public global::Cohere.ListDatasetsResponse12? Type458 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse2? Type459 { get; set; }
+ public global::Cohere.ListDatasetsResponse13? Type459 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse3? Type460 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse? Type460 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse4? Type461 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse2? Type461 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse5? Type462 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse3? Type462 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse6? Type463 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse4? Type463 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse7? Type464 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse5? Type464 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse8? Type465 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse6? Type465 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse9? Type466 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse7? Type466 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse10? Type467 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse8? Type467 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse11? Type468 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse9? Type468 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse12? Type469 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse10? Type469 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse13? Type470 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse11? Type470 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse? Type471 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse12? Type471 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse2? Type472 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse13? Type472 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse3? Type473 { get; set; }
+ public global::Cohere.GetDatasetResponse? Type473 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse4? Type474 { get; set; }
+ public global::Cohere.GetDatasetResponse2? Type474 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse5? Type475 { get; set; }
+ public global::Cohere.GetDatasetResponse3? Type475 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse6? Type476 { get; set; }
+ public global::Cohere.GetDatasetResponse4? Type476 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse7? Type477 { get; set; }
+ public global::Cohere.GetDatasetResponse5? Type477 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse8? Type478 { get; set; }
+ public global::Cohere.GetDatasetResponse6? Type478 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse9? Type479 { get; set; }
+ public global::Cohere.GetDatasetResponse7? Type479 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse10? Type480 { get; set; }
+ public global::Cohere.GetDatasetResponse8? Type480 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse11? Type481 { get; set; }
+ public global::Cohere.GetDatasetResponse9? Type481 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse12? Type482 { get; set; }
+ public global::Cohere.GetDatasetResponse10? Type482 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse13? Type483 { get; set; }
+ public global::Cohere.GetDatasetResponse11? Type483 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse? Type484 { get; set; }
+ public global::Cohere.GetDatasetResponse12? Type484 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse2? Type485 { get; set; }
+ public global::Cohere.GetDatasetResponse13? Type485 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse3? Type486 { get; set; }
+ public global::Cohere.DeleteDatasetResponse? Type486 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse4? Type487 { get; set; }
+ public global::Cohere.DeleteDatasetResponse2? Type487 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse5? Type488 { get; set; }
+ public global::Cohere.DeleteDatasetResponse3? Type488 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse6? Type489 { get; set; }
+ public global::Cohere.DeleteDatasetResponse4? Type489 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse7? Type490 { get; set; }
+ public global::Cohere.DeleteDatasetResponse5? Type490 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse8? Type491 { get; set; }
+ public global::Cohere.DeleteDatasetResponse6? Type491 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse9? Type492 { get; set; }
+ public global::Cohere.DeleteDatasetResponse7? Type492 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse10? Type493 { get; set; }
+ public global::Cohere.DeleteDatasetResponse8? Type493 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse11? Type494 { get; set; }
+ public global::Cohere.DeleteDatasetResponse9? Type494 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse12? Type495 { get; set; }
+ public global::Cohere.DeleteDatasetResponse10? Type495 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse13? Type496 { get; set; }
+ public global::Cohere.DeleteDatasetResponse11? Type496 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse? Type497 { get; set; }
+ public global::Cohere.DeleteDatasetResponse12? Type497 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse2? Type498 { get; set; }
+ public global::Cohere.DeleteDatasetResponse13? Type498 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse3? Type499 { get; set; }
+ public global::Cohere.SummarizeResponse? Type499 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse4? Type500 { get; set; }
+ public global::Cohere.SummarizeResponse2? Type500 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse5? Type501 { get; set; }
+ public global::Cohere.SummarizeResponse3? Type501 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse6? Type502 { get; set; }
+ public global::Cohere.SummarizeResponse4? Type502 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse7? Type503 { get; set; }
+ public global::Cohere.SummarizeResponse5? Type503 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse8? Type504 { get; set; }
+ public global::Cohere.SummarizeResponse6? Type504 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse9? Type505 { get; set; }
+ public global::Cohere.SummarizeResponse7? Type505 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse10? Type506 { get; set; }
+ public global::Cohere.SummarizeResponse8? Type506 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse11? Type507 { get; set; }
+ public global::Cohere.SummarizeResponse9? Type507 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse12? Type508 { get; set; }
+ public global::Cohere.SummarizeResponse10? Type508 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse13? Type509 { get; set; }
+ public global::Cohere.SummarizeResponse11? Type509 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse? Type510 { get; set; }
+ public global::Cohere.SummarizeResponse12? Type510 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse2? Type511 { get; set; }
+ public global::Cohere.SummarizeResponse13? Type511 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse3? Type512 { get; set; }
+ public global::Cohere.TokenizeResponse? Type512 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse4? Type513 { get; set; }
+ public global::Cohere.TokenizeResponse2? Type513 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse5? Type514 { get; set; }
+ public global::Cohere.TokenizeResponse3? Type514 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse6? Type515 { get; set; }
+ public global::Cohere.TokenizeResponse4? Type515 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse7? Type516 { get; set; }
+ public global::Cohere.TokenizeResponse5? Type516 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse8? Type517 { get; set; }
+ public global::Cohere.TokenizeResponse6? Type517 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse9? Type518 { get; set; }
+ public global::Cohere.TokenizeResponse7? Type518 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse10? Type519 { get; set; }
+ public global::Cohere.TokenizeResponse8? Type519 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse11? Type520 { get; set; }
+ public global::Cohere.TokenizeResponse9? Type520 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse12? Type521 { get; set; }
+ public global::Cohere.TokenizeResponse10? Type521 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse13? Type522 { get; set; }
+ public global::Cohere.TokenizeResponse11? Type522 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse? Type523 { get; set; }
+ public global::Cohere.TokenizeResponse12? Type523 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse2? Type524 { get; set; }
+ public global::Cohere.TokenizeResponse13? Type524 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse3? Type525 { get; set; }
+ public global::Cohere.DetokenizeResponse? Type525 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse4? Type526 { get; set; }
+ public global::Cohere.DetokenizeResponse2? Type526 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse5? Type527 { get; set; }
+ public global::Cohere.DetokenizeResponse3? Type527 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse6? Type528 { get; set; }
+ public global::Cohere.DetokenizeResponse4? Type528 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse7? Type529 { get; set; }
+ public global::Cohere.DetokenizeResponse5? Type529 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse8? Type530 { get; set; }
+ public global::Cohere.DetokenizeResponse6? Type530 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse9? Type531 { get; set; }
+ public global::Cohere.DetokenizeResponse7? Type531 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse10? Type532 { get; set; }
+ public global::Cohere.DetokenizeResponse8? Type532 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse11? Type533 { get; set; }
+ public global::Cohere.DetokenizeResponse9? Type533 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse12? Type534 { get; set; }
+ public global::Cohere.DetokenizeResponse10? Type534 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse13? Type535 { get; set; }
+ public global::Cohere.DetokenizeResponse11? Type535 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse2? Type536 { get; set; }
+ public global::Cohere.DetokenizeResponse12? Type536 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse3? Type537 { get; set; }
+ public global::Cohere.DetokenizeResponse13? Type537 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse4? Type538 { get; set; }
+ public global::Cohere.ListConnectorsResponse2? Type538 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse5? Type539 { get; set; }
+ public global::Cohere.ListConnectorsResponse3? Type539 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse6? Type540 { get; set; }
+ public global::Cohere.ListConnectorsResponse4? Type540 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse7? Type541 { get; set; }
+ public global::Cohere.ListConnectorsResponse5? Type541 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse8? Type542 { get; set; }
+ public global::Cohere.ListConnectorsResponse6? Type542 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse9? Type543 { get; set; }
+ public global::Cohere.ListConnectorsResponse7? Type543 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse10? Type544 { get; set; }
+ public global::Cohere.ListConnectorsResponse8? Type544 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse11? Type545 { get; set; }
+ public global::Cohere.ListConnectorsResponse9? Type545 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse12? Type546 { get; set; }
+ public global::Cohere.ListConnectorsResponse10? Type546 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse13? Type547 { get; set; }
+ public global::Cohere.ListConnectorsResponse11? Type547 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse2? Type548 { get; set; }
+ public global::Cohere.ListConnectorsResponse12? Type548 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse3? Type549 { get; set; }
+ public global::Cohere.ListConnectorsResponse13? Type549 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse4? Type550 { get; set; }
+ public global::Cohere.CreateConnectorResponse2? Type550 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse5? Type551 { get; set; }
+ public global::Cohere.CreateConnectorResponse3? Type551 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse6? Type552 { get; set; }
+ public global::Cohere.CreateConnectorResponse4? Type552 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse7? Type553 { get; set; }
+ public global::Cohere.CreateConnectorResponse5? Type553 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse8? Type554 { get; set; }
+ public global::Cohere.CreateConnectorResponse6? Type554 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse9? Type555 { get; set; }
+ public global::Cohere.CreateConnectorResponse7? Type555 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse10? Type556 { get; set; }
+ public global::Cohere.CreateConnectorResponse8? Type556 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse11? Type557 { get; set; }
+ public global::Cohere.CreateConnectorResponse9? Type557 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse12? Type558 { get; set; }
+ public global::Cohere.CreateConnectorResponse10? Type558 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse13? Type559 { get; set; }
+ public global::Cohere.CreateConnectorResponse11? Type559 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse2? Type560 { get; set; }
+ public global::Cohere.CreateConnectorResponse12? Type560 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse3? Type561 { get; set; }
+ public global::Cohere.CreateConnectorResponse13? Type561 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse4? Type562 { get; set; }
+ public global::Cohere.GetConnectorResponse2? Type562 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse5? Type563 { get; set; }
+ public global::Cohere.GetConnectorResponse3? Type563 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse6? Type564 { get; set; }
+ public global::Cohere.GetConnectorResponse4? Type564 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse7? Type565 { get; set; }
+ public global::Cohere.GetConnectorResponse5? Type565 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse8? Type566 { get; set; }
+ public global::Cohere.GetConnectorResponse6? Type566 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse9? Type567 { get; set; }
+ public global::Cohere.GetConnectorResponse7? Type567 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse10? Type568 { get; set; }
+ public global::Cohere.GetConnectorResponse8? Type568 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse11? Type569 { get; set; }
+ public global::Cohere.GetConnectorResponse9? Type569 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse12? Type570 { get; set; }
+ public global::Cohere.GetConnectorResponse10? Type570 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse13? Type571 { get; set; }
+ public global::Cohere.GetConnectorResponse11? Type571 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse2? Type572 { get; set; }
+ public global::Cohere.GetConnectorResponse12? Type572 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse3? Type573 { get; set; }
+ public global::Cohere.GetConnectorResponse13? Type573 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse4? Type574 { get; set; }
+ public global::Cohere.UpdateConnectorResponse2? Type574 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse5? Type575 { get; set; }
+ public global::Cohere.UpdateConnectorResponse3? Type575 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse6? Type576 { get; set; }
+ public global::Cohere.UpdateConnectorResponse4? Type576 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse7? Type577 { get; set; }
+ public global::Cohere.UpdateConnectorResponse5? Type577 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse8? Type578 { get; set; }
+ public global::Cohere.UpdateConnectorResponse6? Type578 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse9? Type579 { get; set; }
+ public global::Cohere.UpdateConnectorResponse7? Type579 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse10? Type580 { get; set; }
+ public global::Cohere.UpdateConnectorResponse8? Type580 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse11? Type581 { get; set; }
+ public global::Cohere.UpdateConnectorResponse9? Type581 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse12? Type582 { get; set; }
+ public global::Cohere.UpdateConnectorResponse10? Type582 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse13? Type583 { get; set; }
+ public global::Cohere.UpdateConnectorResponse11? Type583 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse2? Type584 { get; set; }
+ public global::Cohere.UpdateConnectorResponse12? Type584 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse3? Type585 { get; set; }
+ public global::Cohere.UpdateConnectorResponse13? Type585 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse4? Type586 { get; set; }
+ public global::Cohere.DeleteConnectorResponse2? Type586 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse5? Type587 { get; set; }
+ public global::Cohere.DeleteConnectorResponse3? Type587 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse6? Type588 { get; set; }
+ public global::Cohere.DeleteConnectorResponse4? Type588 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse7? Type589 { get; set; }
+ public global::Cohere.DeleteConnectorResponse5? Type589 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse8? Type590 { get; set; }
+ public global::Cohere.DeleteConnectorResponse6? Type590 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse9? Type591 { get; set; }
+ public global::Cohere.DeleteConnectorResponse7? Type591 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse10? Type592 { get; set; }
+ public global::Cohere.DeleteConnectorResponse8? Type592 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse11? Type593 { get; set; }
+ public global::Cohere.DeleteConnectorResponse9? Type593 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse12? Type594 { get; set; }
+ public global::Cohere.DeleteConnectorResponse10? Type594 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse13? Type595 { get; set; }
+ public global::Cohere.DeleteConnectorResponse11? Type595 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse? Type596 { get; set; }
+ public global::Cohere.DeleteConnectorResponse12? Type596 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse2? Type597 { get; set; }
+ public global::Cohere.DeleteConnectorResponse13? Type597 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse3? Type598 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse? Type598 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse4? Type599 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse2? Type599 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse5? Type600 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse3? Type600 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse6? Type601 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse4? Type601 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse7? Type602 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse5? Type602 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse8? Type603 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse6? Type603 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse9? Type604 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse7? Type604 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse10? Type605 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse8? Type605 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse11? Type606 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse9? Type606 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse12? Type607 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse10? Type607 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse2? Type608 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse11? Type608 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse3? Type609 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse12? Type609 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse4? Type610 { get; set; }
+ public global::Cohere.GetModelResponse2? Type610 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse5? Type611 { get; set; }
+ public global::Cohere.GetModelResponse3? Type611 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse6? Type612 { get; set; }
+ public global::Cohere.GetModelResponse4? Type612 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse7? Type613 { get; set; }
+ public global::Cohere.GetModelResponse5? Type613 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse8? Type614 { get; set; }
+ public global::Cohere.GetModelResponse6? Type614 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse9? Type615 { get; set; }
+ public global::Cohere.GetModelResponse7? Type615 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse10? Type616 { get; set; }
+ public global::Cohere.GetModelResponse8? Type616 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse11? Type617 { get; set; }
+ public global::Cohere.GetModelResponse9? Type617 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse12? Type618 { get; set; }
+ public global::Cohere.GetModelResponse10? Type618 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse13? Type619 { get; set; }
+ public global::Cohere.GetModelResponse11? Type619 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse2? Type620 { get; set; }
+ public global::Cohere.GetModelResponse12? Type620 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse3? Type621 { get; set; }
+ public global::Cohere.GetModelResponse13? Type621 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse4? Type622 { get; set; }
+ public global::Cohere.ListModelsResponse2? Type622 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse5? Type623 { get; set; }
+ public global::Cohere.ListModelsResponse3? Type623 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse6? Type624 { get; set; }
+ public global::Cohere.ListModelsResponse4? Type624 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse7? Type625 { get; set; }
+ public global::Cohere.ListModelsResponse5? Type625 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse8? Type626 { get; set; }
+ public global::Cohere.ListModelsResponse6? Type626 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse9? Type627 { get; set; }
+ public global::Cohere.ListModelsResponse7? Type627 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse10? Type628 { get; set; }
+ public global::Cohere.ListModelsResponse8? Type628 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse11? Type629 { get; set; }
+ public global::Cohere.ListModelsResponse9? Type629 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse12? Type630 { get; set; }
+ public global::Cohere.ListModelsResponse10? Type630 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse13? Type631 { get; set; }
+ public global::Cohere.ListModelsResponse11? Type631 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse? Type632 { get; set; }
+ public global::Cohere.ListModelsResponse12? Type632 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse2? Type633 { get; set; }
+ public global::Cohere.ListModelsResponse13? Type633 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse3? Type634 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse? Type634 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse4? Type635 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse2? Type635 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse5? Type636 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse3? Type636 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse6? Type637 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse4? Type637 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse7? Type638 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse5? Type638 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse8? Type639 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse6? Type639 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse9? Type640 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse7? Type640 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse10? Type641 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse8? Type641 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse11? Type642 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse9? Type642 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse12? Type643 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse10? Type643 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse13? Type644 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse11? Type644 { get; set; }
+ ///
+ ///
+ ///
+ public global::Cohere.CheckAPIKeyResponse12? Type645 { get; set; }
+ ///
+ ///
+ ///
+ public global::Cohere.CheckAPIKeyResponse13? Type646 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/Cohere/openapi.yaml b/src/libs/Cohere/openapi.yaml
index 215b91f..912e07c 100644
--- a/src/libs/Cohere/openapi.yaml
+++ b/src/libs/Cohere/openapi.yaml
@@ -7604,28 +7604,49 @@ components:
description: The parameters of the function as a JSON schema.
description: The function to be executed.
x-fern-sdk-group-name: v2
+ ResponseFormatType-2:
+ enum:
+ - text
+ - json_object
+ type: string
+ description: "Defaults to `\"text\"`.\n\nWhen set to `\"json_object\"`, the model's output will be a valid JSON Object.\n"
+ x-fern-sdk-group-name: v2
+ x-fern-audiences:
+ - public
+ TextResponseFormat-2:
+ required:
+ - type
+ type: object
+ properties:
+ type:
+ $ref: '#/components/schemas/ResponseFormatType-2'
+ x-fern-sdk-group-name: v2
+ x-fern-audiences:
+ - public
JSONResponseFormat-2:
required:
- type
type: object
properties:
type:
- $ref: '#/components/schemas/ResponseFormatType'
+ $ref: '#/components/schemas/ResponseFormatType-2'
json_schema:
type: object
description: "[BETA] A JSON schema object that the output will adhere to. There are some restrictions we have on the schema, refer to [our guide](/docs/structured-outputs-json#schema-constraints) for more information.\nExample (required name and age object):\n```json\n{\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\"type\": \"string\"},\n \"age\": {\"type\": \"integer\"}\n },\n \"required\": [\"name\", \"age\"]\n}\n```\n\n**Note**: This field must not be specified when the `type` is set to `\"text\"`.\n"
+ x-fern-sdk-group-name: v2
x-fern-audiences:
- public
ResponseFormat-2:
oneOf:
- - $ref: '#/components/schemas/TextResponseFormat'
+ - $ref: '#/components/schemas/TextResponseFormat-2'
- $ref: '#/components/schemas/JSONResponseFormat-2'
description: "Configuration for forcing the model output to adhere to the specified format. Supported on [Command R](https://docs.cohere.com/docs/command-r), [Command R+](https://docs.cohere.com/docs/command-r-plus) and newer models.\n\nThe model can be forced into outputting JSON objects (with up to 5 levels of nesting) by setting `{ \"type\": \"json_object\" }`.\n\nA [JSON Schema](https://json-schema.org/) can optionally be provided, to ensure a specific structure.\n\n**Note**: When using `{ \"type\": \"json_object\" }` your `message` should always explicitly instruct the model to generate a JSON (eg: _\"Generate a JSON ...\"_) . Otherwise the model may end up getting stuck generating an infinite stream of characters and eventually run out of context length.\n**Limitation**: The parameter is not supported in RAG mode (when any of `connectors`, `documents`, `tools`, `tool_results` are provided).\n"
discriminator:
propertyName: type
mapping:
- text: '#/components/schemas/TextResponseFormat'
+ text: '#/components/schemas/TextResponseFormat-2'
json_object: '#/components/schemas/JSONResponseFormat-2'
+ x-fern-sdk-group-name: v2
ChatFinishReason:
enum:
- complete
@@ -7891,6 +7912,7 @@ components:
citations:
$ref: '#/components/schemas/Citation'
description: A streamed event which signifies a citation has been created.
+ x-fern-sdk-group-name: v2
CitationEndEvent:
allOf:
- $ref: '#/components/schemas/ChatStreamEventType'
@@ -7899,6 +7921,7 @@ components:
index:
type: integer
description: A streamed event which signifies a citation has finished streaming.
+ x-fern-sdk-group-name: v2
ChatMessageEndEvent:
allOf:
- $ref: '#/components/schemas/ChatStreamEventType'
@@ -8121,8 +8144,9 @@ components:
- search_query
- classification
- clustering
+ - image
type: string
- description: "Specifies the type of input passed to the model. Required for embedding models v3 and higher.\n\n- `\"search_document\"`: Used for embeddings stored in a vector database for search use-cases.\n- `\"search_query\"`: Used for embeddings of search queries run against a vector DB to find relevant documents.\n- `\"classification\"`: Used for embeddings passed through a text classifier.\n- `\"clustering\"`: Used for the embeddings run through a clustering algorithm.\n"
+ description: "Specifies the type of input passed to the model. Required for embedding models v3 and higher.\n\n- `\"search_document\"`: Used for embeddings stored in a vector database for search use-cases.\n- `\"search_query\"`: Used for embeddings of search queries run against a vector DB to find relevant documents.\n- `\"classification\"`: Used for embeddings passed through a text classifier.\n- `\"clustering\"`: Used for the embeddings run through a clustering algorithm.\n- `\"image\"`: Used for embeddings with image input.\n"
EmbeddingType:
enum:
- float