3 instantiations of ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (3)
8 references to ReflectionAIFunction
Microsoft.Extensions.AI.Abstractions (8)
Functions\AIFunctionFactory.cs (8)
115return ReflectionAIFunction.Build(method.Method, method.Target, options ?? _defaultOptions);
197return ReflectionAIFunction.Build(method.Method, method.Target, createOptions);
281return ReflectionAIFunction.Build(method, target, options ?? _defaultOptions);
373return ReflectionAIFunction.Build(method, target, createOptions);
468ReflectionAIFunction.Build(method, createInstanceFunc, options ?? _defaultOptions);
472public static ReflectionAIFunction Build(MethodInfo method, object? target, AIFunctionFactoryOptions options)
497public static ReflectionAIFunction Build(
715public ReflectionAIFunction? CachedDefaultInstance { get; set; }