The world's most-used vector database — Elasticsearch
Elasticsearch is not only a full vector database. It also features multiple retrieval types (text, sparse and dense vector, hybrid) and your choice of machine learning model architectures.
Start with a few lines of code
Generate embeddings, store embeddings, and run vector search using the familiar Elasticsearch API.
POST /_ml/trained_models/sentence-transformers__all-minilm-l6-v2/_infer
{
"docs": {
"text_field": "Jamaica's tropical climate brings warmth all year round"
}
}