using System.Runtime.InteropServices;
namespace LLama.Native;
///
///
///
/// llama_chat_message
[StructLayout(LayoutKind.Sequential)]
public unsafe struct LLamaChatMessage
{
///
/// Pointer to the null terminated bytes that make up the role string
///
public byte* role;
///
/// Pointer to the null terminated bytes that make up the content string
///
public byte* content;
}