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.
35 lines
699 B
35 lines
699 B
from chatterbot.ext.django_chatterbot.abstract_models import (
|
|
AbstractBaseConversation, AbstractBaseResponse,
|
|
AbstractBaseStatement, AbstractBaseTag
|
|
)
|
|
|
|
|
|
class Statement(AbstractBaseStatement):
|
|
"""
|
|
A statement represents a single spoken entity, sentence or
|
|
phrase that someone can say.
|
|
"""
|
|
pass
|
|
|
|
|
|
class Response(AbstractBaseResponse):
|
|
"""
|
|
A connection between a statement and anther statement
|
|
that response to it.
|
|
"""
|
|
pass
|
|
|
|
|
|
class Conversation(AbstractBaseConversation):
|
|
"""
|
|
A sequence of statements representing a conversation.
|
|
"""
|
|
pass
|
|
|
|
|
|
class Tag(AbstractBaseTag):
|
|
"""
|
|
A label that categorizes a statement.
|
|
"""
|
|
pass
|