Errol/main.py

13 lines
174 B
Python

from src.errol import Errol
print('loading...')
errol = Errol()
sentence = ''
while sentence != 'exit':
sentence = input("oui ?")
print(errol.answer(sentence))