You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

LLamaSharpChatMessage.cs 343 B

1234567891011121314
  1. using Microsoft.SemanticKernel.AI.ChatCompletion;
  2. namespace LLamaSharp.SemanticKernel.ChatCompletion;
  3. /// <summary>
  4. /// LLamaSharp Chat Message
  5. /// </summary>
  6. public class LLamaSharpChatMessage : ChatMessageBase
  7. {
  8. /// <inheritdoc/>
  9. public LLamaSharpChatMessage(AuthorRole role, string content) : base(role, content)
  10. {
  11. }
  12. }