18 references to ImageGenerationToolResultContent
Microsoft.Extensions.AI (1)
ChatCompletion\ImageGeneratingChatClient.cs (1)
350
newContents.Add(new
ImageGenerationToolResultContent
Microsoft.Extensions.AI.Abstractions.Tests (13)
ChatCompletion\ChatResponseUpdateExtensionsTests.cs (7)
934
new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = "img1", Outputs = [image1] }] },
937
new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = "img2", Outputs = [image2] }] },
940
new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = "img1", Outputs = [image3] }] },
943
new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = "img2", Outputs = [image4] }] },
988
new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = null, Outputs = [image1] }] },
991
new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = "", Outputs = [image2] }] },
994
new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = null, Outputs = [image3] }] },
Contents\AIContentTests.cs (1)
80
new
ImageGenerationToolResultContent
{ ImageId = "img456", Outputs = [new DataContent(new byte[] { 4, 5, 6 }, "image/png")] }
Contents\ImageGenerationToolResultContentTests.cs (5)
15
ImageGenerationToolResultContent c =
new
();
25
ImageGenerationToolResultContent c =
new
();
50
ImageGenerationToolResultContent c =
new
()
71
ImageGenerationToolResultContent content =
new
()
97
AIContent content = new
ImageGenerationToolResultContent
Microsoft.Extensions.AI.OpenAI (2)
OpenAIResponsesChatClient.cs (2)
1430
contents.Add(new
ImageGenerationToolResultContent
1443
return new
ImageGenerationToolResultContent
Microsoft.Extensions.AI.Tests (2)
ChatCompletion\OpenTelemetryChatClientTests.cs (2)
617
new
ImageGenerationToolResultContent
{ ImageId = "img-123", Outputs = [new UriContent(new Uri("https://example.com/image.png"), "image/png")] },
633
yield return new() { Contents = [new
ImageGenerationToolResultContent
{ ImageId = "img-123", Outputs = [new UriContent(new Uri("https://example.com/image.png"), "image/png")] }] };