diff --git a/src/libs/Cohere/Generated/Cohere.CohereApi.Chat.g.cs b/src/libs/Cohere/Generated/Cohere.CohereApi.Chat.g.cs
index 1bcde18..0b1295d 100644
--- a/src/libs/Cohere/Generated/Cohere.CohereApi.Chat.g.cs
+++ b/src/libs/Cohere/Generated/Cohere.CohereApi.Chat.g.cs
@@ -8,11 +8,13 @@ public partial class CohereApi
partial void PrepareChatArguments(
global::System.Net.Http.HttpClient httpClient,
ref string? xClientName,
+ ref global::Cohere.ChatAccepts? accepts,
global::Cohere.ChatRequest request);
partial void PrepareChatRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
string? xClientName,
+ global::Cohere.ChatAccepts? accepts,
global::Cohere.ChatRequest request);
partial void ProcessChatResponse(
global::System.Net.Http.HttpClient httpClient,
@@ -29,12 +31,14 @@ partial void ProcessChatResponseContent(
/// To learn how to use the Chat API with Streaming and RAG follow our [Text Generation guides](https://docs.cohere.com/docs/chat-api).
///
///
+ ///
///
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task> ChatAsync(
global::Cohere.ChatRequest request,
string? xClientName = default,
+ global::Cohere.ChatAccepts? accepts = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
request = request ?? throw new global::System.ArgumentNullException(nameof(request));
@@ -44,6 +48,7 @@ partial void ProcessChatResponseContent(
PrepareChatArguments(
httpClient: _httpClient,
xClientName: ref xClientName,
+ accepts: ref accepts,
request: request);
using var httpRequest = new global::System.Net.Http.HttpRequestMessage(
@@ -63,6 +68,7 @@ partial void ProcessChatResponseContent(
httpClient: _httpClient,
httpRequestMessage: httpRequest,
xClientName: xClientName,
+ accepts: accepts,
request: request);
using var response = await _httpClient.SendAsync(
@@ -108,6 +114,7 @@ partial void ProcessChatResponseContent(
/// To learn how to use the Chat API with Streaming and RAG follow our [Text Generation guides](https://docs.cohere.com/docs/chat-api).
///
///
+ ///
///
/// Text input for the model to respond to.
/// Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
@@ -278,6 +285,7 @@ partial void ProcessChatResponseContent(
public async global::System.Threading.Tasks.Task> ChatAsync(
string message,
string? xClientName = default,
+ global::Cohere.ChatAccepts? accepts = default,
string? model = default,
bool stream = default,
string? preamble = default,
@@ -335,6 +343,7 @@ partial void ProcessChatResponseContent(
return await ChatAsync(
xClientName: xClientName,
+ accepts: accepts,
request: request,
cancellationToken: cancellationToken).ConfigureAwait(false);
}
diff --git a/src/libs/Cohere/Generated/Cohere.Models.ChatAccepts.g.cs b/src/libs/Cohere/Generated/Cohere.Models.ChatAccepts.g.cs
new file mode 100644
index 0000000..67bbe0f
--- /dev/null
+++ b/src/libs/Cohere/Generated/Cohere.Models.ChatAccepts.g.cs
@@ -0,0 +1,45 @@
+
+#nullable enable
+
+namespace Cohere
+{
+ ///
+ ///
+ ///
+ public enum ChatAccepts
+ {
+ ///
+ ///
+ ///
+ TextEventStream,
+ }
+
+ ///
+ /// Enum extensions to do fast conversions without the reflection.
+ ///
+ public static class ChatAcceptsExtensions
+ {
+ ///
+ /// Converts an enum to a string.
+ ///
+ public static string ToValueString(this ChatAccepts value)
+ {
+ return value switch
+ {
+ ChatAccepts.TextEventStream => "text/event-stream",
+ _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
+ };
+ }
+ ///
+ /// Converts an string to a enum.
+ ///
+ public static ChatAccepts? ToEnum(string value)
+ {
+ return value switch
+ {
+ "text/event-stream" => ChatAccepts.TextEventStream,
+ _ => null,
+ };
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/libs/Cohere/Generated/JsonConverters.ChatAccepts.g.cs b/src/libs/Cohere/Generated/JsonConverters.ChatAccepts.g.cs
new file mode 100644
index 0000000..bb77be2
--- /dev/null
+++ b/src/libs/Cohere/Generated/JsonConverters.ChatAccepts.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class ChatAcceptsJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Cohere.ChatAccepts 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.ChatAcceptsExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Cohere.ChatAccepts)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Cohere.ChatAccepts value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Cohere.ChatAcceptsExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Cohere/Generated/JsonConverters.ChatAcceptsNullable.g.cs b/src/libs/Cohere/Generated/JsonConverters.ChatAcceptsNullable.g.cs
new file mode 100644
index 0000000..b6ed78e
--- /dev/null
+++ b/src/libs/Cohere/Generated/JsonConverters.ChatAcceptsNullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class ChatAcceptsNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Cohere.ChatAccepts? 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.ChatAcceptsExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Cohere.ChatAccepts)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Cohere.ChatAccepts? 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.ChatAcceptsExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs
index 246935f..469a240 100644
--- a/src/libs/Cohere/Generated/JsonSerializerContext.g.cs
+++ b/src/libs/Cohere/Generated/JsonSerializerContext.g.cs
@@ -109,6 +109,8 @@ namespace Cohere
typeof(global::OpenApiGenerator.JsonConverters.SummarizeRequestFormatNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.SummarizeRequestExtractivenessJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.SummarizeRequestExtractivenessNullableJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.ChatAcceptsJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.ChatAcceptsNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.ClassifyResponseClassificationClassificationTypeJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.ClassifyResponseClassificationClassificationTypeNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.MessageJsonConverter),
diff --git a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs
index afdd4ab..a07c861 100644
--- a/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs
+++ b/src/libs/Cohere/Generated/JsonSerializerContextTypes.g.cs
@@ -1201,1390 +1201,1394 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::System.OneOf? Type297 { get; set; }
+ public global::Cohere.ChatAccepts? Type297 { get; set; }
///
///
///
- public global::Cohere.ChatResponse2? Type298 { get; set; }
+ public global::System.OneOf? Type298 { get; set; }
///
///
///
- public global::Cohere.ChatResponse3? Type299 { get; set; }
+ public global::Cohere.ChatResponse2? Type299 { get; set; }
///
///
///
- public global::Cohere.ChatResponse4? Type300 { get; set; }
+ public global::Cohere.ChatResponse3? Type300 { get; set; }
///
///
///
- public global::Cohere.ChatResponse5? Type301 { get; set; }
+ public global::Cohere.ChatResponse4? Type301 { get; set; }
///
///
///
- public global::Cohere.ChatResponse6? Type302 { get; set; }
+ public global::Cohere.ChatResponse5? Type302 { get; set; }
///
///
///
- public global::Cohere.ChatResponse7? Type303 { get; set; }
+ public global::Cohere.ChatResponse6? Type303 { get; set; }
///
///
///
- public global::Cohere.ChatResponse8? Type304 { get; set; }
+ public global::Cohere.ChatResponse7? Type304 { get; set; }
///
///
///
- public global::Cohere.ChatResponse9? Type305 { get; set; }
+ public global::Cohere.ChatResponse8? Type305 { get; set; }
///
///
///
- public global::Cohere.ChatResponse10? Type306 { get; set; }
+ public global::Cohere.ChatResponse9? Type306 { get; set; }
///
///
///
- public global::Cohere.ChatResponse11? Type307 { get; set; }
+ public global::Cohere.ChatResponse10? Type307 { get; set; }
///
///
///
- public global::Cohere.ChatResponse12? Type308 { get; set; }
+ public global::Cohere.ChatResponse11? Type308 { get; set; }
///
///
///
- public global::Cohere.ChatResponse13? Type309 { get; set; }
+ public global::Cohere.ChatResponse12? Type309 { get; set; }
///
///
///
- public global::System.OneOf? Type310 { get; set; }
+ public global::Cohere.ChatResponse13? Type310 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response2? Type311 { get; set; }
+ public global::System.OneOf? Type311 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response3? Type312 { get; set; }
+ public global::Cohere.Chatv2Response2? Type312 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response4? Type313 { get; set; }
+ public global::Cohere.Chatv2Response3? Type313 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response5? Type314 { get; set; }
+ public global::Cohere.Chatv2Response4? Type314 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response6? Type315 { get; set; }
+ public global::Cohere.Chatv2Response5? Type315 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response7? Type316 { get; set; }
+ public global::Cohere.Chatv2Response6? Type316 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response8? Type317 { get; set; }
+ public global::Cohere.Chatv2Response7? Type317 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response9? Type318 { get; set; }
+ public global::Cohere.Chatv2Response8? Type318 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response10? Type319 { get; set; }
+ public global::Cohere.Chatv2Response9? Type319 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response11? Type320 { get; set; }
+ public global::Cohere.Chatv2Response10? Type320 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response12? Type321 { get; set; }
+ public global::Cohere.Chatv2Response11? Type321 { get; set; }
///
///
///
- public global::Cohere.Chatv2Response13? Type322 { get; set; }
+ public global::Cohere.Chatv2Response12? Type322 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse? Type323 { get; set; }
+ public global::Cohere.Chatv2Response13? Type323 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse2? Type324 { get; set; }
+ public global::Cohere.GenerateResponse? Type324 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse3? Type325 { get; set; }
+ public global::Cohere.GenerateResponse2? Type325 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse4? Type326 { get; set; }
+ public global::Cohere.GenerateResponse3? Type326 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse5? Type327 { get; set; }
+ public global::Cohere.GenerateResponse4? Type327 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse6? Type328 { get; set; }
+ public global::Cohere.GenerateResponse5? Type328 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse7? Type329 { get; set; }
+ public global::Cohere.GenerateResponse6? Type329 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse8? Type330 { get; set; }
+ public global::Cohere.GenerateResponse7? Type330 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse9? Type331 { get; set; }
+ public global::Cohere.GenerateResponse8? Type331 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse10? Type332 { get; set; }
+ public global::Cohere.GenerateResponse9? Type332 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse11? Type333 { get; set; }
+ public global::Cohere.GenerateResponse10? Type333 { get; set; }
///
///
///
- public global::Cohere.GenerateResponse12? Type334 { get; set; }
+ public global::Cohere.GenerateResponse11? Type334 { get; set; }
///
///
///
- public global::System.OneOf? Type335 { get; set; }
+ public global::Cohere.GenerateResponse12? Type335 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse2? Type336 { get; set; }
+ public global::System.OneOf? Type336 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse3? Type337 { get; set; }
+ public global::Cohere.EmbedResponse2? Type337 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse4? Type338 { get; set; }
+ public global::Cohere.EmbedResponse3? Type338 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse5? Type339 { get; set; }
+ public global::Cohere.EmbedResponse4? Type339 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse6? Type340 { get; set; }
+ public global::Cohere.EmbedResponse5? Type340 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse7? Type341 { get; set; }
+ public global::Cohere.EmbedResponse6? Type341 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse8? Type342 { get; set; }
+ public global::Cohere.EmbedResponse7? Type342 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse9? Type343 { get; set; }
+ public global::Cohere.EmbedResponse8? Type343 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse10? Type344 { get; set; }
+ public global::Cohere.EmbedResponse9? Type344 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse11? Type345 { get; set; }
+ public global::Cohere.EmbedResponse10? Type345 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse12? Type346 { get; set; }
+ public global::Cohere.EmbedResponse11? Type346 { get; set; }
///
///
///
- public global::Cohere.EmbedResponse13? Type347 { get; set; }
+ public global::Cohere.EmbedResponse12? Type347 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse2? Type348 { get; set; }
+ public global::Cohere.EmbedResponse13? Type348 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse3? Type349 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse2? Type349 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse4? Type350 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse3? Type350 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse5? Type351 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse4? Type351 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse6? Type352 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse5? Type352 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse7? Type353 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse6? Type353 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse8? Type354 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse7? Type354 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse9? Type355 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse8? Type355 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse10? Type356 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse9? Type356 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse11? Type357 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse10? Type357 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse12? Type358 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse11? Type358 { get; set; }
///
///
///
- public global::Cohere.CreateEmbedJobResponse13? Type359 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse12? Type359 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse? Type360 { get; set; }
+ public global::Cohere.CreateEmbedJobResponse13? Type360 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse2? Type361 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse? Type361 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse3? Type362 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse2? Type362 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse4? Type363 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse3? Type363 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse5? Type364 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse4? Type364 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse6? Type365 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse5? Type365 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse7? Type366 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse6? Type366 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse8? Type367 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse7? Type367 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse9? Type368 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse8? Type368 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse10? Type369 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse9? Type369 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse11? Type370 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse10? Type370 { get; set; }
///
///
///
- public global::Cohere.ListEmbedJobsResponse12? Type371 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse11? Type371 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse? Type372 { get; set; }
+ public global::Cohere.ListEmbedJobsResponse12? Type372 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse2? Type373 { get; set; }
+ public global::Cohere.GetEmbedJobResponse? Type373 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse3? Type374 { get; set; }
+ public global::Cohere.GetEmbedJobResponse2? Type374 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse4? Type375 { get; set; }
+ public global::Cohere.GetEmbedJobResponse3? Type375 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse5? Type376 { get; set; }
+ public global::Cohere.GetEmbedJobResponse4? Type376 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse6? Type377 { get; set; }
+ public global::Cohere.GetEmbedJobResponse5? Type377 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse7? Type378 { get; set; }
+ public global::Cohere.GetEmbedJobResponse6? Type378 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse8? Type379 { get; set; }
+ public global::Cohere.GetEmbedJobResponse7? Type379 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse9? Type380 { get; set; }
+ public global::Cohere.GetEmbedJobResponse8? Type380 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse10? Type381 { get; set; }
+ public global::Cohere.GetEmbedJobResponse9? Type381 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse11? Type382 { get; set; }
+ public global::Cohere.GetEmbedJobResponse10? Type382 { get; set; }
///
///
///
- public global::Cohere.GetEmbedJobResponse12? Type383 { get; set; }
+ public global::Cohere.GetEmbedJobResponse11? Type383 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse? Type384 { get; set; }
+ public global::Cohere.GetEmbedJobResponse12? Type384 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse2? Type385 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse? Type385 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse3? Type386 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse2? Type386 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse4? Type387 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse3? Type387 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse5? Type388 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse4? Type388 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse6? Type389 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse5? Type389 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse7? Type390 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse6? Type390 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse8? Type391 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse7? Type391 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse9? Type392 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse8? Type392 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse10? Type393 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse9? Type393 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse11? Type394 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse10? Type394 { get; set; }
///
///
///
- public global::Cohere.CancelEmbedJobResponse12? Type395 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse11? Type395 { get; set; }
///
///
///
- public global::Cohere.RerankResponse? Type396 { get; set; }
+ public global::Cohere.CancelEmbedJobResponse12? Type396 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type397 { get; set; }
+ public global::Cohere.RerankResponse? Type397 { get; set; }
///
///
///
- public global::Cohere.RerankResponseResult? Type398 { get; set; }
+ public global::System.Collections.Generic.IList? Type398 { get; set; }
///
///
///
- public global::Cohere.RerankResponseResultDocument? Type399 { get; set; }
+ public global::Cohere.RerankResponseResult? Type399 { get; set; }
///
///
///
- public global::Cohere.RerankResponse2? Type400 { get; set; }
+ public global::Cohere.RerankResponseResultDocument? Type400 { get; set; }
///
///
///
- public global::Cohere.RerankResponse3? Type401 { get; set; }
+ public global::Cohere.RerankResponse2? Type401 { get; set; }
///
///
///
- public global::Cohere.RerankResponse4? Type402 { get; set; }
+ public global::Cohere.RerankResponse3? Type402 { get; set; }
///
///
///
- public global::Cohere.RerankResponse5? Type403 { get; set; }
+ public global::Cohere.RerankResponse4? Type403 { get; set; }
///
///
///
- public global::Cohere.RerankResponse6? Type404 { get; set; }
+ public global::Cohere.RerankResponse5? Type404 { get; set; }
///
///
///
- public global::Cohere.RerankResponse7? Type405 { get; set; }
+ public global::Cohere.RerankResponse6? Type405 { get; set; }
///
///
///
- public global::Cohere.RerankResponse8? Type406 { get; set; }
+ public global::Cohere.RerankResponse7? Type406 { get; set; }
///
///
///
- public global::Cohere.RerankResponse9? Type407 { get; set; }
+ public global::Cohere.RerankResponse8? Type407 { get; set; }
///
///
///
- public global::Cohere.RerankResponse10? Type408 { get; set; }
+ public global::Cohere.RerankResponse9? Type408 { get; set; }
///
///
///
- public global::Cohere.RerankResponse11? Type409 { get; set; }
+ public global::Cohere.RerankResponse10? Type409 { get; set; }
///
///
///
- public global::Cohere.RerankResponse12? Type410 { get; set; }
+ public global::Cohere.RerankResponse11? Type410 { get; set; }
///
///
///
- public global::Cohere.RerankResponse13? Type411 { get; set; }
+ public global::Cohere.RerankResponse12? Type411 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse? Type412 { get; set; }
+ public global::Cohere.RerankResponse13? Type412 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type413 { get; set; }
+ public global::Cohere.ClassifyResponse? Type413 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponseClassification? Type414 { get; set; }
+ public global::System.Collections.Generic.IList? Type414 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type415 { get; set; }
+ public global::Cohere.ClassifyResponseClassification? Type415 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponseClassificationLabels? Type416 { get; set; }
+ public global::System.Collections.Generic.IList? Type416 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponseClassificationClassificationType? Type417 { get; set; }
+ public global::Cohere.ClassifyResponseClassificationLabels? Type417 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse2? Type418 { get; set; }
+ public global::Cohere.ClassifyResponseClassificationClassificationType? Type418 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse3? Type419 { get; set; }
+ public global::Cohere.ClassifyResponse2? Type419 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse4? Type420 { get; set; }
+ public global::Cohere.ClassifyResponse3? Type420 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse5? Type421 { get; set; }
+ public global::Cohere.ClassifyResponse4? Type421 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse6? Type422 { get; set; }
+ public global::Cohere.ClassifyResponse5? Type422 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse7? Type423 { get; set; }
+ public global::Cohere.ClassifyResponse6? Type423 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse8? Type424 { get; set; }
+ public global::Cohere.ClassifyResponse7? Type424 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse9? Type425 { get; set; }
+ public global::Cohere.ClassifyResponse8? Type425 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse10? Type426 { get; set; }
+ public global::Cohere.ClassifyResponse9? Type426 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse11? Type427 { get; set; }
+ public global::Cohere.ClassifyResponse10? Type427 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse12? Type428 { get; set; }
+ public global::Cohere.ClassifyResponse11? Type428 { get; set; }
///
///
///
- public global::Cohere.ClassifyResponse13? Type429 { get; set; }
+ public global::Cohere.ClassifyResponse12? Type429 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse? Type430 { get; set; }
+ public global::Cohere.ClassifyResponse13? Type430 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse2? Type431 { get; set; }
+ public global::Cohere.CreateDatasetResponse? Type431 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse3? Type432 { get; set; }
+ public global::Cohere.CreateDatasetResponse2? Type432 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse4? Type433 { get; set; }
+ public global::Cohere.CreateDatasetResponse3? Type433 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse5? Type434 { get; set; }
+ public global::Cohere.CreateDatasetResponse4? Type434 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse6? Type435 { get; set; }
+ public global::Cohere.CreateDatasetResponse5? Type435 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse7? Type436 { get; set; }
+ public global::Cohere.CreateDatasetResponse6? Type436 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse8? Type437 { get; set; }
+ public global::Cohere.CreateDatasetResponse7? Type437 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse9? Type438 { get; set; }
+ public global::Cohere.CreateDatasetResponse8? Type438 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse10? Type439 { get; set; }
+ public global::Cohere.CreateDatasetResponse9? Type439 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse11? Type440 { get; set; }
+ public global::Cohere.CreateDatasetResponse10? Type440 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse12? Type441 { get; set; }
+ public global::Cohere.CreateDatasetResponse11? Type441 { get; set; }
///
///
///
- public global::Cohere.CreateDatasetResponse13? Type442 { get; set; }
+ public global::Cohere.CreateDatasetResponse12? Type442 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse? Type443 { get; set; }
+ public global::Cohere.CreateDatasetResponse13? Type443 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type444 { get; set; }
+ public global::Cohere.ListDatasetsResponse? Type444 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse2? Type445 { get; set; }
+ public global::System.Collections.Generic.IList? Type445 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse3? Type446 { get; set; }
+ public global::Cohere.ListDatasetsResponse2? Type446 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse4? Type447 { get; set; }
+ public global::Cohere.ListDatasetsResponse3? Type447 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse5? Type448 { get; set; }
+ public global::Cohere.ListDatasetsResponse4? Type448 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse6? Type449 { get; set; }
+ public global::Cohere.ListDatasetsResponse5? Type449 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse7? Type450 { get; set; }
+ public global::Cohere.ListDatasetsResponse6? Type450 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse8? Type451 { get; set; }
+ public global::Cohere.ListDatasetsResponse7? Type451 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse9? Type452 { get; set; }
+ public global::Cohere.ListDatasetsResponse8? Type452 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse10? Type453 { get; set; }
+ public global::Cohere.ListDatasetsResponse9? Type453 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse11? Type454 { get; set; }
+ public global::Cohere.ListDatasetsResponse10? Type454 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse12? Type455 { get; set; }
+ public global::Cohere.ListDatasetsResponse11? Type455 { get; set; }
///
///
///
- public global::Cohere.ListDatasetsResponse13? Type456 { get; set; }
+ public global::Cohere.ListDatasetsResponse12? Type456 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse? Type457 { get; set; }
+ public global::Cohere.ListDatasetsResponse13? Type457 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse2? Type458 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse? Type458 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse3? Type459 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse2? Type459 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse4? Type460 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse3? Type460 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse5? Type461 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse4? Type461 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse6? Type462 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse5? Type462 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse7? Type463 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse6? Type463 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse8? Type464 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse7? Type464 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse9? Type465 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse8? Type465 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse10? Type466 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse9? Type466 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse11? Type467 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse10? Type467 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse12? Type468 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse11? Type468 { get; set; }
///
///
///
- public global::Cohere.GetDatasetUsageResponse13? Type469 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse12? Type469 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse? Type470 { get; set; }
+ public global::Cohere.GetDatasetUsageResponse13? Type470 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse2? Type471 { get; set; }
+ public global::Cohere.GetDatasetResponse? Type471 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse3? Type472 { get; set; }
+ public global::Cohere.GetDatasetResponse2? Type472 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse4? Type473 { get; set; }
+ public global::Cohere.GetDatasetResponse3? Type473 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse5? Type474 { get; set; }
+ public global::Cohere.GetDatasetResponse4? Type474 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse6? Type475 { get; set; }
+ public global::Cohere.GetDatasetResponse5? Type475 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse7? Type476 { get; set; }
+ public global::Cohere.GetDatasetResponse6? Type476 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse8? Type477 { get; set; }
+ public global::Cohere.GetDatasetResponse7? Type477 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse9? Type478 { get; set; }
+ public global::Cohere.GetDatasetResponse8? Type478 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse10? Type479 { get; set; }
+ public global::Cohere.GetDatasetResponse9? Type479 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse11? Type480 { get; set; }
+ public global::Cohere.GetDatasetResponse10? Type480 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse12? Type481 { get; set; }
+ public global::Cohere.GetDatasetResponse11? Type481 { get; set; }
///
///
///
- public global::Cohere.GetDatasetResponse13? Type482 { get; set; }
+ public global::Cohere.GetDatasetResponse12? Type482 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse? Type483 { get; set; }
+ public global::Cohere.GetDatasetResponse13? Type483 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse2? Type484 { get; set; }
+ public global::Cohere.DeleteDatasetResponse? Type484 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse3? Type485 { get; set; }
+ public global::Cohere.DeleteDatasetResponse2? Type485 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse4? Type486 { get; set; }
+ public global::Cohere.DeleteDatasetResponse3? Type486 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse5? Type487 { get; set; }
+ public global::Cohere.DeleteDatasetResponse4? Type487 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse6? Type488 { get; set; }
+ public global::Cohere.DeleteDatasetResponse5? Type488 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse7? Type489 { get; set; }
+ public global::Cohere.DeleteDatasetResponse6? Type489 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse8? Type490 { get; set; }
+ public global::Cohere.DeleteDatasetResponse7? Type490 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse9? Type491 { get; set; }
+ public global::Cohere.DeleteDatasetResponse8? Type491 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse10? Type492 { get; set; }
+ public global::Cohere.DeleteDatasetResponse9? Type492 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse11? Type493 { get; set; }
+ public global::Cohere.DeleteDatasetResponse10? Type493 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse12? Type494 { get; set; }
+ public global::Cohere.DeleteDatasetResponse11? Type494 { get; set; }
///
///
///
- public global::Cohere.DeleteDatasetResponse13? Type495 { get; set; }
+ public global::Cohere.DeleteDatasetResponse12? Type495 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse? Type496 { get; set; }
+ public global::Cohere.DeleteDatasetResponse13? Type496 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse2? Type497 { get; set; }
+ public global::Cohere.SummarizeResponse? Type497 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse3? Type498 { get; set; }
+ public global::Cohere.SummarizeResponse2? Type498 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse4? Type499 { get; set; }
+ public global::Cohere.SummarizeResponse3? Type499 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse5? Type500 { get; set; }
+ public global::Cohere.SummarizeResponse4? Type500 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse6? Type501 { get; set; }
+ public global::Cohere.SummarizeResponse5? Type501 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse7? Type502 { get; set; }
+ public global::Cohere.SummarizeResponse6? Type502 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse8? Type503 { get; set; }
+ public global::Cohere.SummarizeResponse7? Type503 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse9? Type504 { get; set; }
+ public global::Cohere.SummarizeResponse8? Type504 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse10? Type505 { get; set; }
+ public global::Cohere.SummarizeResponse9? Type505 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse11? Type506 { get; set; }
+ public global::Cohere.SummarizeResponse10? Type506 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse12? Type507 { get; set; }
+ public global::Cohere.SummarizeResponse11? Type507 { get; set; }
///
///
///
- public global::Cohere.SummarizeResponse13? Type508 { get; set; }
+ public global::Cohere.SummarizeResponse12? Type508 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse? Type509 { get; set; }
+ public global::Cohere.SummarizeResponse13? Type509 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse2? Type510 { get; set; }
+ public global::Cohere.TokenizeResponse? Type510 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse3? Type511 { get; set; }
+ public global::Cohere.TokenizeResponse2? Type511 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse4? Type512 { get; set; }
+ public global::Cohere.TokenizeResponse3? Type512 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse5? Type513 { get; set; }
+ public global::Cohere.TokenizeResponse4? Type513 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse6? Type514 { get; set; }
+ public global::Cohere.TokenizeResponse5? Type514 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse7? Type515 { get; set; }
+ public global::Cohere.TokenizeResponse6? Type515 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse8? Type516 { get; set; }
+ public global::Cohere.TokenizeResponse7? Type516 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse9? Type517 { get; set; }
+ public global::Cohere.TokenizeResponse8? Type517 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse10? Type518 { get; set; }
+ public global::Cohere.TokenizeResponse9? Type518 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse11? Type519 { get; set; }
+ public global::Cohere.TokenizeResponse10? Type519 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse12? Type520 { get; set; }
+ public global::Cohere.TokenizeResponse11? Type520 { get; set; }
///
///
///
- public global::Cohere.TokenizeResponse13? Type521 { get; set; }
+ public global::Cohere.TokenizeResponse12? Type521 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse? Type522 { get; set; }
+ public global::Cohere.TokenizeResponse13? Type522 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse2? Type523 { get; set; }
+ public global::Cohere.DetokenizeResponse? Type523 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse3? Type524 { get; set; }
+ public global::Cohere.DetokenizeResponse2? Type524 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse4? Type525 { get; set; }
+ public global::Cohere.DetokenizeResponse3? Type525 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse5? Type526 { get; set; }
+ public global::Cohere.DetokenizeResponse4? Type526 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse6? Type527 { get; set; }
+ public global::Cohere.DetokenizeResponse5? Type527 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse7? Type528 { get; set; }
+ public global::Cohere.DetokenizeResponse6? Type528 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse8? Type529 { get; set; }
+ public global::Cohere.DetokenizeResponse7? Type529 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse9? Type530 { get; set; }
+ public global::Cohere.DetokenizeResponse8? Type530 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse10? Type531 { get; set; }
+ public global::Cohere.DetokenizeResponse9? Type531 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse11? Type532 { get; set; }
+ public global::Cohere.DetokenizeResponse10? Type532 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse12? Type533 { get; set; }
+ public global::Cohere.DetokenizeResponse11? Type533 { get; set; }
///
///
///
- public global::Cohere.DetokenizeResponse13? Type534 { get; set; }
+ public global::Cohere.DetokenizeResponse12? Type534 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse2? Type535 { get; set; }
+ public global::Cohere.DetokenizeResponse13? Type535 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse3? Type536 { get; set; }
+ public global::Cohere.ListConnectorsResponse2? Type536 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse4? Type537 { get; set; }
+ public global::Cohere.ListConnectorsResponse3? Type537 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse5? Type538 { get; set; }
+ public global::Cohere.ListConnectorsResponse4? Type538 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse6? Type539 { get; set; }
+ public global::Cohere.ListConnectorsResponse5? Type539 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse7? Type540 { get; set; }
+ public global::Cohere.ListConnectorsResponse6? Type540 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse8? Type541 { get; set; }
+ public global::Cohere.ListConnectorsResponse7? Type541 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse9? Type542 { get; set; }
+ public global::Cohere.ListConnectorsResponse8? Type542 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse10? Type543 { get; set; }
+ public global::Cohere.ListConnectorsResponse9? Type543 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse11? Type544 { get; set; }
+ public global::Cohere.ListConnectorsResponse10? Type544 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse12? Type545 { get; set; }
+ public global::Cohere.ListConnectorsResponse11? Type545 { get; set; }
///
///
///
- public global::Cohere.ListConnectorsResponse13? Type546 { get; set; }
+ public global::Cohere.ListConnectorsResponse12? Type546 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse2? Type547 { get; set; }
+ public global::Cohere.ListConnectorsResponse13? Type547 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse3? Type548 { get; set; }
+ public global::Cohere.CreateConnectorResponse2? Type548 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse4? Type549 { get; set; }
+ public global::Cohere.CreateConnectorResponse3? Type549 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse5? Type550 { get; set; }
+ public global::Cohere.CreateConnectorResponse4? Type550 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse6? Type551 { get; set; }
+ public global::Cohere.CreateConnectorResponse5? Type551 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse7? Type552 { get; set; }
+ public global::Cohere.CreateConnectorResponse6? Type552 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse8? Type553 { get; set; }
+ public global::Cohere.CreateConnectorResponse7? Type553 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse9? Type554 { get; set; }
+ public global::Cohere.CreateConnectorResponse8? Type554 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse10? Type555 { get; set; }
+ public global::Cohere.CreateConnectorResponse9? Type555 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse11? Type556 { get; set; }
+ public global::Cohere.CreateConnectorResponse10? Type556 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse12? Type557 { get; set; }
+ public global::Cohere.CreateConnectorResponse11? Type557 { get; set; }
///
///
///
- public global::Cohere.CreateConnectorResponse13? Type558 { get; set; }
+ public global::Cohere.CreateConnectorResponse12? Type558 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse2? Type559 { get; set; }
+ public global::Cohere.CreateConnectorResponse13? Type559 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse3? Type560 { get; set; }
+ public global::Cohere.GetConnectorResponse2? Type560 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse4? Type561 { get; set; }
+ public global::Cohere.GetConnectorResponse3? Type561 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse5? Type562 { get; set; }
+ public global::Cohere.GetConnectorResponse4? Type562 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse6? Type563 { get; set; }
+ public global::Cohere.GetConnectorResponse5? Type563 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse7? Type564 { get; set; }
+ public global::Cohere.GetConnectorResponse6? Type564 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse8? Type565 { get; set; }
+ public global::Cohere.GetConnectorResponse7? Type565 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse9? Type566 { get; set; }
+ public global::Cohere.GetConnectorResponse8? Type566 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse10? Type567 { get; set; }
+ public global::Cohere.GetConnectorResponse9? Type567 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse11? Type568 { get; set; }
+ public global::Cohere.GetConnectorResponse10? Type568 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse12? Type569 { get; set; }
+ public global::Cohere.GetConnectorResponse11? Type569 { get; set; }
///
///
///
- public global::Cohere.GetConnectorResponse13? Type570 { get; set; }
+ public global::Cohere.GetConnectorResponse12? Type570 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse2? Type571 { get; set; }
+ public global::Cohere.GetConnectorResponse13? Type571 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse3? Type572 { get; set; }
+ public global::Cohere.UpdateConnectorResponse2? Type572 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse4? Type573 { get; set; }
+ public global::Cohere.UpdateConnectorResponse3? Type573 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse5? Type574 { get; set; }
+ public global::Cohere.UpdateConnectorResponse4? Type574 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse6? Type575 { get; set; }
+ public global::Cohere.UpdateConnectorResponse5? Type575 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse7? Type576 { get; set; }
+ public global::Cohere.UpdateConnectorResponse6? Type576 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse8? Type577 { get; set; }
+ public global::Cohere.UpdateConnectorResponse7? Type577 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse9? Type578 { get; set; }
+ public global::Cohere.UpdateConnectorResponse8? Type578 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse10? Type579 { get; set; }
+ public global::Cohere.UpdateConnectorResponse9? Type579 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse11? Type580 { get; set; }
+ public global::Cohere.UpdateConnectorResponse10? Type580 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse12? Type581 { get; set; }
+ public global::Cohere.UpdateConnectorResponse11? Type581 { get; set; }
///
///
///
- public global::Cohere.UpdateConnectorResponse13? Type582 { get; set; }
+ public global::Cohere.UpdateConnectorResponse12? Type582 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse2? Type583 { get; set; }
+ public global::Cohere.UpdateConnectorResponse13? Type583 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse3? Type584 { get; set; }
+ public global::Cohere.DeleteConnectorResponse2? Type584 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse4? Type585 { get; set; }
+ public global::Cohere.DeleteConnectorResponse3? Type585 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse5? Type586 { get; set; }
+ public global::Cohere.DeleteConnectorResponse4? Type586 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse6? Type587 { get; set; }
+ public global::Cohere.DeleteConnectorResponse5? Type587 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse7? Type588 { get; set; }
+ public global::Cohere.DeleteConnectorResponse6? Type588 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse8? Type589 { get; set; }
+ public global::Cohere.DeleteConnectorResponse7? Type589 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse9? Type590 { get; set; }
+ public global::Cohere.DeleteConnectorResponse8? Type590 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse10? Type591 { get; set; }
+ public global::Cohere.DeleteConnectorResponse9? Type591 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse11? Type592 { get; set; }
+ public global::Cohere.DeleteConnectorResponse10? Type592 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse12? Type593 { get; set; }
+ public global::Cohere.DeleteConnectorResponse11? Type593 { get; set; }
///
///
///
- public global::Cohere.DeleteConnectorResponse13? Type594 { get; set; }
+ public global::Cohere.DeleteConnectorResponse12? Type594 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse? Type595 { get; set; }
+ public global::Cohere.DeleteConnectorResponse13? Type595 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse2? Type596 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse? Type596 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse3? Type597 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse2? Type597 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse4? Type598 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse3? Type598 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse5? Type599 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse4? Type599 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse6? Type600 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse5? Type600 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse7? Type601 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse6? Type601 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse8? Type602 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse7? Type602 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse9? Type603 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse8? Type603 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse10? Type604 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse9? Type604 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse11? Type605 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse10? Type605 { get; set; }
///
///
///
- public global::Cohere.OAuthAuthorizeConnectorResponse12? Type606 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse11? Type606 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse2? Type607 { get; set; }
+ public global::Cohere.OAuthAuthorizeConnectorResponse12? Type607 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse3? Type608 { get; set; }
+ public global::Cohere.GetModelResponse2? Type608 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse4? Type609 { get; set; }
+ public global::Cohere.GetModelResponse3? Type609 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse5? Type610 { get; set; }
+ public global::Cohere.GetModelResponse4? Type610 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse6? Type611 { get; set; }
+ public global::Cohere.GetModelResponse5? Type611 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse7? Type612 { get; set; }
+ public global::Cohere.GetModelResponse6? Type612 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse8? Type613 { get; set; }
+ public global::Cohere.GetModelResponse7? Type613 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse9? Type614 { get; set; }
+ public global::Cohere.GetModelResponse8? Type614 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse10? Type615 { get; set; }
+ public global::Cohere.GetModelResponse9? Type615 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse11? Type616 { get; set; }
+ public global::Cohere.GetModelResponse10? Type616 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse12? Type617 { get; set; }
+ public global::Cohere.GetModelResponse11? Type617 { get; set; }
///
///
///
- public global::Cohere.GetModelResponse13? Type618 { get; set; }
+ public global::Cohere.GetModelResponse12? Type618 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse2? Type619 { get; set; }
+ public global::Cohere.GetModelResponse13? Type619 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse3? Type620 { get; set; }
+ public global::Cohere.ListModelsResponse2? Type620 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse4? Type621 { get; set; }
+ public global::Cohere.ListModelsResponse3? Type621 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse5? Type622 { get; set; }
+ public global::Cohere.ListModelsResponse4? Type622 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse6? Type623 { get; set; }
+ public global::Cohere.ListModelsResponse5? Type623 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse7? Type624 { get; set; }
+ public global::Cohere.ListModelsResponse6? Type624 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse8? Type625 { get; set; }
+ public global::Cohere.ListModelsResponse7? Type625 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse9? Type626 { get; set; }
+ public global::Cohere.ListModelsResponse8? Type626 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse10? Type627 { get; set; }
+ public global::Cohere.ListModelsResponse9? Type627 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse11? Type628 { get; set; }
+ public global::Cohere.ListModelsResponse10? Type628 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse12? Type629 { get; set; }
+ public global::Cohere.ListModelsResponse11? Type629 { get; set; }
///
///
///
- public global::Cohere.ListModelsResponse13? Type630 { get; set; }
+ public global::Cohere.ListModelsResponse12? Type630 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse? Type631 { get; set; }
+ public global::Cohere.ListModelsResponse13? Type631 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse2? Type632 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse? Type632 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse3? Type633 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse2? Type633 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse4? Type634 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse3? Type634 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse5? Type635 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse4? Type635 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse6? Type636 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse5? Type636 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse7? Type637 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse6? Type637 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse8? Type638 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse7? Type638 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse9? Type639 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse8? Type639 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse10? Type640 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse9? Type640 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse11? Type641 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse10? Type641 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse12? Type642 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse11? Type642 { get; set; }
///
///
///
- public global::Cohere.CheckAPIKeyResponse13? Type643 { get; set; }
+ public global::Cohere.CheckAPIKeyResponse12? Type643 { get; set; }
+ ///
+ ///
+ ///
+ public global::Cohere.CheckAPIKeyResponse13? Type644 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/Cohere/openapi.yaml b/src/libs/Cohere/openapi.yaml
index 8ece770..90b6b82 100644
--- a/src/libs/Cohere/openapi.yaml
+++ b/src/libs/Cohere/openapi.yaml
@@ -22,6 +22,16 @@ paths:
operationId: chat
parameters:
- $ref: '#/components/parameters/RequestSource'
+ - name: Accepts
+ in: header
+ description: "Pass text/event-stream to receive the streamed response as server-sent events. The default is `\\n` delimited events.\n"
+ schema:
+ enum:
+ - text/event-stream
+ type: string
+ example: text/event-stream
+ x-fern-audiences:
+ - public
requestBody:
content:
application/json: