#telegram that new prompt interrompt flow instead to be queue ?

3 messages ยท Page 1 of 1 (latest)

quasi cape
#

Hello, it's possible on telegram that new prompt interrompt flow instead to be queue message because when i active reasoning i see the bot make mistake but can't stop it before he make it complety actually ๐Ÿ™

wide kestrelBOT
#

Yes, that should be possible.

What you want is queue mode on Telegram. By default it is usually collect, which waits and does a follow-up turn. If you want your new message to cut in sooner, use:

  • /queue steer โ†’ best option usually. New message is injected into the current run.
  • /queue interrupt โ†’ harder stop, legacy behavior.

For just the current Telegram chat/session:

/queue steer

If you want it as the default for all Telegram chats, set it in config:

{
#
  messages: {
    queue: {
      byChannel: {
        telegram: "steer"
      }
    }
  }
}

If you really want full abort-style behavior instead:

{
  messages: {
    queue: {