How Cypris Empowers R&D Teams

Keep Reading

Semantic search for patents retrieves documents by modeled meaning rather than by lexical overlap. A Boolean or keyword query matches on the surface form of a string: it returns patents whose text contains the specified tokens, combined through operators and often expanded with truncation, proximity, and classification filters. A semantic query matches on representation: each document and the query are encoded as high-dimensional vectors, and retrieval ranks documents by vector similarity, so patents whose claims and disclosures are conceptually related are returned even when they share no keywords with the query. This distinction is decisive in patent work because equivalent subject matter is routinely described in divergent vocabulary, and applicants draft claims with deliberately broad, idiosyncratic, or coined terminology to widen scope. When relevant patents use language the searcher did not anticipate, lexical retrieval fails to surface them, and those recall failures are the primary source of risk in prior art and freedom-to-operate analysis.
The stakes are set by scale. The World Intellectual Property Organization reported roughly 3.5 million patent applications filed worldwide in 2023,¹ and scientific literature has grown at approximately 8 to 9 percent per year across recent decades,² so the candidate space a searcher must cover exceeds what manually constructed Boolean queries can reliably span. Lexical retrieval trades recall for precision: it returns documents matching the exact terms and omits everything phrased differently. Evaluations in the patent-retrieval literature have found that keyword and Boolean logic disregard the syntax and semantics of technical language, which makes patent retrieval materially harder than general-domain information retrieval and leaves relevant documents unretrieved.³,⁴ In prior art and freedom-to-operate, the cost of a single missed document is high, because one overlooked reference can defeat a novelty position or expose a product to infringement liability.
Semantic search also underpins the shift toward agentic AI in R&D and IP. AI agents increasingly query patent and scientific corpora through an API and execute multi-step retrieval and analysis, and dense semantic retrieval is what allows an agent to locate relevant documents without a human hand-crafting Boolean strings. The Model Context Protocol (MCP), introduced by Anthropic in November 2024 and donated to the Linux Foundation's Agentic AI Foundation in December 2025, is now the common standard through which agents connect to external data.⁵ Semantic retrieval is the layer that grounds these agentic workflows in real documents.
How semantic search works
Semantic search rests on learned vector representations. A transformer-based language model, typically fine-tuned on patent and scientific text, encodes each document into a dense embedding, a fixed-length vector of several hundred dimensions whose geometry captures semantic relationships. The query is encoded by the same model, and relevance is scored by a similarity function, most commonly cosine similarity or inner product, over the shared vector space. Because encoding is done offline, retrieval at query time reduces to a nearest-neighbor search: the system returns the documents whose embeddings lie closest to the query embedding, which are the documents most similar in modeled meaning rather than in wording.
At corpus scale, exhaustive comparison against every vector is infeasible, so semantic search relies on approximate nearest-neighbor (ANN) indexing, using structures such as hierarchical navigable small-world graphs or inverted-file quantization to return near-optimal neighbors in sub-linear time. The retrieval model itself is usually a bi-encoder, which embeds query and document independently for speed. A second, more expensive cross-encoder is often applied as a reranking stage over the top candidates, jointly attending to query and document to refine the ordering. This retrieve-then-rerank architecture is standard because it combines the throughput of ANN retrieval with the precision of pairwise scoring.
Dense retrieval demonstrably outperforms lexical baselines. Dense passage retrieval improved top-20 retrieval accuracy by 9 to 19 percentage points over a strong keyword baseline in open-domain benchmarks,⁶ and patent-specific embedding models have been engineered for this domain: the European Patent Office's SEARCHFORMER uses siamese transformer encoders to produce semantic patent embeddings purpose-built for prior art search,⁷ and subsequent work has shown that few-shot fine-tuning and quantized embeddings can adapt these models efficiently to patent retrieval benchmarks.⁸ Three domain-specific factors make this adaptation necessary. Patents are long and structurally heterogeneous, so documents are segmented into passages, and claims are frequently indexed separately because claim language, not the abstract, defines legal scope. Patent corpora are multilingual, so cross-lingual embeddings allow a query in one language to retrieve prior art in another. And patents carry structured metadata, so production systems typically use hybrid retrieval, fusing dense semantic scores with lexical signals and Cooperative Patent Classification or International Patent Classification codes through rank-fusion methods to combine conceptual recall with exact-match precision.
Semantic search becomes substantially more powerful when the vector layer is combined with an explicit knowledge structure. An ontology that formalizes how technologies, materials, methods, and claims relate lets a platform interpret a query within a technology domain and cluster results by concept rather than surface wording. This combination, dense retrieval organized by an ontology, is what separates a modern patent-analytics platform from a keyword database with a search box: it improves recall by retrieving conceptually related work, and it improves interpretability by organizing results into a navigable conceptual structure. Retrieval quality in this setting is measured with recall-oriented metrics such as recall@k and mean average precision, which reflect the priority of finding all relevant documents rather than only the top few.
Where semantic search changes patent work
Prior art search. Prior art search is recall-bound, because the objective is to surface any earlier disclosure bearing on novelty or obviousness. Dense semantic retrieval surfaces prior art expressed in different terminology from the invention, including non-patent literature, which lexical search omits, producing a more complete novelty assessment.
Freedom-to-operate. Freedom-to-operate depends on identifying active, in-force claims that a product could read on, including claims drafted to cover a concept broadly. Semantic retrieval locates relevant claims independent of exact terminology and, combined with claim-level indexing, narrows the analysis to the independent claims that define infringement scope, reducing the coverage gaps that generate FTO risk.
White space analysis. White space analysis depends on clustering activity by concept to expose genuine gaps. Embedding-based clustering distinguishes real conceptual sparsity from apparent sparsity that is only an artifact of divergent terminology, so the identified white space reflects unclaimed technical territory rather than a vocabulary mismatch.
Technology and competitive intelligence. Characterizing a technology area requires connecting related work across patents and scientific literature. Encoding both sources in a shared vector space lets a platform retrieve and align conceptually related documents across them, supporting attribution of activity to technology areas and organizations.
Where Cypris fits
Cypris applies semantic search across a corpus of more than 500 million patents and scientific papers, organized through a proprietary R&D ontology. The ontology is what makes the dense retrieval interpretable: it maps how technologies, claims, and research relate, so retrieval is organized by concept rather than surface wording, and results are returned as a navigable conceptual structure rather than a flat ranked list. This lets Cypris surface conceptually relevant patents and papers for prior art, freedom-to-operate at the claim level, and white space analysis, closing the recall gaps that lexical search leaves. Cypris Q, the platform's agentic layer, lets teams run semantic queries conversationally and chain them into multi-step retrieval and analysis, and Agentic Monitoring keeps results current by tracking a technology area over time. Cypris provides enterprise API partnerships with OpenAI, Anthropic, and Google, so AI agents can execute semantic retrieval across the corpus programmatically, and it is built with enterprise-grade security. Cypris serves hundreds of enterprise customers across pharmaceuticals, chemicals, advanced materials, energy, and other regulated industries.
FAQ
What is semantic search for patents?
Semantic search for patents retrieves patents and scientific papers by modeled meaning rather than by exact keywords. It encodes documents and queries as dense vectors and ranks results by vector similarity, so conceptually related documents are returned even when they share no keywords. This closes the recall gaps that cause missed prior art and freedom-to-operate risk in Boolean search.
How is semantic search different from keyword search?
Semantic search differs from keyword search in what it matches. Keyword and Boolean search match the surface form of a query string, while semantic search matches learned vector representations of meaning. For patents this matters because equivalent subject matter is described in divergent vocabulary, and lexical search misses documents phrased differently or drafted with deliberately broad claim language.
What are embeddings in semantic patent search?
Embeddings in semantic patent search are dense vectors, produced by a transformer language model, that encode the meaning of a patent, a claim, a passage, or a query into a shared high-dimensional space. Similarity between embeddings, typically cosine similarity, measures conceptual relatedness. Retrieval returns the documents whose embeddings are nearest to the query embedding.
What is dense retrieval and how does it compare to BM25?
Dense retrieval encodes queries and documents as learned vectors and ranks by vector similarity, whereas BM25 is a sparse, term-frequency lexical method. Dense passage retrieval has been shown to improve top-20 retrieval accuracy by 9 to 19 percentage points over a strong lexical baseline. Production patent systems often combine the two in hybrid retrieval to gain both conceptual recall and exact-match precision.
Why does semantic search matter for prior art search?
Semantic search matters for prior art search because prior art is recall-bound, and relevant disclosures are frequently phrased differently from the invention or appear in non-patent literature. Lexical search omits these, leaving gaps in the novelty assessment. Dense semantic retrieval surfaces conceptually related disclosures regardless of wording, making the assessment more complete.
How does semantic search improve freedom-to-operate analysis?
Semantic search improves freedom-to-operate analysis by locating active claims a product could read on even when those claims use different terminology or cover a concept broadly. Combined with claim-level indexing, it focuses the analysis on the independent claims that define infringement scope. This reduces the coverage gaps that are the main source of FTO risk.
What is a retrieve-then-rerank pipeline?
A retrieve-then-rerank pipeline is a two-stage architecture. A fast bi-encoder retrieves a candidate set using approximate nearest-neighbor search, then a more expensive cross-encoder rescores the top candidates by jointly attending to the query and each document. This combines the throughput of vector retrieval with the precision of pairwise relevance scoring.
Does semantic search need an ontology?
Semantic search does not strictly require an ontology, but combining the two is substantially more powerful. An ontology formalizes how technologies relate, letting a platform interpret a query within a domain and cluster results by concept. Cypris combines dense semantic retrieval with a proprietary R&D ontology across more than 500 million patents and scientific papers for this reason.
How do AI agents use semantic search for patents?
AI agents use semantic search as the retrieval layer that lets them locate relevant patents and papers without a human writing Boolean strings, enabling autonomous multi-step analysis. Agents query the corpus through an API and use dense retrieval to ground their reasoning in real documents. Cypris offers enterprise API partnerships with OpenAI, Anthropic, and Google so agents can run semantic retrieval across its corpus.
Which teams benefit from semantic patent search?
Semantic patent search benefits R&D, innovation, and IP teams running prior art, freedom-to-operate, white space, and technology-intelligence searches, all of which depend on high-recall retrieval of conceptually relevant documents. It is most valuable in research-intensive industries such as pharmaceuticals, chemicals, advanced materials, and energy. Cypris serves hundreds of enterprise customers across these industries.
Endnotes
- World Intellectual Property Organization. World Intellectual Property Indicators (annual series). https://www.wipo.int/publications/
- Bornmann, L. & Mutz, R. (2015). Growth rates of modern science: a bibliometric analysis based on the number of publications and cited references. Journal of the Association for Information Science and Technology. https://doi.org/10.1002/asi.23329
- Zihayat, M. & Etwaroo, R. (2021). A non-factoid question answering system for prior art search. Expert Systems with Applications. https://doi.org/10.1016/j.eswa.2021.114910
- Lupu, M., Piroi, F., Hanbury, A. & Zenz, V. (2011). CLEF-IP 2011: Retrieval in the Intellectual Property Domain.
- Anthropic (2025). Donating the Model Context Protocol and establishing the Agentic AI Foundation. https://www.anthropic.com/news/donating-the-model-context-protocol-and-establishing-of-the-agentic-ai-foundation; Linux Foundation (2025). Formation of the Agentic AI Foundation. https://www.linuxfoundation.org/press/linux-foundation-announces-the-formation-of-the-agentic-ai-foundation
- Karpukhin, V. et al. (2020). Dense Passage Retrieval for Open-Domain Question Answering. EMNLP. https://doi.org/10.18653/v1/2020.emnlp-main.550
- Vowinckel, K. & Hähnke, V. D. (2023). SEARCHFORMER: Semantic patent embeddings by siamese transformers for prior art search. World Patent Information. https://doi.org/10.1016/j.wpi.2023.102192
- Chikkamath, R. et al. (2025). Patent Retrieval with Few-Shot Fine-Tuning and Quantized Embeddings. https://doi.org/10.1145/3787279.3787295

