A web application that uses LLM to summarize meeting minutes into structured, actionable insights.
- Paste meeting minutes and get instant AI-powered summaries
- Structured output with key decisions, action items, and next steps
- Clean, responsive UI
| Category | Technology |
|---|---|
| Frontend | Vite + React + Tailwind CSS |
| Backend | Node.js + Express |
| LLM Framework | LangChain |
| LLM Provider | Groq (Free Tier) |
| AI Model | Llama 3.1 8B Instant |
| Frontend Hosting | Vercel |
| Backend Hosting | Render |
- Node.js 18+
- pnpm
- Groq API Key (Free)
-
Clone the repository
git clone https://github.com/your-username/MinuteRecap.git cd MinuteRecap -
Install dependencies
# Frontend cd Frontend pnpm install # Backend cd ../Backend pnpm install
-
Set up environment variables
# In Backend folder, create .env file GROQ_API_KEY=your_groq_api_key_here PORT=3001 -
Run the application
# Backend (from Backend folder) pnpm run dev # Frontend (from Frontend folder) pnpm run dev
-
Open http://localhost:5173 in your browser
