// ReSharper disable NotAccessedPositionalProperty.Global
namespace AIStudio.Provider.Anthropic;
///
/// The delta object of a response line.
///
/// The type of the delta.
/// The text of the delta.
public readonly record struct Delta(string Type, string Text);