3 instantiations of ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (3)
8 references to ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (8)
Functions\AIFunctionFactory.cs (8)
111return ReflectionAIFunction.Build(method.Method, method.Target, options ?? _defaultOptions);
193return ReflectionAIFunction.Build(method.Method, method.Target, createOptions);
277return ReflectionAIFunction.Build(method, target, options ?? _defaultOptions);
369return ReflectionAIFunction.Build(method, target, createOptions);
464ReflectionAIFunction.Build(method, createInstanceFunc, options ?? _defaultOptions);
501public static ReflectionAIFunction Build(MethodInfo method, object? target, AIFunctionFactoryOptions options)
526public static ReflectionAIFunction Build(
744public ReflectionAIFunction? CachedDefaultInstance { get; set; }