- Smart FAQ: lets users input a query and browse multiple question-answer pairs.
- Chat Interface: provides a conversational interface with one answer per message.
-
Go to the frontend folder:
cd frontend -
Install dependencies:
npm install
-
Run the development server:
npm run dev
The app will be available at: http://localhost:3000
or simply run the docker compose up from root directory where docker-compose.yml lives
- Input a query and receive top-k answers (default: 3).
- Navigate through answers using Previous/Next buttons.
- You can only review answers after reviewing the first one.
- Backend call:
POST /querywithtop_k = 3.
- Chat UI for interacting with the system like a messaging app.
- Each message gets top-1 answer only.
- Bot replies may include reviewable answers.
- Backend call:
POST /querywithtop_k = 1.