Mood adaptive chatbot
Project description
MoodBot is a mood adaptive chatbot that calculates moods from an input statement and generates an response. MoodBot was created as a project for Los Altos Hacks VI.
MoodBot works by finding sentence similarities using Cosine Similarity. The sentenced are tokenized using NLTK to plug into the cosine formula. We then compared already trained input and output statements agianst each other to find matches that are within a specified threshold.
MoodBot when imported, has no pre-trained data. To train MoodBot, you can use it's training functions to train data from .json files. MoodBot finds conversations within the raw message files by finding time proximity between messages and checking for repeat message authors. After a conversation with one input statement and one output statement is created, MoodBot can find the best matching input statement to an output statement using self.response.
Basic Example:
from moodbot import discord_trainer
from moodbot import chatbot
import json
trainer = discord_trainer(token)
raw_data = trainer.query_channel(CHANNEL_ID, limit=10000)
data = []
for message in raw_data:
data.append({
'content': message.content,
'author': message.author_id,
'timestamp': message.timestamp,
})
# load into json
with open(f'data/CHANNEL_ID.json', 'w') as file:
file.write(json.dumps(data, indent=4))
client = chatbot()
client.train('data/CHANNEL_ID')
print(client.response('Hello!').content)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file moodbot-1.2.1.tar.gz
.
File metadata
- Download URL: moodbot-1.2.1.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aad7c0b9a8d784f4f3c12f3da6d0dcbf56098dc3931396d2f78a7b0ac67969ff |
|
MD5 | 17e6ae43ca1c3021e9361c037277777e |
|
BLAKE2b-256 | 70f61d2bfd571f80a363f93f01980165ecab361b9856e95d391b77b0715731a6 |