Skip to content
Dashboard

Chat SDK adds Zernio support

Content Engineer
import { Chat } from "chat";
import { createZernioAdapter } from "@zernio/chat-sdk-adapter";
const bot = new Chat({
adapters: {
zernio: createZernioAdapter(),
},
});
bot.onNewMention(async (thread, message) => {
const platform = message.raw.platform;
await thread.post(`Hello from ${platform}!`);
});

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