Add a human decision gate to your agent's workflow. High-stakes actions get human review before execution. A real person approves, rejects, or modifies — result returned via API.
curl -X POST https://siliconbridge.xyz/task/submit \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"service_type": "approval", "payload": {"question": "Approve $500 purchase?", "context": {"item": "Server upgrade"}}}'
# Python SDK
from siliconbridge import SiliconBridge
sb = SiliconBridge(api_key="YOUR_KEY")
approved = sb.request_approval("Should agent proceed?", {"amount": "$49.99"})
Your agent submits a task via API with service type approval
A real human operator picks it up and completes it (avg <60 seconds)
Result is returned via API or webhook. Your agent continues.
Sign up with wallet, Nostr, or email. $10 free credits. No credit card required.