向量数据库
从 Delphi 连接到向量数据库,用于语义搜索、RAG 和 AI 应用程序。支持 Pinecone 等。
从 Delphi 连接到向量数据库,用于语义搜索、RAG 和 AI 应用程序。支持 Pinecone 等。
uses
sgcAI_VectorDB;
var
VectorDB: TsgcAIVectorDB;
begin
VectorDB := TsgcAIVectorDB.Create(nil);
VectorDB.Provider := vdbPinecone;
VectorDB.ApiKey := 'your-api-key';
VectorDB.Upsert('index-1', Embeddings, Metadata);
Results := VectorDB.Query('index-1', QueryVector, 10);
end;