using System.Runtime.InteropServices; namespace LLama.Native; /// <summary> /// LLaVa Image embeddings /// </summary> [StructLayout(LayoutKind.Sequential)] unsafe public struct LLavaImageEmbed { public float* embed; public int n_image_pos; }
C#/.NET上易用的LLM高性能推理框架,支持LLaMA和LLaVA系列模型。