using Microsoft.SemanticKernel; namespace FoodHealthChecker.SemanticKernel.Filters { //TODO - Update to use filters plugin public class FoodCheckPromptRenderFilter : IPromptRenderFilter { public async Task OnPromptRenderAsync(PromptRenderContext context, Func next) { await next(context); } } }