agentchat.contrib.graph_rag
agentchat.contrib.graph_rag.graph_query_engine
GraphStoreQueryResult
A wrapper of graph store query results.
answer: human readable answer to question/query. results: intermediate results to question/query, e.g. node entities.
GraphQueryEngine
An abstract base class that represents a graph query engine on top of a underlying graph database.
This interface defines the basic methods for graph-based RAG.
init_db
This method initializes graph database with the input documents or records. Usually, it takes the following steps,
- connecting to a graph database.
- extract graph nodes, edges based on input data, graph schema and etc.
- build indexes etc.
Arguments:
input_doc
- a list of input documents that are used to build the graph in database.
add_records
Add new records to the underlying database and add to the graph if required.
query
This method transform a string format question into database query and return the result.