https://github.com/fipso/ml-itdz
https://github.com/fipso/ml-itdz
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fipso/ml-itdz
- Owner: fipso
- Created: 2023-08-03T19:21:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-03T22:26:18.000Z (almost 3 years ago)
- Last Synced: 2024-05-17T00:32:25.212Z (about 2 years ago)
- Language: Python
- Size: 978 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Local Setup Instructions
Requirements:
- python >3.7
- docker
- docker-compose
```bash
# Clone project
git clone https://github.com/fipso/ml-itdz.git
cd ml-itdz
# Run dependency services: Milvus Vector DB & React Chat Frontend
docker-compose up -d
# Create venv and install python deps
python -m venv venv
pip install -r requirements.txt
# Run AI Backend
chmod +x chat_service.py
./chat_service
# Visit Chat Frontend at http://127.0.0.1:3000
```