4 references to DataContent
Microsoft.Extensions.AI.Abstractions.Tests (2)
ChatCompletion\ChatMessageTests.cs (1)
247
new
DataContent
(new BinaryData(new[] { 1, 2, 3 }, options: TestJsonSerializerContext.Default.Options), "mime-type/3")
Contents\DataContentTests.cs (1)
79
content = new
DataContent
(new byte[] { 0, 1, 2 }, mediaType);
Microsoft.Extensions.AI.OpenAI (2)
OpenAIChatClient.cs (2)
416
var dc = new
DataContent
(audio.AudioBytes.ToMemory(), mimeType)
700
contentPart.ImageBytes is not null ? new
DataContent
(contentPart.ImageBytes.ToMemory(), contentPart.ImageBytesMediaType) :