Chat with your PDF documents using the power of AI. Ask questions, get instant answers — all from your browser.
👉 Dot Note
Dot Note is a full-stack AI-powered application that allows users to upload PDF documents and interact with their content through a conversational chat interface.
Instead of reading through entire documents, users simply ask questions and receive accurate, context-aware answers — powered by OpenAI and semantic vector search.
- 📁 PDF Upload — Upload any PDF document directly in the browser
- 💬 AI Chat Interface — Ask natural language questions about your document
- 🔍 Semantic Search — Finds the most relevant content using vector embeddings
- ⚡ Real-Time Responses — Instant answers via REST API integration
- 📱 Fully Responsive — Works seamlessly on mobile and desktop
- ♿ Accessible UI — Built with accessibility best practices
| Layer | Technology |
|---|---|
| Framework | Next.js 14 (App Router) |
| Language | TypeScript |
| AI / LLM | OpenAI API (GPT) |
| Embeddings | OpenAI text-embedding-ada-002 |
| Vector Database | Pinecone |
| Document Processing | LangChain |
| Styling | Tailwind CSS |
| API | REST API (Next.js API Routes) |
User uploads PDF
↓
Document is split into chunks (LangChain)
↓
Each chunk is converted to vector embeddings (OpenAI)
↓
Vectors are stored in Pinecone vector database
↓
User asks a question
↓
Question is converted to a vector
↓
Most relevant chunks are retrieved (semantic search)
↓
OpenAI generates a context-aware answer
↓
Answer is displayed in real-time chat UI
dot-note/
├── app/
│ ├── api/ # API routes (chat, upload)
│ ├── components/ # Reusable UI components
│ ├── lib/ # LangChain, Pinecone, OpenAI config
│ └── page.tsx # Main app entry
├── public/
├── styles/
├── types/
└── README.md
- Node.js 18+
- OpenAI API Key
- Pinecone API Key
# Clone the repository
git clone https://github.com/azick99/Dot-note.v.2.git
# Navigate into the project
cd Dot-note.v.2
# Install dependencies
npm installCreate a .env.local file in the root directory:
OPENAI_API_KEY=your_openai_api_key
PINECONE_API_KEY=your_pinecone_api_key
PINECONE_INDEX=your_pinecone_index_namenpm run devOpen http://localhost:3000 in your browser.
- Building scalable full-stack apps with Next.js App Router
- Working with AI/LLM APIs and prompt engineering
- Implementing vector search and semantic similarity
- Structuring TypeScript for large-scale maintainability
- Designing component-driven, accessible UI architecture
- Add user authentication and saved chat history
- Support multiple PDF uploads per session
- Add streaming responses for faster UX
- Write unit and integration tests
- Deploy to Vercel with CI/CD pipeline
Aziz — Frontend Developer
- GitHub: @azick99
- Available for freelance work on Upwork & Fiverr
This project is open source and available under the MIT License.