13 references to AddAIContentType
Microsoft.Extensions.AI.Abstractions.Tests (13)
Utilities\AIJsonUtilitiesTests.cs (13)
1238options.AddAIContentType<DerivedAIContent>("derivativeContent"); 1251Assert.Throws<InvalidOperationException>(() => AIJsonUtilities.DefaultOptions.AddAIContentType<DerivedAIContent>("derivativeContent")); 1267Assert.Throws<ArgumentException>("contentType", () => options.AddAIContentType<AIContent>("discriminator")); 1268Assert.Throws<ArgumentException>("contentType", () => options.AddAIContentType<TextContent>("discriminator")); 1278options.AddAIContentType<DerivedAIContent>("text"); 1279options.AddAIContentType<DerivedAIContent>("audio"); 1289Assert.Throws<ArgumentNullException>("options", () => ((JsonSerializerOptions)null!).AddAIContentType<DerivedAIContent>("discriminator")); 1291Assert.Throws<ArgumentNullException>("typeDiscriminatorId", () => options.AddAIContentType<DerivedAIContent>(null!)); 1308options.AddAIContentType<LeafContent>("leaf"); 1360options.AddAIContentType<DerivedToolCallContent>("derivedToolCall"); 1403options.AddAIContentType<DerivedAIContent>("derived"); 1404options.AddAIContentType<LeafContent>("leaf"); 1450options.AddAIContentType<LeafContent>("leaf");