Spaces:
Runtime error
Runtime error
File size: 5,621 Bytes
0971cc4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
"use client";
import React, { useEffect } from "react";
import {
CheckCircledIcon,
CrossCircledIcon,
DotFilledIcon,
HamburgerMenuIcon,
InfoCircledIcon,
} from "@radix-ui/react-icons";
import { Message } from "ai/react";
import { toast } from "sonner";
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet";
import {
Tooltip,
TooltipContent,
TooltipProvider,
TooltipTrigger,
} from "@/components/ui/tooltip";
import { encodeChat, tokenLimit } from "@/lib/token-counter";
import { basePath, useHasMounted } from "@/lib/utils";
import { Sidebar } from "../sidebar";
import { ChatOptions } from "./chat-options";
interface ChatTopbarProps {
chatOptions: ChatOptions;
setChatOptions: React.Dispatch<React.SetStateAction<ChatOptions>>;
isLoading: boolean;
chatId?: string;
setChatId: React.Dispatch<React.SetStateAction<string>>;
messages: Message[];
}
export default function ChatTopbar({
chatOptions,
setChatOptions,
isLoading,
chatId,
setChatId,
messages,
}: ChatTopbarProps) {
const hasMounted = useHasMounted();
const currentModel = chatOptions && chatOptions.selectedModel;
const [error, setError] = React.useState<string | undefined>(undefined);
const fetchData = async () => {
if (!hasMounted) {
return null;
}
try {
const res = await fetch(basePath + "/api/models");
if (!res.ok) {
const errorResponse = await res.json();
const errorMessage = `Connection to vLLM server failed: ${errorResponse.error} [${res.status} ${res.statusText}]`;
throw new Error(errorMessage);
}
const data = await res.json();
// Extract the "name" field from each model object and store them in the state
const modelNames = data.data.map((model: any) => model.id);
// save the first and only model in the list as selectedModel in localstorage
setChatOptions({ ...chatOptions, selectedModel: modelNames[0] });
} catch (error) {
setChatOptions({ ...chatOptions, selectedModel: undefined });
toast.error(error as string);
}
};
useEffect(() => {
fetchData();
}, [hasMounted]);
if (!hasMounted) {
return (
<div className="md:w-full flex px-4 py-6 items-center gap-1 md:justify-center">
<DotFilledIcon className="w-4 h-4 text-blue-500" />
<span className="text-xs">Booting up..</span>
</div>
);
}
const chatTokens = messages.length > 0 ? encodeChat(messages) : 0;
return (
<div className="md:w-full flex px-4 py-4 items-center justify-between md:justify-center">
<Sheet>
<SheetTrigger>
<div className="flex items-center gap-2">
<HamburgerMenuIcon className="md:hidden w-5 h-5" />
</div>
</SheetTrigger>
<SheetContent side="left">
<div>
<Sidebar
chatId={chatId || ""}
setChatId={setChatId}
isCollapsed={false}
isMobile={false}
chatOptions={chatOptions}
setChatOptions={setChatOptions}
/>
</div>
</SheetContent>
</Sheet>
<div className="flex justify-center md:justify-between gap-4 w-full">
<div className="gap-1 flex items-center">
{currentModel !== undefined && (
<>
{isLoading ? (
<DotFilledIcon className="w-4 h-4 text-blue-500" />
) : (
<TooltipProvider>
<Tooltip>
<TooltipTrigger>
<span className="cursor-help">
<CheckCircledIcon className="w-4 h-4 text-green-500" />
</span>
</TooltipTrigger>
<TooltipContent
sideOffset={4}
className="bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 p-2 rounded-sm text-xs"
>
<p className="font-bold">Current Model</p>
<p className="text-gray-500">{currentModel}</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
)}
<span className="text-xs">
{isLoading ? "Generating.." : "Ready"}
</span>
</>
)}
{currentModel === undefined && (
<>
<CrossCircledIcon className="w-4 h-4 text-red-500" />
<span className="text-xs">Connection to vLLM server failed</span>
</>
)}
</div>
<div className="flex items-end gap-2">
{chatTokens > tokenLimit && (
<TooltipProvider>
<Tooltip>
<TooltipTrigger>
<span>
<InfoCircledIcon className="w-4 h-4 text-blue-500" />
</span>
</TooltipTrigger>
<TooltipContent
sideOffset={4}
className="bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 rounded-sm text-xs"
>
<p className="text-gray-500">
Token limit exceeded. Truncating middle messages.
</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
)}
{messages.length > 0 && (
<span className="text-xs text-gray-500">
{chatTokens} / {tokenLimit} token{chatTokens > 1 ? "s" : ""}
</span>
)}
</div>
</div>
</div>
);
}
|