anishde commited on
Commit
8dba444
1 Parent(s): 589d139

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -30
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
- Hugging Face's Transformers library to generate summaries from given text content.
9
 
10
- The application is designed to simplify the summarization process, making it easy
11
 
12
- for users to generate concise summaries for large volumes of text.
13
- getting_started:
14
- steps:
15
- - create_virtual_environment: >
16
- Create a virtual environment in Python using
17
- [venv](https://docs.python.org/3/library/venv.html)
18
 
19
- to manage project dependencies.
20
- - install_dependencies: >
21
- Run the following command to install the required packages
22
- from the `requirements.txt` file:
23
 
24
- ```bash
 
 
 
25
 
26
- pip install -r requirements.txt
27
 
28
- ```
29
- - set_huggingface_api_token: >
30
- - Obtain your Hugging Face API token from [Hugging
31
- Face](https://huggingface.co/).
32
 
33
- - Set the `HUGGINGFACEHUB_API_TOKEN` environment variable with your Hugging Face API key.
34
- Also, ensure that the `api` variable in the code matches your key.
35
- - run_application: |
36
- Execute the main
37
 
38
- ---
 
 
39
 
40
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
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