The ResuMax is a Django-based application that provides the API for creating and reviewing resumes. It leverages the RAG to analyze resume content and generate suggestions for improvement, ensuring that users can create professional and effective resumes with ease.
- Django: The web framework used to build the backend.
- Django REST Framework: Used for building the API endpoints.
- Google Gemini API: The AI model used for resume analysis and content generation.
- Database: SQLite Stores user data, conversation history, and other application data.
-
Clone the repository:
git clone <repository_url> cd resumax_backend
-
Create a virtual environment:
python -m venv env source env/bin/activate # On Linux/macOS env\Scripts\activate # On Windows
-
Install dependencies:
pip install -r requirements.txt