diff --git a/README.md b/README.md index 20572591..1dd4bec0 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ The **TrustGraph** platform provides a robust, scalable, and reliable AI infrast - 🎯 [Why TrustGraph?](#-why-trustgraph) - 🚀 [Getting Started](#-getting-started) - 🔧 [Configuration Builder](#-configuration-builder) +- 🧠 [Knowledge Cores](#-knowledge-cores) - 📐 [Architecture](#-architecture) - 🧩 [Integrations](#-integrations) - 📊 [Observability & Telemetry](#-observability--telemetry) @@ -180,6 +181,17 @@ kubectl apply -f TrustGraph is designed to be modular to support as many LLMs and environments as possible. A natural fit for a modular architecture is to decompose functions into a set of modules connected through a pub/sub backbone. [Apache Pulsar](https://github.com/apache/pulsar/) serves as this pub/sub backbone. Pulsar acts as the data broker managing data processing queues connected to procesing modules. +## 🧠 Knowledge Cores + +One of the biggest challenges currently facing RAG architectures is the ability to quickly reuse and integrate knowledge sets. **TrustGraph** solves this problem by storing the results of the document ingestion process in reusable Knowledge Cores. Being able to store and reuse the Knowledge Cores means the process has to be run only once for a set of documents. These reusable Knowledge Cores can be loaded back into **TrustGraph** and used for RAG. + +A Knowledge Core has two components: + +- Set of Graph Edges +- Set of mapped Vector Embeddings + +When a Knowledge Core is loaded into TrustGraph, the corresponding graph edges and vector embeddings are queued and loaded into the chosen graph and vector stores. + ## 📐 Architecture **TrustGraph removes the biggest headache of building an AI app: connecting and managing all the data, deployments, and models.** As a full-stack platform, TrustGraph simplifies the development and deployment of data-driven AI applications. TrustGraph is a complete solution, handling everything from data ingestion to deployment, so you can focus on building innovative AI experiences.