Skip to content

Commit d16789f

Browse files
Merge pull request #109 from tryAGI/bot/update-openapi_202411191827
feat:@coderabbitai
2 parents ffb10e6 + 9f38dc3 commit d16789f

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

src/libs/Cohere/Generated/Cohere.CohereApi.Chatv2.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ partial void ProcessChatv2ResponseContent(
577577
/// Default Value: 0.75F
578578
/// </param>
579579
/// <param name="logprobs">
580-
/// Whether to return the log probabilities of the generated tokens. Defaults to false.
580+
/// Defaults to `false`. When set to `true`, the log probabilities of the generated tokens will be included in the response.
581581
/// </param>
582582
/// <param name="cancellationToken">The token to cancel the operation with</param>
583583
/// <exception cref="global::System.InvalidOperationException"></exception>

src/libs/Cohere/Generated/Cohere.ICohereApi.Chatv2.g.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public partial interface ICohereApi
9292
/// Default Value: 0.75F
9393
/// </param>
9494
/// <param name="logprobs">
95-
/// Whether to return the log probabilities of the generated tokens. Defaults to false.
95+
/// Defaults to `false`. When set to `true`, the log probabilities of the generated tokens will be included in the response.
9696
/// </param>
9797
/// <param name="cancellationToken">The token to cancel the operation with</param>
9898
/// <exception cref="global::System.InvalidOperationException"></exception>

src/libs/Cohere/Generated/Cohere.Models.Chatv2Request.g.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public sealed partial class Chatv2Request
127127
public float? P { get; set; }
128128

129129
/// <summary>
130-
/// Whether to return the log probabilities of the generated tokens. Defaults to false.
130+
/// Defaults to `false`. When set to `true`, the log probabilities of the generated tokens will be included in the response.
131131
/// </summary>
132132
[global::System.Text.Json.Serialization.JsonPropertyName("logprobs")]
133133
public bool? Logprobs { get; set; }
@@ -209,7 +209,7 @@ public sealed partial class Chatv2Request
209209
/// Default Value: 0.75F
210210
/// </param>
211211
/// <param name="logprobs">
212-
/// Whether to return the log probabilities of the generated tokens. Defaults to false.
212+
/// Defaults to `false`. When set to `true`, the log probabilities of the generated tokens will be included in the response.
213213
/// </param>
214214
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
215215
public Chatv2Request(

src/libs/Cohere/Generated/JsonSerializerContext.g.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ namespace Cohere
175175
typeof(global::Cohere.JsonConverters.OneOfJsonConverter<global::Cohere.NonStreamedChatResponse, global::Cohere.StreamedChatResponse?>),
176176
typeof(global::Cohere.JsonConverters.OneOfJsonConverter<global::Cohere.ChatResponse, global::Cohere.StreamedChatResponseV2?>),
177177
typeof(global::Cohere.JsonConverters.OneOfJsonConverter<global::Cohere.EmbedFloatsResponse, global::Cohere.EmbedByTypeResponse>),
178+
typeof(global::Cohere.JsonConverters.UnixTimestampJsonConverter),
178179
})]
179180

180181
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Cohere.JsonSerializerContextTypes))]

src/libs/Cohere/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ paths:
829829
default: 0.75
830830
logprobs:
831831
type: boolean
832-
description: "Whether to return the log probabilities of the generated tokens. Defaults to false.\n"
832+
description: "Defaults to `false`. When set to `true`, the log probabilities of the generated tokens will be included in the response.\n"
833833
responses:
834834
'200':
835835
description: OK

0 commit comments

Comments
 (0)