16 lines
		
	
	
		
			377 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			377 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
| 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'
 | 
