Spaces:
Sleeping
Sleeping
File size: 378 Bytes
7d7d91d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | using Microsoft.SemanticKernel;
namespace FoodHealthChecker.SemanticKernel.Filters
{
//TODO - Update to use filters plugin
public class FoodCheckPromptRenderFilter : IPromptRenderFilter
{
public async Task OnPromptRenderAsync(PromptRenderContext context, Func<PromptRenderContext, Task> next)
{
await next(context);
}
}
}
|