Installation

Checkout the Typescript installation guide to get started.

Using SDK

1

Initialize the SDK

import { wrapModelWithDawn } from "@dawn-analytics/js/vercel";
import { Analytics } from "@dawn-analytics/js";

const analytics = new Analytics({ writeKey: DAWN_API_KEY });
2

Wrap your model

const dawnModel = wrapModelWithDawn(openai("gpt-4o"), analytics, {
  event: "ai_chat",
  userId: "123",
});
3

Use the model

const result = await streamText({
  model: dawnModel,
  messages: coreMessages,
});