Interface GraphragService
-
- All Implemented Interfaces:
public interface GraphragServiceSecure document storage with semantic search and GraphRAG
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceGraphragService.WithRawResponseA view of GraphragService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract GraphragService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract GraphragService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
getStats
GraphragGetStatsResponse getStats(String id)
Retrieve GraphRAG (Graph Retrieval-Augmented Generation) statistics for a specific vault. This includes metrics about the knowledge graph structure, entity relationships, and processing status that enable advanced semantic search and AI-powered document analysis.
-
getStats
GraphragGetStatsResponse getStats(String id, GraphragGetStatsParams params, RequestOptions requestOptions)
-
getStats
GraphragGetStatsResponse getStats(String id, GraphragGetStatsParams params)
-
getStats
abstract GraphragGetStatsResponse getStats(GraphragGetStatsParams params, RequestOptions requestOptions)
-
getStats
GraphragGetStatsResponse getStats(GraphragGetStatsParams params)
-
getStats
GraphragGetStatsResponse getStats(String id, RequestOptions requestOptions)
-
init
GraphragInitResponse init(String id)
Initialize a GraphRAG workspace for a vault to enable advanced knowledge graph and retrieval-augmented generation capabilities. This creates the necessary infrastructure for semantic document analysis and graph-based querying within the vault.
-
init
GraphragInitResponse init(String id, GraphragInitParams params, RequestOptions requestOptions)
-
init
GraphragInitResponse init(String id, GraphragInitParams params)
-
init
abstract GraphragInitResponse init(GraphragInitParams params, RequestOptions requestOptions)
-
init
GraphragInitResponse init(GraphragInitParams params)
-
init
GraphragInitResponse init(String id, RequestOptions requestOptions)
-
processObject
GraphragProcessObjectResponse processObject(String objectId, GraphragProcessObjectParams params)
Manually trigger GraphRAG indexing for a vault object. The object must already be ingested (completed status). This extracts entities, relationships, and communities from the document for advanced knowledge graph queries.
-
processObject
GraphragProcessObjectResponse processObject(String objectId, GraphragProcessObjectParams params, RequestOptions requestOptions)
-
processObject
GraphragProcessObjectResponse processObject(GraphragProcessObjectParams params)
-
processObject
abstract GraphragProcessObjectResponse processObject(GraphragProcessObjectParams params, RequestOptions requestOptions)
-
-
-
-