Skip to content

Commit 54c4a52

Browse files
committed
Add missing conversions
1 parent 29d3932 commit 54c4a52

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/behavior.scm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
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
@@ -791,12 +791,12 @@
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

src/btree-psi.scm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
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")

src/self-model.scm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
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?"))
@@ -468,7 +468,7 @@
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)

0 commit comments

Comments
 (0)