https://github.com/funkymed/bogart-bot
https://github.com/funkymed/bogart-bot
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/funkymed/bogart-bot
- Owner: funkymed
- Created: 2023-09-01T21:08:57.000Z (almost 2 years ago)
- Default Branch: develop
- Last Pushed: 2024-08-25T15:38:54.000Z (10 months ago)
- Last Synced: 2025-01-07T21:26:17.231Z (5 months ago)
- Language: TypeScript
- Size: 578 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bogart Bot
A somewhat silly but useful bot developed by Cyril Pereira.

## History
- In 2002 The bot was coded in Alambik for IRC.
- In 2016 It was ported to PHP for Slack and got a name : Bender (Futurama ftw).
- In 2023 a new version in Javascript (ES6) for Discord and got his name change to Bogart.
- In 2024 TypeScript version.## Intall
```bash
yarn install
```Copy the .env.dist file to .env. Add your configuration keys.
## Launch bot
in dev locally
```bash
yarn dev
```for production
```bash
yarn build
yarn start
```## NLP
### train nlp with bogart data
```bash
yarn train
```you can edit `model-train.json` tu add your own conversationnal information.
The system use multiple context, when you start a conversation, the next result is unlock by the next context.### Test nlp
```bash
yarn test
```