From 6a69ad6267282167e270d589081935ec6406b38b Mon Sep 17 00:00:00 2001 From: Tony Salomone <dadmobile@gmail.com> Date: Thu, 9 May 2024 14:34:58 -0400 Subject: [PATCH] Remove link to deprecated import endpoint --- src/renderer/lib/transformerlab-api-sdk.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/renderer/lib/transformerlab-api-sdk.ts b/src/renderer/lib/transformerlab-api-sdk.ts index e3c76524..ccac7e0f 100644 --- a/src/renderer/lib/transformerlab-api-sdk.ts +++ b/src/renderer/lib/transformerlab-api-sdk.ts @@ -588,8 +588,6 @@ Endpoints.Models = { API_URL() + 'model/details/' + convertSlashInUrl(modelId), GetLocalHFConfig: (modelId: string) => API_URL() + 'model/get_local_hfconfig?model_id=' + modelId, - ImportFromHFCache: (modelId: string) => - API_URL() + 'model/hfcache_import?model_id=' + modelId, GetLocalUninstalled: () => API_URL() + 'model/list_local_uninstalled', ImportLocal: (modelSource: string, modelId: string) => API_URL() + 'model/import_local?model_source=' + modelSource + '&model_id=' + modelId, -- GitLab