From 77e87ccb39ca9586f068535664cb11661447fa5e Mon Sep 17 00:00:00 2001 From: yoobin_mion <113106136+yybmion@users.noreply.github.com> Date: Tue, 1 Apr 2025 18:55:11 +0900 Subject: [PATCH] Fix: Duplicate example in Vector Databases documentation (#2562) (#2563) 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 d71dbad44..f31a6eb94 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