Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ namespace Microsoft.Extensions.AI;
/// <summary>Represents a chat client.</summary>
/// <remarks>
/// <para>
/// Applications must consider risks such as prompt injection attacks, data sizes, and the number of messages
/// sent to the underlying provider or returned from it. Unless a specific <see cref="IChatClient"/> implementation
/// explicitly documents safeguards for these concerns, the application is expected to implement appropriate protections.
/// </para>
/// <para>
/// Unless otherwise specified, all members of <see cref="IChatClient"/> are thread-safe for concurrent use.
/// It is expected that all implementations of <see cref="IChatClient"/> support being used by multiple requests concurrently.
/// Instances must not be disposed of while the instance is still in use.
Expand Down
Loading