Spaces:
Configuration error
Configuration error
File size: 623 Bytes
a30daff |
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 |
# Chat-with-PDF-Chatbot
This Chatbot is an interactive app developed to assist users to interact with their PDF. It is built using Open Source Stack. No OpenAI is required.
## Getting Started
Follow these steps to set up and run the project on your local machine.
### Installation
```sh
## Clone the repository
git clone <repository_url>
## Create the necessary folders
mkdir db
mkdir models
## Add your model files to the 'models' folder
mkdir docs
----
### Usage
## Run the ingestion script to prepare the data
`python ingest.py`
## Start the chatbot application using Streamlit
`streamlit run chatbot_app.py` |