Skip to main content

Operate company AI use cases with one control plane

Dativo Talon is the open-source control plane for company AI use cases. It gives teams one operating layer for four recurring jobs:

  1. Cost control — see and cap spend before the provider call.
  2. Reliability — apply one failure and fallback contract without bypassing policy.
  3. Shared policy — enforce organization rules for models, providers, data, tools, and destinations.
  4. Session understanding — understand what each use case did, spent, and why it failed or was denied.

A support bot, coding assistant, internal copilot, and document workflow should not each reinvent that operational plumbing. Talon puts the common controls on the traffic and actions routed through it, while leaving the application and orchestration architecture in place.

Every decision can also produce signed, tamper-evident evidence. Evidence is the proof layer underneath the four jobs, not a separate product category.

Read what the Talon control plane does, including current behavior and honest boundaries.

Start with the product demo

The canonical product demo operates three AI use cases through one Talon gateway on real providers:

AI use caseWhat the demo proves
customer-supportSensitive customer data is redacted, a failed local destination triggers fallback, and a disallowed fallback candidate is skipped because reliability remains policy-valid.
coding-assistantAn organization tool boundary blocks a destructive admin_* capability that the use case cannot weaken.
document-summaryA projected session-cost check prevents the next provider call; a later configuration change is safely reloaded and reflected in the operational view.
Across the session historyCosts, routing, denials, and policy interventions are exported as signed evidence and verified offline.
export OPENAI_API_KEY=sk-... ANTHROPIC_API_KEY=sk-ant-...
# Stop Ollama first so the reliability path starts with a real local failure.
make product-demo

The demo uses real, paid provider calls. For a zero-key first look, use the 60-second demo.

Get first value without a platform migration

Do not begin with a complete organization rollout. Put one real AI use case behind Talon and enable one useful control.

  1. Choose an existing OpenAI/Anthropic application, coding agent, internal assistant, or MCP boundary.
  2. Add Talon to the existing app or choose the smallest integration path.
  3. Give the use case one agent.talon.yaml and one vault-bound Talon key.
  4. Start in shadow mode where appropriate and inspect what policy would do.
  5. Enable one control: a budget cap, data rule, model/provider restriction, tool boundary, or egress rule.
  6. Inspect and verify the resulting evidence:
talon audit list
talon audit show <id>
talon audit verify <id>

For a real asserted session:

talon audit list --session <id>
talon costs --session <id> --json

One control plane, four operator jobs

Operator jobWhat Talon doesStart here
Control costEnforces per-agent daily/monthly limits before provider access and tracks agent-scoped session soft caps.Budgets and hard limits
Keep use cases reliableUses explicitly configured fallback for supported transient failures, re-checks each candidate against effective policy, and fails closed on exhaustion.Retries, fallback, and timeouts
Apply shared policyResolves the organization baseline plus one explicit use-case override across PII, models, providers, budgets, tools, and egress.Policy cookbook
Understand sessionsGroups supported traffic by session identity and exposes cost, provider paths, denials, and signed request history.Session visibility for coding agents

The configuration object is an agent

Publicly, Talon operates AI use cases. In configuration and the CLI, one AI use case is represented by one agent:

one agent.talon.yaml
= one AI use case
= one Talon traffic identity
= one active vault-bound agent key
= one resolved effective policy

The key resolves key → agent → tenant_id; the request cannot select a different agent or tenant. Client-provided subagent and session labels remain attribution inside that authenticated boundary, not independent workload attestation.

For installations running several use cases, agents_dir discovers one agent.talon.yaml per use case. Configuration-backed enable/disable, periodic safe reload, and talon agents help operators manage that installation. These are supporting configuration and operational capabilities; the product value remains the four control-plane jobs above.

Read authentication and key scopes, the configuration reference, and the operational control-plane reference.

Shared policy means one decision path

The gateway owns provider wiring and the organization baseline in talon.config.yaml. Each AI use case owns one explicit override in agent.talon.yaml. Talon resolves both into one effective-policy snapshot used by the primary route, fallback candidates, budget reporting, and signed evidence.

Organization hard constraints remain binding:

  • a use case can tighten the organization PII floor, not weaken it;
  • organization model/provider restrictions and data-tier ceilings still apply;
  • organization and use-case egress rules are intersected;
  • tool and budget constraints are evaluated before provider or intercepted tool access;
  • invalid security-sensitive configuration fails instead of silently disabling the intended boundary.

Reliability never becomes a policy exception

Talon's current fallback behavior is error-driven, not generic load balancing or price optimization.

  • Supported transient failures include timeout, connection failure, HTTP 429, and provider 5xx.
  • Fallback candidates are explicitly configured.
  • Every candidate is checked against the resolved effective policy before dispatch.
  • A healthy but disallowed destination is skipped rather than used to keep traffic flowing.
  • Exhausted chains fail closed and leave linked evidence.

See the configuration reference and incident response playbook.

Sessions are more useful than isolated request logs

A session lets an operator ask: what did this AI use case do, what did it cost, which provider/model path did it take, and what policy intervened?

Supported clients can provide an explicit or vendor-derived session identity. Session state and budgets are scoped by tenant and authenticated Talon agent. Synthetic request IDs remain useful for evidence correlation, but they are not presented as fake multi-request sessions.

Session budgets are soft caps: concurrent in-flight requests can overshoot before a later request is denied.

Start with governing coding agents or the manual governed-session proof.

Evidence, privacy, sovereignty, and compliance support

These strengthen the operating layer and help teams prove what happened:

Talon provides supporting controls and evidence. It does not make a deployment legally compliant by itself.

Honest boundaries worth knowing up front

  • Talon governs provider traffic and actions routed through its interception paths, not local shell commands, file edits, browser actions, or direct API calls that bypass it.
  • The Talon agent identity is authenticated by its key; client-supplied subagent/session metadata is attribution.
  • Session budgets are soft unless atomic reservation is explicitly implemented.
  • HMAC-signed evidence is tamper-evident and verifiable, not immutable.
  • The dashboard is a secondary operational surface; YAML and the local CLI remain the primary configuration and control path.

Source of truth

The product documentation markdown lives in the dativo-io/talon repository. This Docusaurus site publishes that content for navigation, indexing, and evaluation.

Production follows the configured TALON_DOCS_REF (default: main). The build validates mapped upstream files and public routes before compiling the site so the two repositories cannot drift silently.