rubensmau's picture
repo chat upload
b092c58
raw
history blame contribute delete
393 Bytes
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)}"
)