retrieve_data
Retrieve cached data efficiently using a key from the Memory Cache Server, optimizing token usage during language model interactions for improved performance.
Instructions
Retrieve data from the cache
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Key of the cached data to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Key of the cached data to retrieve",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}