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.
16 lines
377 B
16 lines
377 B
"""
|
|
ChatterBot constants
|
|
"""
|
|
|
|
'''
|
|
The maximum length of characters that the text of a statement can contain.
|
|
This should be enforced on a per-model basis by the data model for each
|
|
storage adapter.
|
|
'''
|
|
STATEMENT_TEXT_MAX_LENGTH = 400
|
|
|
|
# The maximum length of characters that the name of a tag can contain
|
|
TAG_NAME_MAX_LENGTH = 50
|
|
|
|
DEFAULT_DJANGO_APP_NAME = 'django_chatterbot'
|