From d5de0ae9ae4bd474c22b7ca9afe8eb532c2296b6 Mon Sep 17 00:00:00 2001 From: STetsing <41009393+STetsing@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:51:31 +0200 Subject: [PATCH] updated bins --- apps/remixdesktop/src/lib/InferenceServerManager.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/remixdesktop/src/lib/InferenceServerManager.ts b/apps/remixdesktop/src/lib/InferenceServerManager.ts index 70af0907fb..fe5ba918eb 100644 --- a/apps/remixdesktop/src/lib/InferenceServerManager.ts +++ b/apps/remixdesktop/src/lib/InferenceServerManager.ts @@ -152,7 +152,6 @@ export class InferenceManager implements ICompletions { // console.log('completion is runnig', state.data?.completion) // console.log('general is runnig', state.data?.general) } - // this._handleResources() } @@ -266,11 +265,11 @@ export class InferenceManager implements ICompletions { // get platform name and return the path to the python script let exec_name = '' if (process.platform === 'win32') { - exec_name = 'InferenceServer_' + process.platform + '_' + exec_suffix + '.exe' + exec_name = 'InferenceServer_' + process.platform + '.exe' } else if (process.platform === 'linux') { exec_name = 'InferenceServer_' + process.platform + '_' + exec_suffix } else if (process.platform === 'darwin') { - exec_name = 'InferenceServer_' + process.platform + '_' + exec_suffix + exec_name = 'InferenceServer_' + 'mac' } else { throw new Error('Unsupported platform') }