17 lines
		
	
	
		
			416 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			416 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| from .output_adapter import OutputAdapter
 | |
| 
 | |
| 
 | |
| class TerminalAdapter(OutputAdapter):
 | |
|     """
 | |
|     A simple adapter that allows ChatterBot to
 | |
|     communicate through the terminal.
 | |
|     """
 | |
| 
 | |
|     def process_response(self, statement, session_id=None):
 | |
|         """
 | |
|         Print the response to the user's input.
 | |
|         """
 | |
|         print(statement.text)
 | |
|         return statement.text
 | 
