namespace AIStudio.Provider.Anthropic;
///
/// The results of the tools the model asked for, as one user turn.
///
///
/// All results of one turn belong in a single message. Splitting them across several messages
/// teaches the model to stop asking for more than one tool at a time.
///
public sealed record AnthropicToolResultMessage(IList Content, string Role = "user") : IMessage>;