This project is a full-stack AI-powered Resume and Interview Evaluator built for the FutureStack GenAI Hackathon.
It uses FastAPI (Python) for the backend and React for the frontend.
The system parses resumes, enriches job descriptions using Exa, evaluates resume-to-job-fit using Cerebras LLaMA models, and generates + evaluates interview questions.
- Resume parsing (PDF/DOCX) using PyMuPDF & python-docx
- Job description enrichment using Exa API
- Smart comparison between resume and JD
- AI-generated interview questions
- Real-time candidate answer evaluation with scoring and feedback
- Clean, responsive frontend with animated gradient UI
Frontend
- React (Bootstrap, CSS)
- Environment-based API URLs
Backend
- FastAPI + Uvicorn
- PyMuPDF, python-docx for parsing
- Cerebras LLaMA for AI analysis
- Exa for web enrichment
- dotenv for env management
Containerization
- Docker for backend and frontend
- Docker Compose for local orchestration
git clone https://github.com/PrathamAditya/futurestack25-project
cd futurestack25-project
cd backend
cp .env.example .env # fill in your API keys
pip install -r requirements.txt
uvicorn main:app --reload
Backend runs on http://127.0.0.1:8000
cd frontend
cp .env.example .env
npm install
npm start
Frontend runs on http://localhost:3000
cd backend
docker build -t futurestack-backend .
docker run -p 8000:8000 --env-file .env futurestack-backend
docker compose up --build
Endpoint | Method | Description |
---|---|---|
/upload-resume |
POST | Upload resume + job description for analysis |
/interview/generate-advanced |
POST | Generate interview questions |
/interview/evaluate |
POST | Evaluate candidate answers |
Swagger docs: http://localhost:8000/docs
Create a .env
file in both backend/
and frontend/
directories.
CEREBRAS_API_KEY=your_key_here
EXA_API_KEY=your_key_here
REACT_APP_BACKEND_URL=http://127.0.0.1:8000
REACT_APP_ENV=development
futurestack25-project/
│
├── backend/
│ ├── main.py
│ ├── resume_parser.py
│ ├── exa_tool.py
│ ├── interview_tool.py
│ ├── cerebras_client.py
│ ├── Dockerfile
│ └── requirements.txt
│
├── frontend/
│ ├── src/
│ │ ├── components/
│ │ └── App.js
│ ├── public/
│ ├── Dockerfile
│ └── .env
│
└── docker-compose.yml
- Ensure
.env.production
is set for both frontend and backend.