TsgcAIDatabaseVectorPineconeProperties › PineconeIndexOptions

PineconeIndexOptions Property

Target Pinecone index and project used by upsert and query operations.

Syntax

property PineconeIndexOptions: TsgcAIDBVectorPineconeIndex_Options read FPineconeIndexOptions write SetPineconeIndexOptions;

Default Value

Remarks

Identifies the specific Pinecone index the component operates on. IndexName is the index you created in the Pinecone console and ProjectId is the project identifier that scopes that index. Both values are required for AddData/QueryData to route requests to the right endpoint.

Example

oDB.PineconeIndexOptions.IndexName := 'sgc-embeddings';
oDB.PineconeIndexOptions.ProjectId := 'abcd1234';

Back to Properties