Spaces:
Configuration error
Configuration error
Commit
·
48d1301
1
Parent(s):
de5f555
Added to README
Browse files
README.md
CHANGED
|
@@ -1,3 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: Resumate
|
| 3 |
colorFrom: blue
|
|
@@ -10,12 +77,3 @@ license: gpl-3.0
|
|
| 10 |
short_description: Tailored resume generation
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# resumate
|
| 14 |
-
|
| 15 |
-
[](https://github.com/gperdrizet/resumate/actions/workflows/python_ci.yml)
|
| 16 |
-
|
| 17 |
-
[](https://github.com/gperdrizet/resumate/actions/workflows/publish_hf_space.yml)
|
| 18 |
-
|
| 19 |
-
[](https://github.com/gperdrizet/resumate/actions/workflows/codespaces/create_codespaces_prebuilds)
|
| 20 |
-
|
| 21 |
-
Resume tailoring agent with LaTex typesetting, GitHub profile RAG and LinkedIn biographical context tools.
|
|
|
|
| 1 |
+
# Resumate
|
| 2 |
+
|
| 3 |
+
[](https://github.com/gperdrizet/resumate/actions/workflows/python_ci.yml)[](https://github.com/gperdrizet/resumate/actions/workflows/publish_hf_space.yml)[](https://github.com/gperdrizet/resumate/actions/workflows/codespaces/create_codespaces_prebuilds)
|
| 4 |
+
|
| 5 |
+
Resumate is a simple web app that helps you generate a tailored resume for a specific job post. It collects your LinkedIn profile (PDF export), GitHub profile URL, and the job post text, then processes this information to help you create a resume that matches the job requirements.
|
| 6 |
+
|
| 7 |
+
## Features
|
| 8 |
+
- Upload your LinkedIn resume export (PDF)
|
| 9 |
+
- Provide your GitHub profile URL (public repos only)
|
| 10 |
+
- Paste the job post text
|
| 11 |
+
- Optionally add custom instructions for the resume writer agent
|
| 12 |
+
- Get a tailored resume output in seconds
|
| 13 |
+
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
## 🚀 Quickstart (Recommended: GitHub Codespaces)
|
| 17 |
+
|
| 18 |
+
1. **Open in Codespaces**
|
| 19 |
+
- Click the "Code" button on GitHub and select "Open with Codespaces".
|
| 20 |
+
- Codespaces will automatically set up the environment.
|
| 21 |
+
2. **Install dependencies** (if not pre-installed):
|
| 22 |
+
```bash
|
| 23 |
+
pip install -r requirements.txt
|
| 24 |
+
```
|
| 25 |
+
3. **Run the app:**
|
| 26 |
+
```bash
|
| 27 |
+
python resumate.py
|
| 28 |
+
```
|
| 29 |
+
4. **Open the provided URL** in your browser to use the Gradio UI.
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## 🖥️ Running Locally with Virtualenv
|
| 34 |
+
|
| 35 |
+
1. **Clone the repository:**
|
| 36 |
+
```bash
|
| 37 |
+
git clone https://github.com/gperdrizet/resumate.git
|
| 38 |
+
cd resumate
|
| 39 |
+
```
|
| 40 |
+
2. **Create and activate a virtual environment:**
|
| 41 |
+
```bash
|
| 42 |
+
python3 -m venv .venv
|
| 43 |
+
source .venv/bin/activate
|
| 44 |
+
```
|
| 45 |
+
3. **Install dependencies:**
|
| 46 |
+
```bash
|
| 47 |
+
pip install -r requirements.txt
|
| 48 |
+
```
|
| 49 |
+
4. **Run the app:**
|
| 50 |
+
```bash
|
| 51 |
+
python resumate.py
|
| 52 |
+
```
|
| 53 |
+
5. **Open the provided URL** in your browser to use the Gradio UI.
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
## 📄 LinkedIn PDF Export Instructions
|
| 58 |
+
1. Go to your LinkedIn profile page
|
| 59 |
+
2. Click the "More" button (three dots)
|
| 60 |
+
3. Select "Save to PDF"
|
| 61 |
+
4. Wait for the download
|
| 62 |
+
5. Upload the PDF in the app
|
| 63 |
+
|
| 64 |
+
---
|
| 65 |
+
|
| 66 |
+
## License
|
| 67 |
+
MIT License
|
| 68 |
---
|
| 69 |
title: Resumate
|
| 70 |
colorFrom: blue
|
|
|
|
| 77 |
short_description: Tailored resume generation
|
| 78 |
---
|
| 79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|