Skip to content

Commit 7e0e5a1

Browse files
readme links
1 parent f748dbd commit 7e0e5a1

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

README.md

+29-29
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Install `redisvl` into your Python (>=3.8) environment using `pip`:
4949
```bash
5050
pip install redisvl
5151
```
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).
5353
5454
## Setting up Redis
5555

@@ -71,7 +71,7 @@ Choose from multiple Redis deployment options:
7171

7272

7373
## 🗃️ 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:
7575
```yaml
7676
index:
7777
name: user-idx
@@ -121,7 +121,7 @@ Choose from multiple Redis deployment options:
121121
})
122122
```
123123

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:
125125
```python
126126
from redis import Redis
127127
from redisvl.index import SearchIndex
@@ -133,10 +133,10 @@ Choose from multiple Redis deployment options:
133133
# Create the index in Redis
134134
index.create()
135135
```
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).
137137

138-
3. [Load](https://docs.redisvl.com/user_guide/getting_started_01.html#load-data-to-searchindex)
139-
and [fetch](https://docs.redisvl.com/user_guide/getting_started_01.html#fetch-an-object-from-redis) data to/from your Redis instance:
138+
3. [Load](https://docs.redisvl.com/en/latest/user_guide/getting_started_01.html#load-data-to-searchindex)
139+
and [fetch](https://docs.redisvl.com/en/latest/user_guide/getting_started_01.html#fetch-an-object-from-redis) data to/from your Redis instance:
140140
```python
141141
data = {"user": "john", "credit_score": "high", "embedding": [0.23, 0.49, -0.18, 0.95]}
142142
@@ -151,7 +151,7 @@ and [fetch](https://docs.redisvl.com/user_guide/getting_started_01.html#fetch-an
151151

152152
Define queries and perform advanced searches over your indices, including the combination of vectors, metadata filters, and more.
153153

154-
- [VectorQuery](https://docs.redisvl.com/api/query.html#vectorquery) - Flexible vector queries with customizable filters enabling semantic search:
154+
- [VectorQuery](https://docs.redisvl.com/en/latest/api/query.html#vectorquery) - Flexible vector queries with customizable filters enabling semantic search:
155155

156156
```python
157157
from redisvl.query import VectorQuery
@@ -179,24 +179,24 @@ Define queries and perform advanced searches over your indices, including the co
179179
results = index.query(query)
180180
```
181181

182-
- [RangeQuery](https://docs.redisvl.com/api/query.html#rangequery) - Vector search within a defined range paired with customizable filters
183-
- [FilterQuery](https://docs.redisvl.com/api/query.html#filterquery) - Standard search using filters and the full-text search
184-
- [CountQuery](https://docs.redisvl.com/api/query.html#countquery) - Count the number of indexed records given attributes
182+
- [RangeQuery](https://docs.redisvl.com/en/latest/api/query.html#rangequery) - Vector search within a defined range paired with customizable filters
183+
- [FilterQuery](https://docs.redisvl.com/en/latest/api/query.html#filterquery) - Standard search using filters and the full-text search
184+
- [CountQuery](https://docs.redisvl.com/en/latest/api/query.html#countquery) - Count the number of indexed records given attributes
185185

186-
> Read more about building [advanced Redis queries](https://docs.redisvl.com/user_guide/hybrid_queries_02.html).
186+
> Read more about building [advanced Redis queries](https://docs.redisvl.com/en/latest/user_guide/hybrid_queries_02.html).
187187

188188

189189
## 🔧 Utilities
190190

191191
### Vectorizers
192192
Integrate with popular embedding providers to greatly simplify the process of vectorizing unstructured data for your index and queries:
193-
- [AzureOpenAI](https://docs.redisvl.com/api/vectorizer.html#azureopenaitextvectorizer)
194-
- [Cohere](https://docs.redisvl.com/api/vectorizer.html#coheretextvectorizer)
195-
- [Custom](https://docs.redisvl.com/api/vectorizer.html#customtextvectorizer)
196-
- [GCP VertexAI](https://docs.redisvl.com/api/vectorizer.html#vertexaitextvectorizer)
197-
- [HuggingFace](https://docs.redisvl.com/api/vectorizer.html#hftextvectorizer)
198-
- [Mistral](https://docs.redisvl.com/api/vectorizer/html#mistralaitextvectorizer)
199-
- [OpenAI](https://docs.redisvl.com/api/vectorizer.html#openaitextvectorizer)
193+
- [AzureOpenAI](https://docs.redisvl.com/en/latest/api/vectorizer.html#azureopenaitextvectorizer)
194+
- [Cohere](https://docs.redisvl.com/en/latest/api/vectorizer.html#coheretextvectorizer)
195+
- [Custom](https://docs.redisvl.com/en/latest/api/vectorizer.html#customtextvectorizer)
196+
- [GCP VertexAI](https://docs.redisvl.com/en/latest/api/vectorizer.html#vertexaitextvectorizer)
197+
- [HuggingFace](https://docs.redisvl.com/en/latest/api/vectorizer.html#hftextvectorizer)
198+
- [Mistral](https://docs.redisvl.com/en/latest/api/vectorizer/html#mistralaitextvectorizer)
199+
- [OpenAI](https://docs.redisvl.com/en/latest/api/vectorizer.html#openaitextvectorizer)
200200

201201
```python
202202
from redisvl.utils.vectorize import CohereTextVectorizer
@@ -215,11 +215,11 @@ embeddings = co.embed_many(
215215
)
216216
```
217217

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.
219219

220220

221221
### 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
223223

224224

225225

@@ -229,7 +229,7 @@ We're excited to announce the support for **RedisVL Extensions**. These modules
229229
*Have an idea for another extension? Open a PR or reach out to us at [email protected]. We're always open to feedback.*
230230
231231
### 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).
233233
234234
```python
235235
from redisvl.extensions.llmcache import SemanticCache
@@ -256,11 +256,11 @@ print(response[0]["response"])
256256
>>> Paris
257257
```
258258
259-
> 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.
260260
261261
### LLM Session Management
262262
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).
264264
265265
```python
266266
from redisvl.extensions.session_manager import SemanticSessionManager
@@ -292,7 +292,7 @@ session.get_relevant("weather", top_k=1)
292292
```stdout
293293
>>> [{"role": "user", "content": "what is the weather going to be today?"}]
294294
```
295-
> Learn more about [LLM session management]((https://docs.redisvl.com/user_guide/session_manager_07.html)).
295+
> Learn more about [LLM session management]((https://docs.redisvl.com/en/latest/user_guide/session_manager_07.html)).
296296
297297
298298
### LLM Semantic Routing
@@ -329,7 +329,7 @@ router("Hi, good morning")
329329
```stdout
330330
>>> RouteMatch(name='greeting', distance=0.273891836405)
331331
```
332-
> Learn more about [semantic routing](https://docs.redisvl.com/user_guide/semantic_router_08.html).
332+
> Learn more about [semantic routing](https://docs.redisvl.com/en/latest/user_guide/semantic_router_08.html).
333333
334334
## 🖥️ Command Line Interface
335335
Create, destroy, and manage Redis index configurations from a purpose-built CLI interface: `rvl`.
@@ -345,7 +345,7 @@ Commands:
345345
stats Obtain statistics about an index
346346
```
347347
348-
> Read more about [using the CLI](https://docs.redisvl.com/user_guide/cli.html).
348+
> Read more about [using the CLI](https://docs.redisvl.com/en/latest/user_guide/cli.html).
349349
350350
## 🚀 Why RedisVL?
351351
@@ -359,9 +359,9 @@ The Redis Vector Library bridges the gap between the AI-native developer ecosyst
359359
## 😁 Helpful Links
360360

361361
For additional help, check out the following resources:
362-
- [Getting Started Guide](https://docs.redisvl.com/user_guide/getting_started_01.html)
363-
- [API Reference](https://docs.redisvl.com/api/index.html)
364-
- [Example Gallery](https://docs.redisvl.com/examples/index.html)
362+
- [Getting Started Guide](https://docs.redisvl.com/en/latest/user_guide/getting_started_01.html)
363+
- [API Reference](https://docs.redisvl.com/en/latest/api/index.html)
364+
- [Example Gallery](https://docs.redisvl.com/en/latest/examples/index.html)
365365
- [Redis AI Recipes](https://github.com/redis-developer/redis-ai-resources)
366366
- [Official Redis Vector API Docs](https://redis.io/docs/interact/search-and-query/advanced-concepts/vectors/)
367367

0 commit comments

Comments
 (0)