collaboration update
This commit is contained in:
parent
7d0497c336
commit
51cfe2c664
21
chatbot.py
21
chatbot.py
@ -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()
|
Loading…
Reference in New Issue
Block a user