Back to articles
Your AI Agents Are Running Unsupervised

Your AI Agents Are Running Unsupervised

via Dev.toJoão André Gomes Marques

Your AI Agents Are Running Unsupervised The EU AI Act is enforceable. SOC 2 auditors are asking about your agent workflows. And your LangChain agents are making API calls with zero audit trail. This is the problem asqav solves. It's a Python SDK that adds governance to AI agents - cryptographic audit trails, policy enforcement, content scanning, and compliance reports. One pip install, a few lines of code, and every agent action gets a quantum-safe signature you can verify later. The simplest version pip install asqav import asqav asqav . init ( api_key = " sk_... " ) agent = asqav . Agent . create ( " my-agent " ) sig = agent . sign ( " api:call " , { " model " : " gpt-4 " , " tokens " : 1200 }) # sig.verification_url -> publicly verifiable proof Every call to agent.sign() creates an ML-DSA signed record on asqav's servers. You get back a verification URL anyone can check. What's new in v3.0 For developers Decorators that sign function calls automatically. Async support. A CLI for man

Continue reading on Dev.to

Opens in a new tab

Read Full Article
2 views

Related Articles