https://github.com/chai-dev682/pool-chatbot
Customer interaction Chatbot
https://github.com/chai-dev682/pool-chatbot
Last synced: about 2 months ago
JSON representation
Customer interaction Chatbot
- Host: GitHub
- URL: https://github.com/chai-dev682/pool-chatbot
- Owner: chai-dev682
- Created: 2024-12-03T09:30:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-03T11:08:43.000Z (over 1 year ago)
- Last Synced: 2025-03-11T23:57:33.782Z (over 1 year ago)
- Language: Python
- Homepage: https://poltime.se
- Size: 439 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple RAG chatbot with pinecone
This is a basic structure for a Streamlit + FastAPI RAG chatbot project designed to interact with third party data.
## Getting Started
1. Create a `.env` file with the following content:
```
OPENAI_API_KEY=
PINECONE_API_KEY=
PINECONE_INDEX_NAME=pooltime-se-chatbot
```
2. Create a virtual environment:
```bash
virtualenv venv
```
3. Install the required packages:
```bash
(venv) pip install -r requirements.txt
```
4. Run the application locally:
```bash
(venv) python chat_cli.py
```