Getting Started

Our analytics app is designed to help you track and analyze user interactions with large language models (LLMs). Gain insights into token consumption, costs, and top consumers with interactive charts tailored to your application's usage.

Quick Setup Guide

Step 1: Add Your Application

  • Sign up or log in to your account.
  • Click Add Application and provide the following details:
    • Application Name
    • Select the LLM model (currently supporting single LLM per application)
    • Reporting Timezone.

Step 2: Get Your Unique Token

  • After adding the application, a unique authentication token will be generated.
  • This token is required to send usage events to our API.
  • Important: Do not expose this token to your clients. Ensure it is securely stored on your server to prevent unauthorized access.

Step 3: Integrate with Our API

  • Update your application to send events to our API.
  • Include the following payload in your event requests:
POST /v1/events HTTP/1.1
Host: api.affordai.io
Authorization: Bearer <your-application-token>
Content-Type: application/json

{
  "appId": "your-application-id", // unique application id
  "eventType": "text_gen", // currently only "text_gen" is supported
  "consumerId": "user@example.com", // might be any user identifier or null for anonymous request
  "inputTokens": 500,
  "inputTokensCached": 100, // optional, used for models which support tokens caching
  "outputTokens": 300
}

Step 4: Explore Your Dashboard

  • Once events are sent successfully, access your Application Dashboard to view:
    • Token Consumption: Analyze how many tokens your application is using.
    • Cost Overview: Monitor associated costs.
    • Top Consumers: Identify your most active users.

Current Limitations

  • Event Type: Currently supports only text-generation events.
  • LLM Per Application: Only a single LLM model can be assigned per application.

For detailed API documentation and troubleshooting tips, visit our API Docs.

Start tracking and optimizing your LLM interactions today!