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