§ docs · nukezagent
Nukez Agent
examples
§ examples · delegation in practice
Natural language to receipt, four ways.
Same intent, four surfaces. All signatures come from the customer's client; the hosted agent orchestrates.
~162 tok/opContext comparison →
OverviewHosted · natural languageSigning bridgeZero keys heldAdaptersLangChain · CrewAI · AutoGen · A2AExamplesEnd-to-end
Raw delegation
$ curl -sS -X POST https://api.nukez.xyz/v1/delegate \
-H "Content-Type: application/json" \
-d '{
"intent": "Store this session state and verify it.",
"payload": "'$(base64 -i session.json)'"
}'
# response: { receipt_id, verification_bundle, narration }LangChain tool
from nukez.adapters.langchain import NukezAgentTool
tool = NukezAgentTool() # reads NUKEZ_API_KEY from env
result = tool.run("Store the last hour of chat logs and give me the receipt id.")
print(result.receipt_id, result.anchored_on_solana)Also in /how-it-works/examples →