Merge pull request #886 from YanSte/clean-2

removed get_knowledge_graph
This commit is contained in:
Yannick Stephan
2025-02-19 22:59:10 +01:00
committed by GitHub
11 changed files with 0 additions and 324 deletions

View File

@@ -8,7 +8,6 @@ from typing import Any, Union, final
import numpy as np
import configparser
from lightrag.types import KnowledgeGraph
from ..base import (
BaseGraphStorage,
@@ -670,11 +669,6 @@ class OracleGraphStorage(BaseGraphStorage):
async def delete_node(self, node_id: str) -> None:
raise NotImplementedError
async def get_knowledge_graph(
self, node_label: str, max_depth: int = 5
) -> KnowledgeGraph:
raise NotImplementedError
N_T = {
NameSpace.KV_STORE_FULL_DOCS: "LIGHTRAG_DOC_FULL",