Skip to main content

DSPy observability SDK for cmpnd-track

Project description

cmpnd

DSPy observability SDK for cmpnd Obsersve.

Automatically trace your DSPy programs with one line of code.

Installation

pip install cmpnd-observe

Quick Start

import cmpnd

# Configure with your API key
cmpnd.configure(api_key="ct_xxx", project="my-project")

# Enable automatic DSPy instrumentation
cmpnd.auto_instrument()

# Your DSPy code is now automatically traced!
import dspy

lm = dspy.LM("openai/gpt-4o-mini")
dspy.configure(lm=lm)

cot = dspy.ChainOfThought("question -> answer")
result = cot(question="What is DSPy?")
# Trace is automatically sent to cmpnd-track

Configuration

Using environment variables

export CMPND_API_KEY="ct_your_api_key"
export CMPND_ENDPOINT="https://observe.cmpnd.ai"  # optional
import cmpnd

cmpnd.configure()  # Reads from environment
cmpnd.auto_instrument()

Configuration options

cmpnd.configure(
    api_key="ct_xxx",                # Required: API key
    endpoint="https://observe.cmpnd.ai", # Optional: Backend URL
    project="my-project",            # Optional: Project name
    batch_size=100,                  # Optional: Batch size for export
    flush_interval_seconds=5.0,      # Optional: Flush interval
    capture_inputs=True,             # Optional: Capture function inputs
    capture_outputs=True,            # Optional: Capture function outputs
    default_tags={"env": "prod"},    # Optional: Tags for all traces
)

Custom Spans

Add custom spans to trace non-DSPy code:

Using the decorator

from cmpnd import trace, SpanType

@trace(name="fetch_documents", span_type=SpanType.RETRIEVE)
def fetch_documents(query: str) -> list[str]:
    # Your retrieval logic
    return documents

Using the context manager

from cmpnd import start_span, SpanType

def run_pipeline(query: str):
    with start_span("vector_search", span_type=SpanType.RETRIEVE) as span:
        span.set_attribute("index", "my-faiss-index")
        docs = search(query)
        span.set_outputs({"doc_count": len(docs)})

    return generate(query, docs)

What Gets Traced

The SDK automatically captures:

Module Execution

  • Module type (Predict, ChainOfThought, ReAct, etc.)
  • Signature name and instructions
  • Input/output field names
  • Demo count

LM Calls

  • Model name and provider
  • Token usage (prompt, completion, total)
  • Request/response content

Adapters

  • Format and parse operations
  • Input/output transformations

Tools

  • Tool name and description
  • Invocation inputs/outputs

Evaluations

  • Evaluation scores
  • Program being evaluated

Span Types

Available span types for categorization:

  • SpanType.MODULE - Generic DSPy module
  • SpanType.PREDICT - Predict module
  • SpanType.CHAIN_OF_THOUGHT - ChainOfThought module
  • SpanType.REACT - ReAct agent
  • SpanType.RETRIEVE - Retrieval operations
  • SpanType.LM_CALL - Language model calls
  • SpanType.ADAPTER_FORMAT - Adapter formatting
  • SpanType.ADAPTER_PARSE - Adapter parsing
  • SpanType.TOOL - Tool invocations
  • SpanType.EVALUATION - Evaluation runs

API Reference

cmpnd.configure()

Initialize the SDK with your API key and options.

cmpnd.auto_instrument()

Automatically register the callback with DSPy.

cmpnd.CmpndCallback

The callback class for manual registration:

import dspy
import cmpnd

cmpnd.configure(api_key="ct_xxx")
dspy.configure(callbacks=[cmpnd.CmpndCallback()])

cmpnd.trace()

Decorator for custom traced functions.

cmpnd.start_span()

Context manager for custom spans.

cmpnd.get_current_trace()

Get the current trace (if any).

cmpnd.get_current_span()

Get the current span (if any).

cmpnd.shutdown_exporter()

Gracefully shutdown the background exporter.

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

cmpnd_observe-0.0.3.tar.gz (138.9 kB view details)

Uploaded Source

Built Distribution

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

cmpnd_observe-0.0.3-py3-none-any.whl (62.5 kB view details)

Uploaded Python 3

File details

Details for the file cmpnd_observe-0.0.3.tar.gz.

File metadata

  • Download URL: cmpnd_observe-0.0.3.tar.gz
  • Upload date:
  • Size: 138.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for cmpnd_observe-0.0.3.tar.gz
Algorithm Hash digest
SHA256 ec794d41755b80a1d4cc47c3b8009ef5ff772b4a1fed40cd42db2fac61fd021b
MD5 89cac15d3c4c01f0853ec92c1abb2a10
BLAKE2b-256 9926877fd60faf0e23c65e7874082a2549deefc76fea3d2a5e61e6e0176ea229

See more details on using hashes here.

File details

Details for the file cmpnd_observe-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: cmpnd_observe-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 62.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for cmpnd_observe-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 513e26a7129524d0939a7237ddb4cc28e22c5bfd5df51e4f9754e9da9f2f360a
MD5 8971856922d1ff7c9216683a90a17e92
BLAKE2b-256 a85e92c31a22c1a1ef247ce4979a45d27673c230c0b90302d45f2b0fdf19733a

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