Unified AI chat interface for multiple language models
LLMify is a unified chat interface that lets you interact with multiple AI models (OpenAI, Anthropic, DeepSeek, xAI, and more) through a single, elegant interface. Use your own API keys or the platform's global key.
- Multi-Model Support — Access GPT, Claude, DeepSeek, Grok, Gemini, and more from one place
- Local API Key Storage — Your keys stay encrypted in your browser using Web Crypto API
- Smart Conversations — Context-aware chat with memory and customization
- Fine-Tuned Controls — Adjust creativity, length, and technical depth
- Usage Analytics — Track tokens, costs, and model performance
- Real-time Streaming — Get responses as they're generated
- Responsive Design — Works seamlessly on desktop and mobile
- Dark/Light Theme — System theme detection with manual toggle
- Secure & Private — API keys never leave your device
- Node.js 20+
- pnpm (recommended)
- PostgreSQL database
- API keys for your chosen providers
# Clone the repository
git clone https://github.com/pvcodes/LLMify.git
cd LLMify
# Install dependencies
pnpm install
# Set up environment variables
cp .env.example .env
# Generate Prisma client
pnpm db:generate
# Push database schema
npx prisma db push
# Start development server
pnpm dev# Database
DATABASE_URL="postgresql://user:password@localhost:5432/llmify"
# NextAuth
NEXTAUTH_SECRET="your-secret-key"
NEXTAUTH_URL="http://localhost:3000"
# OAuth (optional)
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""| Category | Technology |
|---|---|
| Framework | Next.js 15 (App Router) |
| Language | TypeScript |
| Database | PostgreSQL + Prisma |
| Authentication | NextAuth.js |
| AI SDK | Vercel AI SDK |
| UI | Radix UI + Tailwind CSS |
| State | Zustand |
| Animations | Framer Motion |
src/
├── actions/ # Server actions
├── app/ # Next.js app router pages
├── components/ # React components
│ ├── ui/ # Base UI components
│ ├── chat/ # Chat-specific components
│ ├── landing-page/ # Landing page sections
│ └── settings/ # Settings pages
├── hooks/ # Custom React hooks
├── lib/ # Utilities, configs, AI logic
└── store/ # Zustand stores
pnpm dev # Start development server
pnpm build # Build for production
pnpm start # Start production server
pnpm lint # Run ESLint with auto-fix
pnpm db:generate # Generate Prisma clientContributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing) - Open a Pull Request
This project is licensed under the MIT License — see the LICENSE file for details.
- Vercel for the amazing AI SDK
- Radix UI for accessible components
- All the AI providers making LLMs accessible
Built with 💜 by pvcodes