Fox-V3/chatter/__init__.py
bobloy 225246be9a
Chatter revamp (#107)
* Move to importing the actual library

* Chat revamp

* Attempt at functioning info

* Remove chatterbot as a requirement, install manually

* Add chatter README.md
Switch to medium spaCy model by default
Correct paths for requirements.txt

* Add Known Issues to README.md

* Forgot about this line. Was it causes reload issue?

* Known Issues: Installation

* Add some more tags

* Adjust requirements

* Bump chatter to Beta, ccrole to release, dad to Beta, hangman to Beta, infochannel to Beta

* Gotta be medium in requirements as wel

* Better conversation grouping and formatting

* Random instead of first for more variety
Disable custom similarity threshold for now, until it's configurable
use filter to avoid looking at empty messages
2020-07-30 09:59:03 -04:00

11 lines
113 B
Python

from .chat import Chatter
def setup(bot):
bot.add_cog(Chatter(bot))
# __all__ = (
# 'chatterbot'
# )