We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64f5795 commit 5948fe5Copy full SHA for 5948fe5
Runtime/LLM.cs
@@ -65,7 +65,7 @@ public class LLM : MonoBehaviour
65
/// }
66
/// \endcode
67
/// </summary>
68
- [LLMAdvanced] public bool asynchronousStartup = false;
+ [LLMAdvanced] public bool asynchronousStartup = true;
69
/// <summary> select to not destroy the LLM GameObject when loading a new Scene. </summary>
70
[LLMAdvanced] public bool dontDestroyOnLoad = true;
71
/// <summary> the path of the model being used (relative to the Assets/StreamingAssets folder).
@@ -177,6 +177,7 @@ protected virtual string GetLlamaccpArguments()
177
return null;
178
}
179
string modelPath = LLMUnitySetup.GetAssetPath(model);
180
+ Debug.Log(modelPath);
181
if (!File.Exists(modelPath))
182
{
183
Debug.LogError($"File {modelPath} not found!");
0 commit comments