We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c11875 commit f297d3cCopy full SHA for f297d3c
VectorDBService.java
@@ -0,0 +1,14 @@
1
+import org.springframework.beans.factory.annotation.Autowired;
2
+import org.springframework.stereotype.Service;
3
+import java.util.List;
4
+
5
+@Service
6
+public class VectorDBService {
7
8
+ @Autowired
9
+ private SupabaseClient supabaseClient;
10
11
+ public void saveEmbeddings(List<float[]> embeddings) {
12
+ // Implement code to save embeddings in Supabase database
13
+ }
14
+}
0 commit comments