studio(frontend): exportGGUF now takes quantization_method: string[]

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.
This commit is contained in:
Roland Tannous 2026-04-14 23:34:09 +04:00
commit 2cb2fa8a76

View file

@ -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;