mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(OpenAI Chat Model Node): Restore default model value (#12745)
This commit is contained in:
parent
36bc164da4
commit
d1b6692736
|
@ -147,7 +147,7 @@ export class LmChatOpenAi implements INodeType {
|
||||||
displayName: 'Model',
|
displayName: 'Model',
|
||||||
name: 'model',
|
name: 'model',
|
||||||
type: 'resourceLocator',
|
type: 'resourceLocator',
|
||||||
default: { mode: 'list', value: '' },
|
default: { mode: 'list', value: 'gpt-4o-mini' },
|
||||||
required: true,
|
required: true,
|
||||||
modes: [
|
modes: [
|
||||||
{
|
{
|
||||||
|
@ -164,7 +164,7 @@ export class LmChatOpenAi implements INodeType {
|
||||||
displayName: 'ID',
|
displayName: 'ID',
|
||||||
name: 'id',
|
name: 'id',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
placeholder: '2302163813',
|
placeholder: 'gpt-4o-mini',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
description: 'The model. Choose from the list, or specify an ID.',
|
description: 'The model. Choose from the list, or specify an ID.',
|
||||||
|
|
Loading…
Reference in a new issue