mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 23:33:36 +00:00
22 lines
712 B
C#
22 lines
712 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace AIStudio.Provider.Anthropic;
|
||
|
|
|
||
|
|
public sealed record AnthropicToolResultContent
|
||
|
|
{
|
||
|
|
public string Type { get; init; } = "tool_result";
|
||
|
|
|
||
|
|
public string ToolUseId { get; init; } = string.Empty;
|
||
|
|
|
||
|
|
public string Content { get; init; } = string.Empty;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Whether the tool failed rather than returning a result.
|
||
|
|
/// </summary>
|
||
|
|
/// <remarks>
|
||
|
|
/// Only sent when true: Anthropic reads its absence as success, and this way a successful
|
||
|
|
/// result stays byte-identical to what earlier versions sent.
|
||
|
|
/// </remarks>
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
|
||
|
|
public bool IsError { get; init; }
|
||
|
|
}
|