https://github.com/t145/signal-chatbot
A locally hosted chatbot that interfaces directly with the Signal messenger
https://github.com/t145/signal-chatbot
Last synced: about 1 year ago
JSON representation
A locally hosted chatbot that interfaces directly with the Signal messenger
- Host: GitHub
- URL: https://github.com/t145/signal-chatbot
- Owner: T145
- Created: 2024-10-15T14:21:28.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-28T19:30:08.000Z (over 1 year ago)
- Last Synced: 2025-02-05T23:02:59.106Z (over 1 year ago)
- Language: Python
- Size: 294 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Tech Stack
- Ollama to host and manage the AIs
- Prompt control defined by LangChain & LangGraph
- Weviate as the dataset vectorstore between Ollama and LangGraph
- Chat storage handled by MongoDB
## Setup
Get the latest [PyTorch](https://pytorch.org/get-started/locally/)-compatible [CUDA Toolkit](https://developer.nvidia.com/cuda-toolkit-archive).
### Windows
```ps1
# Enable Developer Mode in Windows settings
scoop install sudo innounp
sudo Set-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1
scoop bucket add extras
scoop install mambaforge rust
mamba update mamba --all
mamba create -n signalbot python=3.12 poetry
```
## Runtime
```
poetry install
docker compose up -d
docker exec -it ollama ollama pull llama3.1:8b
chatbot run
```