File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public class LLM : MonoBehaviour
65
65
/// }
66
66
/// \endcode
67
67
/// </summary>
68
- [ LLMAdvanced ] public bool asynchronousStartup = false ;
68
+ [ LLMAdvanced ] public bool asynchronousStartup = true ;
69
69
/// <summary> select to not destroy the LLM GameObject when loading a new Scene. </summary>
70
70
[ LLMAdvanced ] public bool dontDestroyOnLoad = true ;
71
71
/// <summary> the path of the model being used (relative to the Assets/StreamingAssets folder).
@@ -177,6 +177,7 @@ protected virtual string GetLlamaccpArguments()
177
177
return null ;
178
178
}
179
179
string modelPath = LLMUnitySetup . GetAssetPath ( model ) ;
180
+ Debug . Log ( modelPath ) ;
180
181
if ( ! File . Exists ( modelPath ) )
181
182
{
182
183
Debug . LogError ( $ "File { modelPath } not found!") ;
You can’t perform that action at this time.
0 commit comments