Merge pull request #202 from unslothai/fix/rename-downloading-model-to-loading-model

renaming downloading model to loading model
This commit is contained in:
Roland Tannous 2026-02-21 17:32:32 +04:00 committed by GitHub
commit 000da20237

View file

@ -187,7 +187,7 @@ export function useChatModelRuntime() {
});
await toast.promise(loadPromise, {
loading: "Downloading model…",
loading: "Loading model…",
success: `${displayName} loaded`,
error: (err) =>
err instanceof Error ? err.message : "Failed to load model",