From cf7dd67f772affebda51dc2d554eba797d195fa3 Mon Sep 17 00:00:00 2001 From: yoobin_mion <113106136+yybmion@users.noreply.github.com> Date: Mon, 24 Mar 2025 21:36:04 +0900 Subject: [PATCH] Fix: Duplicate example in Vector Databases documentation (#2562) Signed-off-by: Yoobin Yoon Signed-off-by: yoobin_mion <113106136+yybmion@users.noreply.github.com> --- .../src/main/antora/modules/ROOT/pages/api/vectordbs.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs.adoc index d71dbad44a3..f31a6eb946e 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs.adoc @@ -389,7 +389,7 @@ Consider the following example: [source,java] ---- -Expression exp = b.and(b.eq("genre", "drama"), b.gte("year", 2020)).build(); +Expression exp = b.and(b.in("genre", "drama", "documentary"), b.not(b.lt("year", 2020))).build(); ---- == Deleting Documents from Vector Store