feat(filters): add model type filter

This commit is contained in:
Will Miao
2025-11-18 16:43:44 +08:00
parent 57f369a6de
commit e9d55fe146
17 changed files with 179 additions and 17 deletions

View File

@@ -848,6 +848,12 @@ export class BaseModelApiClient {
}
}
}
if (pageState.filters.modelTypes && pageState.filters.modelTypes.length > 0) {
pageState.filters.modelTypes.forEach((type) => {
params.append('model_type', type);
});
}
}
this._addModelSpecificParams(params, pageState);