simplex-chat/apps/simplex-bot-advanced
Evgeny Poberezkin 087acd9180
changes to support GHC 8.10.7 (#3512)
* Revert "raise lower bound on mtl to a real version (#3499)"

This reverts commit f94c0311c1.

* Revert "core: expand ranges to fit ghc 8.10 & 9.6 (#3496)"

This reverts commit 9a1c7f41f7.

* update simplexmq

* remove netword-transport fork

* compatibility with GHC 8.10.7

* simplexmq

* fix test

* simplexmq, deps

* update sqlcipher deps in sha256nix

* fix index-state in cabal.project

* index-state

* remove import

* add cabal.project.freeze

* simplexmq

* remove freeze

* simplexmq

* bytestring,simplexmq

* template-haskell, simplexmq

* simplexmq

* simplexmq

* simplexmq

* mtl

* simplexmq

* remove duplicate index-state
2023-12-04 12:29:49 +00:00
..
Main.hs changes to support GHC 8.10.7 (#3512) 2023-12-04 12:29:49 +00:00
README.md apps: update chat bots, readme (#1928) 2023-02-14 07:57:27 +00:00

Advanced SimpleX Chat bot example

In most cases a simple REPL bot is sufficient, but in cases you want to program more advanced communication scenarios you may take a more complex event-based approach, as in this example.

Event-based approach allows you:

  • decide whether to connect to a user or not depending on any factors, e.g. user display name.
  • disconnect from users who send too many messages or send messages that bot finds inappropriate.
  • react to message deletions and editing.
  • process reply messages differently, taking the original message into account.
  • process and send images and voice messages.
  • create groups of users, e.g. to connect 2 users.
  • etc.