fix: remove warmup text inference status

This commit is contained in:
imagineer99 2026-02-20 15:35:06 +00:00
commit 2697b9ed74

View file

@ -159,7 +159,7 @@ export function createOpenAIStreamAdapter(): ChatModelAdapter {
if (abortSignal.aborted) return;
warmupToastShown = true;
toast.promise(firstTokenPromise, {
loading: "Warming up model",
loading: "Generating",
success: "Generating",
error: (err) =>
err instanceof Error && err.message ? err.message : "Generation failed",