mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-21 22:13:38 +00:00
Some checks failed
Build and Release / Determine run mode (push) Has been cancelled
Build and Release / Verify (push) Has been cancelled
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Sync Flatpak repo (push) Has been cancelled
Build and Release / Collect Flatpak artifacts (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
58 lines
2.2 KiB
C#
58 lines
2.2 KiB
C#
using System.Text.Json;
|
|
|
|
namespace AIStudio.Provider.Anthropic;
|
|
|
|
/// <summary>
|
|
/// One non-streamed answer of the Anthropic messages API.
|
|
/// </summary>
|
|
public sealed record AnthropicResponse
|
|
{
|
|
public string StopReason { get; init; } = string.Empty;
|
|
|
|
public IList<JsonElement> Content { get; init; } = [];
|
|
|
|
/// <summary>
|
|
/// The argument text of those tool uses whose arguments never parsed, by tool use ID.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Empty for a non-streamed answer, where the arguments either arrived as an object or did
|
|
/// not arrive at all.
|
|
/// </remarks>
|
|
public IReadOnlyDictionary<string, string> UnparsableToolInputs { get; init; } = new Dictionary<string, string>();
|
|
|
|
/// <summary>
|
|
/// The tool calls the model asked for.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// 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.
|
|
/// </remarks>
|
|
public IReadOnlyList<AnthropicToolUse> 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,
|
|
UnparsableArguments = this.UnparsableToolInputs.GetValueOrDefault(ReadString(x, "id")),
|
|
})
|
|
.Where(x => !string.IsNullOrWhiteSpace(x.Id) && !string.IsNullOrWhiteSpace(x.Name))
|
|
.ToList();
|
|
|
|
/// <summary>
|
|
/// The text the model wrote, with its blocks joined.
|
|
/// </summary>
|
|
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;
|
|
}
|
|
} |