Docs
FAQ

FAQ of this RAG app

The FAQ is a collection of useful questions and answers about the project. If you have a question that isn't answered here, please open a discussion (opens in a new tab).

What's the artechitecture or workflow of this Graph RAG app?

Graph RAG app architecture

Is this RAG app free?
Can I use a different chat model?

Currently we use OpenAI as chat model by default, and can't change to another one. But we plan to add more LLMs support, such as:

Can I use a different embedding/reranker API?
Why use TiDB which is a MySQL compatible database to store Knowledge Graph?
  • TiDB is a distributed MySQL SQL database, it's easy to scale out and has a good performance;
  • TiDB is a multi-model and all-in-one database, it supports MySQL SQL, JSON, Vector, and more, which can replace multiple databases;
  • The performance of TiDB is enough to store and query the Knowledge Graph, as we just search the first-level or second-level neighbors of the node.