README WIP

This commit is contained in:
Jack Colquitt 2025-04-07 17:21:05 -07:00 committed by GitHub
parent d3ed373dc6
commit b8a98e6374
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 <launch-file.yaml>
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.