You should already have received:
- the assignment brief by email
- your personal OpenAI API key
- a zipped FFU document set
Requirements: Python 3.12+ and Node 24+.
- Put your API key in
.env:
OPENAI_API_KEY=your-key-here- Unzip the FFU files into backend/data.
- Start the backend:
cd backend
pip install -r requirements.txt
uvicorn main:app --reload --host 127.0.0.1 --port 8000- In a second terminal, start the frontend:
cd frontend
npm install
npm run dev- Open
http://localhost:5173, clickProcess FFU, then start chatting.