import { Loader2 } from "lucide-react"; import { useLLM } from "../hooks/useLLM"; export function StatusBar() { const { status, tps, isGenerating } = useLLM(); if (status.state === "loading") { return (
{status.message ?? "Loading model…"}
{status.progress != null && (