OntoCast 
Agentic ontology-assisted extraction of RDF knowledge graphs from documents.
OntoCast turns unstructured text into queryable RDF: it co-evolves domain ontologies and fact graphs in a parallel map/reduce pipeline, with RDF 1.2 provenance, entity disambiguation across chunks, and optional vector-backed ontology retrieval. Run it as a REST service, a batch CLI, or embed the pipeline in your own LangChain / LangGraph agent.
Documentation: growgraph.github.io/ontocast
Why OntoCast
Most extractors dump triples and leave ontology drift to you. OntoCast treats schema and instance data as one loop: per-chunk render → critic → merge, with GraphUpdate patches (insert/delete) instead of regenerating whole graphs, SHACL validation with LLM-free autofix, and a light install so you can embed the core without pulling Docling, gRPC, or ONNX.
Features
- Parallel ontology + facts loops — concurrent per-unit render/critic with configurable workers
- GraphUpdate patches — token-efficient insert/delete ops, not full-graph regeneration
- Entity disambiguation — embedding + symbolic alignment across chunks
- RDF 1.2 provenance — quoted triples / provenance artifacts; optional
strip_provenance - Ontology context — catalog selection, vector retrieval (LanceDB or Qdrant), or a fixed ontology
- Facts validation — invariants, SHACL, and machine repairs without an extra LLM pass
- Stores — in-memory pyoxigraph by default; Fuseki for persistence; tenancy by tenant/project
- LLM caching — disk cache, in-flight limits, optional read-only / batch pre-warm
- Embeddable —
ontocast_tools,run_unit_pipeline, or a LangGraph node
Install
Pick at least one LLM provider extra. Add server for the CLI and HTTP API:
uv add "ontocast[server,openai]"
# or: pip install "ontocast[server,openai]"
Common add-ons: doc-processing (PDF/DOCX), lancedb or qdrant (ontology retrieval), shacl (shape validation).
uv add "ontocast[server,openai,doc-processing,lancedb,shacl]"
Full extras table: Installation.
Quick start
cp .env.example .env
# Set LLM_API_KEY (and LLM_PROVIDER / LLM_MODEL_NAME as needed)
ontocast serve
curl -X POST http://localhost:8999/process -F "file=@document.pdf"
Batch without a server:
ontocast process --input-path ./document.pdf --head-chunks 5 --output-dir ./out
Omit FUSEKI_URI for in-memory pyoxigraph. Details: Quick Start.
Supplying Your Ontologies
OntoCast uses seed ontologies (in Turtle .ttl format) to guide extraction. Provide yours in two ways:
- Directory Seed: Set
ONTOCAST_ONTOLOGY_DIRECTORY=/path/to/your/ontologiesin your.env. All.ttlfiles in that folder sync automatically on startup. - API Upload: Register schemas dynamically with the running server:
curl -X POST "http://localhost:8999/ontologies?tenant=ontocast&project=test" -F "file=@my_ontology.ttl"
Configuration
Start from .env.example.minimal — 47 variables instead
of 202, grouped by the decision they belong to. Then pick a
playbook for what
you are actually doing: evaluating, building an ontology, populating facts,
scaling to a large catalog, or serving it.
The knobs that change what the pipeline does — as opposed to where it stores things:
| Variable | Default | What it controls |
|---|---|---|
RENDER_MODE |
ontology_and_facts |
Which halves run. ontology writes no facts; facts skips the ontology block and extracts only against the catalog you already have |
ONTOLOGY_CONTEXT_MODE |
selected_single_ontology |
Where each unit's schema comes from: LLM catalog selection, vector retrieval, or one pinned ontology |
LLM_GRAPH_FORMAT |
jsonld |
Wire encoding the LLM emits graphs in; turtle is the legacy alternative |
MAX_VISITS_PER_NODE |
1 |
Render/critic retry budget. At 1 the LLM critic never runs |
PARALLEL_WORKERS |
16 |
Concurrent content-unit workers |
LLM_PROVIDER / LLM_MODEL_NAME / LLM_API_KEY |
openai |
Provider selection and credentials |
ONTOCAST_ONTOLOGY_DIRECTORY |
— | Seed ontologies synced on startup |
FUSEKI_URI |
— | Triple store; unset means in-memory pyoxigraph |
RENDER_MODE, ONTOLOGY_CONTEXT_MODE and LLM_GRAPH_FORMAT are also
per-request parameters on /process. Full surface, including chunking,
retrieval and validation: Configuration.
Embed in your agent
from langchain.agents import create_agent
from ontocast import Config, ToolBox, ontocast_tools
tools = await ToolBox.acreate(Config.in_memory())
await tools.initialize()
agent = create_agent(
model,
tools=[*ontocast_tools(tools)],
prompt="Edit the ontology from the user's text.",
)
Also: run_unit_pipeline for a single passage, or make_ontocast_node inside your own LangGraph — see Embedding OntoCast.
Workflow
- Convert → chunk prepare (segment, tag, filter, size)
- Parallel ontology render → normalize → consolidate → structural check → critic
- Parallel facts render → merge / disambiguate → validate (invariants, SHACL, autofix)
- Serialize to the triple store; return Turtle from the API
Workflow guide · landscape: graph.lr.png · per-unit: ontology_loop, facts_loop
Documentation
Everything lives at growgraph.github.io/ontocast:
| Installation · Quick Start | Getting started |
| Core Concepts · Workflow · Configuration | How it works |
| API · Embedding · Tenancy | Integrate |
| Ontology Context · Validation / SHACL · Triple Stores | Operate |
| API Reference | Python API |
Release notes: CHANGELOG.md
Contributing
See Contributing. Issues and discussion: GitHub.
License
Apache License 2.0 — see LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ontocast-0.6.1.tar.gz.
File metadata
- Download URL: ontocast-0.6.1.tar.gz
- Upload date:
- Size: 814.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61359ee2ebc5fd5ad515e96c3134ada8b2cfb4a6c18eb6678b3bf471fe831162
|
|
| MD5 |
0f478b916872ac81ee3d4d327c6966d6
|
|
| BLAKE2b-256 |
e4cb7b0428c2f3fada7d6ea5e758d6f71087b215f0a1cd0b081b12723f010f0c
|
File details
Details for the file ontocast-0.6.1-py3-none-any.whl.
File metadata
- Download URL: ontocast-0.6.1-py3-none-any.whl
- Upload date:
- Size: 587.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ed3a9b1b4b64c9a8a85e7a99573bcc9bbed81ef169ee7acaa3c346f48b3a254
|
|
| MD5 |
fbb778f62eca09912399408f0eed5963
|
|
| BLAKE2b-256 |
11e9d6695d8d6262aef3c3ac35bddb5b268402336f8e2a1d7acee005d494d6be
|