Skip to content

Commit 56351c4

Browse files
Update for redisvl 0.8.0
1 parent d24b515 commit 56351c4

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
categories:
3+
- docs
4+
- integrate
5+
- stack
6+
- oss
7+
- rs
8+
- rc
9+
- oss
10+
- clients
11+
description: This is the Redis vector library (RedisVL).
12+
group: library
13+
hidden: false
14+
linkTitle: 0.8.0
15+
summary: RedisVL provides a powerful, dedicated Python client library for using Redis
16+
as a vector database. Leverage Redis's speed, reliability, and vector-based semantic
17+
search capabilities to supercharge your application.
18+
title: RedisVL
19+
type: integration
20+
weight: 1
21+
bannerText: This documentation applies to version 0.8.0.
22+
bannerChildren: true
23+
url: '/develop/ai/redisvl/0.8.0/'
24+
---
25+
RedisVL is a powerful, dedicated Python client library for Redis that enables seamless integration and management of high-dimensional vector data.
26+
Built to support machine learning and artificial intelligence workflows, RedisVL simplifies the process of storing, searching, and analyzing vector embeddings, which are commonly used for tasks like recommendation systems, semantic search, and anomaly detection.
27+
28+
Key features of RedisVL include:
29+
30+
- Vector Similarity Search: Efficiently find nearest neighbors in high-dimensional spaces using algorithms like HNSW (Hierarchical Navigable Small World).
31+
- Integration with AI Frameworks: RedisVL works seamlessly with popular frameworks such as TensorFlow, PyTorch, and Hugging Face, making it easy to deploy AI models.
32+
- Scalable and Fast: Leveraging Redis's in-memory architecture, RedisVL provides low-latency access to vector data, even at scale.
33+
- By bridging the gap between data storage and AI model deployment, RedisVL empowers developers to build intelligent, real-time applications with minimal infrastructure complexity.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
description: Install RedisVL
3+
linkTitle: Install
4+
title: Install
5+
weight: 2
6+
aliases:
7+
- /integrate/redisvl/install
8+
url: '/develop/ai/redisvl/0.8.0/install/'
9+
---
10+
## Installation
11+
12+
Install the `redisvl` package into your Python (>=3.8) environment using the `pip` command:
13+
14+
```shell
15+
pip install redisvl
16+
```
17+
18+
Then make sure to have a Redis instance with the Redis Query Engine features enabled on Redis Cloud or locally in docker with Redis Stack:
19+
20+
```shell
21+
docker run -d --name redis -p 6379:6379 -p 8001:8001 redis/redis-stack:latest
22+
```
23+
24+
After running the previous command, the Redis Insight GUI will be available at http://localhost:8001.

0 commit comments

Comments
 (0)