gunthercox/ChatterBot

View on GitHub
chatterbot/ext/django_chatterbot/models.py

Summary

Maintainability
A
0 mins
Test Coverage
from chatterbot.ext.django_chatterbot.abstract_models import AbstractBaseStatement, AbstractBaseTag


class Statement(AbstractBaseStatement):
    """
    A statement represents a single spoken entity, sentence or
    phrase that someone can say.
    """
    pass


class Tag(AbstractBaseTag):
    """
    A label that categorizes a statement.
    """
    pass