Interface GraphragServiceAsync
-
- All Implemented Interfaces:
public interface GraphragServiceAsyncSecure document storage with semantic search and GraphRAG
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceGraphragServiceAsync.WithRawResponseA view of GraphragServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract GraphragServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract GraphragServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
getStats
CompletableFuture<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
CompletableFuture<GraphragGetStatsResponse> getStats(String id, GraphragGetStatsParams params, RequestOptions requestOptions)
-
getStats
CompletableFuture<GraphragGetStatsResponse> getStats(String id, GraphragGetStatsParams params)
-
getStats
abstract CompletableFuture<GraphragGetStatsResponse> getStats(GraphragGetStatsParams params, RequestOptions requestOptions)
-
getStats
CompletableFuture<GraphragGetStatsResponse> getStats(GraphragGetStatsParams params)
-
getStats
CompletableFuture<GraphragGetStatsResponse> getStats(String id, RequestOptions requestOptions)
-
init
CompletableFuture<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
CompletableFuture<GraphragInitResponse> init(String id, GraphragInitParams params, RequestOptions requestOptions)
-
init
CompletableFuture<GraphragInitResponse> init(String id, GraphragInitParams params)
-
init
abstract CompletableFuture<GraphragInitResponse> init(GraphragInitParams params, RequestOptions requestOptions)
-
init
CompletableFuture<GraphragInitResponse> init(GraphragInitParams params)
-
init
CompletableFuture<GraphragInitResponse> init(String id, RequestOptions requestOptions)
-
processObject
CompletableFuture<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
CompletableFuture<GraphragProcessObjectResponse> processObject(String objectId, GraphragProcessObjectParams params, RequestOptions requestOptions)
-
processObject
CompletableFuture<GraphragProcessObjectResponse> processObject(GraphragProcessObjectParams params)
-
processObject
abstract CompletableFuture<GraphragProcessObjectResponse> processObject(GraphragProcessObjectParams params, RequestOptions requestOptions)
-
-
-
-