A note-taking app with AI chat. Think macOS Notes but with the ability to ask questions about your notes.
Built with React 19, Vite, and TipTap. Data stays in your browser via IndexedDB.
https://intel-notes.vercel.app
Notes - Text editor with auto-save. Organize into folders, pin important ones, search across everything.
AI Chat - Click the robot icon to chat. The AI searches your notes using keyword matching and answers questions. Choose between:
- OpenAI (cloud) - Bring your own API key
- Local LLM - Run Ollama locally via Docker (no API key needed)
Ctrl/Cmd + N- New noteCtrl/Cmd + F- SearchEscape- Cancel editing
You can use the local llm provided.
Once running, open AI Chat settings (⚙ icon) and select "Local LLM (Ollama)". The backend will use the llama3.2 model by default.
Ports:
- Frontend:
http://localhost:3002(auto-assigned) - Backend API:
http://localhost:3001 - Ollama API:
http://localhost:11434
Frontend:
- React 19
- Vite
- TipTap (rich text editor)
- Dexie (IndexedDB wrapper)
Backend (optional, for local LLM):
- Node.js + Express
- Ollama (local LLM runtime)
- Docker Compose
AI Providers:
- OpenAI API (cloud, requires API key)
- Ollama + Llama 3.2 (local, no API key)
MIT