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