Skip to content
Dashboard

Chat SDK now supports concurrent message handling

const bot = new Chat({
concurrency: {
strategy: "queue",
maxQueueSize: 20,
onQueueFull: "drop-oldest",
queueEntryTtlMs: 60_000,
},
// ...
});

Multiple options are supported to customize your concurrency strategy.

The Complete Guide to Chat SDK

Learn how Chat SDK works end-to-end: from core concepts to building your first bot to deploying it across Slack, Teams, and more.

Read the guide

Ready to deploy?