diff --git a/llama-index-core/llama_index/core/indices/knowledge_graph/base.py b/llama-index-core/llama_index/core/indices/knowledge_graph/base.py index 472c8d53da284143237cfff0bf5412435f3e333a..8f6ba10162f531bfb11b462c3d2f99ecc99fad3a 100644 --- a/llama-index-core/llama_index/core/indices/knowledge_graph/base.py +++ b/llama-index-core/llama_index/core/indices/knowledge_graph/base.py @@ -240,6 +240,9 @@ class KnowledgeGraphIndex(BaseIndex[KG]): rel_embedding = self._embed_model.get_text_embedding(triplet_str) self._index_struct.add_to_embedding_dict(triplet_str, rel_embedding) + # Update the storage context's index_store + self._storage_context.index_store.add_index_struct(self._index_struct) + def upsert_triplet(self, triplet: Tuple[str, str, str]) -> None: """Insert triplets.