n8n-nodes-rag
Version:
Advanced RAG (Retrieval-Augmented Generation) knowledge base nodes for n8n
31 lines • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QdrantApi = void 0;
class QdrantApi {
constructor() {
this.name = 'qdrantApi';
this.displayName = 'Qdrant API';
this.documentationUrl = 'https://qdrant.tech/documentation/';
this.properties = [
{
displayName: 'Endpoint',
name: 'endpoint',
type: 'string',
required: true,
default: 'http://localhost:6333',
description: 'The Qdrant server endpoint',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
required: false,
default: '',
description: 'The API key for Qdrant (if authentication is enabled)',
},
];
}
}
exports.QdrantApi = QdrantApi;
//# sourceMappingURL=QdrantApi.credentials.js.map