Pinecone Vector Database
Pinecone vector database integration for Delphi. Store embeddings, perform similarity search, and build AI-powered retrieval systems.
Pinecone vector database integration for Delphi. Store embeddings, perform similarity search, and build AI-powered retrieval systems.
uses
sgcAI_Pinecone;
var
Pinecone: TsgcAIPinecone;
begin
Pinecone := TsgcAIPinecone.Create(nil);
Pinecone.ApiKey := 'your-pinecone-key';
Pinecone.Environment := 'us-east-1-aws';
Results := Pinecone.Query('my-index', QueryVector, 5);
end;
Deep-link to the component reference, grab the ready-to-run demo project, and download the trial.