Three-tier LangGraph checkpoint saver: L1 SQLite -> L2 NATS KV -> L3 PostgreSQL
Project description
3tears-langgraph
Three-tier LangGraph checkpoint saver: L1 (SQLite) -> L2 (NATS KV) -> L3 (PostgreSQL).
L1 and L2 are optional cache layers that degrade gracefully on failure. L3 (PostgreSQL) is the source of truth, reached through the AsyncQueryExecutor protocol so the same saver serves trusted services (direct asyncpg pool) and sandboxed agents (NATS L3 proxy).
Installation
pip install 3tears-langgraph
Usage
from threetears.langgraph import (
AsyncpgPoolAdapter,
ThreeTierCheckpointSaver,
)
# Trusted service with direct asyncpg.Pool: wrap once
saver = ThreeTierCheckpointSaver(executor=AsyncpgPoolAdapter(pool))
# Sandboxed agent: NatsProxyL3Backend already implements
# AsyncQueryExecutor, pass it straight through
saver = ThreeTierCheckpointSaver(executor=nats_l3_backend)
graph = builder.compile(checkpointer=saver)
Middleware
The package ships platform-level AgentMiddleware for langchain.agents.create_agent — the framework-aligned successor to the old hand-rolled AgentNodeHook / ToolNodeHook protocols. Consumer-specific policy lives in each consumer as its own middleware; only the reusable platform seams live here:
PromptCachingMiddleware(wrap_model_call) — annotates a leading bare-string system message with Anthropiccache_control={"type": "ephemeral"}when the model supports it, then normalizes cache-hit/creation counters ontousage_metadata["cache_usage"]. Non-Anthropic adapters degrade silently to bare-string system messages.ToolResultOffloadMiddleware(wrap_tool_call) — when aToolResultOffloaderis injected onconfig["configurable"]and a tool result exceedsoffload_threshold_chars, stores the full content out-of-band and shows the model"<summary>\n\n[ctx:<handle>]"(the structuredartifactis preserved). Opt-in: no offloader ⇒ byte-for-byte no-op.ObjectCatalogMiddleware(wrap_tool_call) — when a tool returns anObjectHandlein its result artifact and anObjectCatalogeris injected, persists a catalog record under the verified call identity. Soft-fail side-effect: a catalog error never breaks the tool result.
from langchain.agents import create_agent
from threetears.langgraph import (
ObjectCatalogMiddleware,
PromptCachingMiddleware,
ToolResultOffloadMiddleware,
)
agent = create_agent(
model=chat_anthropic,
tools=tools,
middleware=[
PromptCachingMiddleware(),
ToolResultOffloadMiddleware(),
ObjectCatalogMiddleware(),
],
)
# after a run, PromptCachingMiddleware has stamped:
# message.usage_metadata["cache_usage"]
# == {"cache_read_input_tokens": ..., "cache_creation_input_tokens": ..., "cached_tokens": ...}
The offload / catalog contracts (ToolResultOffloader, ObjectCataloger) are pure structural Protocols exported from threetears.langgraph.offload / threetears.langgraph.catalog; a consumer injects a concrete implementation on config["configurable"] (e.g. tool_result_offloader, object_cataloger) without the package taking any dependency on the consumer's context store.
See 3tears/docs/prompt-caching.md for the full caching contract, summarization interaction, downstream wiring checklist, and a worked example.
Streaming
The package ships StreamingResponse, a transport-agnostic primitive that owns the lifecycle of one streaming response: start -> any number of emit_token / emit_tool_call_* -> mutually-exclusive end (success) or error (failure) terminal. run_graph(compiled_graph, state, config) consumes a LangGraph astream_events(version="v2") loop with the start/end ordering managed; on graph exception it fires error(code="AGENT_FAILED", ...) and re-raises so the caller still sees the failure on the synchronous path.
The wire vocabulary is fixed: StreamStartEvent / StreamTokenEvent / StreamEndEvent / StreamErrorEvent / ToolCallStartEvent / ToolCallEndEvent / ToolCallProgressEvent, dispatched via the StreamEvent discriminated union and the parse_stream_event(payload) adapter. The transport seam is the StreamTransport Protocol -- one method, async def publish(self, payload: bytes) -> None. Any wire (NATS subject, websocket, chunked HTTP body) satisfies it.
from threetears.langgraph import StreamingResponse, StreamTransport
class WebSocketStreamTransport:
"""example transport for a websocket consumer."""
def __init__(self, ws): self._ws = ws
async def publish(self, payload: bytes) -> None:
await self._ws.send_bytes(payload)
stream = StreamingResponse(
transport=WebSocketStreamTransport(ws),
correlation_id=correlation_id,
conversation_id=conversation_id,
start_time_monotonic=request_start,
)
final_state = await stream.run_graph(compiled_graph, state, config)
A reference adapter can bind the primitive to a per-correlation-id stream subject via nc.publish_raw. Tool-call observation envelopes flow through ToolCallProgressHook reading the active StreamingResponse from config["configurable"]["streaming_response"].
Project details
Release history Release notifications | RSS feed
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 3tears_langgraph-0.17.6.tar.gz.
File metadata
- Download URL: 3tears_langgraph-0.17.6.tar.gz
- Upload date:
- Size: 104.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ef015b2ea8d2876c35eaeb4891c2bd2ec2dcb3245a57f148e5e66f4c1952c67
|
|
| MD5 |
8d3af4e3c03dabe513891aae4d0c933c
|
|
| BLAKE2b-256 |
9d1cccd60c6471e54c28aa4fc06ce1a7d759a5e3aa73dd8aaff94fc7036e997e
|
Provenance
The following attestation bundles were made for 3tears_langgraph-0.17.6.tar.gz:
Publisher:
release.yml on pacepace/3tears
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
3tears_langgraph-0.17.6.tar.gz -
Subject digest:
6ef015b2ea8d2876c35eaeb4891c2bd2ec2dcb3245a57f148e5e66f4c1952c67 - Sigstore transparency entry: 2193322652
- Sigstore integration time:
-
Permalink:
pacepace/3tears@6f707d124fdf577dc59c19199412b24e728c79e9 -
Branch / Tag:
refs/tags/v0.17.6 - Owner: https://github.com/pacepace
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f707d124fdf577dc59c19199412b24e728c79e9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file 3tears_langgraph-0.17.6-py3-none-any.whl.
File metadata
- Download URL: 3tears_langgraph-0.17.6-py3-none-any.whl
- Upload date:
- Size: 76.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58d5175ef1853f8f452c0935fa17f0738ec2b66b218d6fcf9312a97ebe12f5ed
|
|
| MD5 |
33c37db91ab509b193e113184cb57b7f
|
|
| BLAKE2b-256 |
00e0a0d2e6bbe4f456de4a9bef17564066d7058d5c98c22368344747b276940b
|
Provenance
The following attestation bundles were made for 3tears_langgraph-0.17.6-py3-none-any.whl:
Publisher:
release.yml on pacepace/3tears
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
3tears_langgraph-0.17.6-py3-none-any.whl -
Subject digest:
58d5175ef1853f8f452c0935fa17f0738ec2b66b218d6fcf9312a97ebe12f5ed - Sigstore transparency entry: 2193323796
- Sigstore integration time:
-
Permalink:
pacepace/3tears@6f707d124fdf577dc59c19199412b24e728c79e9 -
Branch / Tag:
refs/tags/v0.17.6 - Owner: https://github.com/pacepace
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f707d124fdf577dc59c19199412b24e728c79e9 -
Trigger Event:
push
-
Statement type: