New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@chatbotkit/sdk

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chatbotkit/sdk

The fastest way to build advanced AI chat bots

Source
npmnpm
Version
1.26.3
Version published
Weekly downloads
534
96.32%
Maintainers
1
Weekly downloads
 
Created
Source

Follow on Twitter ChatBotKit CBK.AI NPM Email Discord

ChatBotKit Node SDK

Welcome to the ChatBotKit Node SDK. This is a Node.js-based solution designed to simplify the process of building conversational AI chatbots. Utilize ChatBotKit to rapidly develop and deploy AI bots capable of natural language interactions.

Getting Started

Embark on creating your chatbot with ChatBotKit in a few easy steps:

  • Installation: To integrate the SDK into your project, use npm:
    npm install @chatbotkit/sdk
    
  • Implementation: Start using the SDK to build and manage your chatbot.

Example: Streaming in Edge and Serverless Environments

Below is a straightforward example demonstrating how to implement streaming with the SDK in both Edge and Serverless environments:

import { ConversationClient } from '@chatbotkit/sdk/conversation/index.js'

// Initialize the ConversationClient
const client = new ConversationClient({
  /* configuration options */
})

// Stream messages using the ConversationClient
for await (const { type, data } of client
  .complete(null, { model: 'gpt-5-mini', messages })
  .stream()) {
  if (type === 'token') {
    process.stdout.write(data.token)
  }
}

// Additional processing can be added here

Explore a detailed example with more advanced features here.

Documentation

For an in-depth exploration of the ChatBotKit Node SDK, including insights into its capabilities and configurations for different environments, visit our type documentation page.

Contributing

Encountered a bug or interested in contributing? Your participation is highly appreciated! Feel free to open an issue or submit a pull request on our official GitHub repository.

Built With ChatBotKit

  • FormShare - Bring your forms to life with generative UI.
  • PeopleAI - Experience history like never before with our AI chatbots.

Keywords

gpt3

FAQs

Package last updated on 20 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts