Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added the User property to the ChatGptOptions class #41

Merged
merged 2 commits into from
Mar 24, 2023
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
1 change: 1 addition & 0 deletions src/ChatGptNet/ChatGptClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ private ChatGptRequest CreateRequest(List<ChatGptMessage> messages, bool stream,
MaxTokens = parameters?.MaxTokens ?? options.DefaultParameters.MaxTokens,
PresencePenalty = parameters?.PresencePenalty ?? options.DefaultParameters.PresencePenalty,
FrequencyPenalty = parameters?.FrequencyPenalty ?? options.DefaultParameters.FrequencyPenalty,
User = options.User,
};

private void UpdateHistory(Guid conversationId, IList<ChatGptMessage> messages, ChatGptMessage message)
Expand Down
8 changes: 8 additions & 0 deletions src/ChatGptNet/ChatGptOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,12 @@ public class ChatGptOptions
/// </summary>
/// <see cref="ChatGptParameters"/>
public ChatGptParameters DefaultParameters { get; } = new();

/// <summary>
/// Gets or sets the user identification for chat completion, which can help OpenAI to monitor and detect abuse.
/// </summary>
/// <remarks>
/// See <see href="https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids">Safety best practices</see> for more information.
/// </remarks>
public string? User { get; set; }
}
8 changes: 8 additions & 0 deletions src/ChatGptNet/Models/ChatGptRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,12 @@ public class ChatGptRequest
/// </remarks>
[JsonPropertyName("frequency_penalty")]
public double? FrequencyPenalty { get; set; }

/// <summary>
/// Gets or sets the user identification for chat completion, which can help OpenAI to monitor and detect abuse.
/// </summary>
/// <remarks>
/// See <see href="https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids">Safety best practices</see> for more information.
/// </remarks>
public string? User { get; set; }
}