File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 129129
130130 ; ; Show random expressions only if NOT talking
131131 (SequentialOr
132- ; (Not (DefinedPredicate "chatbot is listening"))
132+ ; (Not (DefinedPredicate "chatbot is listening? "))
133133 (SequentialAnd
134134
135135 (SequentialOrLink
791791
792792 ; If the chatbot stopped talking ...
793793 (SequentialAnd
794- (DefinedPredicate " chatbot is listening" )
794+ (DefinedPredicate " chatbot is listening? " )
795795 (DefinedPredicate " Listening ongoing" ))
796796
797797 ; If the chatbot stopped talking ...
798798 (SequentialAnd
799- (DefinedPredicate " chatbot stopped listening" )
799+ (DefinedPredicate " chatbot stopped listening? " )
800800 (DefinedPredicate " Listening ended" ))
801801
802802 (SequentialAnd
Original file line number Diff line number Diff line change 4242; Load the Eva personality configuration.
4343; (display %load-path)
4444(add-to-load-path " ../src" )
45- (load-from-path " cfg-eva.scm" ) ; ;; <<<=== See, its Eva here!
46- ; (load-from-path "cfg-sophia.scm") ;;; <<<=== See, its Sophia here!
45+ ; (load-from-path "cfg-eva.scm") ;;; <<<=== See, its Eva here!
46+ (load-from-path " cfg-sophia.scm" ) ; ;; <<<=== See, its Sophia here!
4747
4848; ; Load the actual psi rules.
4949(load-from-path " psi-behavior.scm" )
Original file line number Diff line number Diff line change 2626; Examples and debugging hints:
2727; Some (but not all) state queries:
2828; (cog-evaluate! (DefinedPredicate "chatbot is talking?"))
29- ; (cog-evaluate! (DefinedPredicate "chatbot is listening"))
29+ ; (cog-evaluate! (DefinedPredicate "chatbot is listening? "))
3030; (cog-evaluate! (DefinedPredicate "chatbot is happy"))
3131; (cog-evaluate! (DefinedPredicateNode "Did someone arrive?"))
3232; (cog-evaluate! (DefinedPredicateNode "Someone visible?"))
468468 (DefinedPredicate "Is interacting with someone?")
469469 (OrLink
470470 ; true if talking not listening.
471- (NotLink (DefinedPredicate "chatbot is listening"))
471+ (NotLink (DefinedPredicate "chatbot is listening? "))
472472 ; true if not not-making eye-contact.
473473 (NotLink (Equal
474474 (SetLink no-interaction)
You can’t perform that action at this time.
0 commit comments