---
myst:
  html_meta:
    "description lang=en": |
      RedisVL documentation - the AI-native Python client for Redis.
html_theme.sidebar_secondary.remove: false
---

```{image} _static/Redis_Logo_Red_RGB.svg
:alt: Redis
:width: 240px
:align: center
```

<h1 style="text-align: center; margin-top: 0.5rem; margin-bottom: 0;">Redis Vector Library</h1>
<p style="text-align: center; font-size: 1.25rem; color: #8b949e; margin-top: 0.5rem; margin-bottom: 2rem;">The AI-native Redis Python client</p>

---

## Quick Start

```bash
pip install redisvl
```

```bash
docker run -d --name redis -p 6379:6379 redis:8.4
```

Or connect to [Redis Cloud](https://redis.io/cloud) for a managed experience.

→ *{doc}`/user_guide/01_getting_started`*

---

## Explore the Docs

::::{grid} 2
:gutter: 4

:::{grid-item-card} 📖 Concepts
:link: concepts/index
:link-type: doc
:class-card: sd-shadow-sm

Understand how RedisVL works. Architecture, search fundamentals, and extension patterns.
:::

:::{grid-item-card} 🚀 User Guides
:link: user_guide/index
:link-type: doc
:class-card: sd-shadow-sm

Step-by-step tutorials. Installation, getting started, and deep dives on every feature.
:::

:::{grid-item-card} 💡 Examples
:link: examples/index
:link-type: doc
:class-card: sd-shadow-sm

Real-world applications. RAG pipelines, chatbots, recommendation systems, and more.
:::

:::{grid-item-card} 📚 API Reference
:link: api/index
:link-type: doc
:class-card: sd-shadow-sm

Complete API documentation. Classes, methods, parameters, and examples.
:::

::::

```{toctree}
:maxdepth: 2
:hidden:

Concepts <concepts/index>
User Guides <user_guide/index>
Examples <examples/index>
API <api/index>
Changelog <https://github.com/redis/redis-vl-python/releases>
```
