diff options
| author | LLLL Colonq <llll@colonq> | 2024-09-13 13:52:38 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2024-09-13 13:52:38 -0400 |
| commit | d93ab7e848bf0f4bc1087504eecd7c959d19bf6c (patch) | |
| tree | f4f1806ceb56d2a68c9641313000f9a50fa77d78 /src/gizmo/wasp-fakechat.el | |
| parent | cc3ccebbd3af825f5e4866532906f1a7a2756518 (diff) | |
Update :3
Diffstat (limited to 'src/gizmo/wasp-fakechat.el')
| -rw-r--r-- | src/gizmo/wasp-fakechat.el | 25 |
1 files changed, 25 insertions, 0 deletions
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" |
