Skip to main content

Python SDK for the AICostManager API

Project description

AICostManager Python SDK

The AICostManager SDK reports AI usage to AICostManager, helping you track costs across providers.

Prerequisites

  1. Create a free account at aicostmanager.com and generate an API key.
  2. Export the key as AICM_API_KEY or pass it directly to the client or tracker.

Installation

uv (recommended)

uv pip install aicostmanager
# or add to an existing project
uv add aicostmanager

pip (fallback)

pip install aicostmanager

Quick start

Identify the API and service

Every usage event is tied to two identifiers:

  • api_id – the API being called (for example, the OpenAI Chat API)
  • service_key – the specific model or service within that API
  1. Visit the service lookup page and open the APIs tab. Copy the api_id for the API you are using, e.g. openai_chat.
  2. Switch to the Services tab on the same page and copy the full service_key for your model, e.g. openai::gpt-5-mini.

Track usage

from aicostmanager import Tracker

api_id = "openai_chat"          # copied from the APIs tab
service_key = "openai::gpt-5-mini"  # copied from the Services tab

with Tracker() as tracker:
    tracker.track(api_id, service_key, {
        "input_tokens": 10,
        "output_tokens": 20,
    })

Using with Tracker() ensures the background delivery queue is flushed before the program exits.

Configuration values are read from an AICM.INI file. See config.md for the complete list of available settings and their defaults.

LLM wrappers

Wrap popular LLM SDK clients to record usage automatically without calling track manually:

from aicostmanager import OpenAIChatWrapper
from openai import OpenAI

client = OpenAI()
wrapper = OpenAIChatWrapper(client)

resp = wrapper.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "Say hello"}],
)
print(resp.choices[0].message.content)


wrapper.close()  # optional for immediate delivery; required for queued delivery

See LLM wrappers for the full list of supported providers and advanced usage.

Choosing a delivery strategy

Tracker supports multiple delivery components via DeliveryType:

  • Immediate – send each record synchronously. Ideal for simple scripts or tests.
  • Persistent queue (DeliveryType.PERSISTENT_QUEUE) – durable SQLite-backed queue for reliability across restarts.

Use the persistent queue for long-running services where losing usage data is unacceptable and immediate delivery when every call can block on the API. See Persistent Delivery and the Tracker guide for details.

Interpreting /track responses

The /track endpoint now distinguishes between ingestion and background processing. Immediate delivery still returns the first result item, but the payload may not include cost_events right away. Instead, check the status field to understand how the event will be processed:

Status Meaning
queued The service key is recognised and the event has been queued for processing.
completed Processing finished synchronously (legacy servers may still return cost events immediately).
error The event failed processing and includes descriptive errors.
service_key_unknown The service key is not recognised; the event is quarantined for review.

Unknown services now produce a friendly error message, for example:

{
  "response_id": "resp-456",
  "status": "service_key_unknown",
  "errors": [
    "Service key 'unknown::service' is not recognized. Event queued for review."
  ]
}

Existing integrations should branch on result.status and treat service_key_unknown differently from error. See the tracker documentation for detailed guidance and migration tips.

For real-time insight into the persistent queue, run the queue-monitor command against the SQLite database created by PersistentDelivery:

uv run queue-monitor ~/.cache/aicostmanager/delivery_queue.db

Tracking in different environments

Python scripts

Use the context manager shown above to automatically flush the queue.

Django

# myapp/apps.py
from django.apps import AppConfig
from aicostmanager import Tracker

tracker = Tracker()

class MyAppConfig(AppConfig):
    name = "myapp"

    def ready(self):
        import atexit
        atexit.register(tracker.close)
# myapp/views.py
from .apps import tracker

def my_view(request):
    tracker.track("openai", "gpt-4o-mini", {"input_tokens": 10})
    ...

For a full setup guide, see Django integration guide.

FastAPI

from fastapi import FastAPI
from aicostmanager import Tracker

app = FastAPI()

@app.on_event("startup")
async def startup() -> None:
    app.state.tracker = Tracker()

@app.on_event("shutdown")
def shutdown() -> None:
    app.state.tracker.close()

For a full setup guide, see FastAPI integration guide.

Streamlit

import streamlit as st
from aicostmanager import Tracker
import atexit

@st.cache_resource
def get_tracker():
    tracker = Tracker()
    atexit.register(tracker.close)
    return tracker

tracker = get_tracker()

if st.button("Generate"):
    tracker.track("openai", "gpt-4o-mini", {"input_tokens": 10})

For a full setup guide, see Streamlit integration guide.

Celery

from celery import Celery
from aicostmanager import Tracker
from celery.signals import worker_shutdown

app = Celery("proj")
tracker = Tracker()

@app.task
def do_work():
    tracker.track("openai", "gpt-4o-mini", {"input_tokens": 10})

@worker_shutdown.connect
def close_tracker(**_):
    tracker.close()

For very short tasks, use with Tracker() as tracker: inside the task to ensure flushing.

More documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aicostmanager-0.1.38.tar.gz (70.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aicostmanager-0.1.38-py3-none-any.whl (57.6 kB view details)

Uploaded Python 3

File details

Details for the file aicostmanager-0.1.38.tar.gz.

File metadata

  • Download URL: aicostmanager-0.1.38.tar.gz
  • Upload date:
  • Size: 70.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aicostmanager-0.1.38.tar.gz
Algorithm Hash digest
SHA256 f5d03360717c8d5917e0bff5535805a2e063dfb0658420baa337852ecee460af
MD5 a22cc18715f9db21f9b23dea4c14796b
BLAKE2b-256 788245839abcdce9af573a1e53d38590c3bbad4bb8ce8abf9ae2986acf96c82c

See more details on using hashes here.

File details

Details for the file aicostmanager-0.1.38-py3-none-any.whl.

File metadata

  • Download URL: aicostmanager-0.1.38-py3-none-any.whl
  • Upload date:
  • Size: 57.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aicostmanager-0.1.38-py3-none-any.whl
Algorithm Hash digest
SHA256 40acde96901dfd9aba419f88fd74044f76cb803cff0a10673a3faa0b59f7f9ed
MD5 0d4eadf32cb0f13402d1c68d308c760f
BLAKE2b-256 ce2a5fc86b079f8bd888c4e7744b9fd4f81d6af308d977b97a69e741a874d55b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page