-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathInternalAssistantsApiResponseFormat.Serialization.cs
More file actions
137 lines (122 loc) · 5.97 KB
/
InternalAssistantsApiResponseFormat.Serialization.cs
File metadata and controls
137 lines (122 loc) · 5.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// <auto-generated/>
#nullable disable
using System;
using System.ClientModel;
using System.ClientModel.Primitives;
using System.Collections.Generic;
using System.Text.Json;
namespace OpenAI.Assistants
{
internal partial class InternalAssistantsApiResponseFormat : IJsonModel<InternalAssistantsApiResponseFormat>
{
void IJsonModel<InternalAssistantsApiResponseFormat>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<InternalAssistantsApiResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(InternalAssistantsApiResponseFormat)} does not support writing '{format}' format.");
}
writer.WriteStartObject();
if (SerializedAdditionalRawData?.ContainsKey("type") != true && Optional.IsDefined(Type))
{
writer.WritePropertyName("type"u8);
writer.WriteStringValue(Type.Value.ToString());
}
if (SerializedAdditionalRawData != null)
{
foreach (var item in SerializedAdditionalRawData)
{
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
}
}
writer.WriteEndObject();
}
InternalAssistantsApiResponseFormat IJsonModel<InternalAssistantsApiResponseFormat>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<InternalAssistantsApiResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(InternalAssistantsApiResponseFormat)} does not support reading '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeInternalAssistantsApiResponseFormat(document.RootElement, options);
}
internal static InternalAssistantsApiResponseFormat DeserializeInternalAssistantsApiResponseFormat(JsonElement element, ModelReaderWriterOptions options = null)
{
options ??= ModelSerializationExtensions.WireOptions;
if (element.ValueKind == JsonValueKind.Null)
{
return null;
}
InternalAssistantsApiResponseFormatType? type = default;
IDictionary<string, BinaryData> serializedAdditionalRawData = default;
Dictionary<string, BinaryData> rawDataDictionary = new Dictionary<string, BinaryData>();
foreach (var property in element.EnumerateObject())
{
if (property.NameEquals("type"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
type = new InternalAssistantsApiResponseFormatType(property.Value.GetString());
continue;
}
if (true)
{
rawDataDictionary ??= new Dictionary<string, BinaryData>();
rawDataDictionary.Add(property.Name, BinaryData.FromString(property.Value.GetRawText()));
}
}
serializedAdditionalRawData = rawDataDictionary;
return new InternalAssistantsApiResponseFormat(type, serializedAdditionalRawData);
}
BinaryData IPersistableModel<InternalAssistantsApiResponseFormat>.Write(ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<InternalAssistantsApiResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options);
default:
throw new FormatException($"The model {nameof(InternalAssistantsApiResponseFormat)} does not support writing '{options.Format}' format.");
}
}
InternalAssistantsApiResponseFormat IPersistableModel<InternalAssistantsApiResponseFormat>.Create(BinaryData data, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<InternalAssistantsApiResponseFormat>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
{
using JsonDocument document = JsonDocument.Parse(data);
return DeserializeInternalAssistantsApiResponseFormat(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(InternalAssistantsApiResponseFormat)} does not support reading '{options.Format}' format.");
}
}
string IPersistableModel<InternalAssistantsApiResponseFormat>.GetFormatFromOptions(ModelReaderWriterOptions options) => "J";
internal static InternalAssistantsApiResponseFormat FromResponse(PipelineResponse response)
{
using var document = JsonDocument.Parse(response.Content);
return DeserializeInternalAssistantsApiResponseFormat(document.RootElement);
}
internal virtual BinaryContent ToBinaryContent()
{
return BinaryContent.Create(this, ModelSerializationExtensions.WireOptions);
}
}
}