From 2cb2fa8a76a46bc2efb685c787c5cc1ebb17f486 Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Tue, 14 Apr 2026 23:34:09 +0400 Subject: [PATCH] studio(frontend): exportGGUF now takes quantization_method: string[] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Widen the API client signature to match the backend's new list-accepting contract. The serial-loop caller in export-page.tsx is broken by this commit on purpose — the next commit removes the loop and passes the full quantLevels array in one call. --- studio/frontend/src/features/export/api/export-api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/frontend/src/features/export/api/export-api.ts b/studio/frontend/src/features/export/api/export-api.ts index aff56c3e6a..dd3544d164 100644 --- a/studio/frontend/src/features/export/api/export-api.ts +++ b/studio/frontend/src/features/export/api/export-api.ts @@ -99,7 +99,7 @@ export async function exportBase(params: { export async function exportGGUF(params: { save_directory: string; - quantization_method: string; + quantization_method: string[]; push_to_hub?: boolean; repo_id?: string | null; hf_token?: string | null;