Second Opinion for Python agents (LangChain · CrewAI · anything)
Give your agent a paid, independent skeptic: before acting on a claim, it buys an adversarial verification ($0.03–$0.75 in USDC via x402 — no account, no API key) and gets a structured verdict with calibrated confidence, citations, and a signed offline-verifiable receipt.
Setup (~5 minutes)
pip install secondopinion-x402
- Create a throwaway EVM wallet and fund it with a few dollars of USDC on Base (exchange withdrawal → network "Base"). No ETH needed — payments are gas-free for you; the facilitator covers it. Keep only pocket money in it.
export SECOND_OPINION_PRIVATE_KEY=0x…— the key signs payments locally and never leaves your machine.
Try it first — no wallet
from secondopinion import SecondOpinionClient
so = SecondOpinionClient() # no key needed for the free trial
v = so.try_free("The Model Context Protocol uses JSON-RPC 2.0")
Free trial is rate-limited per caller per day and returns unsigned verdicts.
Plain Python (paid)
so = SecondOpinionClient() # default tier: quick ($0.03)
v = so.verify("Library X v3 supports streaming natively",
context="About to build a day's work on this")
if v["verdict"] == "refuted":
... # stop and re-plan; v["findings"] says why, v["citations"] has sources
LangChain
from secondopinion import langchain_tool
tools = [langchain_tool()] # requires langchain-core
# or: langchain_tool(tier="verify") to default to web-researched verdicts
CrewAI
from secondopinion import SecondOpinionCrewTool
tools = [SecondOpinionCrewTool()] # requires crewai
OpenAI Agents SDK
from secondopinion import openai_agents_tool
agent = Agent(..., tools=[openai_agents_tool()]) # requires openai-agents
What comes back
refuted | supported | inconclusive + confidence (scores the verdict, not
the claim) + findings + citations + a signed receipt — verify it offline
against https://secondopinionx402.com/.well-known/second-opinion-pubkey.json
for a tamper-evident audit trail. Measured accuracy, failures included:
https://secondopinionx402.com/benchmark
Tiers: quick $0.03 reasoning-only (~20s) · verify $0.20 live web research
(~60s) · panel $0.75 three skeptics, majority vote. You are never charged
for failed requests; failed async jobs retry free.
Status: core client and LangChain adapter are payment-tested against production; the CrewAI adapter is a thin wrapper of the same client (import-guarded) — report anything odd and it'll be fixed fast.
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 secondopinion_x402-0.2.0.tar.gz.
File metadata
- Download URL: secondopinion_x402-0.2.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d11c87d52803d8c079243d9fd304b57d9a3679f4382b83ddbe26f1456061da1c
|
|
| MD5 |
02280de83d49546be7bd69c0aa1edaa9
|
|
| BLAKE2b-256 |
28c2eb1a261c44dc908b3b601590506064a89711e7800ab3cd91b18bae63d05f
|
File details
Details for the file secondopinion_x402-0.2.0-py3-none-any.whl.
File metadata
- Download URL: secondopinion_x402-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
718248485b19740a3e4861d31c2b488479497a3e4030f8a9460dc9a0f501f7a3
|
|
| MD5 |
0b24871dc3d68cce549b20b84d5bc22c
|
|
| BLAKE2b-256 |
af0a9896769e39ff9c76dfa755daaf6e95359de55eba91a10e55192f7c3bcdac
|