Skip to main content

Lightweight SDK for LLM inference logging and observability

Project description

llm-obs

Lightweight Python SDK for LLM inference logging and observability.

Auto-instruments OpenAI, Anthropic, Google Gemini, AWS Bedrock, Ollama, and any OpenAI-compatible endpoint — zero changes to your LLM call code.

Vendor-neutral: send logs to any HTTP ingestion API that accepts the SDK payload (including self-hosted stacks). The Repana LLM observability platform is one compatible backend, not a requirement.


Related projects

Project What it is
This repo (llm-obs) Open-source Python SDK (MIT)
llm-observability Full stack: ingestion API, worker, dashboard (may stay private or partially open)

Install

# Core SDK
pip install llm-obs

# With provider extras
pip install "llm-obs[openai]"
pip install "llm-obs[anthropic]"
pip install "llm-obs[gemini]"
pip install "llm-obs[bedrock]"
pip install "llm-obs[all]"

Quickstart — one line

from llm_obs import ObservabilityClient

obs = ObservabilityClient(
    endpoint="http://localhost:4000",   # your ingestion API
    api_key="dev-key",
)
obs.auto_instrument()   # patches all installed LLM libraries automatically

From this point, every LLM call in your app is logged automatically. No other changes needed.


Stream chat

from llm_obs import stream_chat, set_obs_context

# Set conversation context (picked up automatically by the SDK)
set_obs_context(conversation_id="conv-123")

# Unified streaming across all providers
async for chunk in stream_chat(provider="openai", model="gpt-4o-mini", messages=[
    {"role": "user", "content": "Explain Redis in one sentence."}
]):
    print(chunk, end="", flush=True)

Provider detection from URL

from llm_obs import detect_provider, available_providers
import os

os.environ["LLM_ENDPOINTS"] = "http://localhost:11434"  # Ollama, vLLM, or any URL

# SDK probes the URL and detects what's running
providers = available_providers()
# → {"ollama": ["gemma3:4b", "llama3.2", ...]}

Supported URL detection:

  • Ollama — detected via GET /api/tags
  • vLLM / LiteLLM / LocalAI — detected via GET /v1/models
  • AWS Bedrock — detected from URL pattern (amazonaws.com)
  • OpenAI / Anthropic / Google — detected from known API URL patterns
  • Private VPC — probed automatically

What gets logged per call

Field Description
provider / model Who served the request
latency_ms Total wall-clock time
ttft_ms Time-to-first-token (streaming)
prompt_tokens / completion_tokens Token usage
cost_usd Computed from built-in price table
status success, error, cancelled
request / response PII-redacted payloads
conversation_id Linked via set_obs_context()

PII redaction

PII is redacted in-process before data leaves via HTTP — email, phone, SSN, credit cards (Luhn), API keys, IPv4, URL secrets.

obs = ObservabilityClient(..., redact_pii=True)   # default: True

Manual span

span = obs.start_span(
    provider="openai",
    model="gpt-4o-mini",
    request={"messages": [{"role": "user", "content": "Hello"}]},
    conversation_id="conv-123",
)
span.set_ttft(ms=210)
span.set_usage(prompt_tokens=42, completion_tokens=11)
span.end(status="success", streamed=True)

License

MIT

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

llm_obs-0.1.4.tar.gz (25.6 kB view details)

Uploaded Source

Built Distribution

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

llm_obs-0.1.4-py3-none-any.whl (31.3 kB view details)

Uploaded Python 3

File details

Details for the file llm_obs-0.1.4.tar.gz.

File metadata

  • Download URL: llm_obs-0.1.4.tar.gz
  • Upload date:
  • Size: 25.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for llm_obs-0.1.4.tar.gz
Algorithm Hash digest
SHA256 a865ba839b9b3242a60d1561a7d4ddd670a4baa4bd6bbb48195d96f03b38c9c9
MD5 8a9242070b7202c40dc42f50d2c95561
BLAKE2b-256 8e0ad7aae2807b396f39cccebed399afde0e12033b23a79c7f27c277bf19ece9

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_obs-0.1.4.tar.gz:

Publisher: publish.yml on repanareddysekhar/llm-obs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file llm_obs-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: llm_obs-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 31.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for llm_obs-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 91b67b0b5ba6e2f81ad796d0c50db6ad5331e71f19cad5bbcb36d5edd33814f6
MD5 99fec3cac61317d60fd4b3ec20de1168
BLAKE2b-256 63281abee2074615bf5028b298ada70b29cc44f2f24d4b31345edfe68c68a82d

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_obs-0.1.4-py3-none-any.whl:

Publisher: publish.yml on repanareddysekhar/llm-obs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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