Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt

Use this file to discover all available pages before exploring further.

The Meibel AI Node.js SDK provides TypeScript-first support for JavaScript developers.
The Node.js SDK is currently under development. Check back soon for availability.

Coming Soon

The Node.js SDK will include:
  • Full TypeScript support
  • Promise-based API
  • Streaming support
  • Automatic retries
  • Comprehensive error handling

Planned Features

Installation

npm install @meibel-ai/sdk
# or
yarn add @meibel-ai/sdk

Basic Usage

import { MeibelAI } from '@meibel-ai/sdk';

const client = new MeibelAI({
  apiKey: process.env.MEIBELAI_API_KEY
});

const response = await client.rag.chat({
  messages: [{ role: 'user', content: 'Hello!' }]
});

Get Notified

Want to be notified when the Node.js SDK is available?

Alternative Options

While waiting for the official Node.js SDK:
  1. Use the REST API directly with your favorite HTTP client
  2. Generate a client using our OpenAPI specification
  3. Use the Python SDK with a Python bridge

Next Steps