renaming downloading model to loading model

This commit is contained in:
Roland Tannous 2026-02-21 13:30:41 +00:00
commit 9bc32789a6

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",