using Microsoft.SemanticKernel.AI.ChatCompletion;
namespace LLamaSharp.SemanticKernel.ChatCompletion;
///
/// LLamaSharp Chat Message
///
public class LLamaSharpChatMessage : ChatMessage
{
///
public LLamaSharpChatMessage(AuthorRole role, string content) : base(role, content)
{
}
}