diff --git a/LLama/Native/SafeLlamaModelHandle.cs b/LLama/Native/SafeLlamaModelHandle.cs index 64ba9073..79714fea 100644 --- a/LLama/Native/SafeLlamaModelHandle.cs +++ b/LLama/Native/SafeLlamaModelHandle.cs @@ -15,8 +15,14 @@ namespace LLama.Native /// public int VocabCount { get; set; } + /// + /// Total number of tokens in the context + /// public int ContextSize { get; set; } + /// + /// Dimension of embedding vectors + /// public int EmbeddingCount { get; set; } internal SafeLlamaModelHandle(IntPtr handle)