3 instantiations of ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (3)
8 references to ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (8)
Functions\AIFunctionFactory.cs (8)
116return ReflectionAIFunction.Build(method.Method, method.Target, options ?? _defaultOptions);
200return ReflectionAIFunction.Build(method.Method, method.Target, createOptions);
286return ReflectionAIFunction.Build(method, target, options ?? _defaultOptions);
380return ReflectionAIFunction.Build(method, target, createOptions);
477ReflectionAIFunction.Build(method, createInstanceFunc, options ?? _defaultOptions);
514public static ReflectionAIFunction Build(MethodInfo method, object? target, AIFunctionFactoryOptions options)
539public static ReflectionAIFunction Build(
757public ReflectionAIFunction? CachedDefaultInstance { get; set; }