5 instantiations of AIFunctionFactoryOptions
Microsoft.Extensions.AI (3)
Functions\AIFunctionFactory.cs (3)
26private static readonly AIFunctionFactoryOptions _defaultOptions = new(); 72: new() 139: new()
Microsoft.Extensions.AI.Tests (2)
Functions\AIFunctionFactoryTest.cs (2)
144var options = new AIFunctionFactoryOptions 167AIFunctionFactoryOptions options = new();
15 references to AIFunctionFactoryOptions
Microsoft.Extensions.AI (13)
Functions\AIFunctionFactory.cs (12)
26private static readonly AIFunctionFactoryOptions _defaultOptions = new(); 35/// <see cref="AIFunctionFactoryOptions.SerializerOptions"/>. Arguments that are not already of the expected type are 37/// <see cref="AIFunctionFactoryOptions.SerializerOptions"/>. If the argument is a <see cref="JsonElement"/>, 43public static AIFunction Create(Delegate method, AIFunctionFactoryOptions? options) 70AIFunctionFactoryOptions createOptions = serializerOptions is null && name is null && description is null 96/// <see cref="AIFunctionFactoryOptions.SerializerOptions"/>. Arguments that are not already of the expected type are 98/// <see cref="AIFunctionFactoryOptions.SerializerOptions"/>. If the argument is a <see cref="JsonElement"/>, 104public static AIFunction Create(MethodInfo method, object? target, AIFunctionFactoryOptions? options) 137AIFunctionFactoryOptions createOptions = serializerOptions is null && name is null && description is null 151public static ReflectionAIFunction Build(MethodInfo method, object? target, AIFunctionFactoryOptions options) 176private ReflectionAIFunction(ReflectionAIFunctionDescriptor functionDescriptor, object? target, AIFunctionFactoryOptions options) 230public static ReflectionAIFunctionDescriptor GetOrCreate(MethodInfo method, AIFunctionFactoryOptions options)
Functions\AIFunctionFactoryOptions.cs (1)
18/// Initializes a new instance of the <see cref="AIFunctionFactoryOptions"/> class.
Microsoft.Extensions.AI.Tests (2)
Functions\AIFunctionFactoryTest.cs (2)
144var options = new AIFunctionFactoryOptions 167AIFunctionFactoryOptions options = new();