Skip to main content

Pylva SDK — cost infrastructure for AI agent businesses

Project description

pylva (Python)

Cost infrastructure for AI agent businesses. Auto-instruments openai and anthropic clients; emits server-priced telemetry to your Pylva backend.

Version 1.0.1 is the first public SDK foundation release. Public APIs follow SemVer from this release onward; the telemetry wire format remains schema 1.6.

pip install pylva-sdk
import pylva

pylva.init(api_key="pv_live_...", endpoint="https://api.pylva.com")
# every subsequent openai / anthropic call emits a telemetry event.

Package name

The PyPI distribution package is pylva-sdk; the runtime import package is pylva:

pip install pylva-sdk
import pylva

Failover (reliability_failover rules)

If you use reliability_failover rules, switch to the explicit-client constructor so Pylva has a handle to the backup provider:

from openai import OpenAI
from anthropic import Anthropic
from pylva import Pylva

Pylva(
    api_key="pv_live_...",
    openai=OpenAI(),
    anthropic=Anthropic(),
)

pylva.init(api_key) keeps working for telemetry-only deployments. In v1.0, the SDK detects active cross-provider failover states and surfaces warnings; actual backup-provider dispatch is still beta/internal and is not part of the stable launch promise.

Auto-instrumentation

Importing pylva monkey-patches any openai / anthropic modules already loaded. Patches are isolated per R1 — SDK errors never propagate to your agent.

Calls are captured with: model, provider, tokens_in, tokens_out, latency_ms, status, step_name (if set), customer_id. Cost is computed server-side.

Tracking context

from pylva import track_context

with track_context(customer_id="acme-corp", step="authentication"):
    resp = openai_client.chat.completions.create(...)

track_context is a contextvars-backed context manager; it threads metadata across async + threaded boundaries correctly.

Non-LLM costs

from pylva import report_usage

report_usage(
    customer_id="acme-corp",
    tool="translation",
    metric="characters",
    value=4200,
    step="translation",
)

Reactive budget enforcement (B2a)

When a builder configures a budget_limit rule with hard_stop=True, the SDK enforces pre-call:

import pylva
from pylva import PylvaBudgetExceeded, BudgetExceededSource

pylva.init(api_key="pv_live_...")

try:
    resp = openai_client.chat.completions.create(...)
except PylvaBudgetExceeded as err:
    print(f"Budget hit for {err.customer_id}: ${err.accumulated_usd:.2f} / ${err.limit_usd:.2f}")
    print(f"Source: {err.source.value}")  # 'sdk_precall' or 'backend_ingest_flag'
    # graceful degradation

How it works

  • Pre-call accumulator (per-process dict + threading.Lock). Keyed on (rule_id, scope_token, period_start). Local enforcement is driven by backend budget flags and /budget/sync reconciliation. If the local view is already over a hard-stop limit, the SDK raises PylvaBudgetExceeded(source=BudgetExceededSource.SDK_PRECALL).

  • Backend-authoritative flag. Every ingest response may carry budget_exceeded[]. The SDK bumps local accumulators to limit + 1 on receipt; next pre-call raises source=BACKEND_INGEST_FLAG.

  • 5-min sync loop. A threading.Timer re-POSTs accumulator state to /api/v1/budget/sync and overwrites local with the server truth (not additive).

  • Passthrough. Cold rules cache or unreachable backend → pre-call is a no-op. Your agent never blocks due to Pylva being degraded (R5).

Rule behavior matrix

type hard_stop Behavior
budget_limit True Pre-call raises PylvaBudgetExceeded; LLM call skipped.
budget_limit False Pre-call prints an advisory warning (1/min per rule); LLM call proceeds.
cost_threshold n/a Post-call evaluation only (backend); no SDK-side enforcement.

Webhook verification

import os
from pylva import verify_webhook, InvalidSignatureFormat

def handle_webhook(body: str, signature: str, timestamp: str):
    try:
        ok = verify_webhook(body, signature, os.environ["WEBHOOK_SECRET"], timestamp)
    except InvalidSignatureFormat:
        return 400
    if not ok:
        return 400
    # ...

verify_webhook accepts both raw hex and the sha256=<hex> GitHub-style prefix (B2a D34 parity with TS SDK). Default timestamp tolerance is 300 s.

Privacy & PII

Pylva does not redact step_name, customer_id, or metadata values. Do not pass raw user message content, email addresses, or phone numbers into these fields. The charset-regex input validation rejects HTML and most control characters — it does not protect against free-form PII.

See specs.md Appendix D14 for the rationale. PII handling is the builder's responsibility; we provide exportable data and deletion endpoints.

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

pylva_sdk-1.0.1.tar.gz (56.6 kB view details)

Uploaded Source

Built Distribution

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

pylva_sdk-1.0.1-py3-none-any.whl (46.5 kB view details)

Uploaded Python 3

File details

Details for the file pylva_sdk-1.0.1.tar.gz.

File metadata

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

File hashes

Hashes for pylva_sdk-1.0.1.tar.gz
Algorithm Hash digest
SHA256 520f2c4ffdcbb4dff381f6804e27873715f13a084f11763919d9e517a85c23a0
MD5 c3f5ce3c53a6e3f74a2aca89f9b01f2c
BLAKE2b-256 3e4b02b8b986a51236fbc7df61990ef6231c73b0f1028c102e1f296224b40ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylva_sdk-1.0.1.tar.gz:

Publisher: publish-python-sdk.yml on SpaceGravity/pylva

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

File details

Details for the file pylva_sdk-1.0.1-py3-none-any.whl.

File metadata

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

File hashes

Hashes for pylva_sdk-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7521421e07500fbb26329ae80b0173dae89a06f66d5b55076b253f2e6955f2a6
MD5 d901ce88349ff2b57f594586e57d4d21
BLAKE2b-256 ff2f023dabdf9b2842eb48c72dac115a1cabfcbf9b1752f1aec7b910e50965a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylva_sdk-1.0.1-py3-none-any.whl:

Publisher: publish-python-sdk.yml on SpaceGravity/pylva

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