F.A.I.L. Kit adapter for LangChain agents - Receipts, auditing, policy enforcement, compliance, and resilience
Project description
fail-kit
v1.6.0 - LangChain adapter for F.A.I.L. Kit (Python)
Drop-in adapter for integrating LangChain agents with the F.A.I.L. Kit audit framework. Automatically generates receipts, enforces compliance, and provides resilience utilities.
Installation
pip install fail-kit
With FastAPI support:
pip install fail-kit[fastapi]
With LangGraph support:
pip install fail-kit[langgraph]
All extras:
pip install fail-kit[all]
Quick Start
from fastapi import FastAPI
from langchain.agents import AgentExecutor
from fail_kit_langchain import (
create_fail_kit_endpoint,
ReceiptGeneratingTool
)
app = FastAPI()
# Define tools with automatic receipt generation
class EmailTool(ReceiptGeneratingTool):
name = "email_sender"
description = "Send an email"
def _execute(self, to: str, subject: str, body: str):
send_email(to, subject, body)
return {"status": "sent", "message_id": "msg_123"}
# Create agent
tools = [EmailTool()]
agent_executor = AgentExecutor(agent=agent, tools=tools)
# Add F.A.I.L. Kit endpoint
app.include_router(
create_fail_kit_endpoint(agent_executor),
prefix="/eval"
)
Features
- ✅ Automatic receipt generation from tool executions
- ✅ Full RECEIPT_SCHEMA.json compliance
- ✅ Native LangGraph support
- ✅ Async/await support
- ✅ Custom metadata in receipts
- ✅ Error handling with failure receipts
- ✅ SHA256 hashing for verification
- 🆕 v1.6.0: Compliance framework mappings (SOC2, PCI-DSS, HIPAA, GDPR)
- 🆕 v1.6.0: Resilience utilities (retry, timeout)
- 🆕 v1.6.0: Evidence generation for audits
- 🆕 v1.6.0: Secret detection
v1.6.0 New Features
Resilience Utilities
Add retry logic with exponential backoff to LLM calls:
from fail_kit_langchain import with_retry, RetryConfig, with_timeout
# Retry with exponential backoff
result = await with_retry(
lambda: llm.ainvoke(prompt),
RetryConfig(max_retries=3, base_delay=1.0)
)
# Add timeout to async functions
@with_timeout(30.0)
async def call_llm(prompt: str):
return await llm.ainvoke(prompt)
Compliance Mappings
Check which compliance frameworks apply to each rule:
from fail_kit_langchain import COMPLIANCE_MAPPINGS, get_compliance_badges
# Get compliance badges for a rule
badges = get_compliance_badges("FK001") # ['SOC2', 'PCI-DSS', 'HIPAA', 'GDPR']
# Get specific controls
controls = COMPLIANCE_MAPPINGS["FK001"]["soc2"] # ['CC6.1', 'CC7.2', 'CC7.3']
Evidence Generation
Generate signed evidence packages for audit exports:
from fail_kit_langchain import generate_evidence_package
# Collect receipts from your agent
receipts = tool.get_receipts()
# Generate signed evidence package
evidence = generate_evidence_package(
receipts,
git_hash="abc123",
git_branch="main"
)
# Export as JSON
print(evidence.to_json())
# Export as CSV
print(evidence.to_csv())
Secret Detection
Scan code or prompts for exposed secrets:
from fail_kit_langchain import detect_secrets
findings = detect_secrets(user_input)
if findings:
for secret in findings:
print(f"⚠️ Found {secret['type']}: {secret['masked']}")
API Reference
create_fail_kit_endpoint(agent_executor, config=None)
Creates a FastAPI router with the /run endpoint.
Parameters:
agent_executor: LangChain AgentExecutor instanceconfig: Optional FailKitConfig
Returns: APIRouter
ReceiptGeneratingTool
Base class for tools with automatic receipt generation.
Methods:
_execute(*args, **kwargs): Override with your tool logicget_receipts(): Get all receiptsclear_receipts(): Clear receipt history
extract_receipts_from_agent_executor(executor, result, config=None)
Extract receipts from AgentExecutor intermediate steps.
wrap_tool_with_receipts(tool)
Wrap a legacy LangChain tool to generate receipts.
with_retry(func, config=None, on_retry=None) 🆕
Execute async function with retry logic.
with_timeout(timeout_seconds) 🆕
Decorator to add timeout to async functions.
generate_evidence_package(receipts, git_hash, git_branch) 🆕
Generate signed evidence package for audit.
detect_secrets(text) 🆕
Detect exposed secrets in text.
Examples
See examples/langchain-python/ for a complete working example.
Testing
pytest
Related
- @fail-kit/core - Core receipt generation library (npm)
- F.A.I.L. Kit CLI - Command-line audit tool
- F.A.I.L. Kit VS Code Extension - IDE integration
License
MIT License - See LICENSE
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 fail_kit-2.0.0.tar.gz.
File metadata
- Download URL: fail_kit-2.0.0.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
602b279fbb88cdef92474cfd6dccf5cf9e7d577e23a08e6757779bb9deada1ad
|
|
| MD5 |
d4a4e5c94f3d910bef0c37314e29e3a1
|
|
| BLAKE2b-256 |
4a6d6611f16c95fdcc98030a8ac1e53ab8a1ba8fbb60e18400a1ab2c93629324
|
File details
Details for the file fail_kit-2.0.0-py3-none-any.whl.
File metadata
- Download URL: fail_kit-2.0.0-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd6835c7d4c2c8c97be576738213b657bc635af48b15dd75771f7a0baa30cfee
|
|
| MD5 |
7c98f96b82d70f5f5afe55598892afb6
|
|
| BLAKE2b-256 |
fd5ebe572796ab6934751bd55ceba64628334d4a2b570c3aa145a7ce047a40e4
|