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
667 B
35 lines
667 B
7 years ago
|
from .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
|