From 2b10fbd1a39f0dd75e0641022dd7bce65deb6782 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 13 Dec 2023 22:13:53 -0500 Subject: [PATCH] Improved docs [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c4629f..db7a0bc 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ item.embedding |> Pgvector.to_tensor() Add an approximate index in a migration ```elixir -create index("items", ["embedding vector_l2_ops"], using: :ivfflat) +create index("items", ["embedding vector_l2_ops"], using: :ivfflat, options: "lists = 100") # or create index("items", ["embedding vector_l2_ops"], using: :hnsw) ```