feat: add models for streaming messages

This commit is contained in:
Stevan Freeborn
2024-06-28 10:54:00 -05:00
parent 422719f509
commit a4784fd5db
27 changed files with 551 additions and 111 deletions
@@ -0,0 +1,18 @@
using System.Text.Json.Serialization;
namespace AnthropicClient.Models;
public class ContentStopEventData : EventData
{
public int Index { get; init; }
[JsonConstructor]
internal ContentStopEventData() : base(EventType.ContentBlockStop)
{
}
public ContentStopEventData(int index) : base(EventType.ContentBlockStop)
{
Index = index;
}
}