feat: add support for citations

BREAKING CHANGE: Changed type of public Source properties.
Updated `Source` property on `DocumentContent` and `ImageContent`
types to use base `Source` type

- include support for citing custom sources
- include support for citing PDF sources
- include support for citing text sources
This commit is contained in:
Stevan Freeborn
2025-06-14 13:44:10 -05:00
parent d50989833e
commit 5b8d88a01d
21 changed files with 450 additions and 123 deletions
+3 -23
View File
@@ -7,26 +7,10 @@ namespace AnthropicClient.Models;
/// <summary>
/// Represents an image source.
/// </summary>
public class ImageSource
public class ImageSource : Base64Source
{
/// <summary>
/// Gets the media type of the image.
/// </summary>
[JsonPropertyName("media_type")]
public string MediaType { get; init; } = string.Empty;
/// <summary>
/// Gets the data of the image.
/// </summary>
public string Data { get; init; } = string.Empty;
/// <summary>
/// Gets the type of encoding of the image data.
/// </summary>
public string Type { get; init; } = "base64";
[JsonConstructor]
internal ImageSource()
internal ImageSource() : base(string.Empty, string.Empty)
{
}
@@ -38,17 +22,13 @@ public class ImageSource
/// <exception cref="ArgumentException">Thrown when the media type is invalid.</exception>
/// <exception cref="ArgumentNullException">Thrown when the media type or data is null.</exception>
/// <returns>A new instance of the <see cref="ImageSource"/> class.</returns>
public ImageSource(string mediaType, string data)
public ImageSource(string mediaType, string data) : base(mediaType, data)
{
ArgumentValidator.ThrowIfNull(mediaType, nameof(mediaType));
if (ImageType.IsValidImageType(mediaType) is false)
{
throw new ArgumentException($"Invalid media type: {mediaType}");
}
ArgumentValidator.ThrowIfNull(data, nameof(data));
MediaType = mediaType;
Data = data;
}