BUILD ON TACITUS · UNDER ACTIVE DEVELOPMENT
Three ways to put Dialectica inside your own application: managed API, embedded platform SDK, or the open-source pipeline. Pick the integration depth that matches your stack.
THREE PATHS
MANAGED
Hosted conflict intelligence. Send text, receive a typed graph. SDKs for Python and TypeScript. In private beta — request a key.
Request API accessPLATFORM
Embed TACITUS inside your own product. Use the ontology, extraction, and graph query layers directly. Enterprise pilots only, today.
Pilot conversationOPEN SOURCE
Clone, self-host, extend. MIT-licensed reference implementations of the ontology, the extraction pipeline, and the engine.
GitHub ↗QUICK START
from tacitus import Client
client = Client(api_key="tk_live_***")
graph = client.extract(
text=open("grievance.txt").read(),
domain="human_friction",
)
for actor in graph.actors:
print(actor.name, "->", [c.text for c in actor.claims])
for commitment in graph.commitments:
print(commitment.source_span, commitment.status)
import { Client } from "@tacitus/client";
const client = new Client({ apiKey: process.env.TACITUS_API_KEY! });
const graph = await client.extract({
text: await readFile("grievance.txt", "utf8"),
domain: "human_friction",
});
for (const actor of graph.actors) {
console.log(actor.name, actor.claims.map((c) => c.text));
}
curl -X POST https://api.tacitus.me/v1/extract \
-H "Authorization: Bearer $TACITUS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "The Government of Nordalia announced ...",
"domain": "armed_conflict"
}'/* TODO: wire to the real /v1/extract endpoint when it ships publicly. */
Add structured conflict memory to a live mediation tool. Session-level commitment tracking built in.
Turn document corpora into queryable actor/claim/commitment graphs. Cite every finding back to a source.
Ground a negotiation copilot in a typed ontology instead of in a context window. Fewer hallucinations.
Structure grievance intake, flag contradictions, separate claim from commitment automatically.
Feed proposed policy into Wind Tunnel via the SDK. Observe behavioral-tribe responses programmatically.
Build ARGUS-class document understanding on your own corpus with a vendor-agnostic stack.
THE ONTOLOGY UNDERNEATH
OPEN SOURCE
The reference pipeline: ingest, extract, structure, query. MIT-licensed.
Reference implementation of Dialectica engine components.
The Agentic Conflict Ontology. Pydantic + OWL/Turtle dual export.