// <auto-generated/>
#nullable disable
using System;
using System.ClientModel.Primitives;
using System.Text.Json;
using OpenAI;
namespace OpenAI.Assistants
{
[PersistableModelProxy(typeof(InternalUnknownDotNetAssistantResponseFormat))]
public partial class AssistantResponseFormat : IJsonModel<AssistantResponseFormat>
{
internal AssistantResponseFormat()
{
}
protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
string format = options.Format == "W" ? ((IPersistableModel<AssistantResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(AssistantResponseFormat)} does not support writing '{format}' format.");
}
if (_additionalBinaryDataProperties?.ContainsKey("type") != true)
{
writer.WritePropertyName("type"u8);
writer.WriteStringValue(Kind.ToString());
}
// Plugin customization: remove options.Format != "W" check
if (_additionalBinaryDataProperties != null)
{
foreach (var item in _additionalBinaryDataProperties)
{
if (ModelSerializationExtensions.IsSentinelValue(item.Value))
{
continue;
}
writer.WritePropertyName(item.Key);
#if NET6_0_OR_GREATER
writer.WriteRawValue(item.Value);
#else
using (JsonDocument document = JsonDocument.Parse(item.Value))
{
JsonSerializer.Serialize(writer, document.RootElement);
}
#endif
}
}
}
protected virtual AssistantResponseFormat JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
string format = options.Format == "W" ? ((IPersistableModel<AssistantResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(AssistantResponseFormat)} does not support reading '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeAssistantResponseFormat(document.RootElement, options);
}
protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options)
{
string format = options.Format == "W" ? ((IPersistableModel<AssistantResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options, OpenAIContext.Default);
default:
throw new FormatException($"The model {nameof(AssistantResponseFormat)} does not support writing '{options.Format}' format.");
}
}
protected virtual AssistantResponseFormat PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options)
{
string format = options.Format == "W" ? ((IPersistableModel<AssistantResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
using (JsonDocument document = JsonDocument.Parse(data))
{
return DeserializeAssistantResponseFormat(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(AssistantResponseFormat)} does not support reading '{options.Format}' format.");
}
}
}
}openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Generated/Models/Assistants/AssistantResponseFormat.Serialization.cs
91lines · modepreview