Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libs/Cohere/Generated/Cohere.CohereApi.Chatv2.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ partial void ProcessChatv2ResponseContent(
/// Used to reduce repetitiveness of generated tokens. Similar to `frequency_penalty`, except that this penalty is applied equally to all tokens that have already appeared, regardless of their exact frequencies.
/// </param>
/// <param name="k">
/// Ensures only the top `k` most likely tokens are considered for generation at each step.<br/>
/// Ensures that only the top `k` most likely tokens are considered for generation at each step. When `k` is set to `0`, k-sampling is disabled. <br/>
/// Defaults to `0`, min value of `0`, max value of `500`.<br/>
/// Default Value: 0F
/// </param>
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Cohere/Generated/Cohere.ICohereApi.Chatv2.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public partial interface ICohereApi
/// Used to reduce repetitiveness of generated tokens. Similar to `frequency_penalty`, except that this penalty is applied equally to all tokens that have already appeared, regardless of their exact frequencies.
/// </param>
/// <param name="k">
/// Ensures only the top `k` most likely tokens are considered for generation at each step.<br/>
/// Ensures that only the top `k` most likely tokens are considered for generation at each step. When `k` is set to `0`, k-sampling is disabled. <br/>
/// Defaults to `0`, min value of `0`, max value of `500`.<br/>
/// Default Value: 0F
/// </param>
Expand Down
4 changes: 2 additions & 2 deletions src/libs/Cohere/Generated/Cohere.Models.Chatv2Request.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public sealed partial class Chatv2Request
public float? PresencePenalty { get; set; }

/// <summary>
/// Ensures only the top `k` most likely tokens are considered for generation at each step.<br/>
/// Ensures that only the top `k` most likely tokens are considered for generation at each step. When `k` is set to `0`, k-sampling is disabled. <br/>
/// Defaults to `0`, min value of `0`, max value of `500`.<br/>
/// Default Value: 0F
/// </summary>
Expand Down Expand Up @@ -193,7 +193,7 @@ public sealed partial class Chatv2Request
/// Used to reduce repetitiveness of generated tokens. Similar to `frequency_penalty`, except that this penalty is applied equally to all tokens that have already appeared, regardless of their exact frequencies.
/// </param>
/// <param name="k">
/// Ensures only the top `k` most likely tokens are considered for generation at each step.<br/>
/// Ensures that only the top `k` most likely tokens are considered for generation at each step. When `k` is set to `0`, k-sampling is disabled. <br/>
/// Defaults to `0`, min value of `0`, max value of `500`.<br/>
/// Default Value: 0F
/// </param>
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Cohere/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ paths:
maximum: 500
minimum: 0
type: number
description: "Ensures only the top `k` most likely tokens are considered for generation at each step.\nDefaults to `0`, min value of `0`, max value of `500`.\n"
description: "Ensures that only the top `k` most likely tokens are considered for generation at each step. When `k` is set to `0`, k-sampling is disabled. \nDefaults to `0`, min value of `0`, max value of `500`.\n"
format: float
default: 0
p:
Expand Down