@fengcch/n8n-nodes-302ai-chat
Version:
n8n community node for 302.ai AI service integration
26 lines (25 loc) • 803 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ThreeZeroTwoAIApi = void 0;
class ThreeZeroTwoAIApi {
constructor() {
this.name = 'threeZeroTwoAIApi';
this.displayName = '302.ai API';
this.documentationUrl = 'https://302.ai/';
this.icon = 'file:../icons/aiThreeZeroTwo.svg';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: {
password: true,
},
default: '',
required: true,
description: 'The 302.ai API key for accessing OpenAI services',
},
];
}
}
exports.ThreeZeroTwoAIApi = ThreeZeroTwoAIApi;