Skip to main content

Sigmoda Python SDK for logging LLM events and OpenAI chat completions.

Project description

Sigmoda Python SDK

Sigmoda is an LLM observability and guardrails platform. This SDK gives you:

  • A thin wrapper around OpenAI chat completions that measures latency, captures prompt/response/token usage, logs to Sigmoda, and returns the original OpenAI response.
  • A log_event helper to send custom LLM events (for other providers or bespoke flows).

Install

pip install sigmoda

Configure

Set keys via environment variables (recommended):

export SIGMODA_PROJECT_KEY="YOUR_SIGMODA_PROJECT_KEY"
export OPENAI_API_KEY="YOUR_OPENAI_API_KEY"

# Optional (only if your Sigmoda setup requires it)
export SIGMODA_PROJECT_ID="YOUR_SIGMODA_PROJECT_ID"

# Optional
export SIGMODA_ENV="prod"          # prod|stage|dev
export SIGMODA_API_URL="https://api.sigmoda.com"
export SIGMODA_DISABLED="0"        # set to 1 to disable logging
export SIGMODA_DEBUG="0"           # set to 1 for debug logs
export SIGMODA_SAMPLE_RATE="1.0"   # 0.0 - 1.0
export SIGMODA_MAX_PAYLOAD_BYTES="100000"
import sigmoda

sigmoda.init(
    # Reads env vars by default:
    # - SIGMODA_PROJECT_KEY (required unless SIGMODA_DISABLED=1)
    # - SIGMODA_PROJECT_ID (optional)
    # - SIGMODA_ENV / SIGMODA_API_URL / SIGMODA_DISABLED / SIGMODA_DEBUG (optional)

    # Privacy controls (optional)
    # capture_content=False,            # don't send prompt/response text
    # redact=lambda s: "[REDACTED]",    # redact prompt/response + string metadata values
)

Wrap OpenAI chat completions

resp = sigmoda.openai.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Draft a friendly greeting."}],
    sigmoda_metadata={"route": "welcome-flow", "user_id": "123"},
)

# Use the OpenAI response as usual
print(resp.choices[0].message.content)

What happens:

  • SDK times the call, reads token usage if present, and sends a best-effort log to Sigmoda (prompt/response text only if capture_content=True).
  • Logging is fire-and-forget on a single background worker with a bounded queue; when full, events are dropped (never break your app).
  • Network sends use short timeouts + small retries for transient errors.
  • Tool call names (if any) are captured in metadata["_sigmoda"]["tool_call_names"].

You can inspect drop/retry counters and flush on shutdown:

print(sigmoda.get_stats())
sigmoda.flush(timeout=2.0)

Streaming

Streaming is supported: if you pass stream=True, the SDK returns the OpenAI stream and logs an event once the stream is fully consumed.

Notes

  • Metadata is sanitized (JSON-safe) and bounded by defaults (max_metadata_items=50, max_metadata_bytes=8192).
  • Set SIGMODA_DISABLED=1 (or disabled=True) to fully no-op logging.
  • In SIGMODA_ENV=prod, capture_content defaults to False (no prompt/response text captured). Set capture_content=True only if you’re sure it’s safe.
  • Defaults: timeout=2s, max_retries=2, max_queue_size=1000, sample_rate=1.0, max_payload_bytes=100000, max_prompt_chars=8000, max_response_chars=8000.
  • Use sigmoda_metadata={...} for Sigmoda metadata; OpenAI’s own metadata=... parameter (if you pass it) is forwarded to OpenAI.

Troubleshooting

export SIGMODA_DEBUG=1
import sigmoda
print(sigmoda.get_stats())  # queue_size, dropped_queue_full, failed, retries, sent

Common issues:

  • SIGMODA_DISABLED=1 set (no logs by design).
  • Wrong SIGMODA_API_URL (check failed / retries counters).
  • Missing SIGMODA_PROJECT_KEY (init will raise unless disabled).

Log a custom event

sigmoda.log_event(
    provider="my-llm",
    model="alpha-1",
    type="chat_completion",
    prompt="Translate 'hello' to French.",
    response="Bonjour",
    tokens_in=4,
    tokens_out=2,
    duration_ms=85,
    status="ok",
    metadata={"route": "translator"},
)

Development

  • Python 3.8+.
  • Runtime deps: requests, openai>=1,<2.
  • Tests: pytest. Run locally with:
python3 -m venv .venv
. .venv/bin/activate
pip install -e ".[test]"
pytest

See MVP_CHECKLIST.md and DEV_NOTES.md for progress tracking.

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

sigmoda-0.1.0.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

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

sigmoda-0.1.0-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file sigmoda-0.1.0.tar.gz.

File metadata

  • Download URL: sigmoda-0.1.0.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sigmoda-0.1.0.tar.gz
Algorithm Hash digest
SHA256 fa55eee5e0133c31401bab7dddb377a7548ec0a6a7246bc9120ac5a96bf79bf3
MD5 6909363b6e0db0abcefd40835e27338b
BLAKE2b-256 4c664b94b34f7f90edaabf3a3ac0fbe39e4682c6dad0711dc2819aaf54f8a588

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmoda-0.1.0.tar.gz:

Publisher: publish.yml on seljawhari/sigmoda-python

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

File details

Details for the file sigmoda-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: sigmoda-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sigmoda-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b05d4f2c8c60f96ecaf6952ad9e3a4740e59e1b91f88b2d7e5d8c953ef7578a3
MD5 04d32f200dd65e3541897721b75dfd12
BLAKE2b-256 d7f704ec4040c7ad4892b1dbf0d9153c97fb1756c073ca595b8cc7c26b6f7415

See more details on using hashes here.

Provenance

The following attestation bundles were made for sigmoda-0.1.0-py3-none-any.whl:

Publisher: publish.yml on seljawhari/sigmoda-python

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