@ -1,6 +1,6 @@
from __future__ import unicode_literals
from .logic_adapter import LogicAdapter
from chatter.chatterbot.logic import LogicAdapter
class BestMatch(LogicAdapter):
@ -1,7 +1,7 @@
from chatter.chatterbot.conversation import Statement
from .best_match import BestMatch
from chatter.chatterbot.logic import BestMatch
class LowConfidenceAdapter(BestMatch):
@ -3,7 +3,7 @@ from __future__ import unicode_literals
from collections import Counter
from chatter.chatterbot import utils
class MultiLogicAdapter(LogicAdapter):
class NoKnowledgeAdapter(LogicAdapter):
class SpecificResponseAdapter(LogicAdapter):
@ -2,7 +2,7 @@ from __future__ import unicode_literals
from datetime import datetime
class TimeLogicAdapter(LogicAdapter):