8 references to AddAIContentType
Microsoft.Extensions.AI.Abstractions.Tests (8)
Utilities\AIJsonUtilitiesTests.cs (8)
304options.AddAIContentType<DerivedAIContent>("derivativeContent"); 317Assert.Throws<InvalidOperationException>(() => AIJsonUtilities.DefaultOptions.AddAIContentType<DerivedAIContent>("derivativeContent")); 333Assert.Throws<ArgumentException>(() => options.AddAIContentType<AIContent>("discriminator")); 334Assert.Throws<ArgumentException>(() => options.AddAIContentType<TextContent>("discriminator")); 341options.AddAIContentType<DerivedAIContent>("text"); 342options.AddAIContentType<DerivedAIContent>("audio"); 352Assert.Throws<ArgumentNullException>(() => ((JsonSerializerOptions)null!).AddAIContentType<DerivedAIContent>("discriminator")); 354Assert.Throws<ArgumentNullException>(() => options.AddAIContentType<DerivedAIContent>(null!));