|
| 1 | +using Microsoft.Extensions.AI; |
| 2 | +using ModelContextProtocol.Protocol.Types; |
| 3 | +using ModelContextProtocol.Utils; |
| 4 | +using System.Runtime.InteropServices; |
| 5 | + |
| 6 | +namespace ModelContextProtocol; |
| 7 | + |
| 8 | +/// <summary>Provides helpers for conversions related to <see cref="AIContent"/>.</summary> |
| 9 | +public static class AIContentExtensions |
| 10 | +{ |
| 11 | + /// <summary>Creates a <see cref="ChatMessage"/> from a <see cref="PromptMessage"/>.</summary> |
| 12 | + /// <param name="promptMessage">The message to convert.</param> |
| 13 | + /// <returns>The created <see cref="ChatMessage"/>.</returns> |
| 14 | + public static ChatMessage ToChatMessage(this PromptMessage promptMessage) |
| 15 | + { |
| 16 | + Throw.IfNull(promptMessage); |
| 17 | + |
| 18 | + return new() |
| 19 | + { |
| 20 | + RawRepresentation = promptMessage, |
| 21 | + Role = promptMessage.Role == Role.User ? ChatRole.User : ChatRole.Assistant, |
| 22 | + Contents = [ToAIContent(promptMessage.Content)] |
| 23 | + }; |
| 24 | + } |
| 25 | + |
| 26 | + /// <summary>Creates a new <see cref="AIContent"/> from the content of a <see cref="Content"/>.</summary> |
| 27 | + /// <param name="content">The <see cref="Content"/> to convert.</param> |
| 28 | + /// <returns>The created <see cref="AIContent"/>.</returns> |
| 29 | + public static AIContent ToAIContent(this Content content) |
| 30 | + { |
| 31 | + Throw.IfNull(content); |
| 32 | + |
| 33 | + AIContent ac; |
| 34 | + if (content is { Type: "image", MimeType: not null, Data: not null }) |
| 35 | + { |
| 36 | + ac = new DataContent(Convert.FromBase64String(content.Data), content.MimeType); |
| 37 | + } |
| 38 | + else if (content is { Type: "resource" } && content.Resource is { } resourceContents) |
| 39 | + { |
| 40 | + ac = resourceContents.Blob is not null && resourceContents.MimeType is not null ? |
| 41 | + new DataContent(Convert.FromBase64String(resourceContents.Blob), resourceContents.MimeType) : |
| 42 | + new TextContent(resourceContents.Text); |
| 43 | + |
| 44 | + (ac.AdditionalProperties ??= [])["uri"] = resourceContents.Uri; |
| 45 | + } |
| 46 | + else |
| 47 | + { |
| 48 | + ac = new TextContent(content.Text); |
| 49 | + } |
| 50 | + |
| 51 | + ac.RawRepresentation = content; |
| 52 | + |
| 53 | + return ac; |
| 54 | + } |
| 55 | + |
| 56 | + /// <summary>Creates a new <see cref="AIContent"/> from the content of a <see cref="ResourceContents"/>.</summary> |
| 57 | + /// <param name="content">The <see cref="ResourceContents"/> to convert.</param> |
| 58 | + /// <returns>The created <see cref="AIContent"/>.</returns> |
| 59 | + public static AIContent ToAIContent(this ResourceContents content) |
| 60 | + { |
| 61 | + Throw.IfNull(content); |
| 62 | + |
| 63 | + AIContent ac = content.Blob is not null && content.MimeType is not null ? |
| 64 | + new DataContent(Convert.FromBase64String(content.Blob), content.MimeType) : |
| 65 | + new TextContent(content.Text); |
| 66 | + |
| 67 | + (ac.AdditionalProperties ??= [])["uri"] = content.Uri; |
| 68 | + ac.RawRepresentation = content; |
| 69 | + |
| 70 | + return ac; |
| 71 | + } |
| 72 | + |
| 73 | + /// <summary>Creates a list of <see cref="AIContent"/> from a sequence of <see cref="Content"/>.</summary> |
| 74 | + /// <param name="contents">The <see cref="Content"/> instances to convert.</param> |
| 75 | + /// <returns>The created <see cref="AIContent"/> instances.</returns> |
| 76 | + public static IList<AIContent> ToAIContents(this IEnumerable<Content> contents) |
| 77 | + { |
| 78 | + Throw.IfNull(contents); |
| 79 | + |
| 80 | + return contents.Select(ToAIContent).ToList(); |
| 81 | + } |
| 82 | + |
| 83 | + /// <summary>Creates a list of <see cref="AIContent"/> from a sequence of <see cref="ResourceContents"/>.</summary> |
| 84 | + /// <param name="contents">The <see cref="ResourceContents"/> instances to convert.</param> |
| 85 | + /// <returns>The created <see cref="AIContent"/> instances.</returns> |
| 86 | + public static IList<AIContent> ToAIContents(this IEnumerable<ResourceContents> contents) |
| 87 | + { |
| 88 | + Throw.IfNull(contents); |
| 89 | + |
| 90 | + return contents.Select(ToAIContent).ToList(); |
| 91 | + } |
| 92 | + |
| 93 | + /// <summary>Extracts the data from a <see cref="DataContent"/> as a Base64 string.</summary> |
| 94 | + internal static string GetBase64Data(this DataContent dataContent) |
| 95 | + { |
| 96 | +#if NET |
| 97 | + return Convert.ToBase64String(dataContent.Data.Span); |
| 98 | +#else |
| 99 | + return MemoryMarshal.TryGetArray(dataContent.Data, out ArraySegment<byte> segment) ? |
| 100 | + Convert.ToBase64String(segment.Array!, segment.Offset, segment.Count) : |
| 101 | + Convert.ToBase64String(dataContent.Data.ToArray()); |
| 102 | +#endif |
| 103 | + } |
| 104 | +} |
0 commit comments