9 lines
237 B
Python
9 lines
237 B
Python
|
from nltk.chat.util import Chat
|
||
|
import consts as consts
|
||
|
|
||
|
cheddy = Chat(consts.questions, reflections=consts.reflections)
|
||
|
print("\nNapisz 'quit' aby zakonczyc.")
|
||
|
print("-" * 70)
|
||
|
print("Witaj. Co chcesz mi powiedzieć?")
|
||
|
cheddy.converse()
|