UNPKG

n8n-nodes-deepseek-llm

Version:

A user-friendly DeepSeek AI node, similar to OpenAI, designed to enhance your workflow. npm link: https://www.npmjs.com/package/n8n-nodes-deepseek

36 lines 1.06 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DeepSeekApi = void 0; class DeepSeekApi { constructor() { this.name = 'deepSeekApi'; this.displayName = 'DeepSeek API'; this.documentationUrl = 'https://platform.deepseek.com/api-docs/'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, required: true, default: '', } ]; this.authenticate = { type: 'generic', properties: { headers: { Authorization: '=Bearer {{$credentials.apiKey}}' }, }, }; this.test = { request: { baseURL: 'https://api.deepseek.com', url: '/models', }, }; } } exports.DeepSeekApi = DeepSeekApi; //# sourceMappingURL=DeepSeekApi.credentials.js.map