redisai-py icon indicating copy to clipboard operation
redisai-py copied to clipboard

Python client for RedisAI

Results 15 redisai-py issues
Sort by recently updated
recently updated
newest added
trafficstars

Your package seems to [exclude](https://pypi.org/project/redisai/) support for Python 3.10. Are you planning on adding it in the future?

To do this, we have to remove support for python 3.6 The two are mutually exclusive, due to the numpy releases.

Hi, I'm jaehyeong. I've been using RedisAI in redis cluster environment (3 nodes) and I have an issue about redisai client. First, This is my 3 redis cluster environment. ```...

There are a lot of places where the typing is not proper, ie `param: int = None` instead of `param: Optional[int] = None`. This difference causes type checkers to complain...

- How to setup dev environment and how to run tests - Labels for automating releases - etc

Given https://github.com/redis/redis/blob/unstable/redis.conf#L1854 there might be cases in which we have a Redis instance with a max string size of 1,2,10mb.... The hotfix that added modelset chunking to the client (...

bug

redisai-py by default decodes all the responses. The parent class accepts `decode_responses` as argument which can do this even before the data reaches redisai Client class

DAG.run relies on the pre-created list for doing post-processing. The post-processing functions don't consider the possible response error from the server and ended up applying the post-processing on the response...