From 9bc32789a63f21a218b605a655ca1f0540f2fe01 Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Sat, 21 Feb 2026 13:30:41 +0000 Subject: [PATCH] renaming downloading model to loading model --- .../frontend/src/features/chat/hooks/use-chat-model-runtime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/frontend/src/features/chat/hooks/use-chat-model-runtime.ts b/studio/frontend/src/features/chat/hooks/use-chat-model-runtime.ts index 175ccfba65..961967cc9c 100644 --- a/studio/frontend/src/features/chat/hooks/use-chat-model-runtime.ts +++ b/studio/frontend/src/features/chat/hooks/use-chat-model-runtime.ts @@ -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",