UNPKG

n8n-nodes-rag

Version:

Advanced RAG (Retrieval-Augmented Generation) knowledge base nodes for n8n

23 lines 788 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OpenAiEmbeddingApi = void 0; class OpenAiEmbeddingApi { constructor() { this.name = 'openAiEmbeddingApi'; this.displayName = 'OpenAI Embedding API'; this.documentationUrl = 'https://platform.openai.com/docs/api-reference'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, required: true, default: '', description: 'The API key for OpenAI', }, ]; } } exports.OpenAiEmbeddingApi = OpenAiEmbeddingApi; //# sourceMappingURL=OpenAiEmbeddingApi.credentials.js.map