Spaces:
Running
Running
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 | |
 | |
 | |
 | |
## π 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](https://ssk-14-aws-guard-bot.hf.space/) | |
``` | |
Note: It has only minimal guards added from NeMo for demo | |
``` | |
| Without 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 | |
``` | |
2. 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](https://makersuite.google.com/app/apikey) or [OpenAI API key](https://platform.openai.com/account/api-keys) | |
3. Update the constants & vectorstore client in `vectorstore.py` <!-- Update env if using qdrant cloud. --> | |
4. Run the command - `python vectorstore.py` <!-- Will create a vector database. --> | |
#### 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](https://github.com/SSK-14/chatbot-guardrails/blob/main/LICENSE). Feel free to use, modify, and distribute the code as per the terms of the license. | |