set_vector_in_hash
Store a vector as a field in a Redis hash by specifying the hash key, field name, and vector data. Manage and organize vector data efficiently within Redis using this tool.
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 |