From 6985d3ab60264c2af14258b60db350f82028e94b Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Thu, 27 Jul 2023 18:58:29 +0100 Subject: [PATCH] Added comments on two properties --- LLama/Native/SafeLlamaModelHandle.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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)