Skip to content

Commit 77e87cc

Browse files
authored
Fix: Duplicate example in Vector Databases documentation (#2562) (#2563)
Signed-off-by: yoobin_mion <113106136+yybmion@users.noreply.github.com>
1 parent 6389154 commit 77e87cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ Consider the following example:
389389

390390
[source,java]
391391
----
392-
Expression exp = b.and(b.eq("genre", "drama"), b.gte("year", 2020)).build();
392+
Expression exp = b.and(b.in("genre", "drama", "documentary"), b.not(b.lt("year", 2020))).build();
393393
----
394394

395395
== Deleting Documents from Vector Store

0 commit comments

Comments
 (0)