Help Widget
In-app helpA documentation help widget that floats over your docs or app. Users ask in context and get streamed, cited answers in a slide-up panel — no tab-switching, no search dead-ends. Shown here over a sample docs site.
Live previewinteractive mock — no backend
In-app help
Answers without leaving the page.
The assistant floats in the corner — click it to chat without leaving the page.
Try one — live mock, no backend.
Stack
Frontend
Next.js
Architecture
Standard RAG
Framework
raw python
Vector DB
qdrant
Corpus
medium
Complexity
Moderate
How it works
The frontend talks only to the backend; your API keys + pipeline URL stay server-side.
Get started
cp .env.example .env # add your API key(s) docker compose up --build
cd backend python -m venv .venv && source .venv/bin/activate pip install -r requirements.txt cp .env.example .env # add your API key(s) python pipeline.py ingest ./corpus uvicorn serve:app --reload # http://localhost:8000
cd frontend npm install cp .env.local.example .env.local npm run dev # http://localhost:3000
The downloaded README.md has the full guide — vector DB setup, API keys, and deployment to Render/Railway + Vercel.
Project structure28 backend · 15 frontend · 47 files total
Ready to build?
Download the full monorepo and follow the README.