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 4ec9aed commit 952e77fCopy full SHA for 952e77f
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, _llamaLogger);
+ context = _weights.CreateContext(_config);
62
if (_contexts.TryAdd(contextName, context))
63
return Task.FromResult(context);
64
0 commit comments