2023-11-29 03:13:55 -08:00
|
|
|
import type {
|
|
|
|
IAuthenticateGeneric,
|
|
|
|
ICredentialTestRequest,
|
|
|
|
ICredentialType,
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class PineconeApi implements ICredentialType {
|
|
|
|
name = 'pineconeApi';
|
|
|
|
|
|
|
|
displayName = 'PineconeApi';
|
|
|
|
|
|
|
|
documentationUrl = 'pinecone';
|
|
|
|
|
|
|
|
properties: INodeProperties[] = [
|
|
|
|
{
|
|
|
|
displayName: 'API Key',
|
|
|
|
name: 'apiKey',
|
|
|
|
type: 'string',
|
|
|
|
typeOptions: { password: true },
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
|
|
type: 'generic',
|
|
|
|
properties: {
|
|
|
|
headers: {
|
|
|
|
'Api-Key': '={{$credentials.apiKey}}',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
test: ICredentialTestRequest = {
|
|
|
|
request: {
|
2024-03-08 07:01:02 -08:00
|
|
|
baseURL: 'https://api.pinecone.io/indexes',
|
2023-11-29 03:13:55 -08:00
|
|
|
headers: {
|
|
|
|
accept: 'application/json; charset=utf-8',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|