added classes for vectorization, similarity search and summarization

This commit is contained in:
2026-06-30 05:00:20 +02:00
parent baa0582d50
commit 0508687cad
8 changed files with 123 additions and 15 deletions
@@ -5,5 +5,5 @@ import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
public record SearchRequest(@NotBlank String appUrl, @NotBlank String username, String query,
@NotNull ServiceType serviceType) {
@NotNull ServiceType serviceType, boolean aiSearch) {
}