We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328022b commit 18b1518Copy full SHA for 18b1518
LLama.Web/Models/LLamaModel.cs
@@ -58,7 +58,7 @@ public Task<LLamaContext> CreateContext(string contextName)
58
if (_config.MaxInstances > -1 && ContextCount >= _config.MaxInstances)
59
throw new Exception($"Maximum model instances reached");
60
61
- context = _weights.CreateContext(_config);
+ context = _weights.CreateContext(_config, _llamaLogger);
62
if (_contexts.TryAdd(contextName, context))
63
return Task.FromResult(context);
64
0 commit comments