Hello everyone, I have an error that I'm sure is stupid.
I'm creating a vectorized index in redis and I'm getting this error: redis.exceptions.ResponseError: Vector index initial capacity 20000 exceeded server limit (1704 with the given parameters)
It is necessary to pass some additional parameter in this code:
vector_store = RedisVectorStore(
index_name="test",
index_prefix="test_p",
redis_url="redis://<data-my-servives-redis>"
)
I am following this example:
https://gpt-index.readthedocs.io/en/latest/examples/vector_stores/RedisIndexDemo.html