Robert Shelton
Robert Shelton
Touched base with some langchain folks on this issue. One way of handling this without overriding the default is to use the EncoderBackedStore class. We did this with Redis as...
@bsbodden it's outputting as a string so for your test check to work it would need to be cast 
@bsbodden can be changed to or something more elegant than the test correctly bombs ``` for result in results: assert not isinstance(json.loads(result["name"]), list) assert not isinstance(json.loads(result["description"]), list) assert not isinstance(json.loads(result["price"]),...
Hi @wired87 one of these guide might help you out: - https://github.com/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-cache/semantic_caching_gemini.ipynb - https://github.com/redis/redis-vl-python/blob/main/docs/user_guide/llmcache_03.ipynb If you want to pre-populate the cache you can do this with an initialization script one...
@Arvind644 thank you for the feedback and fix! For reference, were you running the notebook in colab or locally?
Hey @amscosta I re-ran all the cells in the colab environment and was unable to recreate your issue. From your error message it seems that the llmcache doesn't exist. This...