feat: Adds support for Qdrant vector search

This commit is contained in:
Anush008
2026-03-27 18:31:05 +05:30
parent 11696a016d
commit 63ed7ddb02
5 changed files with 254 additions and 1 deletions

View File

@@ -59,4 +59,37 @@ public class VectorStoreProperties {
*/
private String collectionname;
}
/**
* Qdrant配置
*/
private Qdrant qdrant = new Qdrant();
@Data
public static class Qdrant {
/**
* 主机地址
*/
private String host = "localhost";
/**
* gRPC端口
*/
private int port = 6334;
/**
* 集合名称
*/
private String collectionname = "LocalKnowledge";
/**
* API密钥可选
*/
private String apiKey;
/**
* 是否启用TLS
*/
private boolean useTls = false;
}
}