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
- Host: GitHub
- URL: https://github.com/dpguthrie/customer-support-bot
- Owner: dpguthrie
- Created: 2024-06-14T22:03:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-16T20:08:44.000Z (about 2 years ago)
- Last Synced: 2025-02-23T03:28:51.756Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 353 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```