using System.Runtime.InteropServices; namespace LLama.Native; /// /// LLaVa Image embeddings /// [StructLayout(LayoutKind.Sequential)] unsafe public struct LLavaImageEmbed { public float* embed; public int n_image_pos; }