AWS-Guard-Bot / README.md
SSK-14's picture
Upload 17 files
1049895 verified

A newer version of the Gradio SDK is available: 5.23.3

Upgrade
metadata
title: AWS Guard Bot
emoji: πŸš€
colorFrom: blue
colorTo: red
sdk: gradio
sdk_version: 5.0.1
app_file: app.py
pinned: false
license: mit
short_description: Experiment on langchain with NeMo Guardrails

AWS Chatbot with Langchain and Nemo Guardrails

OpenAI Google Gemini Nvidia Nemo

πŸ“œ Description

The application showcases the integration Langchain with documents loaded and Nemo Guardrails. By combining these technologies, the application ensures advanced safety features and effective mitigation's, enhancing the overall security and reliability of the chatbot system.

πŸš€ Demo

AWS Guard Chatbot

Note: It has only minimal guards added from NeMo for demo
Without Guardrails
Without Guardrails
With Guardrails
With Guardrails

πŸ› οΈ Installation

Clone the repo

git clone https://github.com/SSK-14/chatbot-guardrails.git

If running for the first time,

  1. Create virtual environment
pip3 install env
python3 -m venv env
source env/bin/activate
  1. Install required libraries
pip3 install -r requirements.txt

Create an .env file from .env.example

OPENAI_API_KEY = "Your openai API key"
or
GOOGLE_API_KEY = "Your Gemini API key"

Loading the Vectorstore πŸ—ƒοΈ

  1. Keep you data or documentations in the knowledge_base folder
  2. Get an Gemini API key or OpenAI API key
  3. Update the constants & vectorstore client in vectorstore.py
  4. Run the command - python vectorstore.py

Run the Gradio app

gradio app.py

πŸ“ Project Structure

chatbot-guardrails/
β”‚
β”œβ”€β”€ config  // Contains all files for Guardrails 
β”œβ”€β”€ knowledge_base // Documents need for the chatbot context
β”œβ”€β”€ app.py // Main file to run
β”œβ”€β”€ create_index.py // Run this to create vectorstore
β”œβ”€β”€ README.md
└── requirements.txt

Contributing 🀝

Contributions to this project are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on the project's GitHub repository.

License πŸ“

This project is licensed under the MIT License. Feel free to use, modify, and distribute the code as per the terms of the license.