5 instantiations of AIFunctionFactoryCreateOptions
Microsoft.Extensions.AI (3)
Functions\AIFunctionFactory.cs (3)
25private static readonly AIFunctionFactoryCreateOptions _defaultOptions = new(); 82: new() 160: new()
Microsoft.Extensions.AI.Tests (2)
Functions\AIFunctionFactoryTest.cs (2)
162var options = new AIFunctionFactoryCreateOptions 189var options = new AIFunctionFactoryCreateOptions();
14 references to AIFunctionFactoryCreateOptions
Microsoft.Extensions.AI (12)
Functions\AIFunctionFactory.cs (11)
25private static readonly AIFunctionFactoryCreateOptions _defaultOptions = new(); 40/// <see cref="AIFunctionFactoryCreateOptions.SerializerOptions"/>. Arguments that are not already of the expected type are 42/// <see cref="AIFunctionFactoryCreateOptions.SerializerOptions"/>. If the argument is a <see cref="JsonElement"/>, 47public static AIFunction Create(Delegate method, AIFunctionFactoryCreateOptions? options) 80AIFunctionFactoryCreateOptions createOptions = serializerOptions is null && name is null && description is null 112/// <see cref="AIFunctionFactoryCreateOptions.SerializerOptions"/>. Arguments that are not already of the expected type are 114/// <see cref="AIFunctionFactoryCreateOptions.SerializerOptions"/>. If the argument is a <see cref="JsonElement"/>, 119public static AIFunction Create(MethodInfo method, object? target, AIFunctionFactoryCreateOptions? options) 158AIFunctionFactoryCreateOptions? createOptions = serializerOptions is null && name is null && description is null 189public ReflectionAIFunction(MethodInfo method, object? target, AIFunctionFactoryCreateOptions options) 339AIFunctionFactoryCreateOptions options,
Functions\AIFunctionFactoryCreateOptions.cs (1)
22/// Initializes a new instance of the <see cref="AIFunctionFactoryCreateOptions"/> class.
Microsoft.Extensions.AI.Tests (2)
Functions\AIFunctionFactoryTest.cs (2)
162var options = new AIFunctionFactoryCreateOptions 189var options = new AIFunctionFactoryCreateOptions();