mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-27 06:28:50 +00:00
242 lines
8 KiB
TypeScript
242 lines
8 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useRef, useEffect } from "react";
|
|
import { ChatMessage } from "@/lib/types";
|
|
import { ChatMessageItem } from "@/components/chat-completions/chat-messasge-item";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Send, Loader2, ChevronDown } from "lucide-react";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { useAuthClient } from "@/hooks/use-auth-client";
|
|
import type { CompletionCreateParams } from "llama-stack-client/resources/chat/completions";
|
|
import type { Model } from "llama-stack-client/resources/models";
|
|
|
|
export default function ChatPlaygroundPage() {
|
|
const [messages, setMessages] = useState<ChatMessage[]>([]);
|
|
const [inputMessage, setInputMessage] = useState("");
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [models, setModels] = useState<Model[]>([]);
|
|
const [selectedModel, setSelectedModel] = useState<string>("");
|
|
const [modelsLoading, setModelsLoading] = useState(true);
|
|
const [modelsError, setModelsError] = useState<string | null>(null);
|
|
const messagesEndRef = useRef<HTMLDivElement>(null);
|
|
const client = useAuthClient();
|
|
const isModelsLoading = modelsLoading ?? true;
|
|
|
|
const scrollToBottom = () => {
|
|
messagesEndRef.current?.scrollIntoView({ behavior: "smooth" });
|
|
};
|
|
|
|
useEffect(() => {
|
|
scrollToBottom();
|
|
}, [messages]);
|
|
|
|
useEffect(() => {
|
|
const fetchModels = async () => {
|
|
try {
|
|
setModelsLoading(true);
|
|
setModelsError(null);
|
|
const modelList = await client.models.list();
|
|
const llmModels = modelList.filter(model => model.model_type === 'llm');
|
|
setModels(llmModels);
|
|
if (llmModels.length > 0) {
|
|
setSelectedModel(llmModels[0].identifier);
|
|
}
|
|
} catch (err) {
|
|
console.error("Error fetching models:", err);
|
|
setModelsError("Failed to fetch available models");
|
|
} finally {
|
|
setModelsLoading(false);
|
|
}
|
|
};
|
|
|
|
fetchModels();
|
|
}, [client]);
|
|
|
|
const extractTextContent = (content: any): string => {
|
|
if (typeof content === 'string') {
|
|
return content;
|
|
}
|
|
if (Array.isArray(content)) {
|
|
return content
|
|
.filter(item => item.type === 'text')
|
|
.map(item => item.text)
|
|
.join('');
|
|
}
|
|
if (content && content.type === 'text') {
|
|
return content.text || '';
|
|
}
|
|
return '';
|
|
};
|
|
|
|
const handleSendMessage = async () => {
|
|
if (!inputMessage.trim() || isLoading || !selectedModel) return;
|
|
|
|
const userMessage: ChatMessage = {
|
|
role: "user",
|
|
content: inputMessage.trim(),
|
|
};
|
|
|
|
setMessages(prev => [...prev, userMessage]);
|
|
setInputMessage("");
|
|
setIsLoading(true);
|
|
setError(null);
|
|
|
|
try {
|
|
const messageParams: CompletionCreateParams["messages"] = [...messages, userMessage].map(msg => {
|
|
const content = typeof msg.content === 'string' ? msg.content : extractTextContent(msg.content);
|
|
if (msg.role === "user") {
|
|
return { role: "user" as const, content };
|
|
} else if (msg.role === "assistant") {
|
|
return { role: "assistant" as const, content };
|
|
} else {
|
|
return { role: "system" as const, content };
|
|
}
|
|
});
|
|
|
|
const response = await client.chat.completions.create({
|
|
model: selectedModel,
|
|
messages: messageParams,
|
|
stream: false,
|
|
});
|
|
|
|
if ('choices' in response && response.choices && response.choices.length > 0) {
|
|
const choice = response.choices[0];
|
|
if ('message' in choice && choice.message) {
|
|
const assistantMessage: ChatMessage = {
|
|
role: "assistant",
|
|
content: extractTextContent(choice.message.content),
|
|
};
|
|
setMessages(prev => [...prev, assistantMessage]);
|
|
}
|
|
}
|
|
} catch (err) {
|
|
console.error("Error sending message:", err);
|
|
setError("Failed to send message. Please try again.");
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleKeyPress = (e: React.KeyboardEvent) => {
|
|
if (e.key === "Enter" && !e.shiftKey) {
|
|
e.preventDefault();
|
|
handleSendMessage();
|
|
}
|
|
};
|
|
|
|
const clearChat = () => {
|
|
setMessages([]);
|
|
setError(null);
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col h-full max-w-4xl mx-auto">
|
|
<div className="mb-4 flex justify-between items-center">
|
|
<h1 className="text-2xl font-bold">Chat Playground</h1>
|
|
<div className="flex gap-2">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline" disabled={isModelsLoading || isLoading}>
|
|
{isModelsLoading ? (
|
|
<>
|
|
<Loader2 className="h-4 w-4 animate-spin mr-2" />
|
|
Loading models...
|
|
</>
|
|
) : selectedModel ? (
|
|
<>
|
|
{selectedModel}
|
|
<ChevronDown className="h-4 w-4 ml-2" />
|
|
</>
|
|
) : (
|
|
"No models available"
|
|
)}
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
{models.map((model) => (
|
|
<DropdownMenuItem
|
|
key={model.identifier}
|
|
onClick={() => setSelectedModel(model.identifier)}
|
|
>
|
|
{model.identifier}
|
|
</DropdownMenuItem>
|
|
))}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
<Button variant="outline" onClick={clearChat} disabled={isLoading}>
|
|
Clear Chat
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<Card className="flex-1 flex flex-col">
|
|
<CardHeader>
|
|
<CardTitle>Chat Messages</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="flex-1 flex flex-col">
|
|
<div className="flex-1 overflow-y-auto mb-4 space-y-4 min-h-0">
|
|
{messages.length === 0 ? (
|
|
<div className="text-center text-muted-foreground py-8">
|
|
<p>Start a conversation by typing a message below.</p>
|
|
</div>
|
|
) : (
|
|
messages.map((message, index) => (
|
|
<ChatMessageItem key={index} message={message} />
|
|
))
|
|
)}
|
|
{isLoading && (
|
|
<div className="flex items-center justify-center py-4">
|
|
<Loader2 className="h-4 w-4 animate-spin mr-2" />
|
|
<span className="text-muted-foreground">Thinking...</span>
|
|
</div>
|
|
)}
|
|
<div ref={messagesEndRef} />
|
|
</div>
|
|
|
|
{modelsError && (
|
|
<div className="mb-4 p-3 bg-destructive/10 border border-destructive/20 rounded-md">
|
|
<p className="text-destructive text-sm">{modelsError}</p>
|
|
</div>
|
|
)}
|
|
|
|
{error && (
|
|
<div className="mb-4 p-3 bg-destructive/10 border border-destructive/20 rounded-md">
|
|
<p className="text-destructive text-sm">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
<div className="flex gap-2">
|
|
<Input
|
|
value={inputMessage}
|
|
onChange={(e) => setInputMessage(e.target.value)}
|
|
onKeyPress={handleKeyPress}
|
|
placeholder="Type your message here..."
|
|
disabled={isLoading}
|
|
className="flex-1"
|
|
/>
|
|
<Button
|
|
onClick={handleSendMessage}
|
|
disabled={!inputMessage.trim() || isLoading}
|
|
disabled={!inputMessage.trim() || isLoading || !selectedModel}
|
|
size="icon"
|
|
>
|
|
{isLoading ? (
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
) : (
|
|
<Send className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|