|
39 | 39 | ;(DefineLink (DefinedPredicateNode "do-noop") (True)) |
40 | 40 | ;(pred-2-schema "do-noop") |
41 | 41 |
|
42 | | -(define demand-satisfied (True)) |
| 42 | +(define face-demand-satisfied (True)) |
43 | 43 | (define speech-demand-satisfied (True)) |
44 | 44 | (define face-demand (psi-demand "face interaction" 1)) |
45 | 45 | (define speech-demand (psi-demand "speech interaction" 1)) |
|
58 | 58 | (psi-rule (list (NotLink (DefinedPredicate "Skip Interaction?")) |
59 | 59 | (DefinedPredicate "Someone requests interaction?")) |
60 | 60 | (DefinedSchemaNode "Interaction requested action") |
61 | | - demand-satisfied (stv 1 1) face-demand) |
| 61 | + face-demand-satisfied (stv 1 1) face-demand) |
62 | 62 |
|
63 | 63 | (psi-rule (list (NotLink (DefinedPredicate "Skip Interaction?")) |
64 | 64 | (DefinedPredicate "Did someone arrive?")) |
65 | 65 | (DefinedSchemaNode "New arrival sequence") |
66 | | - demand-satisfied (stv 1 1) face-demand) |
| 66 | + face-demand-satisfied (stv 1 1) face-demand) |
67 | 67 |
|
68 | 68 | (psi-rule (list (NotLink (DefinedPredicate "Skip Interaction?")) |
69 | 69 | (DefinedPredicate "Did someone leave?")) |
70 | 70 | (DefinedSchemaNode "Someone left action") |
71 | | - demand-satisfied (stv 1 1) face-demand) |
| 71 | + face-demand-satisfied (stv 1 1) face-demand) |
72 | 72 |
|
73 | 73 | (psi-rule (list (NotLink (DefinedPredicate "Skip Interaction?")) |
74 | 74 | (DefinedPredicate "Someone visible?")) |
75 | 75 | (DefinedSchemaNode "Interact with people") |
76 | | - demand-satisfied (stv 1 1) face-demand) |
| 76 | + face-demand-satisfied (stv 1 1) face-demand) |
77 | 77 |
|
78 | 78 | (psi-rule (list (NotLink (DefinedPredicate "Skip Interaction?")) |
79 | 79 | (DefinedPredicate "Nothing happening?")) |
80 | 80 | (DefinedSchemaNode "Nothing is happening") |
81 | | - demand-satisfied (stv 1 1) face-demand) |
| 81 | + face-demand-satisfied (stv 1 1) face-demand) |
82 | 82 |
|
83 | 83 | (psi-rule (list (NotLink (DefinedPredicate "Skip Interaction?")) |
84 | 84 | (DefinedPredicate "chatbot started talking?")) |
|
0 commit comments