We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// Singleton instance public static LlmManager Instance { get; private set; }
if (Instance == null) { Instance = this; } else { DestroyImmediate(this); }
public string GetModelPath(string modelPath) { return Path.Combine(Application.streamingAssetsPath, modelPath); }
// correcting faulty path by getting it from one central In-App location var path = GetModelPath(modelPath);
// correcting faulty path by getting it from one central In-App location var path = LlmManager.Instance.GetModelPath(modelPath);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
**Sinds u promote both methods of installing (package manager or cloning/downloading the git)
**add this above async void Awake in LlManager.cs
**add this inside async void Awake in LlManager.cs
Put this method in Llmanager.cs:
And this around line 117:
Then in LlWrapper.cs around line 202:
The text was updated successfully, but these errors were encountered: