This release is a pre-release and may not be stable for production use.
langchain-typesafe
Installation
uv add langchain-typesafe
Set the TYPESAFE_API_KEY environment variable before making requests.
Usage
TypeSafeClassifier is a LangChain Runnable for probabilistic classification and scoring with TypeSafe.
from langchain_typesafe import Choice, Noul, Score, TypeSafeClassifier
classifier = TypeSafeClassifier(
questions={
"department": Choice(
instructions="Which team should handle this?",
criteria={
"billing": "Payment or subscription issues",
"technical": "Product or integration issues",
},
),
"urgent": Noul(instructions="Does this message express urgency?"),
"frustration": Score(
instructions="How frustrated does the customer appear?",
criteria=["calm", "frustrated", "angry"],
),
}
)
result = classifier.invoke("Stripe has failed to connect for three days. Help ASAP.")
print(result.choices["department"].choice)
print(result.nouls["urgent"].noul)
print(result.scores["frustration"].score)
Use await classifier.ainvoke(...) for asynchronous applications. As a Runnable, the classifier can also be composed with other LangChain runnables and supports standard batching, callbacks, and tracing.
Experimental middleware
Install the experimental extra to use TypeSafe-powered agent middleware. APIs under langchain_typesafe.experimental may change without notice.
uv add "langchain-typesafe[experimental]"
ModelRouterMiddleware
ModelRouterMiddleware routes an agent to a model selected by a TypeSafe Choice question:
from langchain.agents import create_agent
from langchain_typesafe.experimental.middleware import (
ModelChoice,
ModelRouterMiddleware,
)
router = ModelRouterMiddleware(
choices={
"fast": ModelChoice(
model="openai:gpt-5-mini",
criteria="Simple, well-scoped tasks.",
),
"powerful": ModelChoice(
model=powerful_model,
criteria="Complex tasks requiring deeper reasoning.",
),
},
instructions="Choose the least costly model suited to the task.",
)
agent = create_agent("openai:gpt-5-mini", middleware=[router])
The model router classifies the latest human message once per agent run and stores the complete ChoiceAnswer in agent state, keeping its probabilities and confidence available to applications and traces.
AutoModeMiddleware
AutoModeMiddleware classifies calls to explicitly configured tools and blocks risky calls before execution:
from langchain_typesafe import NoulCriteria
from langchain_typesafe.experimental.middleware import AutoModeMiddleware
auto_mode = AutoModeMiddleware(
tools=[delete_file],
criteria=NoulCriteria(
true="The call writes, deletes, publishes, or changes access.",
false="The call only reads public or user-provided data.",
),
)
agent = create_agent(
model,
tools=[read_file, delete_file],
middleware=[auto_mode],
)
tools accepts tool names or BaseTool instances. Customize instructions for the overall risk question and criteria for application-specific risky and safe outcomes. Configured calls whose risk probability meets or exceeds the threshold return an error ToolMessage.
LangChain messages as state
BaseMessage objects and message sequences can appear at the root or anywhere inside JSON state. The integration recursively converts them to objects with role and content fields while preserving surrounding application data:
from langchain_core.messages import HumanMessage, SystemMessage
response = classifier.invoke(
{
"conversation": [
SystemMessage("You are reviewing a customer support conversation."),
HumanMessage("My payouts have failed for three days. Help!"),
],
"account_tier": "enterprise",
}
)
Custom HTTP clients
The classifier creates sync and async httpx2 clients when they are not supplied. Applications that need custom transports, proxies, or shared connection pools can inject either client independently:
import httpx2
classifier = TypeSafeClassifier(
questions={"urgent": Noul(instructions="Is this urgent?")},
client=httpx2.Client(proxy="http://proxy.internal"),
async_client=httpx2.AsyncClient(proxy="http://proxy.internal"),
)
Injected clients are used as-is, and the application retains responsibility for their lifecycle.
Error handling
Provider errors also inherit from LangChain's standard model-error hierarchy. Applications can therefore catch a TypeSafe-specific error when provider metadata is needed, or a LangChain error when handling several model providers uniformly:
from langchain_core.exceptions import ModelAuthenticationError, ModelRateLimitError
from langchain_typesafe import TypeSafeRateLimitError
try:
response = classifier.invoke("Classify this message.")
except TypeSafeRateLimitError as error:
print(error.request_id, error.retry_after_ms)
except (ModelAuthenticationError, ModelRateLimitError):
handle_model_error()
TypeSafeAPIError exposes the response status, parsed body, headers, sanitized endpoint, and request ID. Connection, timeout, response-validation, and status-specific subclasses follow the names used by the TypeSafe Python SDK.
Documentation
See the TypeSafe documentation for model and question semantics. LangChain API reference documentation is available at reference.langchain.com.
Contributing
For contribution instructions, see the LangChain contributing guide.
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 langchain_typesafe-0.0.1a2.tar.gz.
File metadata
- Download URL: langchain_typesafe-0.0.1a2.tar.gz
- Upload date:
- Size: 200.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
986abcb4b9879ffce1a1b4ade24b39b95c6dce682bfccc59ce898a5de547904b
|
|
| MD5 |
6a669f64818c28f021a2d23f2415514c
|
|
| BLAKE2b-256 |
908bd053623d1443c284090fecb741d7c50332d209101f703e69f1a5bb9f4a3d
|
File details
Details for the file langchain_typesafe-0.0.1a2-py3-none-any.whl.
File metadata
- Download URL: langchain_typesafe-0.0.1a2-py3-none-any.whl
- Upload date:
- Size: 24.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a686f0d743ba7f2d6a063d05fe65f68fb92c7c513ea48d23e318d2e0ca419045
|
|
| MD5 |
e8d5be9d1bd7a09eedfebc079d9e1223
|
|
| BLAKE2b-256 |
d6a0e23ee03e9e5d21bbacae9d72c3f529db36f251d99b28216c8a3fe9a70977
|