mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 16:53:36 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
10 lines
491 B
C#
10 lines
491 B
C#
namespace AIStudio.Provider.Anthropic;
|
|
|
|
/// <summary>
|
|
/// The results of the tools the model asked for, as one user turn.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// 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.
|
|
/// </remarks>
|
|
public sealed record AnthropicToolResultMessage(IList<AnthropicToolResultContent> Content, string Role = "user") : IMessage<IList<AnthropicToolResultContent>>; |