using LLama.Common;
using System.Text;
using static LLama.LLamaTransforms;
namespace LLamaSharp.SemanticKernel.ChatCompletion;
///
/// Default HistoryTransform Patch
///
public class HistoryTransform : DefaultHistoryTransform
{
///
public override string HistoryToText(global::LLama.Common.ChatHistory history)
{
return base.HistoryToText(history) + $"{AuthorRole.Assistant}: ";
}
}