We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97a5b27 commit 573da20Copy full SHA for 573da20
Runtime/LLM.cs
@@ -377,8 +377,8 @@ private void InitService(string arguments)
377
{
378
if (debug) CallWithLock(SetupLogging);
379
CallWithLock(() => { LLMObject = llmlib.LLM_Construct(arguments); });
380
- if (remote) CallWithLock(() => llmlib.LLM_StartServer(LLMObject));
381
CallWithLock(() => llmlib.LLM_SetTemplate(LLMObject, chatTemplate));
+ if (remote) CallWithLock(() => llmlib.LLM_StartServer(LLMObject));
382
CallWithLock(() => CheckLLMStatus(false));
383
}
384
0 commit comments