Python
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 Python SDK.
Installation
To use the Dawn SDK, start by installing with pip:
Configuration
First, import the SDK and set the write key. You’ll see your write key when you log into app.dawnai.com
Tracking AI Interactions
To track AI interactions, you can use the track_ai
function. It takes the following parameters:
user_id
(str): The unique identifier of the user.event
(str): The name of the AI event you want to track.model
(Optional[str]): The name of the AI model used.user_input
(Optional[str]): The input provided by the user. (Either this or output is required)output
(Optional[str]): The output generated by the AI. (Either this or user_input is required)convo_id
(Optional[str]): The conversation ID associated with the interaction.properties
(Optional[Dict[str, Union[str, int, bool, float]]]): 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.
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:
Timestamp
Note: You can optionally provide a timestamp parameter if you need to specify a custom time for the event. If not provided, the server will generate the timestamp.
Flushing Events
The Dawn SDK uses a buffering mechanism to efficiently send events in batches. The events are automatically flushed when the buffer reaches a certain size (buffer_size
) or after a specified timeout (buffer_timeout
).
You can manually flush the events by calling the flush
function. Make sure this happens before the process exits or you will lose events:
Shutting Down
To ensure all events are processed before your application exits, call the shutdown function:
Error Handling
The SDK will retry a request up to 3 times. Failed requests will be logged, regardless of if debug_logs is true.
Configuration
The SDK has several configurable parameters:
max_queue_size
: Maximum number of events to store in the buffer (default: 10000)upload_size
: Number of events to send in a single API request (default: 100)upload_interval
: Time interval in seconds between automatic flushes (default: 1.0) You can modify these parameters if needed:
Debugging
If you want to enable debug logs to see the events being added to the buffer, you can use the set_debug_logs function:
That’s it! You should be ready to go. Please let us know if you have any questions.
Was this page helpful?