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)
16Assert.Throws<ArgumentNullException>("uri", () => new UriContent((Uri)null!, "image/png")); 23Assert.Throws<ArgumentNullException>("mediaType", () => new UriContent(new Uri("data:image/png;base64,aGVsbG8="), null!)); 24Assert.Throws<ArgumentException>("mediaType", () => new UriContent(new Uri("data:image/png;base64,aGVsbG8="), "")); 25Assert.Throws<ArgumentException>("mediaType", () => new UriContent(new Uri("data:image/png;base64,aGVsbG8="), "audio"));
Microsoft.Extensions.AI.OpenAI (2)
OpenAIModelMapper.ChatCompletion.cs (1)
570contentPart.ImageUri is not null ? new UriContent(contentPart.ImageUri, "image/*") :
OpenAIModelMapper.ChatMessage.cs (1)
212contents.Add(new UriContent(uri, "image/*"));