Graph RAG: Retrieval-Augmented Generation that uses a Knowledge Graph (nodes and edges) to structure data, enabling reasoning over relationships rather than just vector similarity.
FRAG-KEDA: The authors' modular Graph RAG engine handling ingestion, graph construction, retrieval, and generation.
Schemaless: A KG construction mode where the LLM dynamically extracts entity and relation types without a pre-defined ontology.
Schema-First: A KG construction mode where extraction is constrained by a pre-defined ontology (e.g., Semantic Time Series Ontology) for higher precision.
Community Summary: A text summary generated by an LLM for a cluster of closely related nodes in the graph, used to answer high-level global queries.
LLM-As-A-Judge: An evaluation method where a strong LLM (like GPT-4) acts as a judge to score the quality of outputs from other models.
HyDE: Hypothetical Document Embeddings—a technique where an LLM generates a fake 'ideal' document for a query, which is then vectorized to find real similar documents.
Triplets: Data structures in the form of (Subject, Predicate, Object) used to represent knowledge in a graph.
Multi-hop Reasoning: The ability to answer questions that require connecting multiple pieces of information (hops) across different documents or graph nodes.