File size: 393 Bytes
b092c58
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
class CommandLine:
    def __init__(self, chatbot):
        self.chatbot = chatbot

    def run(self):
        print(f"{self.chatbot.character_definition.name}: {self.chatbot.greet()}")
        while True:
            text = input("You: ")
            if text:
                print(
                    f"{self.chatbot.character_definition.name}: {self.chatbot.step(text)}"
                )