Simple Express server that accepts a question and choices and returns the selected choice. By default it runs in mock mode; set GEMINI_API_KEY in .env to call a real Gemini API (update endpoint/format as needed).
Endpoints:
- POST /api/answer { question: string, options: string[] } -> { answer: string }
Run:
cd server
npm install
npm start