Node.js (AI) SDK reference
Read time: 6 minutes
Last edited: Dec 18, 2024
The AI configs product is only available in early access for customers on select plans. To request early access, navigate to AI configs and join the waitlist.
The AI SDKs are designed for use with the AI configs product. The Node.js (AI) SDK is currently in an alpha version.
Overview
This topic documents how to get started with the Node.js (AI) SDK, and links to reference information on all of the supported features. You can use either JavaScript or TypeScript when working with the Node.js (AI) SDK.
LaunchDarkly's SDKs are open source. In addition to this reference guide, we provide source, API reference documentation, and sample applications:
Resource | Location |
---|---|
SDK API documentation | SDK API docs |
GitHub repository | node-server-sdk-ai |
Sample application | Using Bedrock, Using OpenAI |
Published module | npm |
This SDK is intended for use in multi-user Node.js server applications. To learn more about LaunchDarkly's different SDK types, read Client-side, server-side, and edge SDKs.
Get started
LaunchDarkly AI SDKs interact with AI configs. AI configs are the LaunchDarkly resources that manage model configurations and messages for your generative AI applications.
This reference guide describes working specifically with the Node.js (AI) SDK. For a complete introduction to LaunchDarkly AI SDKs and how they interact with AI configs, read Quickstart for AI configs.
You can use the Node.js (AI) SDK to customize your AI config based on the context that you provide. This means both the message and the model evaluation in your generative AI application are specific to each end user, at runtime. You can also use the AI SDKs to record metrics from your AI model generation, including duration and tokens.
Follow these instructions to start using the Node.js (AI) SDK in your application.
Install the SDK
First, install the AI SDK as a dependency in your application using your application's dependency manager. If you want to depend on a specific version, refer to the SDK releases page to identify the latest version. The Node.js (AI) SDK is built on the Node.js (server-side) SDK, so you'll need to install that as well.
Here's how:
Next, import init
, LDContext
, and initAi
in your application code. If you are using TypeScript, you can optionally import the LaunchDarkly LDAIClient
and LDAIConfig
. These are implied, so are not strictly required.
Here's how:
Initialize the client
After you install and import the SDK, create a single, shared instance of LDClient
. When the LDClient
is initialized, use it to initialize the LDAIClient
. The LDAIClient
is how you interact with AI configs. Specify the SDK key to authorize your application to connect to a particular environment within LaunchDarkly.
The Node.js AI and server-side SDKs use an SDK key. Keys are specific to each project and environment. They are available from the Environments list for each project. To learn more about key types, read Keys.
Here's how:
Configure the context
Next, configure the context that will use the AI config, that is, the context that will encounter generated AI content in your application. The context attributes determine which variation of the AI config LaunchDarkly serves to the end user, based on the targeting rules in your AI config. If you are using template variables in the messages in your AI config's variations, the context attributes also fill in values for the template variables.
Here's how:
Customize an AI config
Then, use config
to customize the AI config. You need to call config
each time you generate content from your AI model.
This function returns the customized messages and model. Customization means that any variables you include in the messages when you define the AI config variation have their values set to the context attributes and variables you pass to config
. Then, you can pass the customized messages directly to your AI.
The customization process within the AI SDK is similar to evaluating flags in one of LaunchDarkly's client-side, server-side, or edge SDKs, in that the SDK completes the customization without a separate network call.
Here's how:
To learn more, read Customizing AI configs.
Record metrics from AI model generation
Finally, use one of the track[Model]Metrics
functions to record metrics from your AI model generation.
Here's how:
Alternatively, you can use the SDK's other track*
functions to record these metrics manually. You may need to do this if you are using a model for which the SDK does not provide a convenience track[Model]
function. The track[Model]
functions are expecting a response, so you may also need to do this if your application requires streaming.
Make sure to call config
each time you generate content from your AI model:
To learn more, read Tracking AI metrics.
Supported features
This SDK supports the following features: