TsgcAIDatabaseVectorPineconeProperties › PineconeOptions

PineconeOptions Property

Pinecone account credentials and HTTP client options shared by all requests.

Syntax

property PineconeOptions: TsgcHTTPPinecone_Options read FPineconeOptions write SetPineconeOptions;

Default Value

Remarks

Configures the underlying Pinecone REST API client. Key sub-properties: ApiKey (your Pinecone API key), Environment (e.g. us-west4-gcp-free) and LogOptions (optional HTTP request/response logging to a text file). The values are copied to the internal client before every call.

Example

oDB.PineconeOptions.ApiKey      := 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx';
oDB.PineconeOptions.Environment := 'us-west4-gcp-free';

Back to Properties