Skip to content
New issue

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

Added public property to see if the server is listening #41

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Runtime/LLM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ public class LLM : LLMClient
[HideInInspector] public float modelCopyProgress = 1;
private static float binariesDone = 0;
private Process process;
private bool serverListening = false;
public bool serverListening { get; private set} = false;
private ManualResetEvent serverBlock = new ManualResetEvent(false);

private static string GetAssetPath(string relPath = "")
{
// Path to store llm server binaries and models
Expand Down
Loading