LightRAG/lightrag/api/routers/graph_routes.py

53 lines
1.7 KiB
Python
Raw Normal View History

"""
This module contains all graph-related routes for the LightRAG API.
"""
from typing import Optional
2025-04-02 17:21:45 +08:00
from fastapi import APIRouter, Depends, Query
from ..utils_api import get_combined_auth_dependency
router = APIRouter(tags=["graph"])
2025-02-20 04:12:21 +08:00
def create_graph_routes(rag, api_key: Optional[str] = None):
combined_auth = get_combined_auth_dependency(api_key)
@router.get("/graph/label/list", dependencies=[Depends(combined_auth)])
async def get_graph_labels():
"""
Get all graph labels
Returns:
List[str]: List of graph labels
"""
return await rag.get_graph_labels()
@router.get("/graphs", dependencies=[Depends(combined_auth)])
async def get_knowledge_graph(
2025-04-02 17:21:45 +08:00
label: str = Query(..., description="Label to get knowledge graph for"),
max_depth: int = Query(3, description="Maximum depth of graph", ge=1),
max_nodes: int = Query(1000, description="Maximum nodes to return", ge=1),
):
"""
2025-03-02 17:32:25 +08:00
Retrieve a connected subgraph of nodes where the label includes the specified label.
When reducing the number of nodes, the prioritization criteria are as follows:
2025-04-02 17:21:45 +08:00
1. Hops(path) to the staring node take precedence
2. Followed by the degree of the nodes
Args:
2025-04-02 17:21:45 +08:00
label (str): Label of the starting node
max_depth (int, optional): Maximum depth of the subgraph,Defaults to 3
max_nodes: Maxiumu nodes to return
Returns:
Dict[str, List[str]]: Knowledge graph for label
"""
return await rag.get_knowledge_graph(
node_label=label,
max_depth=max_depth,
2025-04-02 17:21:45 +08:00
max_nodes=max_nodes,
)
return router