n8n-nodes-openai-gpt5
Version:
n8n node for OpenAI GPT-5 with PDF processing, web search, and timeout configuration via Responses API
40 lines • 1.32 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.OpenAiGpt5Api = void 0;
class OpenAiGpt5Api {
constructor() {
this.name = 'openAiGpt5Api';
this.displayName = 'OpenAI GPT-5 API';
this.documentationUrl = 'https://platform.openai.com/docs/api-reference';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: {
password: true,
},
default: '',
required: true,
placeholder: 'sk-...',
description: 'Your OpenAI API key',
},
{
displayName: 'Organization ID',
name: 'organizationId',
type: 'string',
default: '',
description: 'Optional OpenAI Organization ID',
},
{
displayName: 'Base URL',
name: 'baseUrl',
type: 'string',
default: 'https://api.openai.com',
description: 'The base URL for the OpenAI API',
},
];
}
}
exports.OpenAiGpt5Api = OpenAiGpt5Api;
//# sourceMappingURL=OpenAiGpt5Api.credentials.js.map
;