Skip to content

KTS-o7/RVChat

Repository files navigation

🚀 RVChat

License: MIT GitHub repo size GitHub language count GitHub top language

RVChat is a web application built using the Chatlit library, Langchain, and Ollama. This README serves as a complete guide on how to set up and use the application properly.

📚 Table of Contents

💻 Installation

First we need to install Ollama into your system. You can do this by going to this website and following the instructions provided there.

Then start the Ollama server with the following command:

    sudo systemctl start ollama

Now, to check if the server is running, use the following command:

    sudo systemctl status ollama

Once the server is ready and running, we need to install the required models for the application. You can do this by running the following command:

    ollama pull <model_name>

After this step you need to clone the repository

    git clone https://github.com/KTS-o7/RVChat.git

go into the directory

    cd RVChat

We need to create a virtual environment for the application

    python3 -m venv ./env
    source ./env/bin/activate

and then install the required dependencies

    pip install -r requirements.txt

Set environment variables for the application in a .env file in the root directory of the application. We have provided an example environment file here

    touch .env
    echo "ANONYMIZED_TELEMETRY=False" >> .env

🎯 Usage

You need to keep the required pdfs in a folder called files in the root directory of the application. Call the ingestor to ingest the pdfs

    python Ingestor.py

Once all these are done you can start the application by running the following command:

    chainlit run RVChat.py

OR If you want to chat with just one PDF file, you can run the following command:

    chainlit run InstantChat.py

Images :

Drag and Drop Interface

Select a Document

Chat Interface

Output

📄 License

RVChat is distributed under the MIT License. The terms of the license are as follows:

MIT License

Copyright (c) 2024 Krishnatejaswi S

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.