7 references to UriContent
Microsoft.Extensions.AI.Abstractions (1)
Contents\UriContent.cs (1)
40
:
this
(new Uri(Throw.IfNull(uri)), mediaType)
Microsoft.Extensions.AI.Abstractions.Tests (4)
Contents\UriContentTests.cs (4)
16
Assert.Throws<ArgumentNullException>("uri", () => new
UriContent
((Uri)null!, "image/png"));
23
Assert.Throws<ArgumentNullException>("mediaType", () => new
UriContent
(new Uri("data:image/png;base64,aGVsbG8="), null!));
24
Assert.Throws<ArgumentException>("mediaType", () => new
UriContent
(new Uri("data:image/png;base64,aGVsbG8="), ""));
25
Assert.Throws<ArgumentException>("mediaType", () => new
UriContent
(new Uri("data:image/png;base64,aGVsbG8="), "audio"));
Microsoft.Extensions.AI.OpenAI (2)
OpenAIModelMapper.ChatCompletion.cs (1)
570
contentPart.ImageUri is not null ? new
UriContent
(contentPart.ImageUri, "image/*") :
OpenAIModelMapper.ChatMessage.cs (1)
212
contents.Add(new
UriContent
(uri, "image/*"));