using System.ClientModel.Primitives;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
namespace OpenAI.Assistants;
/// <summary>
/// The update type presented when the status of a <see cref="ThreadRun"/> has changed.
/// </summary>
[Experimental("OPENAI001")]
public class RunUpdate : StreamingUpdate<ThreadRun>
{
internal RunUpdate(ThreadRun run, StreamingUpdateReason updateKind) : base(run, updateKind)
{ }
internal static IEnumerable<StreamingUpdate<ThreadRun>> DeserializeRunUpdates(
JsonElement element,
StreamingUpdateReason updateKind,
ModelReaderWriterOptions options = null)
{
ThreadRun run = ThreadRun.DeserializeThreadRun(element, options);
return updateKind switch
{
_ => [new RunUpdate(run, updateKind)],
};
}
}openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Assistants/Streaming/RunUpdate.cs
28lines · modepreview