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
+29-29
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Install `redisvl` into your Python (>=3.8) environment using `pip`:
49
49
```bash
50
50
pip install redisvl
51
51
```
52
-
> For more detailed instructions, visit the [installation guide](https://docs.redisvl.com/overview/installation.html).
52
+
> For more detailed instructions, visit the [installation guide](https://docs.redisvl.com/en/latest/overview/installation.html).
53
53
54
54
## Setting up Redis
55
55
@@ -71,7 +71,7 @@ Choose from multiple Redis deployment options:
71
71
72
72
73
73
## 🗃️ Redis Index Management
74
-
1. [Design a schema for your use case](https://docs.redisvl.com/user_guide/getting_started_01.html#define-an-indexschema) that models your dataset with built-in Redis and indexable fields (*e.g. text, tags, numerics, geo, and vectors*). [Load a schema](https://docs.redisvl.com/user_guide/getting_started_01.html#example-schema-creation) from a YAML file:
74
+
1. [Design a schema for your use case](https://docs.redisvl.com/en/latest/user_guide/getting_started_01.html#define-an-indexschema) that models your dataset with built-in Redis and indexable fields (*e.g. text, tags, numerics, geo, and vectors*). [Load a schema](https://docs.redisvl.com/en/latest/user_guide/getting_started_01.html#example-schema-creation) from a YAML file:
75
75
```yaml
76
76
index:
77
77
name: user-idx
@@ -121,7 +121,7 @@ Choose from multiple Redis deployment options:
121
121
})
122
122
```
123
123
124
-
2. [Create a SearchIndex](https://docs.redisvl.com/user_guide/getting_started_01.html#create-a-searchindex) class with an input schema and client connection in order to perform admin and search operations on your index in Redis:
124
+
2. [Create a SearchIndex](https://docs.redisvl.com/en/latest/user_guide/getting_started_01.html#create-a-searchindex) class with an input schema and client connection in order to perform admin and search operations on your index in Redis:
125
125
```python
126
126
from redis import Redis
127
127
from redisvl.index import SearchIndex
@@ -133,10 +133,10 @@ Choose from multiple Redis deployment options:
133
133
# Create the index in Redis
134
134
index.create()
135
135
```
136
-
> Async compliant search index class also available: [AsyncSearchIndex](https://docs.redisvl.com/api/searchindex.html#redisvl.index.AsyncSearchIndex).
136
+
> Async compliant search index class also available: [AsyncSearchIndex](https://docs.redisvl.com/en/latest/api/searchindex.html#redisvl.index.AsyncSearchIndex).
from redisvl.utils.vectorize import CohereTextVectorizer
@@ -215,11 +215,11 @@ embeddings = co.embed_many(
215
215
)
216
216
```
217
217
218
-
> Learn more about using [vectorizers]((https://docs.redisvl.com/user_guide/vectorizers_04.html))in your embedding workflows.
218
+
> Learn more about using [vectorizers]((https://docs.redisvl.com/en/latest/user_guide/vectorizers_04.html))in your embedding workflows.
219
219
220
220
221
221
### Rerankers
222
-
[Integrate with popular reranking providers](https://docs.redisvl.com/user_guide/rerankers_06.html) to improve the relevancy of the initial search results from Redis
222
+
[Integrate with popular reranking providers](https://docs.redisvl.com/en/latest/user_guide/rerankers_06.html) to improve the relevancy of the initial search results from Redis
223
223
224
224
225
225
@@ -229,7 +229,7 @@ We're excited to announce the support for **RedisVL Extensions**. These modules
229
229
*Have an idea for another extension? Open a PR or reach out to us at [email protected]. We're always open to feedback.*
230
230
231
231
### LLM Semantic Caching
232
-
Increase application throughput and reduce the cost of using LLM models in production by leveraging previously generated knowledge with the [`SemanticCache`](https://docs.redisvl.com/api/cache.html#semanticcache).
232
+
Increase application throughput and reduce the cost of using LLM models in production by leveraging previously generated knowledge with the [`SemanticCache`](https://docs.redisvl.com/en/latest/api/cache.html#semanticcache).
233
233
234
234
```python
235
235
from redisvl.extensions.llmcache import SemanticCache
> Learn more about [semantic caching]((https://docs.redisvl.com/user_guide/llmcache_03.html))for LLMs.
259
+
> Learn more about [semantic caching]((https://docs.redisvl.com/en/latest/user_guide/llmcache_03.html))for LLMs.
260
260
261
261
### LLM Session Management
262
262
263
-
Improve personalization and accuracy of LLM responses by providing user chat history as context. Manage access to the session data using recency or relevancy, *powered by vector search* with the [`SemanticSessionManager`](https://docs.redisvl.com/api/session_manager.html).
263
+
Improve personalization and accuracy of LLM responses by providing user chat history as context. Manage access to the session data using recency or relevancy, *powered by vector search* with the [`SemanticSessionManager`](https://docs.redisvl.com/en/latest/api/session_manager.html).
264
264
265
265
```python
266
266
from redisvl.extensions.session_manager import SemanticSessionManager
0 commit comments