Typescript
The Dawn SDK allows you to track user events and AI interactions in your app. This documentation provides a brief overview of how to use the Typescript SDK.
Installation
To use the Dawn SDK, start by installing with npm, yarn, pnpm, or bun
Before using the SDK, you need to set the write_key
variable with your SDK write key. You can obtain a write key by logging in to your dashboard, or contacting the Dawn team.
Tracking AI Interactions
To track AI interactions, you can use the trackAi
function. It takes the following parameters:
-
userId
(string): The unique identifier of the user. -
event
(string): The name of the AI event you want to track. -
input
(optional string): The input provided by the user. (Either this oroutput
is required) -
output
(optional string): The output generated by the AI. (Either this orinput
is required) -
attachments
(optional array): An array of attachment objects (see #attachments for details). -
model
(optional string): The name of the AI model used. -
convoId
(optional string): The conversation ID associated with the interaction. -
properties
(optional object): Additional properties associated with the AI event.
Example usage:
Attachments
Attachments allow you to include context from the user (e.g. an attached image), or stuff that the model outputted (whether that is an image, document, code, or even an entire web page).
Each attachment is an object with the following properties:
-
type
(string): The type of attachment. Can be “code”, “text”, “image”, or “iframe”. -
name
(optional string): A name for the attachment. -
value
(string): The content or URL of the attachment. -
role
(string): Either “input” or “output”, indicating whether the attachment is part of the user input or AI output. -
language
(optional string): For code attachments, specifies the programming language.
Example of different attachment types:
Event has a limit of 1 MB. Properties will be truncated for larger events.
PII Redaction
Read more on how Dawn handles privacy and PII redaction here. You can enable client-side PII redaction when intializing the Analytics
class like so:
Identifying Users
To associate traits with users, you can use the identify
function. It takes the following parameters:
-
user_id
(str): The unique identifier of the user. -
traits
(Dict[str, Union[str, int, bool, float]]): The traits associated with the user.
Example usage:
Tracking Other Events
To track normal analytics events, you can use the track
function. It takes the following parameters:
-
user_id
(str): The unique identifier of the user. -
event
(str): The name of the event you want to track. -
properties
(Optional[Dict[str, Union[str, int, bool, float]]]): Additional properties associated with the event like location, OS version, etc.
Example usage:
Close when finished
Error Handling
If an error occurs while sending events to Dawn, an exception will be raised. Make sure to handle exceptions appropriately in your application.
Debugging
If you want to enable debug logs to see the events being added to the buffer, you can set the debugLogs
variable to true
:
That’s it! You should be ready to go. Please let us know if you have any questions.
Was this page helpful?