renamed SyncProvider
This commit is contained in:
@@ -3,10 +3,9 @@ package com.vaessl.app.sync;
|
|||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import com.vaessl.app.shared.ServiceType;
|
import com.vaessl.app.shared.ServiceType;
|
||||||
import com.vaessl.app.vector.EmbeddingService;
|
import com.vaessl.app.vector.EmbeddingService;
|
||||||
import com.vaessl.app.vector.VectorSyncProvider;
|
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class HomeboxSyncProvider implements VectorSyncProvider {
|
public class HomeboxSyncProvider implements SyncProvider {
|
||||||
|
|
||||||
private final EmbeddingService embeddingService;
|
private final EmbeddingService embeddingService;
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
package com.vaessl.app.sync;
|
||||||
|
|
||||||
|
import com.vaessl.app.shared.ServiceProvider;
|
||||||
|
|
||||||
|
public interface SyncProvider extends ServiceProvider{
|
||||||
|
public void syncVectorStore();
|
||||||
|
}
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
package com.vaessl.app.vector;
|
|
||||||
|
|
||||||
import com.vaessl.app.shared.ServiceProvider;
|
|
||||||
|
|
||||||
public interface VectorSyncProvider extends ServiceProvider{
|
|
||||||
public void syncVectorStore();
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user