summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDipesh Amin <yaypunkrock@gmail.com>2011-09-05 21:22:22 +0100
committerDipesh Amin <yaypunkrock@gmail.com>2011-09-05 21:22:22 +0100
commit01167a8768c1162b2d132d3e31d3f70383643454 (patch)
tree7f6153884aa1aa30861bdbf94449962e9dc9bdb6
parent559f0bcad608d547addbe78c02ba9e0e8661b592 (diff)
downloadmanamarket-01167a8768c1162b2d132d3e31d3f70383643454.tar.gz
manamarket-01167a8768c1162b2d132d3e31d3f70383643454.tar.bz2
manamarket-01167a8768c1162b2d132d3e31d3f70383643454.tar.xz
manamarket-01167a8768c1162b2d132d3e31d3f70383643454.zip
Teeny changes.
-rw-r--r--eliza.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/eliza.py b/eliza.py
index 1d67bc8..f32f057 100644
--- a/eliza.py
+++ b/eliza.py
@@ -18,7 +18,7 @@ patternResps = [
#[[pattern],[response]]
#Basics
[[0,'my','name','is',[1,'Username'],0],['will','you','be','my','friend',[1,'Username']]],
- [['who','is', 'your','mother'], ['Her' 'name', 'is' ,'AuctionBot','she','is','a','deviant']],
+ [['who','is', 'your','mother'], ['Her','name', 'is' ,'AuctionBot','she','is','a','deviant']],
[['tell', 'me', 'about', 'your' ,'mum'], ['I','hear','she','has','been','seeing','guild', 'and','they','have','adopted','a','kid','called','4144']],
[['who','was','your','father'], ['His','name','was','TradeBot, have', 'you' ,'heard' ,'of' ,'him?']],
[['how','is','business'],['My','back','is','killing','me']],
@@ -44,7 +44,7 @@ patternResps = [
[['do', 'you', 'trade','things'],['Nope','I', 'only','sell', 'items', 'added','by','other','players']],
[[[1,'can'],'have',[0,'item_name']],['Please','use', '!list','to', 'see','what', "I'm" ,'selling']],
[['you','said',[0,'we']],['I may have said ',[0,'we'],'What about it?']],
- [['what'],['what','what','?']],
+ [['what'],['what','what?']],
[['majmun'],['hello','Jat']],
[[[1, 'subject'], 'loves', [0, 'object']],['Laudable','why','does',[1,'subject'],'love',[0,'object'],'?']],
[['because'],['Lack of reason is not a reason']],
@@ -138,8 +138,8 @@ class Agent:
#choose from a default response
# or just append a question mark on the
# user's sentence.
- print '... No pattern Response pair selected.'
- print '... Choosing a default response.'
+ #print '... No pattern Response pair selected.'
+ #print '... Choosing a default response.'
#Used to be randon using random.choice
#but then i noticed that the requirements say that