This is a prototype for an AI-powered real-time occupancy planning system. Users can input natural language queries like:
"Find me an available standing desk near the marketing team on the 3rd floor for tomorrow afternoon."
The system will parse the request using OpenAI and return suitable desk options based on availability, preferences, and policies.
occupancy-planner/
├── backend/
│ ├── app.js
│ ├── routes/
│ ├── services/
│ └── test/
├── frontend/
│ ├── public/
│ └── src/
cd backend
npm install
OPENAI_API_KEY=your_key node app.jscd frontend
npm install
npm startcd backend
npm test- Node.js + Express
- OpenAI GPT (via API)
- React.js
- Jest + Supertest (for backend testing)