3 instantiations of ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (3)
8 references to ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (8)
Functions\AIFunctionFactory.cs (8)
131return ReflectionAIFunction.Build(method.Method, method.Target, options ?? _defaultOptions);
215return ReflectionAIFunction.Build(method.Method, method.Target, createOptions);
303return ReflectionAIFunction.Build(method, target, options ?? _defaultOptions);
397return ReflectionAIFunction.Build(method, target, createOptions);
496ReflectionAIFunction.Build(method, createInstanceFunc, options ?? _defaultOptions);
533public static ReflectionAIFunction Build(MethodInfo method, object? target, AIFunctionFactoryOptions options)
558public static ReflectionAIFunction Build(
856public ReflectionAIFunction? CachedDefaultInstance { get; set; }