Installation

To install the Latitude SDK, use your preferred package manager:

npm install @latitude-data/sdk
# or
yarn add @latitude-data/sdk
# or
pnpm add @latitude-data/sdk

Usage

To trace Together calls with Latitude, you need to install the Together SDK and initialize the Latitude SDK with your API key:

from latitude_sdk import Latitude, LatitudeOptions
from latitude_telemetry import Instrumentors, TelemetryOptions

Latitude('your-api-key-here', LatitudeOptions(
  telemetry=TelemetryOptions(
    instrumentors=[
      Instrumentors.Together,
    ],
  ),
))