3 instantiations of ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (3)
8 references to ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (8)
Functions\AIFunctionFactory.cs (8)
114return ReflectionAIFunction.Build(method.Method, method.Target, options ?? _defaultOptions);
196return ReflectionAIFunction.Build(method.Method, method.Target, createOptions);
280return ReflectionAIFunction.Build(method, target, options ?? _defaultOptions);
372return ReflectionAIFunction.Build(method, target, createOptions);
467ReflectionAIFunction.Build(method, createInstanceFunc, options ?? _defaultOptions);
471public static ReflectionAIFunction Build(MethodInfo method, object? target, AIFunctionFactoryOptions options)
496public static ReflectionAIFunction Build(
708public ReflectionAIFunction? CachedDefaultInstance { get; set; }