From 7526662fa78b1e19a8463dd5de8db715b95e8ef1 Mon Sep 17 00:00:00 2001 From: Matt Ahearn <59938342+mattahearn@users.noreply.github.com> Date: Fri, 12 Apr 2024 12:26:41 -0400 Subject: [PATCH] Uncommented AddKernelSetupHook() call for complimentary setup of the kernel --- webapi/Extensions/SemanticKernelExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapi/Extensions/SemanticKernelExtensions.cs b/webapi/Extensions/SemanticKernelExtensions.cs index f45959393..161e99383 100644 --- a/webapi/Extensions/SemanticKernelExtensions.cs +++ b/webapi/Extensions/SemanticKernelExtensions.cs @@ -76,7 +76,7 @@ public static WebApplicationBuilder AddSemanticKernelServices(this WebApplicatio // Add any additional setup needed for the kernel. // Uncomment the following line and pass in a custom hook for any complimentary setup of the kernel. - // builder.Services.AddKernelSetupHook(customHook); + builder.Services.AddKernelSetupHook(RegisterPluginsAsync); return builder; }