This commit is contained in:
Timothy Jaeryang Baek 2024-11-26 08:55:34 -08:00
parent dc7221816f
commit 442f99e075

View File

@ -51,6 +51,8 @@
onMount(async () => {
config = await getModelsConfig(localStorage.token);
defaultModelIds = config.DEFAULT_MODELS.split(',').filter((id) => id);
const modelOrderList = config.MODEL_ORDER_LIST || [];
const allModelIds = $models.map((model) => model.id);