nehulagrawal
commited on
Commit
•
c3037a2
1
Parent(s):
61f2e19
Update README.md
Browse files
README.md
CHANGED
@@ -71,14 +71,24 @@ Users should be aware of the tool's limitations and potential risks. It's recomm
|
|
71 |
|
72 |
To begin using the Resume Information Extractor, follow these steps:
|
73 |
|
74 |
-
1.
|
|
|
|
|
|
|
|
|
|
|
75 |
```bash
|
76 |
pip install langchain_community pdfminer.six ollama
|
77 |
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
-
|
80 |
|
81 |
-
|
82 |
|
83 |
```python
|
84 |
from pdfminer.high_level import extract_text
|
|
|
71 |
|
72 |
To begin using the Resume Information Extractor, follow these steps:
|
73 |
|
74 |
+
1. Clone this repository:
|
75 |
+
|
76 |
+
```bash
|
77 |
+
git clone https://huggingface.co/nehulagrawal/resume-extractor
|
78 |
+
|
79 |
+
2. Install the required packages:
|
80 |
```bash
|
81 |
pip install langchain_community pdfminer.six ollama
|
82 |
|
83 |
+
or
|
84 |
+
|
85 |
+
```bash
|
86 |
+
pip install -r requirements.txt
|
87 |
+
|
88 |
|
89 |
+
3. Ensure you have Ollama set up and running with the "llama3" model.
|
90 |
|
91 |
+
4. Use the tool in your Python script:
|
92 |
|
93 |
```python
|
94 |
from pdfminer.high_level import extract_text
|