You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,15 +98,15 @@ An estimated 31% of LLM queries are potentially redundant ([source](https://arxi
98
98
| --- | --- | --- |
99
99
| 🧠 **Gemini Semantic Cache** - Build a semantic cache with Redis and Google Gemini |[](python-recipes/semantic-cache/00_semantic_caching_gemini.ipynb)|[](https://colab.research.google.com/github/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-cache/00_semantic_caching_gemini.ipynb)|
100
100
| 🦙 **Llama3.1 Doc2Cache** - Build a semantic cache using the Doc2Cache framework and Llama3.1 |[](python-recipes/semantic-cache/01_doc2cache_llama3_1.ipynb)|[](https://colab.research.google.com/github/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-cache/01_doc2cache_llama3_1.ipynb)|
101
-
| ⚙️ **Cache Optimization** - Use CacheThresholdOptimizer from redisvl to setup best cache config |[](python-recipes/semantic-cache/02_semantic_cache_optimization.ipynb)|[](https://colab.research.google.com/github/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-cache/02_semantic_cache_optimization.ipynb)|
101
+
| ⚙️ **Cache Optimization** - Use CacheThresholdOptimizer from [redis-retrieval-optimizer](https://pypi.org/project/redis-retrieval-optimizer/) to setup best cache config |[](python-recipes/semantic-cache/02_semantic_cache_optimization.ipynb)|[](https://colab.research.google.com/github/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-cache/02_semantic_cache_optimization.ipynb)|
102
102
103
103
### Semantic Routing
104
104
Routing is a simple and effective way of preventing misuse with your AI application or for creating branching logic between data sources etc.
105
105
106
106
| Recipe | GitHub | Google Colab |
107
107
| --- | --- | --- |
108
108
| 🔀 **Basic Routing** - Simple examples of how to build an allow/block list router in addition to a multi-topic router |[](python-recipes/semantic-router/00_semantic_routing.ipynb)|[](https://colab.research.google.com/github/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-router/00_semantic_routing.ipynb)|
109
-
| ⚙️ **Router Optimization** - Use RouterThresholdOptimizer from redisvl to setup best router config |[](python-recipes/semantic-router/01_routing_optimization.ipynb)|[](https://colab.research.google.com/github/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-router/01_routing_optimization.ipynb)|
109
+
| ⚙️ **Router Optimization** - Use RouterThresholdOptimizer from [redis-retrieval-optimizer](https://pypi.org/project/redis-retrieval-optimizer/) to setup best router config |[](python-recipes/semantic-router/01_routing_optimization.ipynb)|[](https://colab.research.google.com/github/redis-developer/redis-ai-resources/blob/main/python-recipes/semantic-router/01_routing_optimization.ipynb)|
110
110
111
111
112
112
### AI Gateways
@@ -203,6 +203,7 @@ Redis integrates with many different players in the AI ecosystem. Here's a curat
203
203
-[Benchmarking results for vector databases](https://redis.io/blog/benchmarking-results-for-vector-databases/) - Benchmarking results for vector databases, including Redis and 7 other Vector Database players.
-[Redis Vector Search API Docs](https://redis.io/docs/interact/search-and-query/advanced-concepts/vectors/) - Official Redis literature for Vector Similarity Search.
206
+
-[Redis Retrieval Optimizer](https://pypi.org/project/redis-retrieval-optimizer/) - Library for optimizing index, embedding, and search method usage within Redis.
0 commit comments