diff --git a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs b/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs
index b4354e22a43..570eb7ef497 100644
--- a/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs
+++ b/src/Libraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/IChatClient.cs
@@ -11,6 +11,11 @@ namespace Microsoft.Extensions.AI;
/// Represents a chat client.
///
///
+/// 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 implementation
+/// explicitly documents safeguards for these concerns, the application is expected to implement appropriate protections.
+///
+///
/// Unless otherwise specified, all members of are thread-safe for concurrent use.
/// It is expected that all implementations of support being used by multiple requests concurrently.
/// Instances must not be disposed of while the instance is still in use.