n8n-nodes-yourgpt
Version:
Integrate YourGPT AI chatbot node into your n8n workflows
24 lines • 711 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.YourGPTApi = void 0;
class YourGPTApi {
constructor() {
this.name = 'yourGPTApi';
this.displayName = 'YourGPT Chatbot';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
required: true,
typeOptions: {
password: true,
},
description: 'The API key obtained from YourGPT dashboard',
},
];
}
}
exports.YourGPTApi = YourGPTApi;
//# sourceMappingURL=YourGPTApi.credentials.js.map