Add your description here
Project description
Sequa 📼
Sequa is snapshot testing for LLM applications. Record once, replay forever.
The Magic
Before
from langchain_groq import ChatGroq
model = ChatGroq(model_name="llama-3.1-8b-instant")
response = model.invoke("Write a 3-word slogan for gravity.")
# ⏱️ Time taken: 2.3 seconds
After
from langchain_groq import ChatGroq
from sequa import cassette
model = ChatGroq(model_name="llama-3.1-8b-instant")
with cassette("tests/cassettes"):
response = model.invoke("Write a 3-word slogan for gravity.")
# ⏱️ First run: 2.3 seconds (recorded to tests/cassettes/)
# ⏱️ Second run: 12 ms (replayed locally!)
Features
- Record once, replay forever: Speed up integration test suites from minutes to milliseconds.
- Multiple Execution Modes: Support
replay,record,auto, andlivemodes. - Streaming Support: Full support for recording and replaying streaming responses (both sync and async generators).
- PII & Sensitive Information Masking: Automatically mask emails, phone numbers, credit cards, SSNs, IP addresses, API keys, and bearer tokens from cassettes.
- Robust Key Sorting & Hashing: Recursively sorts request inputs to generate deterministic hashes.
- Custom Ignored Fields: Easily ignore dynamic/unstable fields (e.g.
temperature,max_tokens). - Custom Normalizers: Redact, replace, or clean requests prior to hashing.
- CLI Utilities: Inspect, format, and calculate statistics of stored cassettes.
Installation
Install Sequa from PyPI:
pip install sequa
Or using uv:
uv add sequa
For local development:
uv pip install -e .
Configuration & Advanced API
1. Execution Modes
Control Sequa behavior via the mode parameter:
with cassette("tests/cassettes", mode="replay"):
# Will raise CassetteNotFoundError if no matching cassette is found.
# Guaranteed to make zero external network requests.
auto(Default): Replays if a matching cassette exists, otherwise calls the live API and records it.record: Always calls the live API and records/overwrites the cassette.replay: Never calls the live API. RaisesCassetteNotFoundErroron cache misses.live: Direct pass-through to the live API, bypassing cassettes entirely.
2. Ignore Fields
Strip request parameters before generating hashes:
with cassette("tests/cassettes", ignore_fields=["temperature", "max_tokens"]):
# These two calls generate the exact same hash and match the same cassette:
model.invoke("hello", temperature=0.2)
model.invoke("hello", temperature=0.9)
3. Custom Normalizers
For complex normalization or content redaction:
def redact_dates(request_dict):
# Redact dynamic inputs or strip timestamps
return request_dict
with cassette("tests/cassettes", normalizer=redact_dates):
model.invoke(...)
4. PII & Sensitive Information Masking
Automatically mask sensitive information like emails, phone numbers, IP addresses, and API keys inside request and response payloads before writing them to the cassette files.
To enable, set mask_pii=True:
with cassette("tests/cassettes", mask_pii=True):
# Any email, phone number, API key, etc. will be redacted in the cassette
response = model.invoke("Send email to alice@example.com")
The matching cassette file will look like:
{
"request": {
"messages": [
{
"role": "user",
"content": "Send email to [EMAIL]"
}
]
},
"response": { ... }
}
Masked patterns include:
- Emails (replaced by
[EMAIL]) - Phone Numbers (replaced by
[PHONE]) - Credit Cards (replaced by
[CREDIT_CARD]) - Social Security Numbers (replaced by
[SSN]) - IP Addresses (replaced by
[IP_ADDRESS]) - API Keys / Secrets (replaced by
[API_KEY]) - Bearer Tokens (replaced by
Bearer [TOKEN])
5. Streaming & Async Support
Sequa supports streaming responses (both sync and async generators) for OpenAI, Anthropic, and LangChain. The streaming chunks are captured on recording and replayed deterministically.
# Streaming with OpenAI
from openai import OpenAI
from sequa.llm.adapters import OpenAIAdapter
client = OpenAI()
adapter = OpenAIAdapter()
with cassette("tests/cassettes", adapter=adapter):
stream = client.chat.completions.create(
model="gpt-4",
messages=[{"role": "user", "content": "Write a poem"}],
stream=True
)
for chunk in stream:
print(chunk.choices[0].delta.content or "", end="")
Command Line Interface (CLI)
Sequa comes with a CLI tool to manage your cassettes.
Stats
Show the number of cassettes, total size on disk, and estimated API latency saved:
sequa stats --path ./tests/cassettes
Inspect
List all stored cassettes, their model, provider, and when they were recorded:
sequa inspect --path ./tests/cassettes
Clean
Clean dynamic fields (latency, created_at) from cassettes to prevent noisy git diffs:
sequa clean --path ./tests/cassettes --remove-latency --remove-timestamps
License
MIT 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 sequa-0.0.4.tar.gz.
File metadata
- Download URL: sequa-0.0.4.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee236a0deead69f52b79e0163a7e9cbd9b4fbda6e69974a5e24fb8eedbdcfea2
|
|
| MD5 |
ab534d7058cb06e1042f3df1a9aa1f7d
|
|
| BLAKE2b-256 |
5f80035c1a4994537745f4e327ccdb6bb767e21fc297488581a06283737fa68b
|
File details
Details for the file sequa-0.0.4-py3-none-any.whl.
File metadata
- Download URL: sequa-0.0.4-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c348ed66694ae04ae61c51bc7ceea98844873dba0fc66013aebb531e444fd405
|
|
| MD5 |
8479efc2d87b02434e6f793c712e18fa
|
|
| BLAKE2b-256 |
5520288eba81681f742dd011515c0e5dd120a189e9dfdfcdbcf3e5ae4c852c40
|