@n8n/n8n-nodes-langchain
Version:

85 lines • 3.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlibabaCloudApi = void 0;
const alibaba_cloud_base_url_1 = require("../nodes/llms/LmChatAlibabaCloud/alibaba-cloud-base-url");
class AlibabaCloudApi {
constructor() {
this.name = 'alibabaCloudApi';
this.displayName = 'Alibaba Cloud';
this.documentationUrl = 'alibaba';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
required: true,
default: '',
},
{
displayName: 'Region',
name: 'region',
type: 'options',
default: 'ap-southeast-1',
options: [
{
name: 'Singapore (International)',
value: 'ap-southeast-1',
},
{
name: 'US (Virginia)',
value: 'us-east-1',
},
{
name: 'China (Beijing)',
value: 'cn-beijing',
},
{
name: 'Hong Kong (China)',
value: 'cn-hongkong',
},
{
name: 'Germany (Frankfurt)',
value: 'eu-central-1',
},
],
description: 'The region for the Alibaba Cloud Model Studio API endpoint',
},
{
displayName: 'Workspace ID',
name: 'workspaceId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
region: ['eu-central-1'],
},
},
description: 'The Workspace ID required for the Germany (Frankfurt) region. Find it in the Model Studio console under the Germany region settings.',
},
{
displayName: 'Base URL',
name: 'url',
type: 'hidden',
default: `={{ (() => { const hosts = ${JSON.stringify(alibaba_cloud_base_url_1.REGION_BASE_HOSTS)}; const region = $self.region; if (region === "eu-central-1") { return "https://" + $self.workspaceId + ".eu-central-1.maas.aliyuncs.com"; } return hosts[region] || hosts["ap-southeast-1"]; })() }}`,
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.apiKey}}',
},
},
};
this.test = {
request: {
baseURL: '={{ $credentials.url }}',
url: `${alibaba_cloud_base_url_1.COMPATIBLE_MODE_SUFFIX}/models`,
},
};
}
}
exports.AlibabaCloudApi = AlibabaCloudApi;
//# sourceMappingURL=AlibabaCloudApi.credentials.js.map