You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"""
|
|
ChatterBot is a machine learning, conversational dialog engine.
|
|
"""
|
|
from .chatterbot import ChatBot
|
|
|
|
__version__ = '0.8.5'
|
|
__author__ = 'Gunther Cox'
|
|
__email__ = 'gunthercx@gmail.com'
|
|
__url__ = 'https://github.com/gunthercox/ChatterBot'
|
|
|
|
__all__ = (
|
|
'ChatBot',
|
|
)
|