Spaces:
Sleeping
Sleeping
File size: 2,254 Bytes
d8b89de |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# ChatLLMs
Gradio Interface for LLM-Powered PDF Chats
This chatbot is designed to provide intelligent responses and answers to questions based on the content of PDF documents.Leverages [Gradio](https://www.gradio.app/) as a user-friendly interface to engage with chatbots powered by [OpenAI](https://openai.com/) models based on [langchain](https://www.langchain.com/). Additionally, it incorporates [ChromaDB](https://www.trychroma.com/) for efficient data storage.
Current LLM used - GPT4-1106-preview
A base interface demo is available on this [HF space](https://huggingface.co/spaces/Koshti10/Chat_literature) for testing
## Getting started
Clone this repository and add your OpenAI API key in local environment
```python
git clone https://github.com/kushal-10/chatllms
cd chatllms
export OPENAI_API_KEY = <your secret key>
```
Install required dependencies
```python
pip install -r requirements.txt
```
## Usage
### Chatting over all the given documents, using stuff to iterate over 100 most relevant documents
Step 1:
Create a new folder under `inputs`, for example `new_docs`, and add your PDFs here.
Step 2:
Specify this as `inp_dir` in `save_db.py` and additionally specify where you would like the Chroma database to be stored in `out_dir`.Then run
```python
python3 lc_base/save_db.py
```
Step 3:
Specify the `out_dir` in `app.py` along with additional parameters and then run `app.py` to run the gradio interface locally.
```
python3 app.py
```
Add the API key and chat away!!
### Chatting over summaries of all given documents using map_reduce.
Step 1:
Create a new folder under `inputs`, for example `new_docs`, and add your PDFs here.
Step 2:
Specify this as `inpur_dir` in `main.py` and additionally specify in which folder you would like the individual Chroma database to be stored in `output_dir`. Also specify where you would like to save combined database of summaries. Change other params if required. Then run
```python
python3 main.py
```
Step 3:
Specify the `output_dir` in `app.py` along with additional parameters and then run `app.py` to run the gradio interface locally.
```
python3 app.py
```
Add the API key and chat away!!
All the responses will be saved in csv files under logs folder
|