set_vector_in_hash
Store a vector as a field in a Redis hash for organized vector data management. Takes a hash key, vector values, and an optional field name, returns success.
Instructions
Store a vector as a field in a Redis hash.
Args: name: The Redis hash key. vector_field: The field name inside the hash. Unless specifically required, use the default field name vector: The vector (list of numbers) to store in the hash.
Returns: True if the vector was successfully stored, False otherwise.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| vector | Yes | ||
| vector_field | No | vector |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |