Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quesen — LangChain / LangGraph Tool

Deterministic A2A risk validation as a LangChain BaseTool. Integrate in under 5 minutes.

Status: v0.2.0 · tracks Quesen engine v1.10.0 · receipt provenance forwarded in the raw envelope. Developer portal: https://senueren.co.za/quesen · Source: https://github.com/Shxnque/quesen


Install

pip install quesen-langchain
# or from source while we publish:
pip install git+https://github.com/Shxnque/quesen-langchain.git

Brings quesen-sdk>=0.2.0 and langchain-core with it. No LLM lock-in.


30-second usage

from langchain_core.messages import HumanMessage
from langchain_openai import ChatOpenAI
from quesen_langchain import QuesenValidateTool, QuesenReportTool

validate_tool = QuesenValidateTool(base_url="https://<your-quesen>", api_key="sk_live_abc")
report_tool   = QuesenReportTool(base_url="https://<your-quesen>", api_key="sk_live_abc")

agent = ChatOpenAI(model="gpt-4o-mini").bind_tools([validate_tool, report_tool])
print(agent.invoke([HumanMessage("Should I ape into a 1-day-old token with 4 scam keywords and 95% engagement?")]))

Receipt provenance (v1.10, tracked in v0.2.0)

QuesenValidateTool._run(...) returns the raw response dict verbatim from the underlying quesen-sdk client. When talking to a v1.10.0+ engine that dict includes two additional fields:

  • input_snapshot_hash — 64-char SHA-256 hex over the canonical request payload.
  • commit_sha — 40-char git SHA of the engine ruleset live at decision time (or "unknown").

Both flow through unchanged for downstream LangGraph nodes to consume, log, or verify. See the developer portal API reference for the field contract.


What ships

Tool Wraps Purpose
QuesenValidateTool POST /validate Deterministic PROCEED/REVIEW/SKIP verdict (carries v1.10 provenance)
QuesenSimulateTool POST /simulate Free counterfactual (test the model without spending a call)
QuesenReportTool POST /report Post-decision outcome feedback (v1.1 schema)

All three are langchain_core.tools.BaseTool subclasses with structured Pydantic inputs. Compatible with LangGraph, create_react_agent, bind_tools(), and every LangChain callback pipeline.


Environment

Var Meaning
QUESEN_BASE_URL Optional default base URL (else pass to the tool constructor).
QUESEN_API_KEY Optional default API key.

Doctrine compliance (inherited from parent)

  • Determinism. No prompt-tuning, no randomness in the wrapper.
  • Ecosystem neutrality. Depends on langchain-core only, not on any specific LLM provider.
  • Fail-closed. Timeouts surface as tool errors; recommended agent policy: treat as SKIP.
  • Provenance forwarded. The raw dict returned to the LangChain runtime carries input_snapshot_hash and commit_sha unchanged, so downstream nodes can pin the ruleset.

MIT license. See senueren.co.za/quesen for canonical documentation.

About

Official Quesen langchain integration — deterministic A2A risk validation.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages