Compare AI model responses side-by-side in real-time.
LLM Deck is a web application that lets you send the same prompt to multiple AI models simultaneously and compare their responses in real-time. Perfect for evaluating model capabilities, testing prompts, or exploring different AI behaviors.
Set the following environment variables with your API keys:
| Key | Description |
|---|---|
OPENAI_API_KEY | Your OpenAI API key |
ANTHROPIC_API_KEY | Your Anthropic API key |
GOOGLE_GENERATIVE_AI_API_KEY | Your Google AI API key |
You only need to set keys for the providers you want to use.
Ctrl + Enter or click "Send" to send the prompt to all modelsThe application is configurable via the config object in main.ts:
const config = {
title: "LLM Deck",
subtitle: "Compare AI Models",
pageTitle: "LLM Deck — Compare AI Models",
logo: {
imageUrl: "", // Custom logo URL
gradient: "from-indigo-500 to-purple-600",
shadowColor: "indigo-500/20",
},
theme: {
primaryGradient: "from-indigo-500 to-purple-600",
primaryHoverGradient: "from-indigo-400 to-purple-500",
accentColor: "#6366f1",
},
inputPlaceholder: "Enter your prompt to compare responses...",
defaultColumns: [
{ provider: "openai", model: "gpt-5.2" },
{ provider: "anthropic", model: "claude-opus-4-5-20251101" },
{ provider: "google", model: "gemini-3-pro-preview" },
],
footerText: "",
};
MIT