skillfed

redisvl

Python client library and CLI for using Redis as a vector database

redisvl v0.25.1 2.8M downloads/30d#2,885 on PyPI423
Permissive license MIT Active released

What it is and what it does

RedisVL is a production-ready Python client that turns Redis into a vector database for AI applications. It provides schema-driven index management, vector search with metadata filtering, and hybrid search combining semantic and full-text signals. The package handles the boilerplate of defining indexes, loading embeddings, and executing queries—all backed by Redis's native vector search engine.

Typical workflows include building RAG pipelines with real-time retrieval, implementing AI agent memory systems, and creating recommendation engines. It ships with async support, CLI tools for index management, and integrations with multiple embedding providers. The eight runtime dependencies (numpy, pydantic, redis, tenacity, jsonpath-ng, ml-dtypes, python-ulid, pyyaml) are all well-maintained libraries, keeping installation friction low.

Use it for:

  • Build RAG systems that retrieve relevant documents from Redis based on semantic similarity to user queries.
  • Implement AI agent memory by storing and retrieving conversation context as embeddings with semantic routing.
  • Create recommendation engines that search for similar items using vector similarity with metadata filtering.
  • Cache embeddings to reduce LLM API costs while maintaining fast semantic search performance.
  • Perform hybrid search combining vector similarity with full-text keyword matching on the same dataset.
  • Manage multiple vector indexes from a CLI without writing Python, using schema files and batch operations.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

RedisVL is a Python client for building AI applications with Redis vector search, enabling semantic search, RAG pipelines, and vector-backed retrieval with metadata filtering and hybrid search capabilities.

Yes. RedisVL is actively maintained, has no known vulnerabilities, uses a permissive MIT license, and solves a real problem—bridging Python and Redis for vector-backed AI workloads. Install friction is low and it supports modern Python versions (3.10–3.14). Best for teams already using or planning to adopt Redis, or those seeking a lightweight vector search layer without a separate database.

Install

redisvl on PyPI

pip

pip install redisvl

uv

uv add redisvl

poetry

poetry add redisvl

Installing redisvl

Before you install

Low friction: pure Python wheel with eight runtime dependencies (numpy, pydantic, redis, tenacity, and others). Active maintenance with a commit from 2026-08-14 and release from 2026-08-07; supports Python 3.10–3.14.

License in practice

MIT license (permissive) means you can use, modify, and distribute RedisVL freely in commercial and private projects with minimal restrictions.

Quickstart

pip install redisvl

from redisvl.schema import IndexSchema
from redisvl.index import SearchIndex

schema = IndexSchema.from_dict({
    "index": {"name": "idx", "prefix": "doc"},
    "fields": [{"name": "embedding", "type": "vector", "attrs": {"dims": 4, "distance_metric": "cosine"}}]
})
index = SearchIndex(schema, redis_url="redis://localhost:6379")
index.create()

Requires a running Redis instance (>=8+ for vector search); local Docker setup or Redis Cloud connection needed.

Verify before relying

  • Performance characteristics (latency, throughput) for large-scale vector indexes not specified in fact sheet.
  • Whether all 8+ embedding provider integrations mentioned in description are included in base package or require separate dependencies.
  • Specific reranker implementations and their availability in version 0.25.1.

Package facts

License MIT (permissive)
Python support supports the current Python release (<3.15,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 8 — jsonpath-ng, ml-dtypes, numpy, pydantic, python-ulid, pyyaml, redis, tenacity
Maintenance actively maintained — 7 days since the last release
Last repo commit
First released
Downloads 2,796,777/month — #2,885 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: redisvl-0.25.1-py3-none-any.whl

Keywords: ai, redis, redis-client, vector-database, vector-search

License :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

redis vector search pythonvector database clientsemantic search with redisrag pipeline vector retrievalembedding similarity searchredis ai applicationsvector indexing and search
vector-searchrag-pipelineredis-client

More Artificial Intelligence packages

litellm

LiteLLM provides a unified Python interface to…

permissive · top 100 on PyPI

huggingface-hub

Client library and CLI tool for downloading,…

permissive · top 100 on PyPI

langchain

LangChain provides a framework for building…

permissive · top 1,000 on PyPI

hf-xet

hf-xet provides chunk-based deduplication and…

permissive · top 1,000 on PyPI

tokenizers

Tokenizers converts raw text into token…

permissive · top 1,000 on PyPI

transformers

Transformers provides a unified framework for…

permissive · top 1,000 on PyPI

llama-index-vector-stores-redis

Integrates Redis as a vector store backend for…

permissive · top 15,000 on PyPI

upstash-vector

Python client for Upstash Vector, a serverless…

permissive · top 15,000 on PyPI

walrus

Walrus extends the redis-py client with…

unclear · top 15,000 on PyPI

turbopuffer

Provides a Python client library for the…

permissive · top 5,000 on PyPI

langchain-redis

Integrates Redis with LangChain to provide…

permissive · top 15,000 on PyPI

nucliadb-utils

Provides utility functions and data structures…

permissive · top 15,000 on PyPI

langchain-milvus

Integrates LangChain with Milvus vector…

permissive · top 15,000 on PyPI

weaviate-client

A Python client library for connecting to and…

permissive · top 1,000 on PyPI

llama-index-vector-stores-faiss

Integrates FAISS vector storage with LlamaIndex…

permissive · top 15,000 on PyPI

agent-framework-azure-ai-search

Provides RAG (Retrieval Augmented Generation)…

permissive · top 15,000 on PyPI