Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions content/develop/ai/redisvl/0.7.0/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
categories:
- docs
- integrate
- stack
- oss
- rs
- rc
- oss
- clients
description: This is the Redis vector library (RedisVL).
group: library
hidden: false
linkTitle: 0.7.0
summary: RedisVL provides a powerful, dedicated Python client library for using Redis
as a vector database. Leverage Redis's speed, reliability, and vector-based semantic
search capabilities to supercharge your application.
title: RedisVL
type: integration
weight: 1
bannerText: This documentation applies to version 0.7.0.
bannerChildren: true
url: '/develop/ai/redisvl/0.7.0/'
---
RedisVL is a powerful, dedicated Python client library for Redis that enables seamless integration and management of high-dimensional vector data.
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.

Key features of RedisVL include:

- Vector Similarity Search: Efficiently find nearest neighbors in high-dimensional spaces using algorithms like HNSW (Hierarchical Navigable Small World).
- Integration with AI Frameworks: RedisVL works seamlessly with popular frameworks such as TensorFlow, PyTorch, and Hugging Face, making it easy to deploy AI models.
- Scalable and Fast: Leveraging Redis's in-memory architecture, RedisVL provides low-latency access to vector data, even at scale.
- By bridging the gap between data storage and AI model deployment, RedisVL empowers developers to build intelligent, real-time applications with minimal infrastructure complexity.
63 changes: 63 additions & 0 deletions content/develop/ai/redisvl/0.7.0/api/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
linkTitle: RedisVL API
title: RedisVL API
weight: 5
hideListLinks: true
url: '/develop/ai/redisvl/0.7.0/api/'
---


Reference documentation for the RedisVL API.



* [Schema](schema/)
* [IndexSchema](schema/#indexschema)
* [Defining Fields](schema/#defining-fields)
* [Supported Field Types and Attributes](schema/#supported-field-types-and-attributes)
* [Search Index Classes](searchindex/)
* [SearchIndex](searchindex/#searchindex)
* [AsyncSearchIndex](searchindex/#asyncsearchindex)
* [Query](query/)
* [VectorQuery](query/#vectorquery)
* [VectorRangeQuery](query/#vectorrangequery)
* [HybridQuery](query/#hybridquery)
* [TextQuery](query/#textquery)
* [FilterQuery](query/#filterquery)
* [CountQuery](query/#countquery)
* [Filter](filter/)
* [FilterExpression](filter/#filterexpression)
* [Tag](filter/#tag)
* [Text](filter/#text)
* [Num](filter/#num)
* [Geo](filter/#geo)
* [GeoRadius](filter/#georadius)
* [Vectorizers](vectorizer/)
* [HFTextVectorizer](vectorizer/#hftextvectorizer)
* [OpenAITextVectorizer](vectorizer/#openaitextvectorizer)
* [AzureOpenAITextVectorizer](vectorizer/#azureopenaitextvectorizer)
* [VertexAITextVectorizer](vectorizer/#vertexaitextvectorizer)
* [CohereTextVectorizer](vectorizer/#coheretextvectorizer)
* [BedrockTextVectorizer](vectorizer/#bedrocktextvectorizer)
* [CustomTextVectorizer](vectorizer/#customtextvectorizer)
* [VoyageAITextVectorizer](vectorizer/#voyageaitextvectorizer)
* [Rerankers](reranker/)
* [CohereReranker](reranker/#coherereranker)
* [HFCrossEncoderReranker](reranker/#hfcrossencoderreranker)
* [VoyageAIReranker](reranker/#voyageaireranker)
* [LLM Cache](cache/)
* [SemanticCache](cache/#semanticcache)
* [Embeddings Cache](cache/#embeddings-cache)
* [EmbeddingsCache](cache/#embeddingscache)
* [LLM Message History](message_history/)
* [SemanticMessageHistory](message_history/#semanticmessagehistory)
* [MessageHistory](message_history/#messagehistory)
* [Semantic Router](router/)
* [Semantic Router](router/#semantic-router-api)
* [Routing Config](router/#routing-config)
* [Route](router/#route)
* [Route Match](router/#route-match)
* [Distance Aggregation Method](router/#distance-aggregation-method)
* [Threshold Optimizers](threshold_optimizer/)
* [CacheThresholdOptimizer](threshold_optimizer/#cachethresholdoptimizer)
* [RouterThresholdOptimizer](threshold_optimizer/#routerthresholdoptimizer)
Loading