From 73fe288e352f10b48a27f972d4f7f6c5b16116c7 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",