Financial identity infrastructure for AI agents — Python SDK
Project description
RunVault Python SDK
Financial identity infrastructure for AI agents. Website: https://runvault.to
What is RunVault?
RunVault gives AI agents a verifiable identity, a budget, and a way to spend it. Each agent registers once with the RunVault platform and is issued a short-lived cryptographic certificate. From then on, every LLM call the agent makes flows through the RunVault proxy, which verifies the agent's identity, checks its remaining budget, forwards the request to the underlying provider (OpenAI / Anthropic / Google / …), and records the cost — all without the agent ever holding a long-lived provider API key.
For platform operators this means: real per-agent spending caps, per-call audit, instant revocation, and BYOK provider keys that never leave the backend. For agent authors it means: change the import line, get a JWT, keep building.
What is this package?
runvault is the Python SDK that AI agents use to integrate with the
platform. It handles:
- Registration —
POST /auth/agents/runswith your project API key, receiving back an Ed25519 keypair and a CA-signed certificate that authenticates the agent to the proxy. - Per-request signing — every outbound LLM call is signed with a fresh short-lived EdDSA JWT minted by the SDK (no replay window, no shared secrets in transit).
- Drop-in LLM clients —
identity.build_llm(ChatOpenAI)/identity.build_llm(BaseLLM)(CrewAI) / etc. return proxy-wired subclasses of your framework's native LLM. No other code change. - Run-scoped execution —
with identity.run():activates a freshrun_idon a ContextVar so every LLM call inside the block is attributed to that run. - Transport-level guards — host allowlist refuses to attach
credentials to non-proxy URLs (
UntrustedHostError); cross-identity guard catches mis-wired LLMs across multi-agent code (CrossIdentityError, configurable per-identity viasecurity_policy). - Recovery flows — auto-fall-back to
/credentials/refreshwhen the admin rotates an agent's certificate, with one transparent retry on the in-flight request.
Related projects
| Repository | Purpose |
|---|---|
| runvaultAI/runvault-sdk-python | This package — Python SDK for AI agents. |
| runvaultAI/runvault-identity-sdk-go | Go identity SDK. Proxies and other RunVault-aware services import it to verify the certificate + agent JWT presented on each request, without depending on the rest of the RunVault platform. |
The Python SDK issues the credentials your agent presents; the Go identity SDK is the corresponding verifier used by anything sitting on the receive side of the connection.
Install
The base package is small. LLM provider support is opt-in via extras:
pip install runvault # SDK only
pip install runvault[openai] # OpenAI raw client
pip install runvault[anthropic] # Anthropic raw client
pip install runvault[langgraph,langchain-openai] # LangGraph + LangChain OpenAI
pip install runvault[crewai] # CrewAI BaseLLM subclass
pip install runvault[all] # everything
Available extras: openai, anthropic, google, langchain-openai,
langchain-anthropic, langchain-google, langgraph, crewai, all.
Requires Python 3.9+.
Quick start
from runvault import RunVault
from langchain_openai import ChatOpenAI
rv = RunVault(
api_key="rv_live_...", # your RunVault project API key
be_url="https://your-runvault-backend",
)
# 1. Register the agent. Idempotent — same agent_id returns the same
# identity. First call provisions an Ed25519 keypair + CA-signed cert.
identity = rv.register_agent(
agent_id="research-v1",
name="Research Agent",
budget=1.0, # optional USD cap
budget_alert_threshold=80, # optional alert at 80% spent
security_policy="hard", # optional; default "hard"
)
# 2. Build a proxy-routed LLM class for your framework.
RVChat = identity.build_llm(ChatOpenAI)
llm = RVChat(model="gpt-4o-mini")
graph = build_graph(llm) # any compiled LangGraph graph
# 3. Wrap each invocation in `with identity.run():` — generates a fresh
# run_id locally and sets it on a ContextVar so every LLM call inside
# the block is signed with that run's claims.
with identity.run():
result = graph.invoke({"input": "What is..."})
Behind the scenes:
- Registration persists the keypair + cert to
~/.runvault/<agent_id>/with0600/0700permissions and (whenRV_CA_PUBLIC_KEYis set) verifies the CA signature. identity.build_llm(BaseClass)returns a dynamic subclass wired to route through the RunVault proxy via a custom httpx transport. Same dispatch coverslangchain_openai.ChatOpenAI,langchain_anthropic.ChatAnthropic,langchain_google_genai.ChatGoogleGenerativeAI,openai.OpenAI/AsyncOpenAI, andcrewai.BaseLLM.with identity.run():is a ContextVar-scoped context manager. Every LLM call inside the block reads the active run, mints a fresh 5-minute EdDSA JWT, and sends it with the cert in two custom headers. No backend round-trip per run.- Transport guards run on every request:
- Host allowlist refuses to attach credentials to non-proxy URLs.
- Cross-identity guard catches LLMs invoked under a different
identity's active run (
security_policy="hard"raises;"soft"warns and bills the bound identity).
Inside graph nodes or tool functions that don't have identity in
scope, use runvault.current_run() for ambient access:
from runvault import current_run
def my_tool(query: str) -> str:
run = current_run() # raises if outside `identity.run()`
log.info("tool_call", run_id=run.run_id, agent_id=run.agent_id)
...
How authentication works
RunVault uses a two-step PKI flow rather than long-lived bearer tokens.
┌──────────────────────────┐ ┌──────────────────────────┐ ┌──────────────────────────┐
│ Your agent │ │ RunVault backend │ │ RunVault proxy │
│ (this SDK) │ │ (issues credentials) │ │ (verifies on every │
│ │ │ │ │ LLM request) │
└────────────┬─────────────┘ └────────────┬─────────────┘ └────────────┬─────────────┘
│ │ │
│ POST /auth/agents/runs │ │
│ { rv_api_key, agent_id } │ │
├─────────────────────────────▶│ │
│ Ed25519 private key + │ │
│ CA-signed certificate │ │
│◀─────────────────────────────┤ │
│ │ │
│ POST /openai/v1/chat/... │ │
│ X-RV-Certificate: <cert> │ │
│ X-RV-Agent-JWT: <fresh JWT> │ │
├──────────────────────────────┼─────────────────────────────▶│
│ │ │ 1. Verify CA
│ │ │ signature
│ │ │ 2. Verify EdDSA
│ │ │ JWT signature
│ │ │ with the cert's
│ │ │ embedded pubkey
│ │ │ 3. Budget check
│ │ │ 4. Forward to LLM
│ │ │
│ LLM response (streamed) │ │
│◀─────────────────────────────┴──────────────────────────────┤
│ │
- Certificate (
X-RV-Certificate) — issued once at registration, signed by the RunVault CA, embeds the agent's public key + scope + expiry. - Agent JWT (
X-RV-Agent-JWT) — minted per request by the SDK, signed with the agent's private key, valid for 5 minutes, carries a freshjtifor replay protection. - The agent's private key never leaves disk. The SDK signs locally; only the JWT signature crosses the network.
- No long-lived bearer token. If a JWT leaks it's already expiring; if a
certificate is revoked the proxy detects it within ~30 seconds and the
SDK transparently calls
/credentials/refreshto mint a fresh one.
Configuration
| Variable | Required | Purpose |
|---|---|---|
RUNVAULT_API_KEY |
yes (recommended) | Your project API key. Pass to RunVault(api_key=…) or read from env. |
RV_CA_PUBLIC_KEY |
recommended | Base64-encoded Ed25519 RunVault CA public key. When set, the SDK verifies the CA signature on certificates returned by registration. When absent the SDK warns and proceeds — fine for dev, never for production. |
BE_URL / RUNVAULT_BE_URL |
no | Backend base URL. Pass to RunVault(be_url=…) or read from env. |
The RV_CA_PUBLIC_KEY value is published by your RunVault deployment.
Self-hosted operators generate it once with scripts/generate_rv_keys.sh
in the platform repo and distribute it to agent containers. Verify Python-side
manually:
import os
from runvault.auth.credentials import load_credentials, verify_certificate
priv, cert = load_credentials("research-v1")
verify_certificate(cert, os.environ["RV_CA_PUBLIC_KEY"])
print("certificate valid")
Supported LLM clients
identity.build_llm(BaseClass) dispatches on the base class and returns
a subclass wired to route through the RunVault proxy:
| Base class you pass in | Underlying client | Extra |
|---|---|---|
langchain_openai.ChatOpenAI |
LangChain OpenAI | langchain-openai |
openai.OpenAI / AsyncOpenAI |
OpenAI Python SDK | openai |
langchain_anthropic.ChatAnthropic |
LangChain Anthropic | langchain-anthropic |
langchain_google_genai.ChatGoogleGenerativeAI |
LangChain Google | langchain-google |
crewai.BaseLLM |
CrewAI BaseLLM subclass |
crewai |
Streaming, .bind(...), .with_retry(...), tool use, structured
outputs (response_model on CrewAI), and isinstance checks all
behave like the underlying class — the only difference is that
traffic flows through your RunVault proxy.
Supported frameworks
- LangGraph — build the LLM via
identity.build_llm(ChatOpenAI), pass it to your graph, and invoke insidewith identity.run():. The SDK never wraps the graph itself. - CrewAI — build the LLM via
identity.build_llm(BaseLLM), pass it to yourAgent, and callcrew.kickoff()insidewith identity.run():.
Adding a new framework is a small wiring function in
runvault.llm.<framework> plus a _DISPATCH entry. PRs welcome.
Error handling
The SDK raises typed exceptions so you can branch on the failure mode:
from runvault import (
AgentSuspendedError, # admin suspended this agent — permanent
BudgetExceededError, # 402 — agent has hit its spend cap
CertificateVerificationError, # CA signature failed
CrossIdentityError, # bound LLM invoked under another identity's run
CrossIdentityWarning, # ditto, but security_policy="soft"
LLMProviderError, # upstream provider returned an error
NoActiveRunError, # LLM call outside `with identity.run():`
ProxyError, # RunVault proxy rejected the request
RegistrationError, # backend registration failure
TokenExpiredError, # JWT or certificate is invalid/expired
UntrustedHostError, # transport refused a non-proxy URL
)
AgentSuspendedError is the one your code most likely wants to catch
specifically — it indicates an admin has clicked "Suspend" in the
dashboard and only an admin can re-enable the agent. The SDK will not
auto-retry through it.
NoActiveRunError, UntrustedHostError, and CrossIdentityError
signal SDK-side guard violations rather than backend / network
failures — usually a configuration or wiring bug to fix at the call
site, not a transient condition to retry.
License
Apache 2.0. The full text is bundled inside every release wheel at
runvault-<version>.dist-info/licenses/LICENSE, and the canonical copy
lives at
LICENSE on GitHub.
Links
- Website — https://runvault.to
- PyPI — https://pypi.org/project/runvault/
- Source — https://github.com/runvaultAI/runvault-sdk-python
- Go identity SDK — https://github.com/runvaultAI/runvault-identity-sdk-go
- Issues — https://github.com/runvaultAI/runvault-sdk-python/issues
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file runvault-0.3.0.tar.gz.
File metadata
- Download URL: runvault-0.3.0.tar.gz
- Upload date:
- Size: 36.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dbf37523b0aac7b4d1ac661b1a01625851ab78e031553b6b6090fcc428d874c
|
|
| MD5 |
86fd6a3487ec22a3a5ba59e0d0a1e3a6
|
|
| BLAKE2b-256 |
71b696d00b77893c200ed592a59d15fb9e4a23b93bda285bf8e019a17f9906f0
|
File details
Details for the file runvault-0.3.0-py3-none-any.whl.
File metadata
- Download URL: runvault-0.3.0-py3-none-any.whl
- Upload date:
- Size: 43.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb869b2190d91ba5b5550b65648c3e2615010eab618d8a998d25b2cdc66a07ea
|
|
| MD5 |
00d14cd32377071a661cc1ec5c286423
|
|
| BLAKE2b-256 |
bd2a890b82ed6285e724f424f10988c040f3a3432a6591ea0c8a278779f2e763
|