-
Notifications
You must be signed in to change notification settings - Fork 701
Expand file tree
/
Copy pathPromptMessage.cs
More file actions
69 lines (64 loc) · 3.05 KB
/
PromptMessage.cs
File metadata and controls
69 lines (64 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System.Diagnostics;
using Microsoft.Extensions.AI;
using System.Text.Json.Serialization;
namespace ModelContextProtocol.Protocol;
/// <summary>
/// Represents a message within the Model Context Protocol (MCP) system, used for communication between clients and AI models.
/// </summary>
/// <remarks>
/// <para>
/// A <see cref="PromptMessage"/> encapsulates content sent to or received from AI models in the Model Context Protocol.
/// Each message has a specific role (<see cref="Role.User"/> or <see cref="Role.Assistant"/>) and contains content, which can be
/// text, images, audio, or embedded resources.
/// </para>
/// <para>
/// This class is similar to <see cref="SamplingMessage"/>, but with enhanced support for embedding resources from the MCP server.
/// It serves as a core data structure in the MCP message exchange flow, particularly in prompt formation and model responses.
/// </para>
/// <para>
/// <see cref="PromptMessage"/> objects are typically used in collections within <see cref="GetPromptResult"/>
/// to represent complete conversations or prompt sequences. They can be converted to and from <see cref="ChatMessage"/>
/// objects using the extension methods <see cref="AIContentExtensions.ToChatMessage(PromptMessage, System.Text.Json.JsonSerializerOptions?)"/> and
/// <see cref="AIContentExtensions.ToPromptMessages(ChatMessage)"/>.
/// </para>
/// <para>
/// See the <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/">schema</see> for details.
/// </para>
/// </remarks>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public sealed class PromptMessage
{
/// <summary>
/// Gets or sets the content of the message, which can be text, image, audio, or an embedded resource.
/// </summary>
/// <remarks>
/// The <see cref="Content"/> object contains all the message payload, whether it's simple text,
/// base64-encoded binary data (for images/audio), or a reference to an embedded resource.
/// The <see cref="ContentBlock.Type"/> property indicates the specific content type.
/// </remarks>
[JsonPropertyName("content")]
public required ContentBlock Content { get; set; }
/// <summary>
/// Gets or sets the role of the message sender, specifying whether it's from a "user" or an "assistant".
/// </summary>
/// <remarks>
/// In the Model Context Protocol, each message must have a clear role assignment to maintain
/// the conversation flow. User messages represent queries or inputs from users, while assistant
/// messages represent responses generated by AI models.
/// </remarks>
[JsonPropertyName("role")]
public required Role Role { get; set; }
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private string DebuggerDisplay
{
get
{
// Show actual text content if it's a TextContentBlock
if (Content is TextContentBlock textBlock)
{
return $"Role = {Role}, Text = \"{textBlock.Text}\"";
}
return $"Role = {Role}, ContentType = {Content.Type}";
}
}
}