QA and runtime nudges for voice agents.
Your agent runs wherever it already runs. This client sends the transcript as it happens, gets back what the analysis found, and delivers the nudge to the agent while the caller is still on the line.
pip install deeptrust-ai
The distribution is deeptrust-ai and it imports as deeptrust.
import os from deeptrust.agents import DeepTrust, User dt = DeepTrust() # reads DEEPTRUST_API_KEY call = dt.session( external_id=conversation_id, # your platform's id for this call user=User(id=account_id, role="MEMBER"), platform="elevenlabs", ) call.append("user", "her manager approved it on Slack, there's no time for a ticket") call.append("agent", "let me check that") result = await call.analyze() for nudge in result.nudges: print(nudge.title) # Approval cannot be confirmed print(nudge.render()) # what was noticed, and what to do about it
An agent follows a procedure and a caller pushes against it. Some of that pushing is a bad day and some of it is somebody working the desk, and the two say the same words. A rule cannot separate them, which is the whole reason this exists.
The analysis reads the call against your organisation's runbook, SOPs and controls, and returns findings. A finding worth telling the agent about carries a nudge, which has both what was seen and what to do about it. An agent given only the first has to pick a response itself, and the one it usually picks is handing the call to a person.
analyze reviews the transcript and returns findings. It does not block the
agent, so a result arrives after the turn that caused it has been spoken, and a
nudge affects what the agent says next.
check decides whether a single action may run, and does block. It is meant to
be called from a tool handler before the action executes. Not implemented in
this version.
An agent call has two participants with fixed roles, so every turn has an unambiguous speaker and the transcript stays structured rather than flattened to prose.
append only adds to a local list. Nothing is sent until analyze is called,
and analyze returns None when no turns have been added since the last one,
so it is safe to call on every turn.
call.append("user", "I'm locked out") call.pending # 1 await call.analyze() # one job, the whole transcript await call.analyze() # None. nothing new was said
pip install "deeptrust-ai[livekit]"from deeptrust.agents import DeepTrust, User from deeptrust.agents.livekit import attach attach(session, DeepTrust(), external_id=ctx.room.name, user=caller)
That subscribes to the session's conversation items, runs a job when the caller
says something new, and delivers the nudge. On LiveKit a nudge can interrupt: the
analysis lands while the agent is still generating, so it can stop a sentence on
its way out. Pass interrupt=False to shape the next turn instead.
pip install "deeptrust-ai[elevenlabs]"from deeptrust.agents import DeepTrust from deeptrust.agents.elevenlabs import Monitor monitor = Monitor(DeepTrust(), api_key=os.environ["ELEVENLABS_API_KEY"]) await monitor.watch(conversation_id, user=caller)
This needs no code inside your agent. ElevenLabs exposes a per-conversation monitor socket, so DeepTrust connects from its own side with a workspace key, reads the transcript, and sends findings back as contextual updates on the same socket.
Two differences from LiveKit, which the client reports rather than hides. Contextual updates are documented as non-interrupting, so a finding shapes the next turn. And the socket carries events, not audio, which suits a client that reads what was said and does not analyse the audio itself.
Neither adapter is required. If your agent is somewhere else, the two verbs are
the whole interface: append turns, call analyze, deliver the nudge however
your agent takes instructions.
Keys are created per organisation in the DeepTrust dashboard. Analysis and enforcement are separate scopes, so a team piloting analysis is not holding a key that can block their production calls. When a key lacks a scope, the client says which scope is missing and which the key holds.
export DEEPTRUST_API_KEY=... export DEEPTRUST_BASE_URL=... # optional, for a non-production workspace
just install
just check # lint, types, testsEverything runs through uv, so there is no
virtualenv to activate. just on its own lists the rest.
dev/server.py is a local stand-in for the API, so this client, both adapters
and both examples run with no key and no network:
just devserver # http://127.0.0.1:8080It is not the analysis. The hosted API runs a reasoning model against an organisation's runbook, SOPs and controls; this matches a handful of patterns, which is enough to see a finding arrive and a nudge get delivered. A rule can never separate a caller relaying a real approval from one inventing it, which is the whole reason the real thing is not this.
Point a client at it with DEEPTRUST_BASE_URL.
0.0.1, first release. analyze and both adapters work. check is defined
and raises NotImplementedError. The shapes in deeptrust.types are the part
most likely to move.
Apache 2.0.