Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -1,40 +1,37 @@
|
|
1 |
-
|
2 |
-
---
|
3 |
-
overview:
|
4 |
-
description: >
|
5 |
-
This project is a Language Model (LLM) Summarizer that utilizes the
|
6 |
-
power of
|
7 |
|
8 |
-
|
9 |
|
10 |
-
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
Run the following command to install the required packages
|
22 |
-
from the `requirements.txt` file:
|
23 |
|
24 |
-
|
|
|
|
|
|
|
25 |
|
26 |
-
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
- Obtain your Hugging Face API token from [Hugging
|
31 |
-
Face](https://huggingface.co/).
|
32 |
|
33 |
-
|
34 |
-
Also, ensure that the `api` variable in the code matches your key.
|
35 |
-
- run_application: |
|
36 |
-
Execute the main
|
37 |
|
38 |
-
|
|
|
|
|
39 |
|
40 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
# S I M P L I F Y
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
+
**Harness the power of LLMs to extract concise summaries from extensive text.**
|
4 |
|
5 |
+
## Installation
|
6 |
|
7 |
+
1. **Create a virtual environment:**
|
8 |
+
- Navigate to the project directory in your terminal.
|
9 |
+
- Create a virtual environment: `python -m venv env`
|
10 |
+
- Activate the environment:
|
11 |
+
- Windows: `env\Scripts\activate.bat`
|
12 |
+
- Linux/macOS: `source env/bin/activate`
|
13 |
|
14 |
+
2. **Install dependencies:**
|
15 |
+
- Install required packages: `pip install -r requirements.txt`
|
|
|
|
|
16 |
|
17 |
+
3. **Set environment variable:**
|
18 |
+
- Set your Hugging Face API token:
|
19 |
+
`export HUGGINFACEHUB_API_TOKEN=YOUR_API_TOKEN`
|
20 |
+
- Set your Hugging Face API token as api_token variable.
|
21 |
|
22 |
+
## Usage
|
23 |
|
24 |
+
1. **Run the main script:**
|
25 |
+
- Execute the main script: `python main.py`
|
|
|
|
|
26 |
|
27 |
+
## Additional Information
|
|
|
|
|
|
|
28 |
|
29 |
+
- **Key frameworks:** LangChain, Hugging Face LLMs
|
30 |
+
- **Supported document types:** PDF (currently)
|
31 |
+
- **Customization:** Adjust prompts and code for different content and queries.
|
32 |
|
33 |
+
|
34 |
+
## Creators
|
35 |
+
- Anish De, B.Tech. Electrical Engineering
|
36 |
+
- Yash Shrivastava, B.Tech. Computer Science Engineering
|
37 |
+
- Dev Virani, B.Tech. Computer Science Engineering
|