mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(OpenAI Node): Add quotes to default base URL (#12312)
This commit is contained in:
@@ -29,7 +29,7 @@ export class OpenAi implements INodeType {
|
|||||||
requestDefaults: {
|
requestDefaults: {
|
||||||
ignoreHttpStatusErrors: true,
|
ignoreHttpStatusErrors: true,
|
||||||
baseURL:
|
baseURL:
|
||||||
'={{ $credentials.url?.split("/").slice(0,-1).join("/") || https://api.openai.com }}',
|
'={{ $credentials.url?.split("/").slice(0,-1).join("/") ?? "https://api.openai.com" }}',
|
||||||
},
|
},
|
||||||
properties: [
|
properties: [
|
||||||
oldVersionNotice,
|
oldVersionNotice,
|
||||||
|
|||||||
Reference in New Issue
Block a user