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

maitai

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

maitai

Maitai Node.js SDK

latest
npmnpm
Version
1.1.14
Version published
Weekly downloads
14
-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

Quickstart

Full docs can be found at https://docs.trymaitai.ai

Installation

Install the Maitai SDK:

npm install --save maitai

Implementation

Implementing Maitai into your application requires minimal code changes.

import Maitai from "maitai";

const maitai = new Maitai();

messages = [
    {role: "system", content: "You are a helpful ordering assistant..."},
    {role: "user", content: "Generate a response to the customer..."},
];

const response = await maitai.chat.completions.create({
  messages: messages,
  model: "llama3-70b-8192",  // Remove this line to set model in Portal
  session_id: "YOUR_SESSION_ID",
  intent: "CONVERSATION",
  application: "YOUR_APPLICATION_NAME",
});

Run Your Application

Run your application, make sure it makes at least one Chat Completion Request, then head over to https://portal.trymaitai.ai and watch Maitai learn your application in real time.

Keywords

openai

FAQs

Package last updated on 18 Dec 2025

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