For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
      • PUTSet graph ontology
      • GETList graph ontology
      • POSTAdd Data
      • POSTAdd Data in batch mode
      • POSTAdd Fact Triple
      • POSTClone graph
      • POSTCreate Graph
      • GETList all graphs.
      • POSTDetect Patterns (Experimental)
      • POSTSearch Graph
      • GETGet Graph
      • DELDelete Graph
      • PATCHUpdate Graph.
      • GETWarm Graph Cache
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceGraph

Warm Graph Cache

GET
https://api.getzep.com/api/v2/graph/:graphId/warm
GET
/api/v2/graph/:graphId/warm
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.graph.warm(
7 graph_id="graphId",
8)
1{
2 "message": "string"
3}

Hints Zep to warm a graph for low-latency search

Was this page helpful?
Previous

Get Graph Edges

Next
Built with

Path parameters

graphIdstringRequired

The graph_id of the graph to warm.

Response

Warm hint accepted
messagestring

Errors

404
Not Found Error
500
Internal Server Error