// #nullable disable using System; using System.ClientModel.Primitives; using System.Collections.Generic; using System.Text.Json; using OpenAI; namespace OpenAI.Evals { internal partial class InternalCreateEvalItem1 : IJsonModel { internal InternalCreateEvalItem1() { } protected virtual InternalCreateEvalItem1 PersistableModelCreateCore(BinaryData data, ModelReaderWriterOptions options) { string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": using (JsonDocument document = JsonDocument.Parse(data, ModelSerializationExtensions.JsonDocumentOptions)) { return DeserializeInternalCreateEvalItem1(document.RootElement, options); } default: throw new FormatException($"The model {nameof(InternalCreateEvalItem1)} does not support reading '{options.Format}' format."); } } protected virtual BinaryData PersistableModelWriteCore(ModelReaderWriterOptions options) { string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; switch (format) { case "J": return ModelReaderWriter.Write(this, options, OpenAIContext.Default); default: throw new FormatException($"The model {nameof(InternalCreateEvalItem1)} does not support writing '{options.Format}' format."); } } BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); InternalCreateEvalItem1 IPersistableModel.Create(BinaryData data, ModelReaderWriterOptions options) => PersistableModelCreateCore(data, options); string IPersistableModel.GetFormatFromOptions(ModelReaderWriterOptions options) => "J"; void IJsonModel.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options) { writer.WriteStartObject(); JsonModelWriteCore(writer, options); writer.WriteEndObject(); } protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options) { string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { throw new FormatException($"The model {nameof(InternalCreateEvalItem1)} does not support writing '{format}' format."); } if (_additionalBinaryDataProperties?.ContainsKey("role") != true) { writer.WritePropertyName("role"u8); writer.WriteStringValue(Role); } if (_additionalBinaryDataProperties?.ContainsKey("content") != true) { writer.WritePropertyName("content"u8); writer.WriteStringValue(Content); } // 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 } } } InternalCreateEvalItem1 IJsonModel.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options) => JsonModelCreateCore(ref reader, options); protected virtual InternalCreateEvalItem1 JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options) { string format = options.Format == "W" ? ((IPersistableModel)this).GetFormatFromOptions(options) : options.Format; if (format != "J") { throw new FormatException($"The model {nameof(InternalCreateEvalItem1)} does not support reading '{format}' format."); } using JsonDocument document = JsonDocument.ParseValue(ref reader); return DeserializeInternalCreateEvalItem1(document.RootElement, options); } internal static InternalCreateEvalItem1 DeserializeInternalCreateEvalItem1(JsonElement element, ModelReaderWriterOptions options) { if (element.ValueKind == JsonValueKind.Null) { return null; } string role = default; string content = default; IDictionary additionalBinaryDataProperties = new ChangeTrackingDictionary(); foreach (var prop in element.EnumerateObject()) { if (prop.NameEquals("role"u8)) { role = prop.Value.GetString(); continue; } if (prop.NameEquals("content"u8)) { content = prop.Value.GetString(); continue; } // Plugin customization: remove options.Format != "W" check additionalBinaryDataProperties.Add(prop.Name, BinaryData.FromString(prop.Value.GetRawText())); } return new InternalCreateEvalItem1(role, content, additionalBinaryDataProperties); } } }