Direct air capture has moved from demonstration to first commercial plants, and its patent landscape is distinctive because DAC is not a single technology but a set of competing capture routes, each with its own chemistry and energy profile. DAC removes carbon dioxide directly from the atmosphere, where it is present at very low concentration, which makes the capture step energy-intensive and puts a premium on the materials and processes that do it efficiently. The routes divide into distinct regions of patenting: solid amine adsorption, in which amine groups grafted onto porous supports capture carbon dioxide at ambient temperature and release it with modest heat, suiting modular designs;¹ liquid alkaline absorption, in which a potassium or sodium hydroxide solution captures carbon dioxide and is regenerated through a high-temperature calcination loop, suiting large centralized plants; mineralization, which binds carbon dioxide to minerals at low cost but slow kinetics; and electrified regeneration, in which electricity rather than heat releases the captured carbon dioxide.²,³,⁴,⁵,⁶ Cutting across the routes are the sorbent and solvent chemistry, the air-contactor and module design, including structured-honeycomb contactors that lower pressure drop,⁷ the regeneration step, and sorbent durability. Because a viable plant depends on several of these layers, freedom-to-operate and white space analysis must span the routes and the layers together.
The landscape is being pulled forward by policy and by corporate demand. In the United States, the Department of Energy's Regional Direct Air Capture Hubs program, funded at roughly $3.5 billion under the Infrastructure Investment and Jobs Act, is standing up four commercial-scale hubs, each required to capture and store or utilize at least one million tonnes of carbon dioxide a year, alongside a network of feasibility-phase projects; the South Texas hub is among those that have advanced through award negotiations.⁸ The routes sit at different stages: solid amine systems are the most widely deployed in modular form, liquid alkaline systems operate at the largest single-plant scale, mineralization offers low capital cost at slow kinetics, and electrified regeneration is a fast-moving research and development area that the literature identifies as a promising near-term direction for solid-sorbent systems, spanning Joule-heated fiber sorbents,²,³ electrochemically mediated amine regeneration,⁴ redox-based electro-swing approaches,⁵ and microwave and induction heating.⁶,⁹ Across the Cypris corpus of more than 500 million patents and scientific papers, the DAC solid-sorbent set holds on the order of 887 families and grew from about 22 in 2021 to roughly 173 in 2024, with the most active assignees led by Robert Bosch, Siemens Energy, Shell, W.L. Gore, and X Development, and the United States, Germany, and China leading on geography; 2025 and 2026 counts are partial because of the publication lag.
The strategic question is which route and layer to back, and the white space sits where energy and durability are hardest. Sorbents with high carbon dioxide capacity, fast kinetics, and long cycle life are the central materials problem, and oxidative and humidity-driven degradation of amine sorbents is a persistent, high-value target,¹,¹⁰ with in-situ vapor and steam purges among the strategies that promote regeneration and stability.¹⁰ Regeneration is the other decisive layer, because it dominates energy use, so electrified and low-temperature regeneration that can run on renewable power is a fast-moving, comparatively open area,²,³,⁴,⁵,⁶ and cost-per-tonne remains a projection subject to techno-economic modeling.¹¹ Contactor and module engineering that cuts pressure drop and capital cost,⁷ and mineralization approaches that speed up kinetics, are further distinct layers. Reading the landscape by route, material, and step, and tracking both the patents and the underlying materials research, is what separates a crowded region from an open one.
Where the DAC white space is
Durable, high-capacity sorbents. Sorbents with high capacity, fast kinetics, and resistance to oxidative and humidity-driven degradation are the central materials problem and a high-value layer.¹,¹⁰
Electrified and low-temperature regeneration. Regeneration that uses electricity or low-grade heat, spanning Joule-heated, electrochemical, electro-swing, microwave, and induction approaches, is a fast-moving, comparatively open layer.²,³,⁴,⁵,⁶,⁹
Air-contactor and module engineering. Contactor and module designs, including structured honeycombs, that cut pressure drop, energy use, and capital cost are where deployment economics are decided.⁷
Mineralization kinetics. Approaches that speed up the low-cost but slow mineralization route are a distinct, differentiated area.
System and heat integration. Integrating DAC with low-grade waste heat, renewable power, and storage or utilization is a strategically important system layer.
How AI-powered landscape and white space analysis helps
Resolving a landscape that spans several capture routes, each with its own chemistry and energy profile, requires more than keyword search. AI-powered analysis addresses this with semantic search that clusters activity by route, material, and step across varied terminology, attribution that normalizes developer and academic filers to canonical entities, and continuous monitoring that keeps pace with a policy-driven surge. Because DAC advances appear in materials and separations literature before they are patented, reading both patents and literature gives the earliest signal of where low-energy, durable systems are emerging.
Where Cypris fits
Cypris runs patent landscape and white space analysis for multi-route materials fields such as direct air capture across a corpus of more than 500 million patents and scientific papers, organized through a proprietary R&D ontology. The ontology clusters activity by route, solid amine, liquid alkaline, mineralization, and electrified regeneration, and by layer, sorbent and solvent chemistry, contactor and module, and regeneration, and normalizes developer and academic filers to canonical entities, so a team can resolve which routes and layers are crowded and which remain open as white space, and can track new entrants as the field scales. Semantic search across patents and scientific literature connects filings to the underlying materials and separations research, which is where DAC advances appear first. Cypris Q, the platform's agentic layer, lets teams run landscape and white space analysis conversationally and chain the clustering, attribution, and gap analysis, and Agentic Monitoring tracks a defined route over time and flags new patents and papers as they publish. Cypris provides enterprise API partnerships with OpenAI, Anthropic, and Google, and is built with enterprise-grade security. Cypris serves hundreds of enterprise customers across pharmaceuticals, chemicals, advanced materials, energy, and other regulated industries.
FAQ
What is the direct air capture patent landscape? The direct air capture patent landscape is the set of patents covering technologies that remove carbon dioxide directly from ambient air. It divides across competing routes, solid amine adsorption, liquid alkaline absorption, mineralization, and electrified regeneration, plus sorbent, contactor, and regeneration IP. Each route is a distinct region of patenting.
Why is DAC energy-intensive? DAC is energy-intensive because carbon dioxide is present in air at very low concentration, so moving large volumes of air and then releasing the captured carbon dioxide from the sorbent or solvent takes significant energy, most of it in regeneration. Reducing that energy is the central challenge. It is why sorbent and regeneration IP is so valuable.
What routes does the DAC landscape cover? The landscape covers solid amine adsorption, which suits modular designs; liquid alkaline absorption, which suits large centralized plants; mineralization, which is low-cost but slow; and electrified regeneration, an emerging area. Each has distinct chemistry, energy needs, and maturity. Freedom-to-operate and white space analysis must treat them separately.
How large is the US DAC hubs program? The US Department of Energy's Regional Direct Air Capture Hubs program is funded at roughly $3.5 billion under the Infrastructure Investment and Jobs Act and is standing up four commercial-scale hubs, each required to capture and store or utilize at least one million tonnes of carbon dioxide a year. The South Texas hub is among those in award negotiations. It is the largest public DAC funding to date.
Where is the white space in DAC? The white space includes durable, high-capacity sorbents, electrified and low-temperature regeneration, air-contactor and module engineering, mineralization kinetics, and system and heat integration. The most deployed solid amine and liquid alkaline grounds are comparatively crowded. The most open, high-value opportunities are in sorbent durability and low-energy regeneration.
Why is regeneration such an important layer? Regeneration is important because releasing the captured carbon dioxide from the sorbent or solvent dominates a DAC plant's energy use and cost. Approaches that regenerate at lower temperature or with electricity, and can run on renewable power, directly improve economics and carbon balance. That makes regeneration a decisive, actively patented layer.
What software helps analyze the direct air capture patent landscape? Software for the DAC landscape should cluster activity by route and process layer, resolve developer and academic filers to canonical owners, search patents and scientific literature semantically, and monitor a policy-driven field continuously. Cypris does this across more than 500 million patents and scientific papers using a proprietary R&D ontology, semantic search, Cypris Q, and Agentic Monitoring.
Which teams use direct air capture patent landscape analysis? Direct air capture patent landscape analysis is used by R&D, innovation, IP, and strategy teams at carbon-removal, materials, chemicals, and energy companies, and their partners, as well as investors and policymakers. It informs which route to back, where to file, and where competitors are concentrated. Cypris serves hundreds of enterprise customers across advanced materials, energy, chemicals, and other regulated industries.
Endnotes
- Sun, X., et al. (2023). Chemisorption and regeneration of amine-based CO2 sorbents in direct air capture. Materials Today Sustainability, 22. https://doi.org/10.1016/j.mtsust.2023.100453
- Realff, M. J., Jones, C. W., Lively, R. P., et al. (2023). Sorbent-coated carbon fibers for direct air capture using electrically driven temperature swing adsorption. Joule, 7(7). https://doi.org/10.1016/j.joule.2023.05.016
- Park, H., et al. (2025). Design of electrified fiber sorbents for direct air capture with electrically driven temperature-vacuum-swing adsorption. Advanced Materials, 37. https://doi.org/10.1002/adma.202504542
- Stern, M. C., & Hatton, T. A. (2013). Bench-scale demonstration of CO2 capture with electrochemically mediated amine regeneration (EMAR). RSC Advances, 3. https://doi.org/10.1039/c3ra46774k
- Kim, S., Kang, J. S., & Hatton, T. A. (2021). Redox-responsive sorbents and mediators for electrochemically based CO2 capture. Current Opinion in Green and Sustainable Chemistry, 30. https://doi.org/10.1016/j.cogsc.2021.100504
- van der Wal, K., van Schagen, T. N., & Brilman, D. W. F. (2021). Through-flow microwave-based regenerator for sorbent-based direct air capture. Chemical Engineering Journal Advances, 8. https://doi.org/10.1016/j.ceja.2021.100187
- Boger, T., et al. (2026). Steam-based vacuum-temperature-swing adsorption with honeycomb amine sorbents for direct air capture. Carbon Capture Science & Technology, 20. https://doi.org/10.1016/j.ccst.2026.100654
- U.S. Department of Energy, Office of Clean Energy Demonstrations. Regional Direct Air Capture Hubs. https://www.energy.gov/oced/regional-direct-air-capture-hubs
- Thompson, S., et al. (2024). Magnetic-nanoparticle-induced sorbent regeneration for direct air capture. AIChE Journal, 70. https://doi.org/10.1002/aic.18500
- Webley, P. A., Li, S., Hu, X., et al. (2026). Promoting regeneration of PEI-impregnated sorbents through in-situ vapor purge for direct air capture. AIChE Journal, 72. https://doi.org/10.1002/aic.70571
- Pirngruber, G. D., et al. (2013). Theoretical analysis of energy consumption of TSA post-combustion capture with solid sorbents. International Journal of Greenhouse Gas Control, 14. https://doi.org/10.1016/j.ijggc.2013.01.010

