using System.Text.Json;
namespace AIStudio.Provider.Anthropic;
///
/// One non-streamed answer of the Anthropic messages API.
///
public sealed record AnthropicResponse
{
public string StopReason { get; init; } = string.Empty;
public IList Content { get; init; } = [];
///
/// The tool calls the model asked for.
///
///
/// A block without an ID or a name cannot be answered and is dropped here, so the harness
/// sees a well-formed list. Anthropic supplies both for every real tool use.
///
public IReadOnlyList GetToolUses() => this.Content
.Where(x => ReadString(x, "type").Equals("tool_use", StringComparison.Ordinal))
.Select(x => new AnthropicToolUse
{
Id = ReadString(x, "id"),
Name = ReadString(x, "name"),
Input = x.TryGetProperty("input", out var input) ? input : default,
})
.Where(x => !string.IsNullOrWhiteSpace(x.Id) && !string.IsNullOrWhiteSpace(x.Name))
.ToList();
///
/// The text the model wrote, with its blocks joined.
///
public string GetTextOutput() => string.Concat(this.Content
.Where(x => ReadString(x, "type").Equals("text", StringComparison.Ordinal))
.Select(x => ReadString(x, "text")));
private static string ReadString(JsonElement item, string propertyName)
{
if (item.ValueKind is not JsonValueKind.Object ||
!item.TryGetProperty(propertyName, out var property) ||
property.ValueKind is not JsonValueKind.String)
return string.Empty;
return property.GetString() ?? string.Empty;
}
}