After hybrid search disambiguates a starting item, agents traverse its connected facts using SPARQL (SPARQL Protocol and RDF Query Language). This is the W3C standard for knowledge graphs.Documentation Index
Fetch the complete documentation index at: https://docs.wazoo.dev/llms.txt
Use this file to discover all available pages before exploring further.
SPARQL reasoning
SPARQL matches patterns against facts, follows relationships, and returns exact results without probabilistic guessing.Symbolic logic
Given triples such asuser:person wazoo:worksFor wazoo:organization, query for
the organization:
TypeScript
Neuro-symbolic reasoning
Worlds fuses semantic discovery with symbolic logic. Hybrid search disambiguates the natural language intent into a specific starting item, while SPARQL executes the deterministic traversal across verified facts.| Context | Hybrid search | SPARQL |
|---|---|---|
| Dimension | Semantic discovery | Deterministic reasoning |
| Goal | Item disambiguation | Factual traversal |
| Logic | Probabilistic | Symbolic |
High-stakes context
Standard RAG struggles with evolving facts and complex relational queries. Worlds maintains a living knowledge graph where contradictions are resolved at the data layer.The evolving fact
Consider a scenario where information changes rapidly:- Monday: “I am working on Project Apollo.”
- Wednesday: “I am pausing Apollo to focus on Project Hermes.”
- Friday: “What am I working on?”
Grounding agents in ontologies
By usingdiscover-schema, agents retrieve the world’s ontology before
attempting to query it.
- Discovery: Agent retrieves the world’s ontology.
- Mapping: Agent maps intent to specific RDF classes and predicates.
- Querying: Agent executes precise SPARQL queries instead of depending solely on vector similarity.