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.
|
- using System.Runtime.InteropServices;
-
- namespace LLama.Native;
-
- /// <summary>
- ///
- /// </summary>
- /// <remarks>llama_chat_message</remarks>
- [StructLayout(LayoutKind.Sequential)]
- public unsafe struct LLamaChatMessage
- {
- /// <summary>
- /// Pointer to the null terminated bytes that make up the role string
- /// </summary>
- public byte* role;
-
- /// <summary>
- /// Pointer to the null terminated bytes that make up the content string
- /// </summary>
- public byte* content;
- }
|