AI-powered Chrome extension for smart product Q&A on Amazon India and Flipkart.
- Frontend: React, TypeScript, Vite, TailwindCSS, Shadcn UI
- Backend: FastAPI, LangChain, ChromaDB, Sentence Transformers, llama-cpp-python
- AI: Zephyr 7B LLM (local, GGUF format)
- Extension: Chrome Extension (Manifest V3)
- Extracts product details and reviews from Amazon/Flipkart
- AI chat: Ask anything about the product (uses specs + reviews(capped at 100))
- Chat history persists between extension sessions
- Clear chat and extract new product options
- Works fully offline (local LLM)
- Backend:
cd backendpython3 -m venv .venv && source .venv/bin/activatepip install -r requirements.txt- Download Zephyr 7B model
uvicorn main:app --reload --host 0.0.0.0 --port 8000
- Frontend/Extension:
npm installnpm run build:extension- Load
dist/in Chrome atchrome://extensions/(enable Developer mode)
- Usage:
- Go to a product page on Amazon.in or Flipkart
- Click the extension icon → Extract
- Ask questions about the product
MIT License
