From d93ab7e848bf0f4bc1087504eecd7c959d19bf6c Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Fri, 13 Sep 2024 13:52:38 -0400 Subject: Update :3 --- src/gizmo/wasp-fakechat.el | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/gizmo/wasp-fakechat.el') diff --git a/src/gizmo/wasp-fakechat.el b/src/gizmo/wasp-fakechat.el index 37036450..d7582ddc 100644 --- a/src/gizmo/wasp-fakechat.el +++ b/src/gizmo/wasp-fakechat.el @@ -12,6 +12,7 @@ (require 'wasp-audio) (require 'wasp-ai) (require 'wasp-twitch) +(require 'wasp-prod) (defvar w/fake-chatters nil "List of all active fake chatters.") @@ -142,6 +143,13 @@ 0.8 0.0)))) +(defconst w/fake-chatter-profile-prodzpod + (w/make-fake-chatter-profile + :username "prodzpod" + :compute-likeliness #'w/fake-chatter-standard-likeliness + :send-message + (lambda (st) (w/prod-clone-respond (w/fake-chat-prompt-build st))))) + (defconst w/fake-chatter-profile-forsen (w/make-fake-chatter-profile :username "forsen" @@ -159,6 +167,23 @@ "forsenC" )))) +(defconst w/fake-chatter-profile-eighteyedsixwingedseraph + (w/make-fake-chatter-profile + :username "eighteyedsixwingedseraph" + :color "#777777" + :compute-likeliness #'w/fake-chatter-standard-likeliness + :send-message + (lambda (_) + (w/write-chat-event "eighteyedsixwingedseraph is lurking")))) + +(defconst w/fake-chatter-profile-nefrayu + (w/make-fake-chatter-profile + :username "Nefrayu" + :compute-likeliness #'w/fake-chatter-standard-likeliness + :send-message + (lambda (st) + (w/fake-chatter-send st "hello")))) + (defconst w/fake-chatter-profile-bigwomenbigfun (w/make-fake-chatter-profile :username "BigWomenBigFun" -- cgit v1.2.3