An ontology is a formal, machine-readable specification of the concepts in a domain and the relationships among them. The term has a precise meaning in knowledge representation: an explicit specification of a conceptualization,¹ that is, a defined vocabulary of entity types, attributes, and relations, together with constraints on how they may be combined. This distinguishes an ontology from a flat taxonomy, which only arranges terms hierarchically; an ontology also encodes non-hierarchical relations, such as a material being used in a process or a method being applied to a claim. In R&D and patent intelligence, the ontology defines the domain schema: the technologies, materials, methods, claims, organizations, and research areas that matter, and the relationship types that connect them.²
A knowledge graph instantiates that schema over real data. It represents information as a graph of nodes and typed edges, commonly expressed as subject-predicate-object triples, linking specific patents, scientific papers, assignees, inventors, technologies, and materials as connected entities rather than isolated documents. Building the graph requires several engineering steps that determine its quality: named-entity recognition and relation extraction to convert unstructured patent and paper text into triples; entity resolution to normalize the many surface forms of an organization, inventor, or compound to a single canonical node; and provenance tracking so every assertion in the graph traces back to the source document that supports it. The result is a structure that can be queried declaratively, for example with a graph query language, and that supports multi-hop traversal, so a question can follow chains of relationships rather than matching a single string.
This structure matters because patents and scientific literature become intelligence only when their relationships are made explicit. A ranked list of relevant documents does not state how a technology area is organized, which organizations are active, how research connects to patents, or where the graph is sparse. An ontology-backed knowledge graph makes those relationships first-class and queryable. A team can ask how two technologies relate, which body of research underpins a patent cluster, which assignees co-file in an area, or where a domain is unclaimed, and receive an answer computed over structured connections rather than assembled by reading.
The 2026 relevance is that structured knowledge is the most reliable way to ground generative AI. Large language models produce fluent output but can assert unsupported claims when they generate from parametric memory over unstructured text. Retrieval-augmented generation (RAG), which conditions a model's output on retrieved external evidence, was introduced to address this and improves factual accuracy on knowledge-intensive tasks.³,⁴ Graph retrieval-augmented generation (GraphRAG) extends RAG by retrieving connected subgraphs rather than isolated passages, so the model reasons over entities and their relationships and can answer questions that require traversing multiple hops.⁵,⁶ Grounding a system on an ontology-backed knowledge graph constrains its outputs to real, connected entities, which is essential for patent and R&D work where every conclusion must trace to actual patents and papers, and where retrieval quality directly governs the reliability of downstream generation.⁷ It is also what makes agentic workflows dependable: an agent reasoning over a structured, provenance-tracked graph produces results a team can verify against sources.
What an ontology and knowledge graph add to patent intelligence
Multi-hop reasoning over relationships. A knowledge graph answers relational and multi-hop questions, such as how two technologies connect through shared materials or which research a patent cluster builds on, rather than only returning documents that match a query string.
Concept-organized semantic search. Dense semantic retrieval returns conceptually relevant documents; the ontology organizes that retrieval within a domain schema, improving both recall and the interpretability of results by grouping them under defined concepts.
White space analysis. White space analysis depends on clustering activity by concept to expose genuine gaps. Clustering patents and papers over the ontology's relationship structure exposes real conceptual sparsity rather than gaps that are artifacts of divergent terminology.
Entity-resolved attribution and competitive intelligence. Entity resolution normalizes assignee and inventor variants to canonical nodes, which lets the graph attribute filings and research accurately and build co-assignee and citation networks rather than a document list.
Provenance-grounded AI. The ontology and knowledge graph give AI agents a structured, provenance-tracked foundation to reason over, which improves the accuracy of agentic analysis and makes its results traceable to the specific patents and papers that support them.
Where Cypris fits
Cypris organizes a corpus of more than 500 million patents and scientific papers through a proprietary R&D ontology. That ontology is the core of the platform: it defines how technologies, claims, materials, methods, and research relate, so Cypris reasons over an entity-resolved relationship structure rather than only matching keywords. This structure powers dense semantic retrieval organized by concept, white space analysis that exposes genuine conceptual gaps, and competitive intelligence that attributes activity to canonical organizations and technology areas. Cypris Q, the platform's agentic layer, reasons over this provenance-tracked foundation, which is what makes its multi-step analysis both reliable and traceable to real patents and papers, consistent with graph-grounded retrieval approaches. Agentic Monitoring tracks a technology area over time against the same structure. Cypris provides enterprise API partnerships with OpenAI, Anthropic, and Google, so AI agents can query the structured corpus programmatically, and it is built with enterprise-grade security. Cypris serves hundreds of enterprise customers across pharmaceuticals, chemicals, advanced materials, energy, and other regulated industries.
FAQ
What is an ontology in R&D and patent intelligence?
An ontology in R&D and patent intelligence is a formal, machine-readable specification of the concepts in the domain and the relationships among them, defined as an explicit specification of a conceptualization. It sets out the entity types, such as technologies, materials, methods, and claims, and the relations that connect them. This lets a platform reason over connections between patents and scientific literature rather than treating documents as isolated.
How is an ontology different from a taxonomy?
An ontology differs from a taxonomy in expressiveness. A taxonomy arranges terms in a hierarchy, while an ontology also encodes non-hierarchical, typed relationships and constraints, such as a material being used in a process. This richer structure is what allows multi-hop reasoning across patents and research rather than simple category lookup.
What is a knowledge graph for patents?
A knowledge graph for patents represents patents, scientific papers, assignees, inventors, technologies, and materials as nodes connected by typed edges, commonly expressed as subject-predicate-object triples. It applies an ontology's schema to real data so relationships are explicit and queryable. This turns a document collection into a structure that supports declarative queries and multi-hop traversal.
How is a knowledge graph built from patent text?
A knowledge graph is built from patent text through named-entity recognition and relation extraction to convert unstructured text into triples, entity resolution to normalize variant names to canonical nodes, and provenance tracking so each assertion links back to its source document. The quality of these steps determines the reliability of the graph. Poor entity resolution, for example, fragments an organization across many nodes and distorts attribution.
Why do knowledge graphs matter for AI in patent research?
Knowledge graphs matter for AI in patent research because they ground generative models on real, connected entities, which improves accuracy and traceability. A model generating from unstructured text alone can assert unsupported claims, whereas one conditioned on a provenance-tracked graph constrains its answers to actual patents and papers. This is essential where conclusions must be verifiable.
What is GraphRAG and how does it differ from standard RAG? GraphRAG is graph retrieval-augmented generation. Standard RAG retrieves isolated text passages to condition a model's output, while GraphRAG retrieves connected subgraphs, so the model reasons over entities and their relationships and can answer multi-hop questions. This suits patent intelligence, where questions often require traversing links between technologies, research, and organizations.
How does an ontology improve white space analysis?
An ontology improves white space analysis by clustering patents and papers over defined relationships rather than by exact keywords, which exposes genuine conceptual gaps instead of gaps that are only artifacts of differing terminology. Because the sparsity reflects the domain structure, the identified white space corresponds to unclaimed technical territory. Cypris organizes its corpus of more than 500 million patents and scientific papers through a proprietary R&D ontology for this purpose.
How do knowledge graphs reduce AI hallucination in patent work?
Knowledge graphs reduce AI hallucination in patent work by constraining a model's outputs to real, connected entities with tracked provenance rather than letting it generate from unstructured text. Retrieval-augmented approaches, and graph-based retrieval in particular, condition generation on retrieved evidence, which improves factual accuracy and lets conclusions be traced to sources. This makes results verifiable against the underlying patents and papers.
Is a knowledge graph the same as a vector database?
A knowledge graph is not the same as a vector database. A vector database supports semantic similarity search over embeddings, while a knowledge graph represents explicit, typed relationships between entities. They are complementary: dense retrieval finds relevant documents, and the graph structures how those documents and entities relate. Cypris combines semantic retrieval with a proprietary R&D ontology.
Which teams benefit from ontology-based patent intelligence?
Ontology-based patent intelligence benefits R&D, innovation, IP, and strategy teams that need to understand how technologies relate, attribute activity to organizations, and find genuine white space. It is most valuable in research-intensive industries such as pharmaceuticals, chemicals, advanced materials, and energy. Cypris serves hundreds of enterprise customers across these industries.
Endnotes
- Gruber, T. R. (1993). A translation approach to portable ontology specifications. Knowledge Acquisition. https://doi.org/10.1006/knac.1993.1008
- Gruber, T. R. (1995). Toward principles for the design of ontologies used for knowledge sharing. International Journal of Human-Computer Studies. https://doi.org/10.1006/ijhc.1995.1081
- Lewis, P. et al. (2020). Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. NeurIPS.
- Gao, Y. et al. (2023). Retrieval-Augmented Generation for Large Language Models: A Survey. arXiv:2312.10997. https://doi.org/10.48550/arxiv.2312.10997
- Procko, T. & Ochoa, O. (2024). Graph Retrieval-Augmented Generation for Large Language Models: A Survey. https://doi.org/10.1109/aixset62544.2024.00030
- Han, S. et al. (2025). A Survey of Graph Retrieval-Augmented Generation for Customized Large Language Models. arXiv:2501.13958. https://doi.org/10.48550/arxiv.2501.13958
- Chen, J. et al. (2024). Benchmarking Large Language Models in Retrieval-Augmented Generation. AAAI. https://doi.org/10.1609/aaai.v38i16.29728
