15 lines
339 B
C#
15 lines
339 B
C#
using Microsoft.SemanticKernel.AI.ChatCompletion;
|
|
|
|
namespace LLamaSharp.SemanticKernel.ChatCompletion;
|
|
|
|
/// <summary>
|
|
/// LLamaSharp Chat Message
|
|
/// </summary>
|
|
public class LLamaSharpChatMessage : ChatMessage
|
|
{
|
|
/// <inheritdoc/>
|
|
public LLamaSharpChatMessage(AuthorRole role, string content) : base(role, content)
|
|
{
|
|
}
|
|
}
|