We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebd1fc commit 3bf438dCopy full SHA for 3bf438d
src/common/server/index.ts
@@ -233,12 +233,9 @@ class Server {
233
const osplatform = os.platform();
234
const osmachine = os.machine();
235
const isMacArm64 = osplatform === "darwin" && osmachine === "arm64";
236
- const res = await fetch(
237
- `${this.serverUrl}/${isMacArm64 ? "model.json" : "health"}`,
238
- {
239
- method: "GET",
240
- }
241
- );
+ const res = await fetch(`${this.serverUrl}/${"health"}`, {
+ method: "GET",
+ });
242
if (res.ok) {
243
if (isMacArm64) {
244
this.status = "started";
0 commit comments