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

Documentation update #125

Merged
merged 1 commit into from
Oct 16, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ChatGptNet/Models/ChatGptRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ internal class ChatGptRequest
public double? FrequencyPenalty { get; set; }

/// <summary>
/// Gets or sets the user identification for chat completion, which can help OpenAI to monitor and detect abuse.
/// Gets or sets the user identification for chat completion, which can help 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.
Expand Down
6 changes: 6 additions & 0 deletions src/ChatGptNet/Models/Embeddings/EmbeddingRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,11 @@ internal class EmbeddingRequest
/// <seealso cref="Input"/>
public IEnumerable<string> Input { get; set; } = Enumerable.Empty<string>();

/// <summary>
/// Gets or sets the user identification for embedding request, which can help 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; }
}