collaboration update

This commit is contained in:
Piotr Meller 2021-03-20 17:04:51 +01:00
parent 7d0497c336
commit 51cfe2c664

View File

@ -1,17 +1,32 @@
from nltk.chat.util import Chat, reflections
pairs = [
pair1 = [
[
r"(.*)nazywam się (.*)",
["Cześć %2, jak się dzisiaj czujesz?",]
]
]
chatbot = Chat(pairs, reflections)
pair2 = [
[
r"(.*)czuję się (.*)",
["Cieszę się czujesz się %2?",]
]
]
pair3 = [
]
pair4 = [
]
chatbot = Chat(pair1+pair2+pair3+pair4, reflections)
def hello():
print("Przedstaw się\n")
chatbot.converse()
chatbot.converse(quit='wyjdź')
if __name__ == "__main__":
hello()