3 instantiations of ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (3)
8 references to ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (8)
Functions\AIFunctionFactory.cs (8)
110return ReflectionAIFunction.Build(method.Method, method.Target, options ?? _defaultOptions);
188return ReflectionAIFunction.Build(method.Method, method.Target, createOptions);
268return ReflectionAIFunction.Build(method, target, options ?? _defaultOptions);
356return ReflectionAIFunction.Build(method, target, createOptions);
447ReflectionAIFunction.Build(method, createInstanceFunc, options ?? _defaultOptions);
484public static ReflectionAIFunction Build(MethodInfo method, object? target, AIFunctionFactoryOptions options)
509public static ReflectionAIFunction Build(
727public ReflectionAIFunction? CachedDefaultInstance { get; set; }