Fixed build error caused by extra unnecessary parameter

This commit is contained in:
Martin Evans 2024-01-23 15:09:20 +00:00
parent 96c26c25f5
commit a690db5d3e
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace LLama
_weights = weights; _weights = weights;
_params = @params; _params = @params;
_logger = logger; _logger = logger;
_batch = new LLamaBatch(1); _batch = new LLamaBatch();
Context = _weights.CreateContext(_params, logger); Context = _weights.CreateContext(_params, logger);
Context.Dispose(); Context.Dispose();