Turn chaos into clarity. QuickNotes AI helps you summarize text, extract key points, and ask questions to your documents using a local AI model.
- Summarize: Instantly generate summaries, key points, cheat sheets, and flashcards.
- Ask Question: Chat with your content using a local LLM.
- Local AI: Powered by Ollama (Llama 3.1) for privacy and speed.
- Node.js (v16+)
- Python (v3.8+)
- Ollama installed and running with
llama3.1:8bmodel:ollama pull llama3.1:8b
-
Install Frontend Dependencies:
cd frontend npm install cd ..
-
Install Backend Dependencies:
pip install -r backend/requirements.txt
The easiest way to run the app is using the startup script:
./start.shThis will:
- Clean up any conflicting processes.
- Start the Python backend on port 8001.
- Start the Vue frontend on port 5173.
Visit http://localhost:5173 to use the app.
Backend:
python3 backend/main.pyFrontend:
cd frontend
npm run dev

