get
Retrieve stored string values from Redis by specifying the key. Enables efficient data access and management for agentic applications.
Instructions
Get a Redis string value.
Args: key (str): The key to retrieve.
Returns: str, bytes: The stored value or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"title": "Key",
"type": "string"
}
},
"required": [
"key"
],
"title": "getArguments",
"type": "object"
}