New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

aiobs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiobs

AI Observability SDK for TypeScript - trace and monitor LLM calls

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

aiobs

npm version npm downloads License: MIT

AI Observability SDK for TypeScript - trace and monitor LLM calls.

Installation

npm install aiobs
yarn add aiobs
pnpm add aiobs

Quick Start

import OpenAI from 'openai';
import { observer, wrapOpenAIClient, observe } from 'aiobs';

// Create and wrap OpenAI client for automatic tracing
const openai = wrapOpenAIClient(new OpenAI(), observer);

// Start an observability session (requires API key)
await observer.observe({
  sessionName: 'my-session',
  apiKey: 'aiobs_sk_...', // or set AIOBS_API_KEY env var
});

// Make LLM calls - they're automatically traced
const response = await openai.chat.completions.create({
  model: 'gpt-4o-mini',
  messages: [{ role: 'user', content: 'Hello!' }],
});

// End session and flush traces (to file and remote server)
observer.end();
await observer.flush();

Features

API Key Authentication

aiobs requires an API key for usage tracking and remote trace storage:

// Option 1: Pass directly
await observer.observe({ apiKey: 'aiobs_sk_...' });

// Option 2: Environment variable
// Set AIOBS_API_KEY=aiobs_sk_...
await observer.observe();

The SDK validates your API key on session start and will throw an error if:

  • No API key is provided
  • The API key is invalid
  • Your rate limit has been exceeded

OpenAI Instrumentation

Wrap your OpenAI client to automatically capture all chat completion calls:

import OpenAI from 'openai';
import { observer, wrapOpenAIClient } from 'aiobs';

const openai = wrapOpenAIClient(new OpenAI(), observer);

// All chat.completions.create calls are now traced
await openai.chat.completions.create({
  model: 'gpt-4o-mini',
  messages: [{ role: 'user', content: 'What is TypeScript?' }],
});

Function Tracing

Use the observe wrapper to trace your own functions:

import { observe } from 'aiobs';

// Wrap a function for tracing
const processQuery = observe(async function processQuery(query: string) {
  // Your logic here
  return result;
});

// With options
const analyzeText = observe(
  async function analyzeText(text: string) {
    // Your logic here
    return analysis;
  },
  { name: 'text_analysis', captureArgs: true, captureResult: true }
);

Nested Tracing

Traces automatically capture parent-child relationships:

const outerFunction = observe(async function outerFunction() {
  // This creates a child span linked to outerFunction
  await innerFunction();
});

const innerFunction = observe(async function innerFunction() {
  // OpenAI calls here are also linked as children
  await openai.chat.completions.create({ ... });
});

Session Labels

Add metadata to your sessions for filtering and categorization:

// At session start
await observer.observe({
  sessionName: 'production-run',
  labels: {
    environment: 'production',
    user_id: 'user123',
    version: '1.0.0',
  },
});

// Or dynamically during the session
observer.addLabel('request_id', 'req-abc123');
observer.setLabels({ batch_id: 'batch-1' }, true); // merge with existing

Environment Variable Labels

Set labels via environment variables (prefixed with AIOBS_LABEL_):

AIOBS_LABEL_ENVIRONMENT=production
AIOBS_LABEL_SERVICE=my-service

These are automatically included in all sessions.

Remote Trace Storage

When you call flush(), traces are automatically sent to the aiobs server for:

  • Centralized storage and querying
  • Usage tracking
  • Analysis and insights
// Traces are written locally AND sent to the server
await observer.flush();

// Skip local file, only send to server
await observer.flush({ persist: false });

API Reference

observer (Collector singleton)

MethodDescription
observe(options?)Start a new session (async). Returns session ID.
end()End the current session.
flush(options?)Write traces to file and server (async).
addLabel(key, value)Add a label to current session.
setLabels(labels, merge?)Set/merge labels on current session.
removeLabel(key)Remove a label from current session.
getLabels()Get all labels for current session.
reset()Reset collector state (for testing).

observe(fn, options?)

Wrap a function for tracing.

Options:

  • name?: string - Custom name for the trace (default: function name)
  • captureArgs?: boolean - Capture function arguments (default: true)
  • captureResult?: boolean - Capture return value (default: true)
  • enhPrompt?: boolean - Include in enhanced prompt traces (default: false)

wrapOpenAIClient(client, collector)

Wrap an OpenAI client instance for automatic instrumentation.

const openai = wrapOpenAIClient(new OpenAI(), observer);

Environment Variables

VariableDescription
AIOBS_API_KEYAPI key for authentication
AIOBS_DEBUGSet to any value to enable debug logging
AIOBS_LABEL_*Auto-included labels (e.g., AIOBS_LABEL_ENV=prod)
AIOBS_FLUSH_SERVER_URLOverride flush server URL (for self-hosted)
LLM_OBS_OUTDefault output file path

Output Format

Traces are written as JSON with the following structure:

{
  "sessions": [...],
  "events": [...],
  "function_events": [...],
  "trace_tree": [...],
  "enh_prompt_traces": [...],
  "generated_at": 1234567890.123,
  "version": 1
}

License

MIT © Neuralis

Keywords

ai

FAQs

Package last updated on 04 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts