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) { } }
C#/.NET上易用的LLM高性能推理框架,支持LLaMA和LLaVA系列模型。