An open API service indexing awesome lists of open source software.

https://github.com/dpguthrie/customer-support-bot

Customer support bot using Langgraph
https://github.com/dpguthrie/customer-support-bot

Last synced: 24 days ago
JSON representation

Customer support bot using Langgraph

Awesome Lists containing this project

README

          

# Customer Support Bot

## Instructions

To run the jupyter notebook, do the following

- Clone this repo locally
- Copy the `.env.example` folder to a `.env` file and update for your specific API keys
- Install `uv` (Optional). If you don't follow this step, just use `pip install` instead of `uv pip install`
```bash
pip install uv
```
- Create a virtual environment
```bash
python3 -m venv .venv
```
- Activate your vitual environment
```bash
source .venv/bin/activate
```
- Install required packages from requirements.txt
```bash
uv pip install -r requirements.txt
```
- Open up your jupyter notebook
```bash
jupyter notebook
```